Browse Source

updates for instagram scraping

pull/39/head
Aaron Parecki 7 years ago
parent
commit
5f63ed7944
No known key found for this signature in database GPG Key ID: 276C2817346D6056
8 changed files with 323 additions and 736 deletions
  1. +45
    -11
      lib/Formats/Instagram.php
  2. +14
    -10
      tests/InstagramTest.php
  3. +1
    -1
      tests/data/www.instagram.com/aaronpk_?__a=1
  4. +1
    -1
      tests/data/www.instagram.com/kmikeym_?__a=1
  5. +65
    -178
      tests/data/www.instagram.com/photo.html
  6. +64
    -177
      tests/data/www.instagram.com/photo_with_person_tag.html
  7. +66
    -178
      tests/data/www.instagram.com/photo_with_venue.html
  8. +67
    -180
      tests/data/www.instagram.com/video.html

+ 45
- 11
lib/Formats/Instagram.php View File

@ -37,8 +37,17 @@ class Instagram {
}
// Content and hashtags
$caption = false;
if(isset($photoData['caption'])) {
if(preg_match_all('/#([a-z0-9_-]+)/i', $photoData['caption'], $matches)) {
$caption = $photoData['caption'];
} elseif(isset($photoData['edge_media_to_caption']['edges'][0]['node']['text'])) {
$caption = $photoData['edge_media_to_caption']['edges'][0]['node']['text'];
}
if($caption) {
if(preg_match_all('/#([a-z0-9_-]+)/i', $caption, $matches)) {
$entry['category'] = [];
foreach($matches[1] as $match) {
$entry['category'][] = $match;
@ -46,13 +55,16 @@ class Instagram {
}
$entry['content'] = [
'text' => $photoData['caption']
'text' => $caption
];
}
// Include the photo/video media URLs
// (Always return arrays)
$entry['photo'] = [$photoData['display_src']];
if(array_key_exists('display_src', $photoData))
$entry['photo'] = [$photoData['display_src']];
elseif(array_key_exists('display_url', $photoData))
$entry['photo'] = [$photoData['display_url']];
if(array_key_exists('is_video', $photoData) && $photoData['is_video']) {
$entry['video'] = [$photoData['video_url']];
@ -61,7 +73,9 @@ class Instagram {
$refs = [];
// Find person tags and fetch user profiles
if(array_key_exists('usertags', $photoData) && $photoData['usertags']['nodes']) {
// old json
if(isset($photoData['usertags']['nodes'])) {
if(!isset($entry['category'])) $entry['category'] = [];
foreach($photoData['usertags']['nodes'] as $tag) {
@ -75,8 +89,26 @@ class Instagram {
}
}
// new json as of approximately 2017-04-19
if(isset($photoData['edge_media_to_tagged_user']['edges'])) {
if(!isset($entry['category'])) $entry['category'] = [];
foreach($photoData['edge_media_to_tagged_user']['edges'] as $edge) {
$profile = self::_getInstagramProfile($edge['node']['user']['username'], $http);
if($profile) {
$card = self::_buildHCardFromInstagramProfile($profile);
$entry['category'][] = $card['url'];
$refs[$card['url']] = $card;
$profiles[] = $profile;
}
}
}
// Published date
$published = DateTime::createFromFormat('U', $photoData['date']);
if(array_key_exists('taken_at_timestamp', $photoData))
$published = DateTime::createFromFormat('U', $photoData['taken_at_timestamp']);
elseif(array_key_exists('date', $photoData))
$published = DateTime::createFromFormat('U', $photoData['date']);
// Include venue data
$locations = [];
@ -176,10 +208,12 @@ class Instagram {
if($data && is_array($data) && array_key_exists('entry_data', $data)) {
if(is_array($data['entry_data']) && array_key_exists('PostPage', $data['entry_data'])) {
$post = $data['entry_data']['PostPage'];
if(is_array($post) && array_key_exists(0, $post) && array_key_exists('media', $post[0])) {
$media = $post[0]['media'];
return $media;
if(isset($post[0]['graphql']['shortcode_media'])) {
return $post[0]['graphql']['shortcode_media'];
} elseif(isset($post[0]['graphql']['media'])) {
return $post[0]['graphql']['media'];
} elseif(isset($post[0]['media'])) {
return $post[0]['media'];
}
}
}
@ -191,9 +225,9 @@ class Instagram {
$data = self::_extractIGData($html);
if($data && is_array($data) && array_key_exists('entry_data', $data)) {
if(is_array($data['entry_data']) && array_key_exists('LocationsPage', $data['entry_data'])) {
if(isset($data['entry_data']['LocationsPage'])) {
$data = $data['entry_data']['LocationsPage'];
if(is_array($data) && array_key_exists(0, $data) && array_key_exists('location', $data[0])) {
if(isset($data[0]['location'])) {
$location = $data[0]['location'];
# we don't need these and they're huge, so drop them now

+ 14
- 10
tests/InstagramTest.php View File

@ -19,6 +19,7 @@ class InstagramTest extends PHPUnit_Framework_TestCase {
}
public function testInstagramPhoto() {
// Original URL: https://www.instagram.com/p/BO5rYVElvJq/
$url = 'http://www.instagram.com/photo.html';
$response = $this->parse(['url' => $url]);
@ -32,13 +33,14 @@ class InstagramTest extends PHPUnit_Framework_TestCase {
$this->assertContains('2017', $data['data']['category']);
$this->assertEquals('Kind of crazy to see the whole year laid out like this. #planning #2017', $data['data']['content']['text']);
$this->assertEquals(1, count($data['data']['photo']));
$this->assertEquals(['https://scontent.cdninstagram.com/t51.2885-15/e35/15803256_1832278043695907_4846092951052353536_n.jpg?ig_cache_key=MTQyMTM1Nzk0NTMwNTEwMDkwNg%3D%3D.2'], $data['data']['photo']);
$this->assertEquals('http://aaronparecki.com/', $data['data']['author']['url']);
$this->assertEquals(['https://instagram.fsjc1-3.fna.fbcdn.net/t51.2885-15/e35/15803256_1832278043695907_4846092951052353536_n.jpg'], $data['data']['photo']);
$this->assertEquals('https://aaronparecki.com/', $data['data']['author']['url']);
$this->assertEquals('Aaron Parecki', $data['data']['author']['name']);
$this->assertEquals('https://scontent.cdninstagram.com/t51.2885-19/s320x320/14240576_268350536897085_1129715662_a.jpg', $data['data']['author']['photo']);
$this->assertEquals('https://instagram.fsjc1-3.fna.fbcdn.net/t51.2885-19/s320x320/14240576_268350536897085_1129715662_a.jpg', $data['data']['author']['photo']);
}
public function testInstagramVideo() {
// Original URL: https://www.instagram.com/p/BO_RN8AFZSx/
$url = 'http://www.instagram.com/video.html';
$response = $this->parse(['url' => $url]);
@ -50,15 +52,16 @@ class InstagramTest extends PHPUnit_Framework_TestCase {
$this->assertContains('100daysofmusic', $data['data']['category']);
$this->assertEquals('Day 18. Maple and Spruce #100daysofmusic #100daysproject #the100dayproject https://aaronparecki.com/2017/01/07/14/day18', $data['data']['content']['text']);
$this->assertEquals(1, count($data['data']['photo']));
$this->assertEquals(['https://scontent.cdninstagram.com/t51.2885-15/s640x640/e15/15624670_548881701986735_8264383763249627136_n.jpg?ig_cache_key=MTQyMjkzMTczMTg0MjE3NjE3Nw%3D%3D.2'], $data['data']['photo']);
$this->assertEquals(['https://instagram.fsjc1-3.fna.fbcdn.net/t51.2885-15/s640x640/e15/15624670_548881701986735_8264383763249627136_n.jpg'], $data['data']['photo']);
$this->assertEquals(1, count($data['data']['video']));
$this->assertEquals(['https://scontent.cdninstagram.com/t50.2886-16/15921147_1074837002642259_2269307616507199488_n.mp4'], $data['data']['video']);
$this->assertEquals('http://aaronparecki.com/', $data['data']['author']['url']);
$this->assertEquals(['https://instagram.fsjc1-3.fna.fbcdn.net/t50.2886-16/15921147_1074837002642259_2269307616507199488_n.mp4'], $data['data']['video']);
$this->assertEquals('https://aaronparecki.com/', $data['data']['author']['url']);
$this->assertEquals('Aaron Parecki', $data['data']['author']['name']);
$this->assertEquals('https://scontent.cdninstagram.com/t51.2885-19/s320x320/14240576_268350536897085_1129715662_a.jpg', $data['data']['author']['photo']);
$this->assertEquals('https://instagram.fsjc1-3.fna.fbcdn.net/t51.2885-19/s320x320/14240576_268350536897085_1129715662_a.jpg', $data['data']['author']['photo']);
}
public function testInstagramPhotoWithPersonTag() {
// Original URL: https://www.instagram.com/p/BNfqVfVlmkj/
$url = 'http://www.instagram.com/photo_with_person_tag.html';
$response = $this->parse(['url' => $url]);
@ -67,12 +70,13 @@ class InstagramTest extends PHPUnit_Framework_TestCase {
$data = json_decode($body, true);
$this->assertEquals(2, count($data['data']['category']));
$this->assertContains('https://kmikeym.com/', $data['data']['category']);
$this->assertArrayHasKey('https://kmikeym.com/', $data['refs']);
$this->assertEquals(['type'=>'card','name'=>'Mike Merrill','url'=>'https://kmikeym.com/','photo'=>'https://scontent.cdninstagram.com/t51.2885-19/s320x320/12627953_686238411518831_1544976311_a.jpg'], $data['refs']['https://kmikeym.com/']);
$this->assertContains('http://tinyletter.com/kmikeym', $data['data']['category']);
$this->assertArrayHasKey('http://tinyletter.com/kmikeym', $data['refs']);
$this->assertEquals(['type'=>'card','name'=>'Mike Merrill','url'=>'http://tinyletter.com/kmikeym','photo'=>'https://instagram.fsjc1-3.fna.fbcdn.net/t51.2885-19/s320x320/12627953_686238411518831_1544976311_a.jpg'], $data['refs']['http://tinyletter.com/kmikeym']);
}
public function testInstagramPhotoWithVenue() {
// Original URL: https://www.instagram.com/p/BN3Z5salSys/
$url = 'http://www.instagram.com/photo_with_venue.html';
$response = $this->parse(['url' => $url]);

+ 1
- 1
tests/data/www.instagram.com/aaronpk_?__a=1
File diff suppressed because it is too large
View File


+ 1
- 1
tests/data/www.instagram.com/kmikeym_?__a=1
File diff suppressed because it is too large
View File


+ 65
- 178
tests/data/www.instagram.com/photo.html View File

@ -16,123 +16,10 @@ Connection: keep-alive
Instagram
</title>
<script type="text/javascript">
WebFontConfig = {
custom: {
families: ['proxima-nova:n3,n4,n6,n7'],
}
};
</script>
<script src="//instagramstatic-a.akamaihd.net/h1/scripts/webfont.js/c0456c81549b.js" type="text/javascript" async></script>
<style type="text/css">
/* @license
* MyFonts Webfont Build ID 2164953, 2012-03-23T23:06:30-0400
*
* The fonts listed in this notice are subject to the End User License
* Agreement(s) entered into by the website owner. All other parties are
* explicitly restricted from using the Licensed Webfonts(s).
*
* You may obtain a valid license at the URLs below.
*
*
* Webfont: Proxima Nova Light by Mark Simonson
* URL: http://www.myfonts.com/fonts/marksimonson/proxima-nova/light/
* Licensed pageviews: unlimited
*
* Webfont: Proxima Nova Regular by Mark Simonson
* URL: http://www.myfonts.com/fonts/marksimonson/proxima-nova/regular/
* Licensed pageviews: unlimited
*
* Webfont: Proxima Nova Semibold by Mark Simonson
* URL: http://www.myfonts.com/fonts/marksimonson/proxima-nova/semibold/
* Licensed pageviews: unlimited
*
* Webfont: Proxima Nova Bold Italic by Mark Simonson
* URL: http://www.myfonts.com/fonts/marksimonson/proxima-nova/bold-it/
* Licensed pageviews: unlimited
*
* Webfont: Proxima Nova Bold by Mark Simonson
* URL: http://www.myfonts.com/fonts/marksimonson/proxima-nova/bold/
* Licensed pageviews: unlimited
*
* Webfont: Proxima Nova Italic by Mark Simonson
* URL: http://www.myfonts.com/fonts/marksimonson/proxima-nova/regular-it/
* Licensed pageviews: unlimited
*
*
* License: http://www.myfonts.com/viewlicense?type=web&buildid=2164953
* Webfonts copyright: Copyright (c) Mark Simonson, 2005. All rights reserved.
*
* (c) 2012 Bitstream Inc
*/
@font-face {
font-family: 'proxima-nova';
src: url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-bold-webfont.eot/115b1f7f9c04.eot');
src: url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-bold-webfont.eot/115b1f7f9c04.eot?#iefix') format("embedded-opentype"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-bold-webfont.woff/618250d25a4d.woff') format("woff"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-bold-webfont.ttf/646346e03084.ttf') format("truetype"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-bold-webfont.svg/e55a9d6051e8.svg#ProximaNovaBold') format("svg");
font-weight: bold;
font-style: normal; }
@font-face {
font-family: 'proxima-nova';
src: url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-boldit-webfont.eot/1cbb869da891.eot');
src: url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-boldit-webfont.eot/1cbb869da891.eot?#iefix') format("embedded-opentype"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-boldit-webfont.woff/b1cf049474c9.woff') format("woff"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-boldit-webfont.ttf/3adb020ceae3.ttf') format("truetype"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-boldit-webfont.svg/29948a2d3c58.svg#ProximaNovaBoldItalic') format("svg");
font-weight: bold;
font-style: italic; }
@font-face {
font-family: 'proxima-nova';
src: url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-reg-webfont.eot/12af77715cee.eot');
src: url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-reg-webfont.eot/12af77715cee.eot?#iefix') format("embedded-opentype"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-reg-webfont.woff/a9a9773b8e29.woff') format("woff"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-reg-webfont.ttf/99e19808976a.ttf') format("truetype"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-reg-webfont.svg/c33d2fd56309.svg#ProximaNovaRegular') format("svg");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: 'proxima-nova';
src: url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-regit-webfont.eot/1bbbd1312b0d.eot');
src: url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-regit-webfont.eot/1bbbd1312b0d.eot?#iefix') format("embedded-opentype"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-regit-webfont.woff/9e306befca91.woff') format("woff"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-regit-webfont.ttf/4a8663684135.ttf') format("truetype"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-regit-webfont.svg/876278d4b189.svg#ProximaNovaRegularItalic') format("svg");
font-weight: normal;
font-style: italic; }
@font-face {
font-family: 'proxima-nova';
src: url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-sbold-webfont.eot/5016edf79e1d.eot');
src: url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-sbold-webfont.eot/5016edf79e1d.eot?#iefix') format("embedded-opentype"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-sbold-webfont.woff/615c1b06d8fa.woff') format("woff"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-sbold-webfont.ttf/2973bd483f7a.ttf') format("truetype"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-sbold-webfont.svg/868597833e49.svg#ProximaNovaSemibold') format("svg");
font-weight: 600;
font-style: normal; }
</style>
<style type="text/css">
@font-face {
font-family: 'proxima-nova';
src: url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-light-webfont.eot/63c84728610f.eot');
src: url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-light-webfont.eot/63c84728610f.eot?#iefix') format("embedded-opentype"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-light-webfont.woff/66bbe029f180.woff') format("woff"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-light-webfont.ttf/eb408516399b.ttf') format("truetype"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-light-webfont.svg/858f6a9b7ef3.svg#ProximaNovaLight') format("svg");
font-weight: 300;
font-style: normal; }
</style>
<meta name="robots" content="noimageindex">
<meta name="mobile-web-app-capable" content="yes">
<meta name="theme-color" content="#000000">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta id="viewport" name="viewport" content="width=device-width, user-scalable=no, initial-scale=1, minimum-scale=1, maximum-scale=1">
@ -148,25 +35,25 @@ Instagram
</script>
<script type="text/javascript">window._timings = {"domLoading": Date.now()}</script>
<link rel="apple-touch-icon-precomposed" sizes="76x76" href="//instagramstatic-a.akamaihd.net/h1/images/ico/apple-touch-icon-76x76-precomposed.png/932e4d9af891.png">
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="//instagramstatic-a.akamaihd.net/h1/images/ico/apple-touch-icon-120x120-precomposed.png/004705c9353f.png">
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="//instagramstatic-a.akamaihd.net/h1/images/ico/apple-touch-icon-152x152-precomposed.png/82467bc9bcce.png">
<link rel="apple-touch-icon-precomposed" sizes="167x167" href="//instagramstatic-a.akamaihd.net/h1/images/ico/apple-touch-icon-167x167-precomposed.png/515cb4eeeeee.png">
<link rel="apple-touch-icon-precomposed" sizes="180x180" href="//instagramstatic-a.akamaihd.net/h1/images/ico/apple-touch-icon-180x180-precomposed.png/94fd767f257b.png">
<link rel="icon" sizes="192x192" href="//instagramstatic-a.akamaihd.net/h1/images/ico/favicon-192.png/b407fa101800.png">
<link rel="apple-touch-icon-precomposed" sizes="76x76" href="/static/images/ico/apple-touch-icon-76x76-precomposed.png/932e4d9af891.png">
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="/static/images/ico/apple-touch-icon-120x120-precomposed.png/004705c9353f.png">
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="/static/images/ico/apple-touch-icon-152x152-precomposed.png/82467bc9bcce.png">
<link rel="apple-touch-icon-precomposed" sizes="167x167" href="/static/images/ico/apple-touch-icon-167x167-precomposed.png/515cb4eeeeee.png">
<link rel="apple-touch-icon-precomposed" sizes="180x180" href="/static/images/ico/apple-touch-icon-180x180-precomposed.png/94fd767f257b.png">
<link rel="icon" sizes="192x192" href="/static/images/ico/favicon-192.png/b407fa101800.png">
<link rel="mask-icon" href="//instagramstatic-a.akamaihd.net/h1/images/ico/favicon.svg/9d8680ab8a3c.svg" color="#262626"><link rel="shortcut icon" type="image/x-icon" href="//instagramstatic-a.akamaihd.net/h1/images/ico/favicon.ico/dfa85bb1fd63.ico">
<link rel="mask-icon" href="/static/images/ico/favicon.svg/9d8680ab8a3c.svg" color="#262626"><link rel="shortcut icon" type="image/x-icon" href="/static/images/ico/favicon.ico/dfa85bb1fd63.ico">
<link rel="canonical" href="https://www.instagram.com/p/BO5rYVElvJq/" />
<meta content="See this Instagram photo by @aaronpk • 13 likes" name="description" />
<meta content="13 Likes, 3 Comments - Aaron Parecki (@aaronpk) on Instagram: “Kind of crazy to see the whole year laid out like this. #planning #2017”" name="description" />
<meta property="og:site_name" content="Instagram" />
<meta property="og:title" content="Instagram photo by Aaron Parecki • Jan 5, 2017 at 11:31pm UTC" />
<meta property="og:image" content="https://scontent.cdninstagram.com/t51.2885-15/e35/15803256_1832278043695907_4846092951052353536_n.jpg?ig_cache_key=MTQyMTM1Nzk0NTMwNTEwMDkwNg%3D%3D.2" />
<meta property="og:description" content="See this Instagram photo by @aaronpk • 13 likes" />
<meta property="og:title" content="Instagram post by Aaron Parecki • Jan 5, 2017 at 11:31pm UTC" />
<meta property="og:image" content="https://instagram.fsjc1-3.fna.fbcdn.net/t51.2885-15/e35/15803256_1832278043695907_4846092951052353536_n.jpg" />
<meta property="og:description" content="13 Likes, 3 Comments - Aaron Parecki (@aaronpk) on Instagram: “Kind of crazy to see the whole year laid out like this. #planning #2017”" />
<meta property="fb:app_id" content="124024574287414" />
<meta property="og:url" content="https://www.instagram.com/p/BO5rYVElvJq/" />
<meta property="instapp:owner_user_id" content="1500881" />
@ -179,59 +66,59 @@ Instagram
<meta name="medium" content="image" />
<meta property="og:type" content="instapp:photo" />
<meta property="instapp:hashtags" content="planning" /><meta property="instapp:hashtags" content="2017" />
<meta property="instapp:hashtags" content="2017" /><meta property="instapp:hashtags" content="planning" />
<link rel="alternate" href="android-app://com.instagram.android/https/instagram.com/p/BO5rYVElvJq/" />
<link href="https://www.instagram.com/p/BO5rYVElvJq/" rel="alternate" hreflang="x-default" />
<link href="https://www.instagram.com/p/BO5rYVElvJq/?hl=nb" rel="alternate" hreflang="nb" />
<link href="https://www.instagram.com/p/BO5rYVElvJq/?hl=ru" rel="alternate" hreflang="ru" />
<link href="https://www.instagram.com/p/BO5rYVElvJq/?hl=zh-hk" rel="alternate" hreflang="zh-hk" />
<link href="https://www.instagram.com/p/BO5rYVElvJq/?hl=ko" rel="alternate" hreflang="ko" />
<link href="https://www.instagram.com/p/BO5rYVElvJq/?hl=es" rel="alternate" hreflang="es" />
<link href="https://www.instagram.com/p/BO5rYVElvJq/?hl=fr-ca" rel="alternate" hreflang="fr-ca" />
<link href="https://www.instagram.com/p/BO5rYVElvJq/?hl=si" rel="alternate" hreflang="si" />
<link href="https://www.instagram.com/p/BO5rYVElvJq/?hl=kn" rel="alternate" hreflang="kn" />
<link href="https://www.instagram.com/p/BO5rYVElvJq/?hl=nl" rel="alternate" hreflang="nl" />
<link href="https://www.instagram.com/p/BO5rYVElvJq/?hl=uk" rel="alternate" hreflang="uk" />
<link href="https://www.instagram.com/p/BO5rYVElvJq/?hl=en" rel="alternate" hreflang="en" />
<link href="https://www.instagram.com/p/BO5rYVElvJq/?hl=gu" rel="alternate" hreflang="gu" />
<link href="https://www.instagram.com/p/BO5rYVElvJq/?hl=ur" rel="alternate" hreflang="ur" />
<link href="https://www.instagram.com/p/BO5rYVElvJq/?hl=ml" rel="alternate" hreflang="ml" />
<link href="https://www.instagram.com/p/BO5rYVElvJq/?hl=zh-tw" rel="alternate" hreflang="zh-tw" />
<link href="https://www.instagram.com/p/BO5rYVElvJq/?hl=pt-br" rel="alternate" hreflang="pt-br" />
<link href="https://www.instagram.com/p/BO5rYVElvJq/?hl=el" rel="alternate" hreflang="el" />
<link href="https://www.instagram.com/p/BO5rYVElvJq/?hl=sk" rel="alternate" hreflang="sk" />
<link href="https://www.instagram.com/p/BO5rYVElvJq/?hl=fi" rel="alternate" hreflang="fi" />
<link href="https://www.instagram.com/p/BO5rYVElvJq/?hl=bg" rel="alternate" hreflang="bg" />
<link href="https://www.instagram.com/p/BO5rYVElvJq/?hl=sv" rel="alternate" hreflang="sv" />
<link href="https://www.instagram.com/p/BO5rYVElvJq/?hl=ta" rel="alternate" hreflang="ta" />
<link href="https://www.instagram.com/p/BO5rYVElvJq/?hl=de" rel="alternate" hreflang="de" />
<link href="https://www.instagram.com/p/BO5rYVElvJq/?hl=pt" rel="alternate" hreflang="pt" />
<link href="https://www.instagram.com/p/BO5rYVElvJq/?hl=hi" rel="alternate" hreflang="hi" />
<link href="https://www.instagram.com/p/BO5rYVElvJq/?hl=af" rel="alternate" hreflang="af" />
<link href="https://www.instagram.com/p/BO5rYVElvJq/?hl=mr" rel="alternate" hreflang="mr" />
<link href="https://www.instagram.com/p/BO5rYVElvJq/?hl=vi" rel="alternate" hreflang="vi" />
<link href="https://www.instagram.com/p/BO5rYVElvJq/?hl=pl" rel="alternate" hreflang="pl" />
<link href="https://www.instagram.com/p/BO5rYVElvJq/?hl=fr" rel="alternate" hreflang="fr" />
<link href="https://www.instagram.com/p/BO5rYVElvJq/?hl=ms" rel="alternate" hreflang="ms" />
<link href="https://www.instagram.com/p/BO5rYVElvJq/?hl=hu" rel="alternate" hreflang="hu" />
<link href="https://www.instagram.com/p/BO5rYVElvJq/?hl=te" rel="alternate" hreflang="te" />
<link href="https://www.instagram.com/p/BO5rYVElvJq/?hl=ja" rel="alternate" hreflang="ja" />
<link href="https://www.instagram.com/p/BO5rYVElvJq/?hl=bn" rel="alternate" hreflang="bn" />
<link href="https://www.instagram.com/p/BO5rYVElvJq/?hl=tl" rel="alternate" hreflang="tl" />
<link href="https://www.instagram.com/p/BO5rYVElvJq/?hl=th" rel="alternate" hreflang="th" />
<link href="https://www.instagram.com/p/BO5rYVElvJq/?hl=hr" rel="alternate" hreflang="hr" />
<link href="https://www.instagram.com/p/BO5rYVElvJq/?hl=ro" rel="alternate" hreflang="ro" />
<link href="https://www.instagram.com/p/BO5rYVElvJq/?hl=it" rel="alternate" hreflang="it" />
<link href="https://www.instagram.com/p/BO5rYVElvJq/?hl=id" rel="alternate" hreflang="id" />
<link href="https://www.instagram.com/p/BO5rYVElvJq/?hl=tr" rel="alternate" hreflang="tr" />
<link href="https://www.instagram.com/p/BO5rYVElvJq/?hl=zh-cn" rel="alternate" hreflang="zh-cn" />
<link href="https://www.instagram.com/p/BO5rYVElvJq/?hl=cs" rel="alternate" hreflang="cs" />
<link href="https://www.instagram.com/p/BO5rYVElvJq/?hl=da" rel="alternate" hreflang="da" />
<link href="https://www.instagram.com/p/BO5rYVElvJq/?hl=ne" rel="alternate" hreflang="ne" />
<link href="https://www.instagram.com/p/BO5rYVElvJq/?hl=sr" rel="alternate" hreflang="sr" />
<link href="https://www.instagram.com/p/BO5rYVElvJq/?hl=pa" rel="alternate" hreflang="pa" />
<link rel="alternate" href="https://www.instagram.com/p/BO5rYVElvJq/" hreflang="x-default" />
<link rel="alternate" href="https://www.instagram.com/p/BO5rYVElvJq/?hl=en" hreflang="en" />
<link rel="alternate" href="https://www.instagram.com/p/BO5rYVElvJq/?hl=fr" hreflang="fr" />
<link rel="alternate" href="https://www.instagram.com/p/BO5rYVElvJq/?hl=it" hreflang="it" />
<link rel="alternate" href="https://www.instagram.com/p/BO5rYVElvJq/?hl=de" hreflang="de" />
<link rel="alternate" href="https://www.instagram.com/p/BO5rYVElvJq/?hl=es" hreflang="es" />
<link rel="alternate" href="https://www.instagram.com/p/BO5rYVElvJq/?hl=zh-cn" hreflang="zh-cn" />
<link rel="alternate" href="https://www.instagram.com/p/BO5rYVElvJq/?hl=zh-tw" hreflang="zh-tw" />
<link rel="alternate" href="https://www.instagram.com/p/BO5rYVElvJq/?hl=ja" hreflang="ja" />
<link rel="alternate" href="https://www.instagram.com/p/BO5rYVElvJq/?hl=ko" hreflang="ko" />
<link rel="alternate" href="https://www.instagram.com/p/BO5rYVElvJq/?hl=pt" hreflang="pt" />
<link rel="alternate" href="https://www.instagram.com/p/BO5rYVElvJq/?hl=pt-br" hreflang="pt-br" />
<link rel="alternate" href="https://www.instagram.com/p/BO5rYVElvJq/?hl=af" hreflang="af" />
<link rel="alternate" href="https://www.instagram.com/p/BO5rYVElvJq/?hl=cs" hreflang="cs" />
<link rel="alternate" href="https://www.instagram.com/p/BO5rYVElvJq/?hl=da" hreflang="da" />
<link rel="alternate" href="https://www.instagram.com/p/BO5rYVElvJq/?hl=el" hreflang="el" />
<link rel="alternate" href="https://www.instagram.com/p/BO5rYVElvJq/?hl=fi" hreflang="fi" />
<link rel="alternate" href="https://www.instagram.com/p/BO5rYVElvJq/?hl=hr" hreflang="hr" />
<link rel="alternate" href="https://www.instagram.com/p/BO5rYVElvJq/?hl=hu" hreflang="hu" />
<link rel="alternate" href="https://www.instagram.com/p/BO5rYVElvJq/?hl=id" hreflang="id" />
<link rel="alternate" href="https://www.instagram.com/p/BO5rYVElvJq/?hl=ms" hreflang="ms" />
<link rel="alternate" href="https://www.instagram.com/p/BO5rYVElvJq/?hl=nb" hreflang="nb" />
<link rel="alternate" href="https://www.instagram.com/p/BO5rYVElvJq/?hl=nl" hreflang="nl" />
<link rel="alternate" href="https://www.instagram.com/p/BO5rYVElvJq/?hl=pl" hreflang="pl" />
<link rel="alternate" href="https://www.instagram.com/p/BO5rYVElvJq/?hl=ru" hreflang="ru" />
<link rel="alternate" href="https://www.instagram.com/p/BO5rYVElvJq/?hl=sk" hreflang="sk" />
<link rel="alternate" href="https://www.instagram.com/p/BO5rYVElvJq/?hl=sv" hreflang="sv" />
<link rel="alternate" href="https://www.instagram.com/p/BO5rYVElvJq/?hl=th" hreflang="th" />
<link rel="alternate" href="https://www.instagram.com/p/BO5rYVElvJq/?hl=tl" hreflang="tl" />
<link rel="alternate" href="https://www.instagram.com/p/BO5rYVElvJq/?hl=tr" hreflang="tr" />
<link rel="alternate" href="https://www.instagram.com/p/BO5rYVElvJq/?hl=hi" hreflang="hi" />
<link rel="alternate" href="https://www.instagram.com/p/BO5rYVElvJq/?hl=bn" hreflang="bn" />
<link rel="alternate" href="https://www.instagram.com/p/BO5rYVElvJq/?hl=gu" hreflang="gu" />
<link rel="alternate" href="https://www.instagram.com/p/BO5rYVElvJq/?hl=kn" hreflang="kn" />
<link rel="alternate" href="https://www.instagram.com/p/BO5rYVElvJq/?hl=ml" hreflang="ml" />
<link rel="alternate" href="https://www.instagram.com/p/BO5rYVElvJq/?hl=mr" hreflang="mr" />
<link rel="alternate" href="https://www.instagram.com/p/BO5rYVElvJq/?hl=pa" hreflang="pa" />
<link rel="alternate" href="https://www.instagram.com/p/BO5rYVElvJq/?hl=ta" hreflang="ta" />
<link rel="alternate" href="https://www.instagram.com/p/BO5rYVElvJq/?hl=te" hreflang="te" />
<link rel="alternate" href="https://www.instagram.com/p/BO5rYVElvJq/?hl=ne" hreflang="ne" />
<link rel="alternate" href="https://www.instagram.com/p/BO5rYVElvJq/?hl=si" hreflang="si" />
<link rel="alternate" href="https://www.instagram.com/p/BO5rYVElvJq/?hl=ur" hreflang="ur" />
<link rel="alternate" href="https://www.instagram.com/p/BO5rYVElvJq/?hl=vi" hreflang="vi" />
<link rel="alternate" href="https://www.instagram.com/p/BO5rYVElvJq/?hl=bg" hreflang="bg" />
<link rel="alternate" href="https://www.instagram.com/p/BO5rYVElvJq/?hl=fr-ca" hreflang="fr-ca" />
<link rel="alternate" href="https://www.instagram.com/p/BO5rYVElvJq/?hl=ro" hreflang="ro" />
<link rel="alternate" href="https://www.instagram.com/p/BO5rYVElvJq/?hl=sr" hreflang="sr" />
<link rel="alternate" href="https://www.instagram.com/p/BO5rYVElvJq/?hl=uk" hreflang="uk" />
<link rel="alternate" href="https://www.instagram.com/p/BO5rYVElvJq/?hl=zh-hk" hreflang="zh-hk" />
</head>
<body class="">
@ -242,9 +129,9 @@ Instagram
<script type="text/javascript">window._sharedData = {"language_code": "en", "entry_data": {"PostPage": [{"media": {"caption": "Kind of crazy to see the whole year laid out like this. #planning #2017", "comments": {"nodes": [{"created_at": 1483659653.0, "id": "17868623683055933", "user": {"username": "tantek", "id": "2975244", "profile_pic_url": "https://scontent.cdninstagram.com/t51.2885-19/11311201_811488138961840_1691446176_a.jpg"}, "text": "I need to make a newcal.org equivalent poster"}, {"created_at": 1483688285.0, "id": "17846710417150554", "user": {"username": "sammichfelge", "id": "2647364", "profile_pic_url": "https://scontent.cdninstagram.com/t51.2885-19/s150x150/14504841_373291629672785_7220018647970873344_a.jpg"}, "text": "\ud83d\ude0d"}], "count": 2, "page_info": {"has_previous_page": false, "end_cursor": null, "has_next_page": false, "start_cursor": null}}, "usertags": {"nodes": []}, "comments_disabled": false, "display_src": "https://scontent.cdninstagram.com/t51.2885-15/e35/15803256_1832278043695907_4846092951052353536_n.jpg?ig_cache_key=MTQyMTM1Nzk0NTMwNTEwMDkwNg%3D%3D.2", "caption_is_edited": false, "dimensions": {"height": 809, "width": 1080}, "code": "BO5rYVElvJq", "likes": {"nodes": [{"user": {"username": "sammichfelge", "id": "2647364", "profile_pic_url": "https://scontent.cdninstagram.com/t51.2885-19/s150x150/14504841_373291629672785_7220018647970873344_a.jpg"}}, {"user": {"username": "nicowavemountain", "id": "365314953", "profile_pic_url": "https://scontent.cdninstagram.com/t51.2885-19/10683966_694638790612158_1278490263_a.jpg"}}, {"user": {"username": "katdeck", "id": "9677508", "profile_pic_url": "https://scontent.cdninstagram.com/t51.2885-19/s150x150/14515861_213093192465463_1350030331347992576_a.jpg"}}, {"user": {"username": "tyesha", "id": "672143", "profile_pic_url": "https://scontent.cdninstagram.com/t51.2885-19/11244607_1479326915697757_920964813_a.jpg"}}, {"user": {"username": "floridafruitgeek", "id": "2216629212", "profile_pic_url": "https://scontent.cdninstagram.com/t51.2885-19/s150x150/13768338_738264412983359_1289238174_a.jpg"}}, {"user": {"username": "lotto_foto", "id": "1498519271", "profile_pic_url": "https://scontent.cdninstagram.com/t51.2885-19/10661053_764894426909101_582133118_a.jpg"}}, {"user": {"username": "utopiancomplex", "id": "33859694", "profile_pic_url": "https://scontent.cdninstagram.com/t51.2885-19/11821089_896550527059791_776602256_a.jpg"}}, {"user": {"username": "tantek", "id": "2975244", "profile_pic_url": "https://scontent.cdninstagram.com/t51.2885-19/11311201_811488138961840_1691446176_a.jpg"}}, {"user": {"username": "ohcozyworld", "id": "4362367508", "profile_pic_url": "https://scontent.cdninstagram.com/t51.2885-19/s150x150/15802459_361915857497225_6701408704257851392_a.jpg"}}, {"user": {"username": "marisierra_", "id": "12321610", "profile_pic_url": "https://scontent.cdninstagram.com/t51.2885-19/s150x150/13249930_735283263241966_76491781_a.jpg"}}], "count": 13, "viewer_has_liked": false}, "location": null, "id": "1421357945305100906", "owner": {"requested_by_viewer": false, "id": "1500881", "followed_by_viewer": false, "blocked_by_viewer": false, "full_name": "Aaron Parecki", "username": "aaronpk", "profile_pic_url": "https://scontent.cdninstagram.com/t51.2885-19/s150x150/14240576_268350536897085_1129715662_a.jpg", "has_blocked_viewer": false, "is_unpublished": false, "is_private": false}, "date": 1483659092, "is_ad": false, "is_video": false}}]}, "gatekeepers": {}, "show_app_install": true, "qe": {"us": {"p": {"use_continue_text": "false"}, "g": "continue_vs_signup_text_control_03"}, "discovery": {"p": {}, "g": ""}, "gql": {"p": {}, "g": ""}, "br": {"p": {}, "g": ""}, "activity_stories": {"p": {}, "g": ""}, "su_universe": {"p": {}, "g": ""}, "us_li": {"p": {}, "g": ""}, "freq": {"p": {}, "g": ""}, "ebd": {"p": {}, "g": ""}, "feed": {"p": {}, "g": ""}, "profile": {"p": {}, "g": ""}}, "static_root": "//instagramstatic-a.akamaihd.net/h1", "hostname": "www.instagram.com", "display_properties_server_guess": {"viewport_width": 1423, "pixel_ratio": 1.0}, "environment_switcher_visible_server_guess": true, "country_code": "US", "platform": "web", "activity_counts": null, "config": {"viewer": null, "csrf_token": "JLDDjs3ZQuAg8z755OcfndJK6vD206Wz"}};</script>
<script src="//instagramstatic-a.akamaihd.net/h1/bundles/en_US_Commons.js/ad28dd60d42a.js" crossorigin="anonymous" type="text/javascript"></script>
<script src="//instagramstatic-a.akamaihd.net/h1/bundles/en_US_PostPage.js/ab1daa81add9.js" crossorigin="anonymous" type="text/javascript"></script>
<script type="text/javascript">window._sharedData = {"activity_counts": null, "config": {"csrf_token": "GSlFDLML2YaoyoCzTJVvJb990ODK6kh9", "viewer": null}, "country_code": "US", "language_code": "en", "entry_data": {"PostPage": [{"graphql": {"shortcode_media": {"__typename": "GraphImage", "id": "1421357945305100906", "shortcode": "BO5rYVElvJq", "dimensions": {"height": 809, "width": 1080}, "display_url": "https://instagram.fsjc1-3.fna.fbcdn.net/t51.2885-15/e35/15803256_1832278043695907_4846092951052353536_n.jpg", "is_video": false, "edge_media_to_tagged_user": {"edges": []}, "edge_media_to_caption": {"edges": [{"node": {"text": "Kind of crazy to see the whole year laid out like this. #planning #2017"}}]}, "caption_is_edited": false, "edge_media_to_comment": {"count": 2, "page_info": {"has_next_page": false, "end_cursor": null}, "edges": [{"node": {"id": "17868623683055933", "text": "I need to make a newcal.org equivalent poster", "created_at": 1483659653, "owner": {"id": "2975244", "profile_pic_url": "https://instagram.fsjc1-3.fna.fbcdn.net/t51.2885-19/s150x150/17596580_982201161916473_4160810784168869888_a.jpg", "username": "tantek"}}}, {"node": {"id": "17846710417150554", "text": "\ud83d\ude0d", "created_at": 1483688285, "owner": {"id": "2647364", "profile_pic_url": "https://instagram.fsjc1-3.fna.fbcdn.net/t51.2885-19/s150x150/17077426_152028935316497_4863272429394329600_a.jpg", "username": "sammichfelge"}}}]}, "comments_disabled": false, "taken_at_timestamp": 1483659092, "edge_media_preview_like": {"count": 13, "edges": [{"node": {"id": "2647364", "profile_pic_url": "https://instagram.fsjc1-3.fna.fbcdn.net/t51.2885-19/s150x150/17077426_152028935316497_4863272429394329600_a.jpg", "username": "sammichfelge"}}, {"node": {"id": "365314953", "profile_pic_url": "https://instagram.fsjc1-3.fna.fbcdn.net/t51.2885-19/10683966_694638790612158_1278490263_a.jpg", "username": "nicowavemountain"}}, {"node": {"id": "9677508", "profile_pic_url": "https://instagram.fsjc1-3.fna.fbcdn.net/t51.2885-19/s150x150/14515861_213093192465463_1350030331347992576_a.jpg", "username": "katdeck"}}, {"node": {"id": "672143", "profile_pic_url": "https://instagram.fsjc1-3.fna.fbcdn.net/t51.2885-19/11244607_1479326915697757_920964813_a.jpg", "username": "tyesha"}}, {"node": {"id": "2216629212", "profile_pic_url": "https://instagram.fsjc1-3.fna.fbcdn.net/t51.2885-19/s150x150/17661983_1906332052979452_7991618383214804992_a.jpg", "username": "floridafruitgeek"}}, {"node": {"id": "1498519271", "profile_pic_url": "https://instagram.fsjc1-3.fna.fbcdn.net/t51.2885-19/10661053_764894426909101_582133118_a.jpg", "username": "lotto_foto"}}, {"node": {"id": "33859694", "profile_pic_url": "https://instagram.fsjc1-3.fna.fbcdn.net/t51.2885-19/11821089_896550527059791_776602256_a.jpg", "username": "utopiancomplex"}}, {"node": {"id": "2975244", "profile_pic_url": "https://instagram.fsjc1-3.fna.fbcdn.net/t51.2885-19/s150x150/17596580_982201161916473_4160810784168869888_a.jpg", "username": "tantek"}}, {"node": {"id": "4362367508", "profile_pic_url": "https://instagram.fsjc1-3.fna.fbcdn.net/t51.2885-19/s150x150/16230442_245748295882736_4762100888439357440_a.jpg", "username": "ohcozyworld"}}, {"node": {"id": "12321610", "profile_pic_url": "https://instagram.fsjc1-3.fna.fbcdn.net/t51.2885-19/s150x150/13249930_735283263241966_76491781_a.jpg", "username": "marisierra_"}}]}, "edge_media_to_sponsor_user": {"edges": []}, "location": null, "viewer_has_liked": false, "owner": {"id": "1500881", "profile_pic_url": "https://instagram.fsjc1-3.fna.fbcdn.net/t51.2885-19/s150x150/14240576_268350536897085_1129715662_a.jpg", "username": "aaronpk", "followed_by_viewer": false, "full_name": "Aaron Parecki", "is_private": false, "requested_by_viewer": false, "is_unpublished": false, "blocked_by_viewer": false, "has_blocked_viewer": false}, "is_ad": false, "edge_web_media_to_related_media": {"edges": []}}}}]}, "gatekeepers": {"bn": true, "ld": true, "pl": true}, "qe": {"ebd": {"g": "", "p": {}}, "create": {"g": "", "p": {}}, "disc": {"g": "", "p": {}}, "feed": {"g": "", "p": {}}, "gql": {"g": "", "p": {}}, "su_universe": {"g": "", "p": {}}, "us": {"g": "", "p": {}}, "us_li": {"g": "", "p": {}}, "nav": {"g": "", "p": {}}, "nav_lo": {"g": "", "p": {}}, "poe": {"g": "try_email_and_phone_login_test_with_text_05", "p": {"show_phone_or_email_text": "true", "try_email_and_phone_login": "true"}}, "pm": {"g": "", "p": {}}, "profile": {"g": "", "p": {}}, "deact": {"g": "", "p": {}}, "sidecar": {"g": "", "p": {}}, "ufi": {"g": "", "p": {}}, "ufi_loggedout": {"g": "", "p": {}}, "video": {"g": "", "p": {}}}, "hostname": "www.instagram.com", "display_properties_server_guess": {"pixel_ratio": 1.0, "viewport_width": 1222}, "environment_switcher_visible_server_guess": true, "platform": "web", "show_app_install": true};</script>
<script type="text/javascript" src="/static/bundles/en_US_Commons.js/1bebd02a1bc2.js" crossorigin="anonymous"></script>
<script type="text/javascript" src="/static/bundles/en_US_PostPage.js/6bdabcd53d11.js" crossorigin="anonymous"></script>
<script>
!function(f,b,e,v,n,t,s){if(f.fbq)return;n=f.fbq=function(){n.callMethod?

+ 64
- 177
tests/data/www.instagram.com/photo_with_person_tag.html View File

@ -16,123 +16,10 @@ Connection: keep-alive
Instagram
</title>
<script type="text/javascript">
WebFontConfig = {
custom: {
families: ['proxima-nova:n3,n4,n6,n7'],
}
};
</script>
<script src="//instagramstatic-a.akamaihd.net/h1/scripts/webfont.js/c0456c81549b.js" async type="text/javascript"></script>
<style type="text/css">
/* @license
* MyFonts Webfont Build ID 2164953, 2012-03-23T23:06:30-0400
*
* The fonts listed in this notice are subject to the End User License
* Agreement(s) entered into by the website owner. All other parties are
* explicitly restricted from using the Licensed Webfonts(s).
*
* You may obtain a valid license at the URLs below.
*
*
* Webfont: Proxima Nova Light by Mark Simonson
* URL: http://www.myfonts.com/fonts/marksimonson/proxima-nova/light/
* Licensed pageviews: unlimited
*
* Webfont: Proxima Nova Regular by Mark Simonson
* URL: http://www.myfonts.com/fonts/marksimonson/proxima-nova/regular/
* Licensed pageviews: unlimited
*
* Webfont: Proxima Nova Semibold by Mark Simonson
* URL: http://www.myfonts.com/fonts/marksimonson/proxima-nova/semibold/
* Licensed pageviews: unlimited
*
* Webfont: Proxima Nova Bold Italic by Mark Simonson
* URL: http://www.myfonts.com/fonts/marksimonson/proxima-nova/bold-it/
* Licensed pageviews: unlimited
*
* Webfont: Proxima Nova Bold by Mark Simonson
* URL: http://www.myfonts.com/fonts/marksimonson/proxima-nova/bold/
* Licensed pageviews: unlimited
*
* Webfont: Proxima Nova Italic by Mark Simonson
* URL: http://www.myfonts.com/fonts/marksimonson/proxima-nova/regular-it/
* Licensed pageviews: unlimited
*
*
* License: http://www.myfonts.com/viewlicense?type=web&buildid=2164953
* Webfonts copyright: Copyright (c) Mark Simonson, 2005. All rights reserved.
*
* (c) 2012 Bitstream Inc
*/
@font-face {
font-family: 'proxima-nova';
src: url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-bold-webfont.eot/115b1f7f9c04.eot');
src: url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-bold-webfont.eot/115b1f7f9c04.eot?#iefix') format("embedded-opentype"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-bold-webfont.woff/618250d25a4d.woff') format("woff"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-bold-webfont.ttf/646346e03084.ttf') format("truetype"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-bold-webfont.svg/e55a9d6051e8.svg#ProximaNovaBold') format("svg");
font-weight: bold;
font-style: normal; }
@font-face {
font-family: 'proxima-nova';
src: url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-boldit-webfont.eot/1cbb869da891.eot');
src: url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-boldit-webfont.eot/1cbb869da891.eot?#iefix') format("embedded-opentype"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-boldit-webfont.woff/b1cf049474c9.woff') format("woff"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-boldit-webfont.ttf/3adb020ceae3.ttf') format("truetype"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-boldit-webfont.svg/29948a2d3c58.svg#ProximaNovaBoldItalic') format("svg");
font-weight: bold;
font-style: italic; }
@font-face {
font-family: 'proxima-nova';
src: url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-reg-webfont.eot/12af77715cee.eot');
src: url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-reg-webfont.eot/12af77715cee.eot?#iefix') format("embedded-opentype"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-reg-webfont.woff/a9a9773b8e29.woff') format("woff"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-reg-webfont.ttf/99e19808976a.ttf') format("truetype"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-reg-webfont.svg/c33d2fd56309.svg#ProximaNovaRegular') format("svg");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: 'proxima-nova';
src: url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-regit-webfont.eot/1bbbd1312b0d.eot');
src: url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-regit-webfont.eot/1bbbd1312b0d.eot?#iefix') format("embedded-opentype"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-regit-webfont.woff/9e306befca91.woff') format("woff"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-regit-webfont.ttf/4a8663684135.ttf') format("truetype"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-regit-webfont.svg/876278d4b189.svg#ProximaNovaRegularItalic') format("svg");
font-weight: normal;
font-style: italic; }
@font-face {
font-family: 'proxima-nova';
src: url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-sbold-webfont.eot/5016edf79e1d.eot');
src: url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-sbold-webfont.eot/5016edf79e1d.eot?#iefix') format("embedded-opentype"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-sbold-webfont.woff/615c1b06d8fa.woff') format("woff"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-sbold-webfont.ttf/2973bd483f7a.ttf') format("truetype"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-sbold-webfont.svg/868597833e49.svg#ProximaNovaSemibold') format("svg");
font-weight: 600;
font-style: normal; }
</style>
<style type="text/css">
@font-face {
font-family: 'proxima-nova';
src: url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-light-webfont.eot/63c84728610f.eot');
src: url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-light-webfont.eot/63c84728610f.eot?#iefix') format("embedded-opentype"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-light-webfont.woff/66bbe029f180.woff') format("woff"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-light-webfont.ttf/eb408516399b.ttf') format("truetype"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-light-webfont.svg/858f6a9b7ef3.svg#ProximaNovaLight') format("svg");
font-weight: 300;
font-style: normal; }
</style>
<meta name="robots" content="noimageindex">
<meta name="mobile-web-app-capable" content="yes">
<meta name="theme-color" content="#000000">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta id="viewport" name="viewport" content="width=device-width, user-scalable=no, initial-scale=1, minimum-scale=1, maximum-scale=1">
@ -148,25 +35,25 @@ Instagram
</script>
<script type="text/javascript">window._timings = {"domLoading": Date.now()}</script>
<link rel="apple-touch-icon-precomposed" sizes="76x76" href="//instagramstatic-a.akamaihd.net/h1/images/ico/apple-touch-icon-76x76-precomposed.png/932e4d9af891.png">
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="//instagramstatic-a.akamaihd.net/h1/images/ico/apple-touch-icon-120x120-precomposed.png/004705c9353f.png">
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="//instagramstatic-a.akamaihd.net/h1/images/ico/apple-touch-icon-152x152-precomposed.png/82467bc9bcce.png">
<link rel="apple-touch-icon-precomposed" sizes="167x167" href="//instagramstatic-a.akamaihd.net/h1/images/ico/apple-touch-icon-167x167-precomposed.png/515cb4eeeeee.png">
<link rel="apple-touch-icon-precomposed" sizes="180x180" href="//instagramstatic-a.akamaihd.net/h1/images/ico/apple-touch-icon-180x180-precomposed.png/94fd767f257b.png">
<link rel="icon" sizes="192x192" href="//instagramstatic-a.akamaihd.net/h1/images/ico/favicon-192.png/b407fa101800.png">
<link rel="apple-touch-icon-precomposed" sizes="76x76" href="/static/images/ico/apple-touch-icon-76x76-precomposed.png/932e4d9af891.png">
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="/static/images/ico/apple-touch-icon-120x120-precomposed.png/004705c9353f.png">
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="/static/images/ico/apple-touch-icon-152x152-precomposed.png/82467bc9bcce.png">
<link rel="apple-touch-icon-precomposed" sizes="167x167" href="/static/images/ico/apple-touch-icon-167x167-precomposed.png/515cb4eeeeee.png">
<link rel="apple-touch-icon-precomposed" sizes="180x180" href="/static/images/ico/apple-touch-icon-180x180-precomposed.png/94fd767f257b.png">
<link rel="icon" sizes="192x192" href="/static/images/ico/favicon-192.png/b407fa101800.png">
<link rel="mask-icon" href="//instagramstatic-a.akamaihd.net/h1/images/ico/favicon.svg/9d8680ab8a3c.svg" color="#262626"><link rel="shortcut icon" type="image/x-icon" href="//instagramstatic-a.akamaihd.net/h1/images/ico/favicon.ico/dfa85bb1fd63.ico">
<link rel="mask-icon" href="/static/images/ico/favicon.svg/9d8680ab8a3c.svg" color="#262626"><link rel="shortcut icon" type="image/x-icon" href="/static/images/ico/favicon.ico/dfa85bb1fd63.ico">
<link rel="canonical" href="https://www.instagram.com/p/BNfqVfVlmkj/" />
<meta name="description" content="See this Instagram photo by @aaronpk • 8 likes" />
<meta content="7 Likes, 1 Comments - Aaron Parecki (@aaronpk) on Instagram: “Streaming the #kmikeym shareholder meeting!”" name="description" />
<meta property="og:site_name" content="Instagram" />
<meta property="og:title" content="Instagram photo by Aaron Parecki • Dec 2, 2016 at 12:30am UTC" />
<meta property="og:image" content="https://scontent.cdninstagram.com/t51.2885-15/e35/15306530_797555713747689_6958612945332862976_n.jpg?ig_cache_key=MTM5NjAyMDYwNDIxODc5NjMyMw%3D%3D.2" />
<meta property="og:description" content="See this Instagram photo by @aaronpk • 8 likes" />
<meta property="og:title" content="Instagram post by Aaron Parecki • Dec 2, 2016 at 12:30am UTC" />
<meta property="og:image" content="https://instagram.fsjc1-3.fna.fbcdn.net/t51.2885-15/e35/15306530_797555713747689_6958612945332862976_n.jpg" />
<meta property="og:description" content="7 Likes, 1 Comments - Aaron Parecki (@aaronpk) on Instagram: “Streaming the #kmikeym shareholder meeting!”" />
<meta property="fb:app_id" content="124024574287414" />
<meta property="og:url" content="https://www.instagram.com/p/BNfqVfVlmkj/" />
<meta property="instapp:owner_user_id" content="1500881" />
@ -183,55 +70,55 @@ Instagram
<link rel="alternate" href="android-app://com.instagram.android/https/instagram.com/p/BNfqVfVlmkj/" />
<link hreflang="x-default" href="https://www.instagram.com/p/BNfqVfVlmkj/" rel="alternate" />
<link hreflang="bg" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=bg" rel="alternate" />
<link hreflang="af" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=af" rel="alternate" />
<link hreflang="es" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=es" rel="alternate" />
<link hreflang="si" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=si" rel="alternate" />
<link hreflang="th" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=th" rel="alternate" />
<link hreflang="de" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=de" rel="alternate" />
<link hreflang="te" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=te" rel="alternate" />
<link hreflang="el" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=el" rel="alternate" />
<link hreflang="pl" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=pl" rel="alternate" />
<link hreflang="ja" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=ja" rel="alternate" />
<link hreflang="hi" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=hi" rel="alternate" />
<link hreflang="it" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=it" rel="alternate" />
<link hreflang="zh-hk" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=zh-hk" rel="alternate" />
<link hreflang="nl" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=nl" rel="alternate" />
<link hreflang="fi" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=fi" rel="alternate" />
<link hreflang="sk" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=sk" rel="alternate" />
<link hreflang="ms" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=ms" rel="alternate" />
<link hreflang="ru" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=ru" rel="alternate" />
<link hreflang="kn" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=kn" rel="alternate" />
<link hreflang="cs" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=cs" rel="alternate" />
<link hreflang="hu" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=hu" rel="alternate" />
<link hreflang="sv" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=sv" rel="alternate" />
<link hreflang="id" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=id" rel="alternate" />
<link hreflang="zh-cn" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=zh-cn" rel="alternate" />
<link hreflang="en" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=en" rel="alternate" />
<link hreflang="fr-ca" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=fr-ca" rel="alternate" />
<link hreflang="ne" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=ne" rel="alternate" />
<link hreflang="pa" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=pa" rel="alternate" />
<link hreflang="ml" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=ml" rel="alternate" />
<link hreflang="bn" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=bn" rel="alternate" />
<link hreflang="nb" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=nb" rel="alternate" />
<link hreflang="tr" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=tr" rel="alternate" />
<link hreflang="fr" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=fr" rel="alternate" />
<link hreflang="pt-br" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=pt-br" rel="alternate" />
<link hreflang="hr" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=hr" rel="alternate" />
<link hreflang="ta" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=ta" rel="alternate" />
<link hreflang="ko" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=ko" rel="alternate" />
<link hreflang="gu" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=gu" rel="alternate" />
<link hreflang="da" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=da" rel="alternate" />
<link hreflang="sr" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=sr" rel="alternate" />
<link hreflang="vi" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=vi" rel="alternate" />
<link hreflang="mr" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=mr" rel="alternate" />
<link hreflang="ro" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=ro" rel="alternate" />
<link hreflang="uk" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=uk" rel="alternate" />
<link hreflang="zh-tw" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=zh-tw" rel="alternate" />
<link hreflang="pt" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=pt" rel="alternate" />
<link hreflang="tl" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=tl" rel="alternate" />
<link hreflang="ur" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=ur" rel="alternate" />
<link rel="alternate" href="https://www.instagram.com/p/BNfqVfVlmkj/" hreflang="x-default" />
<link rel="alternate" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=en" hreflang="en" />
<link rel="alternate" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=fr" hreflang="fr" />
<link rel="alternate" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=it" hreflang="it" />
<link rel="alternate" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=de" hreflang="de" />
<link rel="alternate" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=es" hreflang="es" />
<link rel="alternate" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=zh-cn" hreflang="zh-cn" />
<link rel="alternate" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=zh-tw" hreflang="zh-tw" />
<link rel="alternate" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=ja" hreflang="ja" />
<link rel="alternate" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=ko" hreflang="ko" />
<link rel="alternate" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=pt" hreflang="pt" />
<link rel="alternate" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=pt-br" hreflang="pt-br" />
<link rel="alternate" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=af" hreflang="af" />
<link rel="alternate" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=cs" hreflang="cs" />
<link rel="alternate" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=da" hreflang="da" />
<link rel="alternate" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=el" hreflang="el" />
<link rel="alternate" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=fi" hreflang="fi" />
<link rel="alternate" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=hr" hreflang="hr" />
<link rel="alternate" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=hu" hreflang="hu" />
<link rel="alternate" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=id" hreflang="id" />
<link rel="alternate" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=ms" hreflang="ms" />
<link rel="alternate" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=nb" hreflang="nb" />
<link rel="alternate" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=nl" hreflang="nl" />
<link rel="alternate" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=pl" hreflang="pl" />
<link rel="alternate" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=ru" hreflang="ru" />
<link rel="alternate" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=sk" hreflang="sk" />
<link rel="alternate" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=sv" hreflang="sv" />
<link rel="alternate" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=th" hreflang="th" />
<link rel="alternate" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=tl" hreflang="tl" />
<link rel="alternate" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=tr" hreflang="tr" />
<link rel="alternate" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=hi" hreflang="hi" />
<link rel="alternate" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=bn" hreflang="bn" />
<link rel="alternate" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=gu" hreflang="gu" />
<link rel="alternate" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=kn" hreflang="kn" />
<link rel="alternate" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=ml" hreflang="ml" />
<link rel="alternate" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=mr" hreflang="mr" />
<link rel="alternate" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=pa" hreflang="pa" />
<link rel="alternate" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=ta" hreflang="ta" />
<link rel="alternate" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=te" hreflang="te" />
<link rel="alternate" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=ne" hreflang="ne" />
<link rel="alternate" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=si" hreflang="si" />
<link rel="alternate" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=ur" hreflang="ur" />
<link rel="alternate" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=vi" hreflang="vi" />
<link rel="alternate" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=bg" hreflang="bg" />
<link rel="alternate" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=fr-ca" hreflang="fr-ca" />
<link rel="alternate" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=ro" hreflang="ro" />
<link rel="alternate" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=sr" hreflang="sr" />
<link rel="alternate" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=uk" hreflang="uk" />
<link rel="alternate" href="https://www.instagram.com/p/BNfqVfVlmkj/?hl=zh-hk" hreflang="zh-hk" />
</head>
<body class="">
@ -242,9 +129,9 @@ Instagram
<script type="text/javascript">window._sharedData = {"country_code": "US", "display_properties_server_guess": {"viewport_width": 1423, "pixel_ratio": 1.0}, "show_app_install": true, "environment_switcher_visible_server_guess": true, "static_root": "//instagramstatic-a.akamaihd.net/h1", "activity_counts": null, "config": {"viewer": null, "csrf_token": "JLDDjs3ZQuAg8z755OcfndJK6vD206Wz"}, "language_code": "en", "hostname": "www.instagram.com", "qe": {"gql": {"p": {}, "g": ""}, "feed": {"p": {}, "g": ""}, "su_universe": {"p": {}, "g": ""}, "ebd": {"p": {}, "g": ""}, "br": {"p": {}, "g": ""}, "discovery": {"p": {}, "g": ""}, "us_li": {"p": {}, "g": ""}, "us": {"p": {"use_continue_text": "false"}, "g": "continue_vs_signup_text_control_03"}, "freq": {"p": {}, "g": ""}, "activity_stories": {"p": {}, "g": ""}, "profile": {"p": {}, "g": ""}}, "platform": "web", "gatekeepers": {}, "entry_data": {"PostPage": [{"media": {"dimensions": {"width": 1080, "height": 809}, "caption_is_edited": false, "location": null, "is_video": false, "usertags": {"nodes": [{"x": 0.588, "user": {"username": "kmikeym"}, "y": 0.3221755253399258}]}, "comments": {"count": 0, "nodes": [], "page_info": {"end_cursor": null, "has_next_page": false, "has_previous_page": false, "start_cursor": null}}, "likes": {"count": 8, "nodes": [{"user": {"username": "adron", "id": "22913067", "profile_pic_url": "https://scontent.cdninstagram.com/t51.2885-19/11184435_499678936846282_1189326132_a.jpg"}}, {"user": {"username": "airbnbpets", "id": "2298056172", "profile_pic_url": "https://scontent.cdninstagram.com/t51.2885-19/s150x150/12479499_975617275825114_893714337_a.jpg"}}, {"user": {"username": "chuddy_gis", "id": "1107164297", "profile_pic_url": "https://scontent.cdninstagram.com/t51.2885-19/s150x150/13398587_580416648796655_1658848717_a.jpg"}}, {"user": {"username": "kmikeym", "id": "1538723", "profile_pic_url": "https://scontent.cdninstagram.com/t51.2885-19/s150x150/12627953_686238411518831_1544976311_a.jpg"}}, {"user": {"username": "mbijon", "id": "288900753", "profile_pic_url": "https://scontent.cdninstagram.com/t51.2885-19/s150x150/15538351_1179332335485104_9077554250728341504_a.jpg"}}, {"user": {"username": "marky.jackson", "id": "4172246144", "profile_pic_url": "https://scontent.cdninstagram.com/t51.2885-19/s150x150/15099585_344413402603108_8308164362057547776_a.jpg"}}, {"user": {"username": "springsandwire", "id": "5659134", "profile_pic_url": "https://scontent.cdninstagram.com/t51.2885-19/s150x150/14278925_261672440893397_4512501879099359232_a.jpg"}}, {"user": {"username": "marcusestes", "id": "1106053", "profile_pic_url": "https://scontent.cdninstagram.com/t51.2885-19/11421941_1475902606053570_1957200355_a.jpg"}}], "viewer_has_liked": false}, "owner": {"username": "aaronpk", "id": "1500881", "profile_pic_url": "https://scontent.cdninstagram.com/t51.2885-19/s150x150/14240576_268350536897085_1129715662_a.jpg", "is_private": false, "followed_by_viewer": false, "requested_by_viewer": false, "blocked_by_viewer": false, "is_unpublished": false, "full_name": "Aaron Parecki", "has_blocked_viewer": false}, "display_src": "https://scontent.cdninstagram.com/t51.2885-15/e35/15306530_797555713747689_6958612945332862976_n.jpg?ig_cache_key=MTM5NjAyMDYwNDIxODc5NjMyMw%3D%3D.2", "id": "1396020604218796323", "is_ad": false, "date": 1480638646, "caption": "Streaming the #kmikeym shareholder meeting!", "code": "BNfqVfVlmkj", "comments_disabled": false}}]}};</script>
<script src="//instagramstatic-a.akamaihd.net/h1/bundles/en_US_Commons.js/ad28dd60d42a.js" crossorigin="anonymous" type="text/javascript"></script>
<script src="//instagramstatic-a.akamaihd.net/h1/bundles/en_US_PostPage.js/ab1daa81add9.js" crossorigin="anonymous" type="text/javascript"></script>
<script type="text/javascript">window._sharedData = {"activity_counts": null, "config": {"csrf_token": "GSlFDLML2YaoyoCzTJVvJb990ODK6kh9", "viewer": null}, "country_code": "US", "language_code": "en", "entry_data": {"PostPage": [{"graphql": {"shortcode_media": {"__typename": "GraphImage", "id": "1396020604218796323", "shortcode": "BNfqVfVlmkj", "dimensions": {"height": 809, "width": 1080}, "display_url": "https://instagram.fsjc1-3.fna.fbcdn.net/t51.2885-15/e35/15306530_797555713747689_6958612945332862976_n.jpg", "is_video": false, "edge_media_to_tagged_user": {"edges": [{"node": {"user": {"username": "kmikeym"}, "x": 0.588, "y": 0.3221755253399258}}]}, "edge_media_to_caption": {"edges": [{"node": {"text": "Streaming the #kmikeym shareholder meeting!"}}]}, "caption_is_edited": false, "edge_media_to_comment": {"count": 0, "page_info": {"has_next_page": false, "end_cursor": null}, "edges": []}, "comments_disabled": false, "taken_at_timestamp": 1480638646, "edge_media_preview_like": {"count": 7, "edges": [{"node": {"id": "22913067", "profile_pic_url": "https://instagram.fsjc1-3.fna.fbcdn.net/t51.2885-19/11184435_499678936846282_1189326132_a.jpg", "username": "adron"}}, {"node": {"id": "2298056172", "profile_pic_url": "https://instagram.fsjc1-3.fna.fbcdn.net/t51.2885-19/s150x150/12479499_975617275825114_893714337_a.jpg", "username": "airbnbpets"}}, {"node": {"id": "1107164297", "profile_pic_url": "https://instagram.fsjc1-3.fna.fbcdn.net/t51.2885-19/s150x150/13398587_580416648796655_1658848717_a.jpg", "username": "chuddy_gis"}}, {"node": {"id": "1538723", "profile_pic_url": "https://instagram.fsjc1-3.fna.fbcdn.net/t51.2885-19/s150x150/12627953_686238411518831_1544976311_a.jpg", "username": "kmikeym"}}, {"node": {"id": "288900753", "profile_pic_url": "https://instagram.fsjc1-3.fna.fbcdn.net/t51.2885-19/s150x150/15538351_1179332335485104_9077554250728341504_a.jpg", "username": "mbijon"}}, {"node": {"id": "5659134", "profile_pic_url": "https://instagram.fsjc1-3.fna.fbcdn.net/t51.2885-19/s150x150/14278925_261672440893397_4512501879099359232_a.jpg", "username": "springsandwire"}}, {"node": {"id": "1106053", "profile_pic_url": "https://instagram.fsjc1-3.fna.fbcdn.net/t51.2885-19/11421941_1475902606053570_1957200355_a.jpg", "username": "marcusestes"}}]}, "edge_media_to_sponsor_user": {"edges": []}, "location": null, "viewer_has_liked": false, "owner": {"id": "1500881", "profile_pic_url": "https://instagram.fsjc1-3.fna.fbcdn.net/t51.2885-19/s150x150/14240576_268350536897085_1129715662_a.jpg", "username": "aaronpk", "followed_by_viewer": false, "full_name": "Aaron Parecki", "is_private": false, "requested_by_viewer": false, "is_unpublished": false, "blocked_by_viewer": false, "has_blocked_viewer": false}, "is_ad": false, "edge_web_media_to_related_media": {"edges": []}}}}]}, "gatekeepers": {"bn": true, "ld": true, "pl": true}, "qe": {"ebd": {"g": "", "p": {}}, "create": {"g": "", "p": {}}, "disc": {"g": "", "p": {}}, "feed": {"g": "", "p": {}}, "gql": {"g": "", "p": {}}, "su_universe": {"g": "", "p": {}}, "us": {"g": "", "p": {}}, "us_li": {"g": "", "p": {}}, "nav": {"g": "", "p": {}}, "nav_lo": {"g": "", "p": {}}, "poe": {"g": "try_email_and_phone_login_test_with_text_05", "p": {"show_phone_or_email_text": "true", "try_email_and_phone_login": "true"}}, "pm": {"g": "", "p": {}}, "profile": {"g": "", "p": {}}, "deact": {"g": "", "p": {}}, "sidecar": {"g": "", "p": {}}, "ufi": {"g": "", "p": {}}, "ufi_loggedout": {"g": "", "p": {}}, "video": {"g": "", "p": {}}}, "hostname": "www.instagram.com", "display_properties_server_guess": {"pixel_ratio": 1.0, "viewport_width": 1222}, "environment_switcher_visible_server_guess": true, "platform": "web", "show_app_install": true};</script>
<script type="text/javascript" src="/static/bundles/en_US_Commons.js/1bebd02a1bc2.js" crossorigin="anonymous"></script>
<script type="text/javascript" src="/static/bundles/en_US_PostPage.js/6bdabcd53d11.js" crossorigin="anonymous"></script>
<script>
!function(f,b,e,v,n,t,s){if(f.fbq)return;n=f.fbq=function(){n.callMethod?

+ 66
- 178
tests/data/www.instagram.com/photo_with_venue.html View File

@ -3,6 +3,7 @@ Server: Apache
Date: Wed, 09 Dec 2015 03:29:14 GMT
Content-Type: text/html; charset=utf-8
Connection: keep-alive
Original-URL: https://www.instagram.com/p/BN3Z5salSys/
<!DOCTYPE html>
<!--[if lt IE 7]> <html lang="en" class="no-js lt-ie9 lt-ie8 lt-ie7 not-logged-in "> <![endif]-->
@ -16,123 +17,10 @@ Connection: keep-alive
Instagram
</title>
<script type="text/javascript">
WebFontConfig = {
custom: {
families: ['proxima-nova:n3,n4,n6,n7'],
}
};
</script>
<script type="text/javascript" async src="//instagramstatic-a.akamaihd.net/h1/scripts/webfont.js/c0456c81549b.js"></script>
<style type="text/css">
/* @license
* MyFonts Webfont Build ID 2164953, 2012-03-23T23:06:30-0400
*
* The fonts listed in this notice are subject to the End User License
* Agreement(s) entered into by the website owner. All other parties are
* explicitly restricted from using the Licensed Webfonts(s).
*
* You may obtain a valid license at the URLs below.
*
*
* Webfont: Proxima Nova Light by Mark Simonson
* URL: http://www.myfonts.com/fonts/marksimonson/proxima-nova/light/
* Licensed pageviews: unlimited
*
* Webfont: Proxima Nova Regular by Mark Simonson
* URL: http://www.myfonts.com/fonts/marksimonson/proxima-nova/regular/
* Licensed pageviews: unlimited
*
* Webfont: Proxima Nova Semibold by Mark Simonson
* URL: http://www.myfonts.com/fonts/marksimonson/proxima-nova/semibold/
* Licensed pageviews: unlimited
*
* Webfont: Proxima Nova Bold Italic by Mark Simonson
* URL: http://www.myfonts.com/fonts/marksimonson/proxima-nova/bold-it/
* Licensed pageviews: unlimited
*
* Webfont: Proxima Nova Bold by Mark Simonson
* URL: http://www.myfonts.com/fonts/marksimonson/proxima-nova/bold/
* Licensed pageviews: unlimited
*
* Webfont: Proxima Nova Italic by Mark Simonson
* URL: http://www.myfonts.com/fonts/marksimonson/proxima-nova/regular-it/
* Licensed pageviews: unlimited
*
*
* License: http://www.myfonts.com/viewlicense?type=web&buildid=2164953
* Webfonts copyright: Copyright (c) Mark Simonson, 2005. All rights reserved.
*
* (c) 2012 Bitstream Inc
*/
@font-face {
font-family: 'proxima-nova';
src: url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-bold-webfont.eot/115b1f7f9c04.eot');
src: url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-bold-webfont.eot/115b1f7f9c04.eot?#iefix') format("embedded-opentype"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-bold-webfont.woff/618250d25a4d.woff') format("woff"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-bold-webfont.ttf/646346e03084.ttf') format("truetype"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-bold-webfont.svg/e55a9d6051e8.svg#ProximaNovaBold') format("svg");
font-weight: bold;
font-style: normal; }
@font-face {
font-family: 'proxima-nova';
src: url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-boldit-webfont.eot/1cbb869da891.eot');
src: url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-boldit-webfont.eot/1cbb869da891.eot?#iefix') format("embedded-opentype"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-boldit-webfont.woff/b1cf049474c9.woff') format("woff"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-boldit-webfont.ttf/3adb020ceae3.ttf') format("truetype"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-boldit-webfont.svg/29948a2d3c58.svg#ProximaNovaBoldItalic') format("svg");
font-weight: bold;
font-style: italic; }
@font-face {
font-family: 'proxima-nova';
src: url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-reg-webfont.eot/12af77715cee.eot');
src: url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-reg-webfont.eot/12af77715cee.eot?#iefix') format("embedded-opentype"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-reg-webfont.woff/a9a9773b8e29.woff') format("woff"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-reg-webfont.ttf/99e19808976a.ttf') format("truetype"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-reg-webfont.svg/c33d2fd56309.svg#ProximaNovaRegular') format("svg");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: 'proxima-nova';
src: url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-regit-webfont.eot/1bbbd1312b0d.eot');
src: url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-regit-webfont.eot/1bbbd1312b0d.eot?#iefix') format("embedded-opentype"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-regit-webfont.woff/9e306befca91.woff') format("woff"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-regit-webfont.ttf/4a8663684135.ttf') format("truetype"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-regit-webfont.svg/876278d4b189.svg#ProximaNovaRegularItalic') format("svg");
font-weight: normal;
font-style: italic; }
@font-face {
font-family: 'proxima-nova';
src: url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-sbold-webfont.eot/5016edf79e1d.eot');
src: url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-sbold-webfont.eot/5016edf79e1d.eot?#iefix') format("embedded-opentype"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-sbold-webfont.woff/615c1b06d8fa.woff') format("woff"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-sbold-webfont.ttf/2973bd483f7a.ttf') format("truetype"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-sbold-webfont.svg/868597833e49.svg#ProximaNovaSemibold') format("svg");
font-weight: 600;
font-style: normal; }
</style>
<style type="text/css">
@font-face {
font-family: 'proxima-nova';
src: url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-light-webfont.eot/63c84728610f.eot');
src: url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-light-webfont.eot/63c84728610f.eot?#iefix') format("embedded-opentype"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-light-webfont.woff/66bbe029f180.woff') format("woff"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-light-webfont.ttf/eb408516399b.ttf') format("truetype"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-light-webfont.svg/858f6a9b7ef3.svg#ProximaNovaLight') format("svg");
font-weight: 300;
font-style: normal; }
</style>
<meta name="robots" content="noimageindex">
<meta name="mobile-web-app-capable" content="yes">
<meta name="theme-color" content="#000000">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta id="viewport" name="viewport" content="width=device-width, user-scalable=no, initial-scale=1, minimum-scale=1, maximum-scale=1">
@ -148,25 +36,25 @@ Instagram
</script>
<script type="text/javascript">window._timings = {"domLoading": Date.now()}</script>
<link rel="apple-touch-icon-precomposed" sizes="76x76" href="//instagramstatic-a.akamaihd.net/h1/images/ico/apple-touch-icon-76x76-precomposed.png/932e4d9af891.png">
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="//instagramstatic-a.akamaihd.net/h1/images/ico/apple-touch-icon-120x120-precomposed.png/004705c9353f.png">
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="//instagramstatic-a.akamaihd.net/h1/images/ico/apple-touch-icon-152x152-precomposed.png/82467bc9bcce.png">
<link rel="apple-touch-icon-precomposed" sizes="167x167" href="//instagramstatic-a.akamaihd.net/h1/images/ico/apple-touch-icon-167x167-precomposed.png/515cb4eeeeee.png">
<link rel="apple-touch-icon-precomposed" sizes="180x180" href="//instagramstatic-a.akamaihd.net/h1/images/ico/apple-touch-icon-180x180-precomposed.png/94fd767f257b.png">
<link rel="icon" sizes="192x192" href="//instagramstatic-a.akamaihd.net/h1/images/ico/favicon-192.png/b407fa101800.png">
<link rel="apple-touch-icon-precomposed" sizes="76x76" href="/static/images/ico/apple-touch-icon-76x76-precomposed.png/932e4d9af891.png">
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="/static/images/ico/apple-touch-icon-120x120-precomposed.png/004705c9353f.png">
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="/static/images/ico/apple-touch-icon-152x152-precomposed.png/82467bc9bcce.png">
<link rel="apple-touch-icon-precomposed" sizes="167x167" href="/static/images/ico/apple-touch-icon-167x167-precomposed.png/515cb4eeeeee.png">
<link rel="apple-touch-icon-precomposed" sizes="180x180" href="/static/images/ico/apple-touch-icon-180x180-precomposed.png/94fd767f257b.png">
<link rel="icon" sizes="192x192" href="/static/images/ico/favicon-192.png/b407fa101800.png">
<link rel="mask-icon" href="//instagramstatic-a.akamaihd.net/h1/images/ico/favicon.svg/9d8680ab8a3c.svg" color="#262626"><link rel="shortcut icon" type="image/x-icon" href="//instagramstatic-a.akamaihd.net/h1/images/ico/favicon.ico/dfa85bb1fd63.ico">
<link rel="mask-icon" href="/static/images/ico/favicon.svg/9d8680ab8a3c.svg" color="#262626"><link rel="shortcut icon" type="image/x-icon" href="/static/images/ico/favicon.ico/dfa85bb1fd63.ico">
<link rel="canonical" href="https://www.instagram.com/p/BN3Z5salSys/" />
<meta name="description" content="See this Instagram photo by @aaronpk • 25 likes" />
<meta content="24 Likes, 2 Comments - Aaron Parecki (@aaronpk) on Instagram: “Super thrilled about the launch of our podcast studio in an Airstream! It&amp;#39;s been a fun day of a…”" name="description" />
<meta property="og:site_name" content="Instagram" />
<meta property="og:title" content="Instagram photo by Aaron Parecki • Dec 11, 2016 at 5:48am UTC" />
<meta property="og:image" content="https://scontent.cdninstagram.com/t51.2885-15/e35/15306145_1623697164601623_3750679142983532544_n.jpg?ig_cache_key=MTQwMjcwMzcyNDgxMjc3NDU3Mg%3D%3D.2" />
<meta property="og:description" content="See this Instagram photo by @aaronpk • 25 likes" />
<meta property="og:title" content="Instagram post by Aaron Parecki • Dec 11, 2016 at 5:48am UTC" />
<meta property="og:image" content="https://instagram.fsjc1-3.fna.fbcdn.net/t51.2885-15/e35/15306145_1623697164601623_3750679142983532544_n.jpg" />
<meta property="og:description" content="24 Likes, 2 Comments - Aaron Parecki (@aaronpk) on Instagram: “Super thrilled about the launch of our podcast studio in an Airstream! It&#39;s been a fun day of a…”" />
<meta property="fb:app_id" content="124024574287414" />
<meta property="og:url" content="https://www.instagram.com/p/BN3Z5salSys/" />
<meta property="instapp:owner_user_id" content="1500881" />
@ -179,59 +67,59 @@ Instagram
<meta name="medium" content="image" />
<meta property="og:type" content="instapp:photo" />
<meta content="xoxofest" property="instapp:hashtags" />
<meta property="instapp:hashtags" content="xoxofest" />
<link rel="alternate" href="android-app://com.instagram.android/https/instagram.com/p/BN3Z5salSys/" />
<link hreflang="x-default" href="https://www.instagram.com/p/BN3Z5salSys/" rel="alternate" />
<link hreflang="gu" href="https://www.instagram.com/p/BN3Z5salSys/?hl=gu" rel="alternate" />
<link hreflang="pt" href="https://www.instagram.com/p/BN3Z5salSys/?hl=pt" rel="alternate" />
<link hreflang="id" href="https://www.instagram.com/p/BN3Z5salSys/?hl=id" rel="alternate" />
<link hreflang="ur" href="https://www.instagram.com/p/BN3Z5salSys/?hl=ur" rel="alternate" />
<link hreflang="pa" href="https://www.instagram.com/p/BN3Z5salSys/?hl=pa" rel="alternate" />
<link hreflang="vi" href="https://www.instagram.com/p/BN3Z5salSys/?hl=vi" rel="alternate" />
<link hreflang="mr" href="https://www.instagram.com/p/BN3Z5salSys/?hl=mr" rel="alternate" />
<link hreflang="ml" href="https://www.instagram.com/p/BN3Z5salSys/?hl=ml" rel="alternate" />
<link hreflang="bn" href="https://www.instagram.com/p/BN3Z5salSys/?hl=bn" rel="alternate" />
<link hreflang="tr" href="https://www.instagram.com/p/BN3Z5salSys/?hl=tr" rel="alternate" />
<link hreflang="sk" href="https://www.instagram.com/p/BN3Z5salSys/?hl=sk" rel="alternate" />
<link hreflang="ms" href="https://www.instagram.com/p/BN3Z5salSys/?hl=ms" rel="alternate" />
<link hreflang="kn" href="https://www.instagram.com/p/BN3Z5salSys/?hl=kn" rel="alternate" />
<link hreflang="da" href="https://www.instagram.com/p/BN3Z5salSys/?hl=da" rel="alternate" />
<link hreflang="ta" href="https://www.instagram.com/p/BN3Z5salSys/?hl=ta" rel="alternate" />
<link hreflang="nb" href="https://www.instagram.com/p/BN3Z5salSys/?hl=nb" rel="alternate" />
<link hreflang="pl" href="https://www.instagram.com/p/BN3Z5salSys/?hl=pl" rel="alternate" />
<link hreflang="tl" href="https://www.instagram.com/p/BN3Z5salSys/?hl=tl" rel="alternate" />
<link hreflang="hu" href="https://www.instagram.com/p/BN3Z5salSys/?hl=hu" rel="alternate" />
<link hreflang="zh-cn" href="https://www.instagram.com/p/BN3Z5salSys/?hl=zh-cn" rel="alternate" />
<link hreflang="te" href="https://www.instagram.com/p/BN3Z5salSys/?hl=te" rel="alternate" />
<link hreflang="hr" href="https://www.instagram.com/p/BN3Z5salSys/?hl=hr" rel="alternate" />
<link hreflang="zh-tw" href="https://www.instagram.com/p/BN3Z5salSys/?hl=zh-tw" rel="alternate" />
<link hreflang="af" href="https://www.instagram.com/p/BN3Z5salSys/?hl=af" rel="alternate" />
<link hreflang="cs" href="https://www.instagram.com/p/BN3Z5salSys/?hl=cs" rel="alternate" />
<link hreflang="si" href="https://www.instagram.com/p/BN3Z5salSys/?hl=si" rel="alternate" />
<link hreflang="ne" href="https://www.instagram.com/p/BN3Z5salSys/?hl=ne" rel="alternate" />
<link hreflang="ru" href="https://www.instagram.com/p/BN3Z5salSys/?hl=ru" rel="alternate" />
<link hreflang="fr-ca" href="https://www.instagram.com/p/BN3Z5salSys/?hl=fr-ca" rel="alternate" />
<link hreflang="nl" href="https://www.instagram.com/p/BN3Z5salSys/?hl=nl" rel="alternate" />
<link hreflang="th" href="https://www.instagram.com/p/BN3Z5salSys/?hl=th" rel="alternate" />
<link hreflang="hi" href="https://www.instagram.com/p/BN3Z5salSys/?hl=hi" rel="alternate" />
<link hreflang="sv" href="https://www.instagram.com/p/BN3Z5salSys/?hl=sv" rel="alternate" />
<link hreflang="zh-hk" href="https://www.instagram.com/p/BN3Z5salSys/?hl=zh-hk" rel="alternate" />
<link hreflang="bg" href="https://www.instagram.com/p/BN3Z5salSys/?hl=bg" rel="alternate" />
<link hreflang="ja" href="https://www.instagram.com/p/BN3Z5salSys/?hl=ja" rel="alternate" />
<link hreflang="sr" href="https://www.instagram.com/p/BN3Z5salSys/?hl=sr" rel="alternate" />
<link hreflang="ro" href="https://www.instagram.com/p/BN3Z5salSys/?hl=ro" rel="alternate" />
<link hreflang="pt-br" href="https://www.instagram.com/p/BN3Z5salSys/?hl=pt-br" rel="alternate" />
<link hreflang="it" href="https://www.instagram.com/p/BN3Z5salSys/?hl=it" rel="alternate" />
<link hreflang="fi" href="https://www.instagram.com/p/BN3Z5salSys/?hl=fi" rel="alternate" />
<link hreflang="el" href="https://www.instagram.com/p/BN3Z5salSys/?hl=el" rel="alternate" />
<link hreflang="en" href="https://www.instagram.com/p/BN3Z5salSys/?hl=en" rel="alternate" />
<link hreflang="uk" href="https://www.instagram.com/p/BN3Z5salSys/?hl=uk" rel="alternate" />
<link hreflang="de" href="https://www.instagram.com/p/BN3Z5salSys/?hl=de" rel="alternate" />
<link hreflang="ko" href="https://www.instagram.com/p/BN3Z5salSys/?hl=ko" rel="alternate" />
<link hreflang="es" href="https://www.instagram.com/p/BN3Z5salSys/?hl=es" rel="alternate" />
<link hreflang="fr" href="https://www.instagram.com/p/BN3Z5salSys/?hl=fr" rel="alternate" />
<link rel="alternate" href="https://www.instagram.com/p/BN3Z5salSys/" hreflang="x-default" />
<link rel="alternate" href="https://www.instagram.com/p/BN3Z5salSys/?hl=en" hreflang="en" />
<link rel="alternate" href="https://www.instagram.com/p/BN3Z5salSys/?hl=fr" hreflang="fr" />
<link rel="alternate" href="https://www.instagram.com/p/BN3Z5salSys/?hl=it" hreflang="it" />
<link rel="alternate" href="https://www.instagram.com/p/BN3Z5salSys/?hl=de" hreflang="de" />
<link rel="alternate" href="https://www.instagram.com/p/BN3Z5salSys/?hl=es" hreflang="es" />
<link rel="alternate" href="https://www.instagram.com/p/BN3Z5salSys/?hl=zh-cn" hreflang="zh-cn" />
<link rel="alternate" href="https://www.instagram.com/p/BN3Z5salSys/?hl=zh-tw" hreflang="zh-tw" />
<link rel="alternate" href="https://www.instagram.com/p/BN3Z5salSys/?hl=ja" hreflang="ja" />
<link rel="alternate" href="https://www.instagram.com/p/BN3Z5salSys/?hl=ko" hreflang="ko" />
<link rel="alternate" href="https://www.instagram.com/p/BN3Z5salSys/?hl=pt" hreflang="pt" />
<link rel="alternate" href="https://www.instagram.com/p/BN3Z5salSys/?hl=pt-br" hreflang="pt-br" />
<link rel="alternate" href="https://www.instagram.com/p/BN3Z5salSys/?hl=af" hreflang="af" />
<link rel="alternate" href="https://www.instagram.com/p/BN3Z5salSys/?hl=cs" hreflang="cs" />
<link rel="alternate" href="https://www.instagram.com/p/BN3Z5salSys/?hl=da" hreflang="da" />
<link rel="alternate" href="https://www.instagram.com/p/BN3Z5salSys/?hl=el" hreflang="el" />
<link rel="alternate" href="https://www.instagram.com/p/BN3Z5salSys/?hl=fi" hreflang="fi" />
<link rel="alternate" href="https://www.instagram.com/p/BN3Z5salSys/?hl=hr" hreflang="hr" />
<link rel="alternate" href="https://www.instagram.com/p/BN3Z5salSys/?hl=hu" hreflang="hu" />
<link rel="alternate" href="https://www.instagram.com/p/BN3Z5salSys/?hl=id" hreflang="id" />
<link rel="alternate" href="https://www.instagram.com/p/BN3Z5salSys/?hl=ms" hreflang="ms" />
<link rel="alternate" href="https://www.instagram.com/p/BN3Z5salSys/?hl=nb" hreflang="nb" />
<link rel="alternate" href="https://www.instagram.com/p/BN3Z5salSys/?hl=nl" hreflang="nl" />
<link rel="alternate" href="https://www.instagram.com/p/BN3Z5salSys/?hl=pl" hreflang="pl" />
<link rel="alternate" href="https://www.instagram.com/p/BN3Z5salSys/?hl=ru" hreflang="ru" />
<link rel="alternate" href="https://www.instagram.com/p/BN3Z5salSys/?hl=sk" hreflang="sk" />
<link rel="alternate" href="https://www.instagram.com/p/BN3Z5salSys/?hl=sv" hreflang="sv" />
<link rel="alternate" href="https://www.instagram.com/p/BN3Z5salSys/?hl=th" hreflang="th" />
<link rel="alternate" href="https://www.instagram.com/p/BN3Z5salSys/?hl=tl" hreflang="tl" />
<link rel="alternate" href="https://www.instagram.com/p/BN3Z5salSys/?hl=tr" hreflang="tr" />
<link rel="alternate" href="https://www.instagram.com/p/BN3Z5salSys/?hl=hi" hreflang="hi" />
<link rel="alternate" href="https://www.instagram.com/p/BN3Z5salSys/?hl=bn" hreflang="bn" />
<link rel="alternate" href="https://www.instagram.com/p/BN3Z5salSys/?hl=gu" hreflang="gu" />
<link rel="alternate" href="https://www.instagram.com/p/BN3Z5salSys/?hl=kn" hreflang="kn" />
<link rel="alternate" href="https://www.instagram.com/p/BN3Z5salSys/?hl=ml" hreflang="ml" />
<link rel="alternate" href="https://www.instagram.com/p/BN3Z5salSys/?hl=mr" hreflang="mr" />
<link rel="alternate" href="https://www.instagram.com/p/BN3Z5salSys/?hl=pa" hreflang="pa" />
<link rel="alternate" href="https://www.instagram.com/p/BN3Z5salSys/?hl=ta" hreflang="ta" />
<link rel="alternate" href="https://www.instagram.com/p/BN3Z5salSys/?hl=te" hreflang="te" />
<link rel="alternate" href="https://www.instagram.com/p/BN3Z5salSys/?hl=ne" hreflang="ne" />
<link rel="alternate" href="https://www.instagram.com/p/BN3Z5salSys/?hl=si" hreflang="si" />
<link rel="alternate" href="https://www.instagram.com/p/BN3Z5salSys/?hl=ur" hreflang="ur" />
<link rel="alternate" href="https://www.instagram.com/p/BN3Z5salSys/?hl=vi" hreflang="vi" />
<link rel="alternate" href="https://www.instagram.com/p/BN3Z5salSys/?hl=bg" hreflang="bg" />
<link rel="alternate" href="https://www.instagram.com/p/BN3Z5salSys/?hl=fr-ca" hreflang="fr-ca" />
<link rel="alternate" href="https://www.instagram.com/p/BN3Z5salSys/?hl=ro" hreflang="ro" />
<link rel="alternate" href="https://www.instagram.com/p/BN3Z5salSys/?hl=sr" hreflang="sr" />
<link rel="alternate" href="https://www.instagram.com/p/BN3Z5salSys/?hl=uk" hreflang="uk" />
<link rel="alternate" href="https://www.instagram.com/p/BN3Z5salSys/?hl=zh-hk" hreflang="zh-hk" />
</head>
<body class="">
@ -242,9 +130,9 @@ Instagram
<script type="text/javascript">window._sharedData = {"platform": "web", "display_properties_server_guess": {"pixel_ratio": 1.0, "viewport_width": 1423}, "show_app_install": true, "language_code": "en", "static_root": "//instagramstatic-a.akamaihd.net/h1", "gatekeepers": {}, "environment_switcher_visible_server_guess": true, "qe": {"us": {"g": "continue_vs_signup_text_control_03", "p": {"use_continue_text": "false"}}, "feed": {"g": "", "p": {}}, "us_li": {"g": "", "p": {}}, "freq": {"g": "", "p": {}}, "br": {"g": "", "p": {}}, "discovery": {"g": "", "p": {}}, "ebd": {"g": "", "p": {}}, "gql": {"g": "", "p": {}}, "profile": {"g": "", "p": {}}, "su_universe": {"g": "", "p": {}}, "activity_stories": {"g": "", "p": {}}}, "config": {"csrf_token": "JLDDjs3ZQuAg8z755OcfndJK6vD206Wz", "viewer": null}, "hostname": "www.instagram.com", "country_code": "US", "activity_counts": null, "entry_data": {"PostPage": [{"media": {"is_video": false, "owner": {"is_unpublished": false, "profile_pic_url": "https://scontent.cdninstagram.com/t51.2885-19/s150x150/14240576_268350536897085_1129715662_a.jpg", "username": "aaronpk", "blocked_by_viewer": false, "requested_by_viewer": false, "id": "1500881", "followed_by_viewer": false, "full_name": "Aaron Parecki", "is_private": false, "has_blocked_viewer": false}, "date": 1481435336, "usertags": {"nodes": [{"user": {"username": "stream_pdx"}, "x": 0.7466666666666667, "y": 0.4704095904095904}]}, "comments": {"nodes": [{"text": "cheers", "user": {"profile_pic_url": "https://scontent.cdninstagram.com/t51.2885-19/s150x150/12959976_1733367483606521_1383901392_a.jpg", "id": "498129072", "username": "penichetony"}, "id": "17845480846179295", "created_at": 1481790403.0}], "count": 1, "page_info": {"end_cursor": null, "has_previous_page": false, "start_cursor": null, "has_next_page": false}}, "dimensions": {"height": 1001, "width": 1080}, "id": "1402703724812774572", "code": "BN3Z5salSys", "location": {"has_public_page": true, "id": "109284789535230", "slug": "xoxo-outpost", "name": "XOXO Outpost"}, "caption_is_edited": false, "caption": "Super thrilled about the launch of our podcast studio in an Airstream! It's been a fun day of a dozen people recording podcast episodes for the Podcast Challenge! An amazing variety of styles and topics. We're moving to a new location and need your help to buy the airstream from #xoxofest and transport it! streampdx.com/donate", "is_ad": false, "likes": {"viewer_has_liked": false, "count": 25, "nodes": [{"user": {"profile_pic_url": "https://scontent.cdninstagram.com/t51.2885-19/s150x150/14374264_1173581766051479_7286854188842090496_a.jpg", "id": "256750317", "username": "davidjohnmead"}}, {"user": {"profile_pic_url": "https://scontent.cdninstagram.com/t51.2885-19/s150x150/12627953_686238411518831_1544976311_a.jpg", "id": "1538723", "username": "kmikeym"}}, {"user": {"profile_pic_url": "https://scontent.cdninstagram.com/t51.2885-19/s150x150/15538351_1179332335485104_9077554250728341504_a.jpg", "id": "288900753", "username": "mbijon"}}, {"user": {"profile_pic_url": "https://scontent.cdninstagram.com/t51.2885-19/10848337_630259027086405_573470705_a.jpg", "id": "1586387238", "username": "imcherylcrowe"}}, {"user": {"profile_pic_url": "https://scontent.cdninstagram.com/t51.2885-19/s150x150/14515861_213093192465463_1350030331347992576_a.jpg", "id": "9677508", "username": "katdeck"}}, {"user": {"profile_pic_url": "https://scontent.cdninstagram.com/t51.2885-19/s150x150/15625227_329288677470710_608797148758147072_a.jpg", "id": "181128730", "username": "sweetmadicakes"}}, {"user": {"profile_pic_url": "https://scontent.cdninstagram.com/t51.2885-19/11934878_494550000723712_1579779553_a.jpg", "id": "304487340", "username": "prometheusred"}}, {"user": {"profile_pic_url": "https://scontent.cdninstagram.com/t51.2885-19/s150x150/15802159_1324040264284602_7393816544007946240_a.jpg", "id": "3240270247", "username": "wooliegang"}}, {"user": {"profile_pic_url": "https://scontent.cdninstagram.com/t51.2885-19/11007925_1570816406494481_1137000895_a.jpg", "id": "3686317", "username": "html5cat"}}, {"user": {"profile_pic_url": "https://scontent.cdninstagram.com/t51.2885-19/s150x150/11373939_584524411650281_274945108_a.jpg", "id": "186345962", "username": "is_a_beau"}}]}, "display_src": "https://scontent.cdninstagram.com/t51.2885-15/e35/15306145_1623697164601623_3750679142983532544_n.jpg?ig_cache_key=MTQwMjcwMzcyNDgxMjc3NDU3Mg%3D%3D.2", "comments_disabled": false}}]}};</script>
<script type="text/javascript" crossorigin="anonymous" src="//instagramstatic-a.akamaihd.net/h1/bundles/en_US_Commons.js/ad28dd60d42a.js"></script>
<script type="text/javascript" crossorigin="anonymous" src="//instagramstatic-a.akamaihd.net/h1/bundles/en_US_PostPage.js/ab1daa81add9.js"></script>
<script type="text/javascript">window._sharedData = {"activity_counts": null, "config": {"csrf_token": "GSlFDLML2YaoyoCzTJVvJb990ODK6kh9", "viewer": null}, "country_code": "US", "language_code": "en", "entry_data": {"PostPage": [{"graphql": {"shortcode_media": {"__typename": "GraphImage", "id": "1402703724812774572", "shortcode": "BN3Z5salSys", "dimensions": {"height": 1001, "width": 1080}, "display_url": "https://instagram.fsjc1-3.fna.fbcdn.net/t51.2885-15/e35/15306145_1623697164601623_3750679142983532544_n.jpg", "is_video": false, "edge_media_to_tagged_user": {"edges": [{"node": {"user": {"username": "stream_pdx"}, "x": 0.7466666666666667, "y": 0.4704095904095904}}]}, "edge_media_to_caption": {"edges": [{"node": {"text": "Super thrilled about the launch of our podcast studio in an Airstream! It's been a fun day of a dozen people recording podcast episodes for the Podcast Challenge! An amazing variety of styles and topics. We're moving to a new location and need your help to buy the airstream from #xoxofest and transport it! streampdx.com/donate"}}]}, "caption_is_edited": false, "edge_media_to_comment": {"count": 1, "page_info": {"has_next_page": false, "end_cursor": null}, "edges": [{"node": {"id": "17845480846179295", "text": "cheers", "created_at": 1481790403, "owner": {"id": "498129072", "profile_pic_url": "https://instagram.fsjc1-3.fna.fbcdn.net/t51.2885-19/s150x150/12959976_1733367483606521_1383901392_a.jpg", "username": "penichetony"}}}]}, "comments_disabled": false, "taken_at_timestamp": 1481435336, "edge_media_preview_like": {"count": 24, "edges": [{"node": {"id": "256750317", "profile_pic_url": "https://instagram.fsjc1-3.fna.fbcdn.net/t51.2885-19/s150x150/14374264_1173581766051479_7286854188842090496_a.jpg", "username": "davidjohnmead"}}, {"node": {"id": "1538723", "profile_pic_url": "https://instagram.fsjc1-3.fna.fbcdn.net/t51.2885-19/s150x150/12627953_686238411518831_1544976311_a.jpg", "username": "kmikeym"}}, {"node": {"id": "288900753", "profile_pic_url": "https://instagram.fsjc1-3.fna.fbcdn.net/t51.2885-19/s150x150/15538351_1179332335485104_9077554250728341504_a.jpg", "username": "mbijon"}}, {"node": {"id": "1586387238", "profile_pic_url": "https://instagram.fsjc1-3.fna.fbcdn.net/t51.2885-19/10848337_630259027086405_573470705_a.jpg", "username": "imcherylcrowe"}}, {"node": {"id": "9677508", "profile_pic_url": "https://instagram.fsjc1-3.fna.fbcdn.net/t51.2885-19/s150x150/14515861_213093192465463_1350030331347992576_a.jpg", "username": "katdeck"}}, {"node": {"id": "181128730", "profile_pic_url": "https://instagram.fsjc1-3.fna.fbcdn.net/t51.2885-19/s150x150/15877377_961027950696844_9063186077589700608_a.jpg", "username": "sweetmadicakes"}}, {"node": {"id": "304487340", "profile_pic_url": "https://instagram.fsjc1-3.fna.fbcdn.net/t51.2885-19/11934878_494550000723712_1579779553_a.jpg", "username": "prometheusred"}}, {"node": {"id": "3240270247", "profile_pic_url": "https://instagram.fsjc1-3.fna.fbcdn.net/t51.2885-19/s150x150/15802159_1324040264284602_7393816544007946240_a.jpg", "username": "wooliegang"}}, {"node": {"id": "3686317", "profile_pic_url": "https://instagram.fsjc1-3.fna.fbcdn.net/t51.2885-19/11007925_1570816406494481_1137000895_a.jpg", "username": "html5cat"}}, {"node": {"id": "186345962", "profile_pic_url": "https://instagram.fsjc1-3.fna.fbcdn.net/t51.2885-19/s150x150/11373939_584524411650281_274945108_a.jpg", "username": "is_a_beau"}}]}, "edge_media_to_sponsor_user": {"edges": []}, "location": {"id": "109284789535230", "has_public_page": true, "name": "XOXO Outpost", "slug": "xoxo-outpost"}, "viewer_has_liked": false, "owner": {"id": "1500881", "profile_pic_url": "https://instagram.fsjc1-3.fna.fbcdn.net/t51.2885-19/s150x150/14240576_268350536897085_1129715662_a.jpg", "username": "aaronpk", "followed_by_viewer": false, "full_name": "Aaron Parecki", "is_private": false, "requested_by_viewer": false, "is_unpublished": false, "blocked_by_viewer": false, "has_blocked_viewer": false}, "is_ad": false, "edge_web_media_to_related_media": {"edges": []}}}}]}, "gatekeepers": {"bn": true, "ld": true, "pl": true}, "qe": {"ebd": {"g": "", "p": {}}, "create": {"g": "", "p": {}}, "disc": {"g": "", "p": {}}, "feed": {"g": "", "p": {}}, "gql": {"g": "", "p": {}}, "su_universe": {"g": "", "p": {}}, "us": {"g": "", "p": {}}, "us_li": {"g": "", "p": {}}, "nav": {"g": "", "p": {}}, "nav_lo": {"g": "", "p": {}}, "poe": {"g": "try_email_and_phone_login_test_with_text_05", "p": {"show_phone_or_email_text": "true", "try_email_and_phone_login": "true"}}, "pm": {"g": "", "p": {}}, "profile": {"g": "", "p": {}}, "deact": {"g": "", "p": {}}, "sidecar": {"g": "", "p": {}}, "ufi": {"g": "", "p": {}}, "ufi_loggedout": {"g": "", "p": {}}, "video": {"g": "", "p": {}}}, "hostname": "www.instagram.com", "display_properties_server_guess": {"pixel_ratio": 1.0, "viewport_width": 1222}, "environment_switcher_visible_server_guess": true, "platform": "web", "show_app_install": true};</script>
<script type="text/javascript" src="/static/bundles/en_US_Commons.js/1bebd02a1bc2.js" crossorigin="anonymous"></script>
<script type="text/javascript" src="/static/bundles/en_US_PostPage.js/6bdabcd53d11.js" crossorigin="anonymous"></script>
<script>
!function(f,b,e,v,n,t,s){if(f.fbq)return;n=f.fbq=function(){n.callMethod?

+ 67
- 180
tests/data/www.instagram.com/video.html View File

@ -16,123 +16,10 @@ Connection: keep-alive
Instagram
</title>
<script type="text/javascript">
WebFontConfig = {
custom: {
families: ['proxima-nova:n3,n4,n6,n7'],
}
};
</script>
<script src="//instagramstatic-a.akamaihd.net/h1/scripts/webfont.js/c0456c81549b.js" type="text/javascript" async></script>
<style type="text/css">
/* @license
* MyFonts Webfont Build ID 2164953, 2012-03-23T23:06:30-0400
*
* The fonts listed in this notice are subject to the End User License
* Agreement(s) entered into by the website owner. All other parties are
* explicitly restricted from using the Licensed Webfonts(s).
*
* You may obtain a valid license at the URLs below.
*
*
* Webfont: Proxima Nova Light by Mark Simonson
* URL: http://www.myfonts.com/fonts/marksimonson/proxima-nova/light/
* Licensed pageviews: unlimited
*
* Webfont: Proxima Nova Regular by Mark Simonson
* URL: http://www.myfonts.com/fonts/marksimonson/proxima-nova/regular/
* Licensed pageviews: unlimited
*
* Webfont: Proxima Nova Semibold by Mark Simonson
* URL: http://www.myfonts.com/fonts/marksimonson/proxima-nova/semibold/
* Licensed pageviews: unlimited
*
* Webfont: Proxima Nova Bold Italic by Mark Simonson
* URL: http://www.myfonts.com/fonts/marksimonson/proxima-nova/bold-it/
* Licensed pageviews: unlimited
*
* Webfont: Proxima Nova Bold by Mark Simonson
* URL: http://www.myfonts.com/fonts/marksimonson/proxima-nova/bold/
* Licensed pageviews: unlimited
*
* Webfont: Proxima Nova Italic by Mark Simonson
* URL: http://www.myfonts.com/fonts/marksimonson/proxima-nova/regular-it/
* Licensed pageviews: unlimited
*
*
* License: http://www.myfonts.com/viewlicense?type=web&buildid=2164953
* Webfonts copyright: Copyright (c) Mark Simonson, 2005. All rights reserved.
*
* (c) 2012 Bitstream Inc
*/
@font-face {
font-family: 'proxima-nova';
src: url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-bold-webfont.eot/115b1f7f9c04.eot');
src: url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-bold-webfont.eot/115b1f7f9c04.eot?#iefix') format("embedded-opentype"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-bold-webfont.woff/618250d25a4d.woff') format("woff"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-bold-webfont.ttf/646346e03084.ttf') format("truetype"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-bold-webfont.svg/e55a9d6051e8.svg#ProximaNovaBold') format("svg");
font-weight: bold;
font-style: normal; }
@font-face {
font-family: 'proxima-nova';
src: url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-boldit-webfont.eot/1cbb869da891.eot');
src: url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-boldit-webfont.eot/1cbb869da891.eot?#iefix') format("embedded-opentype"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-boldit-webfont.woff/b1cf049474c9.woff') format("woff"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-boldit-webfont.ttf/3adb020ceae3.ttf') format("truetype"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-boldit-webfont.svg/29948a2d3c58.svg#ProximaNovaBoldItalic') format("svg");
font-weight: bold;
font-style: italic; }
@font-face {
font-family: 'proxima-nova';
src: url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-reg-webfont.eot/12af77715cee.eot');
src: url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-reg-webfont.eot/12af77715cee.eot?#iefix') format("embedded-opentype"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-reg-webfont.woff/a9a9773b8e29.woff') format("woff"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-reg-webfont.ttf/99e19808976a.ttf') format("truetype"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-reg-webfont.svg/c33d2fd56309.svg#ProximaNovaRegular') format("svg");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: 'proxima-nova';
src: url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-regit-webfont.eot/1bbbd1312b0d.eot');
src: url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-regit-webfont.eot/1bbbd1312b0d.eot?#iefix') format("embedded-opentype"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-regit-webfont.woff/9e306befca91.woff') format("woff"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-regit-webfont.ttf/4a8663684135.ttf') format("truetype"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-regit-webfont.svg/876278d4b189.svg#ProximaNovaRegularItalic') format("svg");
font-weight: normal;
font-style: italic; }
@font-face {
font-family: 'proxima-nova';
src: url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-sbold-webfont.eot/5016edf79e1d.eot');
src: url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-sbold-webfont.eot/5016edf79e1d.eot?#iefix') format("embedded-opentype"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-sbold-webfont.woff/615c1b06d8fa.woff') format("woff"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-sbold-webfont.ttf/2973bd483f7a.ttf') format("truetype"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-sbold-webfont.svg/868597833e49.svg#ProximaNovaSemibold') format("svg");
font-weight: 600;
font-style: normal; }
</style>
<style type="text/css">
@font-face {
font-family: 'proxima-nova';
src: url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-light-webfont.eot/63c84728610f.eot');
src: url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-light-webfont.eot/63c84728610f.eot?#iefix') format("embedded-opentype"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-light-webfont.woff/66bbe029f180.woff') format("woff"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-light-webfont.ttf/eb408516399b.ttf') format("truetype"),
url(' //instagramstatic-a.akamaihd.net/h1/webfonts/proximanova-light-webfont.svg/858f6a9b7ef3.svg#ProximaNovaLight') format("svg");
font-weight: 300;
font-style: normal; }
</style>
<meta name="robots" content="noimageindex">
<meta name="mobile-web-app-capable" content="yes">
<meta name="theme-color" content="#000000">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta id="viewport" name="viewport" content="width=device-width, user-scalable=no, initial-scale=1, minimum-scale=1, maximum-scale=1">
@ -148,25 +35,25 @@ Instagram
</script>
<script type="text/javascript">window._timings = {"domLoading": Date.now()}</script>
<link rel="apple-touch-icon-precomposed" sizes="76x76" href="//instagramstatic-a.akamaihd.net/h1/images/ico/apple-touch-icon-76x76-precomposed.png/932e4d9af891.png">
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="//instagramstatic-a.akamaihd.net/h1/images/ico/apple-touch-icon-120x120-precomposed.png/004705c9353f.png">
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="//instagramstatic-a.akamaihd.net/h1/images/ico/apple-touch-icon-152x152-precomposed.png/82467bc9bcce.png">
<link rel="apple-touch-icon-precomposed" sizes="167x167" href="//instagramstatic-a.akamaihd.net/h1/images/ico/apple-touch-icon-167x167-precomposed.png/515cb4eeeeee.png">
<link rel="apple-touch-icon-precomposed" sizes="180x180" href="//instagramstatic-a.akamaihd.net/h1/images/ico/apple-touch-icon-180x180-precomposed.png/94fd767f257b.png">
<link rel="icon" sizes="192x192" href="//instagramstatic-a.akamaihd.net/h1/images/ico/favicon-192.png/b407fa101800.png">
<link rel="apple-touch-icon-precomposed" sizes="76x76" href="/static/images/ico/apple-touch-icon-76x76-precomposed.png/932e4d9af891.png">
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="/static/images/ico/apple-touch-icon-120x120-precomposed.png/004705c9353f.png">
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="/static/images/ico/apple-touch-icon-152x152-precomposed.png/82467bc9bcce.png">
<link rel="apple-touch-icon-precomposed" sizes="167x167" href="/static/images/ico/apple-touch-icon-167x167-precomposed.png/515cb4eeeeee.png">
<link rel="apple-touch-icon-precomposed" sizes="180x180" href="/static/images/ico/apple-touch-icon-180x180-precomposed.png/94fd767f257b.png">
<link rel="icon" sizes="192x192" href="/static/images/ico/favicon-192.png/b407fa101800.png">
<link rel="mask-icon" href="//instagramstatic-a.akamaihd.net/h1/images/ico/favicon.svg/9d8680ab8a3c.svg" color="#262626"><link rel="shortcut icon" type="image/x-icon" href="//instagramstatic-a.akamaihd.net/h1/images/ico/favicon.ico/dfa85bb1fd63.ico">
<link rel="mask-icon" href="/static/images/ico/favicon.svg/9d8680ab8a3c.svg" color="#262626"><link rel="shortcut icon" type="image/x-icon" href="/static/images/ico/favicon.ico/dfa85bb1fd63.ico">
<link rel="canonical" href="https://www.instagram.com/p/BO_RN8AFZSx/" />
<meta content="See this Instagram video by @aaronpk • 2 likes" name="description" />
<meta content="3 Likes, 1 Comments - Aaron Parecki (@aaronpk) on Instagram: “Day 18. Maple and Spruce #100daysofmusic #100daysproject #the100dayproject…”" name="description" />
<meta property="og:site_name" content="Instagram" />
<meta property="og:title" content="Instagram video by Aaron Parecki • Jan 8, 2017 at 3:38am UTC" />
<meta property="og:image" content="https://scontent.cdninstagram.com/t51.2885-15/s640x640/e15/15624670_548881701986735_8264383763249627136_n.jpg?ig_cache_key=MTQyMjkzMTczMTg0MjE3NjE3Nw%3D%3D.2" />
<meta property="og:description" content="See this Instagram video by @aaronpk • 2 likes" />
<meta property="og:title" content="Instagram post by Aaron Parecki • Jan 8, 2017 at 3:38am UTC" />
<meta property="og:image" content="https://instagram.fsjc1-3.fna.fbcdn.net/t51.2885-15/s640x640/e15/15624670_548881701986735_8264383763249627136_n.jpg" />
<meta property="og:description" content="3 Likes, 1 Comments - Aaron Parecki (@aaronpk) on Instagram: “Day 18. Maple and Spruce #100daysofmusic #100daysproject #the100dayproject…”" />
<meta property="fb:app_id" content="124024574287414" />
<meta property="og:url" content="https://www.instagram.com/p/BO_RN8AFZSx/" />
<meta property="instapp:owner_user_id" content="1500881" />
@ -179,64 +66,64 @@ Instagram
<meta name="medium" content="video" />
<meta property="og:type" content="video" />
<meta property="og:video" content="http://scontent.cdninstagram.com/t50.2886-16/15921147_1074837002642259_2269307616507199488_n.mp4" />
<meta property="og:video:secure_url" content="https://scontent.cdninstagram.com/t50.2886-16/15921147_1074837002642259_2269307616507199488_n.mp4" />
<meta property="og:video" content="http://instagram.fsjc1-3.fna.fbcdn.net/t50.2886-16/15921147_1074837002642259_2269307616507199488_n.mp4" />
<meta property="og:video:secure_url" content="https://instagram.fsjc1-3.fna.fbcdn.net/t50.2886-16/15921147_1074837002642259_2269307616507199488_n.mp4" />
<meta property="og:video:type" content="video/mp4" />
<meta property="og:video:width" content="640" />
<meta property="og:video:height" content="360" />
<meta content="100daysofmusic" property="video:tag" /><meta content="the100dayproject" property="video:tag" /><meta content="100daysproject" property="video:tag" />
<meta property="video:tag" content="the100dayproject" /><meta property="video:tag" content="100daysofmusic" /><meta property="video:tag" content="100daysproject" />
<link rel="alternate" href="android-app://com.instagram.android/https/instagram.com/p/BO_RN8AFZSx/" />
<link href="https://www.instagram.com/p/BO_RN8AFZSx/" hreflang="x-default" rel="alternate" />
<link href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=el" hreflang="el" rel="alternate" />
<link href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=ko" hreflang="ko" rel="alternate" />
<link href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=it" hreflang="it" rel="alternate" />
<link href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=en" hreflang="en" rel="alternate" />
<link href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=nb" hreflang="nb" rel="alternate" />
<link href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=cs" hreflang="cs" rel="alternate" />
<link href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=fi" hreflang="fi" rel="alternate" />
<link href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=id" hreflang="id" rel="alternate" />
<link href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=de" hreflang="de" rel="alternate" />
<link href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=zh-hk" hreflang="zh-hk" rel="alternate" />
<link href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=ro" hreflang="ro" rel="alternate" />
<link href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=ja" hreflang="ja" rel="alternate" />
<link href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=tr" hreflang="tr" rel="alternate" />
<link href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=uk" hreflang="uk" rel="alternate" />
<link href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=bg" hreflang="bg" rel="alternate" />
<link href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=sr" hreflang="sr" rel="alternate" />
<link href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=pa" hreflang="pa" rel="alternate" />
<link href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=te" hreflang="te" rel="alternate" />
<link href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=hr" hreflang="hr" rel="alternate" />
<link href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=pt-br" hreflang="pt-br" rel="alternate" />
<link href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=af" hreflang="af" rel="alternate" />
<link href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=th" hreflang="th" rel="alternate" />
<link href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=mr" hreflang="mr" rel="alternate" />
<link href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=kn" hreflang="kn" rel="alternate" />
<link href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=bn" hreflang="bn" rel="alternate" />
<link href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=pl" hreflang="pl" rel="alternate" />
<link href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=gu" hreflang="gu" rel="alternate" />
<link href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=ms" hreflang="ms" rel="alternate" />
<link href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=ml" hreflang="ml" rel="alternate" />
<link href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=fr" hreflang="fr" rel="alternate" />
<link href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=zh-tw" hreflang="zh-tw" rel="alternate" />
<link href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=hu" hreflang="hu" rel="alternate" />
<link href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=si" hreflang="si" rel="alternate" />
<link href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=pt" hreflang="pt" rel="alternate" />
<link href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=ru" hreflang="ru" rel="alternate" />
<link href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=ne" hreflang="ne" rel="alternate" />
<link href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=da" hreflang="da" rel="alternate" />
<link href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=es" hreflang="es" rel="alternate" />
<link href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=fr-ca" hreflang="fr-ca" rel="alternate" />
<link href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=ta" hreflang="ta" rel="alternate" />
<link href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=nl" hreflang="nl" rel="alternate" />
<link href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=tl" hreflang="tl" rel="alternate" />
<link href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=hi" hreflang="hi" rel="alternate" />
<link href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=zh-cn" hreflang="zh-cn" rel="alternate" />
<link href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=sv" hreflang="sv" rel="alternate" />
<link href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=ur" hreflang="ur" rel="alternate" />
<link href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=vi" hreflang="vi" rel="alternate" />
<link href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=sk" hreflang="sk" rel="alternate" />
<link rel="alternate" href="https://www.instagram.com/p/BO_RN8AFZSx/" hreflang="x-default" />
<link rel="alternate" href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=en" hreflang="en" />
<link rel="alternate" href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=fr" hreflang="fr" />
<link rel="alternate" href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=it" hreflang="it" />
<link rel="alternate" href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=de" hreflang="de" />
<link rel="alternate" href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=es" hreflang="es" />
<link rel="alternate" href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=zh-cn" hreflang="zh-cn" />
<link rel="alternate" href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=zh-tw" hreflang="zh-tw" />
<link rel="alternate" href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=ja" hreflang="ja" />
<link rel="alternate" href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=ko" hreflang="ko" />
<link rel="alternate" href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=pt" hreflang="pt" />
<link rel="alternate" href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=pt-br" hreflang="pt-br" />
<link rel="alternate" href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=af" hreflang="af" />
<link rel="alternate" href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=cs" hreflang="cs" />
<link rel="alternate" href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=da" hreflang="da" />
<link rel="alternate" href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=el" hreflang="el" />
<link rel="alternate" href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=fi" hreflang="fi" />
<link rel="alternate" href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=hr" hreflang="hr" />
<link rel="alternate" href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=hu" hreflang="hu" />
<link rel="alternate" href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=id" hreflang="id" />
<link rel="alternate" href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=ms" hreflang="ms" />
<link rel="alternate" href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=nb" hreflang="nb" />
<link rel="alternate" href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=nl" hreflang="nl" />
<link rel="alternate" href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=pl" hreflang="pl" />
<link rel="alternate" href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=ru" hreflang="ru" />
<link rel="alternate" href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=sk" hreflang="sk" />
<link rel="alternate" href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=sv" hreflang="sv" />
<link rel="alternate" href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=th" hreflang="th" />
<link rel="alternate" href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=tl" hreflang="tl" />
<link rel="alternate" href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=tr" hreflang="tr" />
<link rel="alternate" href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=hi" hreflang="hi" />
<link rel="alternate" href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=bn" hreflang="bn" />
<link rel="alternate" href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=gu" hreflang="gu" />
<link rel="alternate" href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=kn" hreflang="kn" />
<link rel="alternate" href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=ml" hreflang="ml" />
<link rel="alternate" href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=mr" hreflang="mr" />
<link rel="alternate" href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=pa" hreflang="pa" />
<link rel="alternate" href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=ta" hreflang="ta" />
<link rel="alternate" href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=te" hreflang="te" />
<link rel="alternate" href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=ne" hreflang="ne" />
<link rel="alternate" href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=si" hreflang="si" />
<link rel="alternate" href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=ur" hreflang="ur" />
<link rel="alternate" href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=vi" hreflang="vi" />
<link rel="alternate" href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=bg" hreflang="bg" />
<link rel="alternate" href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=fr-ca" hreflang="fr-ca" />
<link rel="alternate" href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=ro" hreflang="ro" />
<link rel="alternate" href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=sr" hreflang="sr" />
<link rel="alternate" href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=uk" hreflang="uk" />
<link rel="alternate" href="https://www.instagram.com/p/BO_RN8AFZSx/?hl=zh-hk" hreflang="zh-hk" />
</head>
<body class="">
@ -247,9 +134,9 @@ Instagram
<script type="text/javascript">window._sharedData = {"qe": {"feed": {"p": {}, "g": ""}, "ebd": {"p": {}, "g": ""}, "us_li": {"p": {}, "g": ""}, "activity_stories": {"p": {}, "g": ""}, "su_universe": {"p": {}, "g": ""}, "discovery": {"p": {}, "g": ""}, "profile": {"p": {}, "g": ""}, "freq": {"p": {}, "g": ""}, "us": {"p": {"use_continue_text": "false"}, "g": "continue_vs_signup_text_control_03"}, "br": {"p": {}, "g": ""}, "gql": {"p": {}, "g": ""}}, "country_code": "US", "show_app_install": true, "platform": "web", "entry_data": {"PostPage": [{"media": {"caption": "Day 18. Maple and Spruce #100daysofmusic #100daysproject #the100dayproject https://aaronparecki.com/2017/01/07/14/day18", "comments": {"page_info": {"has_next_page": false, "has_previous_page": false, "end_cursor": null, "start_cursor": null}, "count": 0, "nodes": []}, "caption_is_edited": false, "display_src": "https://scontent.cdninstagram.com/t51.2885-15/s640x640/e15/15624670_548881701986735_8264383763249627136_n.jpg?ig_cache_key=MTQyMjkzMTczMTg0MjE3NjE3Nw%3D%3D.2", "video_views": 32, "comments_disabled": false, "location": null, "likes": {"count": 2, "nodes": [{"user": {"profile_pic_url": "https://scontent.cdninstagram.com/t51.2885-19/13551795_1697805083802299_107961861_a.jpg", "username": "paris.ehamiltoun", "id": "1973422170"}}, {"user": {"profile_pic_url": "https://scontent.cdninstagram.com/t51.2885-19/s150x150/15276675_345935352429588_7502013753811009536_a.jpg", "username": "ricky_guevarra", "id": "2072811324"}}], "viewer_has_liked": false}, "video_url": "https://scontent.cdninstagram.com/t50.2886-16/15921147_1074837002642259_2269307616507199488_n.mp4", "owner": {"blocked_by_viewer": false, "requested_by_viewer": false, "followed_by_viewer": false, "username": "aaronpk", "full_name": "Aaron Parecki", "is_unpublished": false, "profile_pic_url": "https://scontent.cdninstagram.com/t51.2885-19/s150x150/14240576_268350536897085_1129715662_a.jpg", "id": "1500881", "is_private": false, "has_blocked_viewer": false}, "dimensions": {"width": 640, "height": 360}, "id": "1422931731842176177", "is_ad": false, "code": "BO_RN8AFZSx", "usertags": {"nodes": []}, "is_video": true, "date": 1483846702}}]}, "static_root": "//instagramstatic-a.akamaihd.net/h1", "gatekeepers": {}, "config": {"csrf_token": "JLDDjs3ZQuAg8z755OcfndJK6vD206Wz", "viewer": null}, "environment_switcher_visible_server_guess": true, "activity_counts": null, "hostname": "www.instagram.com", "language_code": "en", "display_properties_server_guess": {"viewport_width": 1423, "pixel_ratio": 1.0}};</script>
<script src="//instagramstatic-a.akamaihd.net/h1/bundles/en_US_Commons.js/ad28dd60d42a.js" type="text/javascript" crossorigin="anonymous"></script>
<script src="//instagramstatic-a.akamaihd.net/h1/bundles/en_US_PostPage.js/ab1daa81add9.js" type="text/javascript" crossorigin="anonymous"></script>
<script type="text/javascript">window._sharedData = {"activity_counts": null, "config": {"csrf_token": "GSlFDLML2YaoyoCzTJVvJb990ODK6kh9", "viewer": null}, "country_code": "US", "language_code": "en", "entry_data": {"PostPage": [{"graphql": {"shortcode_media": {"__typename": "GraphVideo", "id": "1422931731842176177", "shortcode": "BO_RN8AFZSx", "dimensions": {"height": 360, "width": 640}, "display_url": "https://instagram.fsjc1-3.fna.fbcdn.net/t51.2885-15/s640x640/e15/15624670_548881701986735_8264383763249627136_n.jpg", "video_url": "https://instagram.fsjc1-3.fna.fbcdn.net/t50.2886-16/15921147_1074837002642259_2269307616507199488_n.mp4", "video_view_count": 37, "is_video": true, "edge_media_to_tagged_user": {"edges": []}, "edge_media_to_caption": {"edges": [{"node": {"text": "Day 18. Maple and Spruce #100daysofmusic #100daysproject #the100dayproject https://aaronparecki.com/2017/01/07/14/day18"}}]}, "caption_is_edited": false, "edge_media_to_comment": {"count": 0, "page_info": {"has_next_page": false, "end_cursor": null}, "edges": []}, "comments_disabled": false, "taken_at_timestamp": 1483846702, "edge_media_preview_like": {"count": 3, "edges": [{"node": {"id": "21979927", "profile_pic_url": "https://instagram.fsjc1-3.fna.fbcdn.net/t51.2885-19/s150x150/17125834_430000300674537_4374069680080420864_a.jpg", "username": "samrochfordmusic"}}, {"node": {"id": "1973422170", "profile_pic_url": "https://instagram.fsjc1-3.fna.fbcdn.net/t51.2885-19/13551795_1697805083802299_107961861_a.jpg", "username": "paris.ehamiltoun"}}, {"node": {"id": "2072811324", "profile_pic_url": "https://instagram.fsjc1-3.fna.fbcdn.net/t51.2885-19/s150x150/15276675_345935352429588_7502013753811009536_a.jpg", "username": "ricky_guevarra"}}]}, "edge_media_to_sponsor_user": {"edges": []}, "location": null, "viewer_has_liked": false, "owner": {"id": "1500881", "profile_pic_url": "https://instagram.fsjc1-3.fna.fbcdn.net/t51.2885-19/s150x150/14240576_268350536897085_1129715662_a.jpg", "username": "aaronpk", "followed_by_viewer": false, "full_name": "Aaron Parecki", "is_private": false, "requested_by_viewer": false, "is_unpublished": false, "blocked_by_viewer": false, "has_blocked_viewer": false}, "is_ad": false, "edge_web_media_to_related_media": {"edges": []}}}}]}, "gatekeepers": {"bn": true, "ld": true, "pl": true}, "qe": {"ebd": {"g": "", "p": {}}, "create": {"g": "", "p": {}}, "disc": {"g": "", "p": {}}, "feed": {"g": "", "p": {}}, "gql": {"g": "", "p": {}}, "su_universe": {"g": "", "p": {}}, "us": {"g": "", "p": {}}, "us_li": {"g": "", "p": {}}, "nav": {"g": "", "p": {}}, "nav_lo": {"g": "", "p": {}}, "poe": {"g": "try_email_and_phone_login_test_with_text_05", "p": {"show_phone_or_email_text": "true", "try_email_and_phone_login": "true"}}, "pm": {"g": "", "p": {}}, "profile": {"g": "", "p": {}}, "deact": {"g": "", "p": {}}, "sidecar": {"g": "", "p": {}}, "ufi": {"g": "", "p": {}}, "ufi_loggedout": {"g": "", "p": {}}, "video": {"g": "", "p": {}}}, "hostname": "www.instagram.com", "display_properties_server_guess": {"pixel_ratio": 1.0, "viewport_width": 1222}, "environment_switcher_visible_server_guess": true, "platform": "web", "show_app_install": true};</script>
<script type="text/javascript" src="/static/bundles/en_US_Commons.js/1bebd02a1bc2.js" crossorigin="anonymous"></script>
<script type="text/javascript" src="/static/bundles/en_US_PostPage.js/6bdabcd53d11.js" crossorigin="anonymous"></script>
<script>
!function(f,b,e,v,n,t,s){if(f.fbq)return;n=f.fbq=function(){n.callMethod?

Loading…
Cancel
Save