Changed tags on tag overview.
|  | @ -1,63 +1,8 @@ | |||
| <template> | ||||
|     <div class="tags"> | ||||
|         <h3 class="heading">Oral</h3> | ||||
| 
 | ||||
|         <div class="tiles"> | ||||
|             <Tag | ||||
|                 v-for="tag in tags.oral" | ||||
|                 :key="`tag-${tag.id}`" | ||||
|                 :tag="tag" | ||||
|             /> | ||||
|         </div> | ||||
| 
 | ||||
|         <h3 class="heading">Penetration</h3> | ||||
| 
 | ||||
|         <div class="tiles"> | ||||
|             <Tag | ||||
|                 v-for="tag in tags.penetration" | ||||
|                 :key="`tag-${tag.id}`" | ||||
|                 :tag="tag" | ||||
|             /> | ||||
|         </div> | ||||
| 
 | ||||
|         <h3 class="heading">Group</h3> | ||||
| 
 | ||||
|         <div class="tiles"> | ||||
|             <Tag | ||||
|                 v-for="tag in tags.group" | ||||
|                 :key="`tag-${tag.id}`" | ||||
|                 :tag="tag" | ||||
|             /> | ||||
|         </div> | ||||
| 
 | ||||
|         <h3 class="heading">Ethnicity</h3> | ||||
| 
 | ||||
|         <div class="tiles"> | ||||
|             <Tag | ||||
|                 v-for="tag in tags.ethnicity" | ||||
|                 :key="`tag-${tag.id}`" | ||||
|                 :tag="tag" | ||||
|             /> | ||||
|         </div> | ||||
| 
 | ||||
|         <h3 class="heading">Finish</h3> | ||||
| 
 | ||||
|         <div class="tiles"> | ||||
|             <Tag | ||||
|                 v-for="tag in tags.finish" | ||||
|                 :key="`tag-${tag.id}`" | ||||
|                 :tag="tag" | ||||
|             /> | ||||
|         </div> | ||||
| 
 | ||||
|         <h3 class="heading">Misc</h3> | ||||
| 
 | ||||
|         <div | ||||
|             v-if="tags.misc" | ||||
|             class="tiles" | ||||
|         > | ||||
|             <Tag | ||||
|                 v-for="tag in tags.misc.concat(tags.body)" | ||||
|                 v-for="tag in popularTags" | ||||
|                 :key="`tag-${tag.id}`" | ||||
|                 :tag="tag" | ||||
|             /> | ||||
|  | @ -73,53 +18,59 @@ async function mounted() { | |||
|         slugs: [ | ||||
|             'airtight', | ||||
|             'anal', | ||||
|             'anal-creampie', | ||||
|             'asian', | ||||
|             'ass-eating', | ||||
|             'ass-to-mouth', | ||||
|             'bdsm', | ||||
|             'blowbang', | ||||
|             'blonde', | ||||
|             'blowjob', | ||||
|             'bukkake', | ||||
|             'brunette', | ||||
|             'caucasian', | ||||
|             'creampie', | ||||
|             'da-tp', | ||||
|             'deepthroat', | ||||
|             'double-anal', | ||||
|             'double-blowjob', | ||||
|             'double-penetration', | ||||
|             'double-vaginal', | ||||
|             'dv-tp', | ||||
|             'ebony', | ||||
|             'facefucking', | ||||
|             'facial', | ||||
|             'gangbang', | ||||
|             'gaping', | ||||
|             'interracial', | ||||
|             'latina', | ||||
|             'lesbian', | ||||
|             'maid', | ||||
|             'mff', | ||||
|             'mfm', | ||||
|             'oral-creampie', | ||||
|             'orgy', | ||||
|             'pussy-eating', | ||||
|             'swallowing', | ||||
|             'tattoo', | ||||
|             'trainbang', | ||||
|             'triple-anal', | ||||
|             'redhead', | ||||
|             'schoolgirl', | ||||
|             'teen', | ||||
|         ], | ||||
|     }); | ||||
| 
 | ||||
|     this.tags = tags.reduce((acc, tag) => { | ||||
|         if (!tag.group) { | ||||
|             return { ...acc, misc: [...acc.misc, tag] }; | ||||
|         } | ||||
|     const tagsBySlug = tags.reduce((acc, tag) => ({ ...acc, [tag.slug]: tag }), {}); | ||||
| 
 | ||||
|         if (acc[tag.group.slug]) { | ||||
|             return { ...acc, [tag.group.slug]: [...acc[tag.group.slug], tag] }; | ||||
|         } | ||||
| 
 | ||||
|         return { ...acc, [tag.group.slug]: [tag] }; | ||||
|     }, { misc: [] }); | ||||
|     this.popularTags = [ | ||||
|         'anal', | ||||
|         'teen', | ||||
|         'lesbian', | ||||
|         'mff', | ||||
|         'mfm', | ||||
|         'orgy', | ||||
|         'double-penetration', | ||||
|         'gangbang', | ||||
|         'airtight', | ||||
|         'creampie', | ||||
|         'facial', | ||||
|         'interracial', | ||||
|         'blowjob', | ||||
|         'deepthroat', | ||||
|         'facefucking', | ||||
|         'asian', | ||||
|         'ebony', | ||||
|         'latina', | ||||
|         'caucasian', | ||||
|         'blonde', | ||||
|         'brunette', | ||||
|         'redhead', | ||||
|         'schoolgirl', | ||||
|         'maid', | ||||
|     ].map(tagSlug => tagsBySlug[tagSlug]); | ||||
| 
 | ||||
|     this.pageTitle = 'Tags'; | ||||
| } | ||||
|  | @ -130,7 +81,7 @@ export default { | |||
|     }, | ||||
|     data() { | ||||
|         return { | ||||
|             tags: {}, | ||||
|             popularTags: [], | ||||
|             pageTitle: null, | ||||
|         }; | ||||
|     }, | ||||
|  | @ -148,8 +99,7 @@ export default { | |||
| .tiles { | ||||
|     display: grid; | ||||
|     grid-template-columns: repeat(auto-fit, minmax(20rem, .25fr)); | ||||
|     grid-gap: .5rem; | ||||
|     margin: 0 0 1.5rem 0; | ||||
|     grid-gap: 2rem; | ||||
| } | ||||
| 
 | ||||
| .heading { | ||||
|  |  | |||
|  | @ -3,6 +3,7 @@ | |||
|         :href="`/network/${network.slug}`" | ||||
|         :title="network.name" | ||||
|         class="tile" | ||||
|         :class="{ sfw }" | ||||
|     > | ||||
|         <img | ||||
|             :src="`/img/logos/${network.slug}/network.png`" | ||||
|  | @ -13,6 +14,10 @@ | |||
| </template> | ||||
| 
 | ||||
| <script> | ||||
| function sfw() { | ||||
|     return this.$store.state.ui.sfw; | ||||
| } | ||||
| 
 | ||||
| export default { | ||||
|     props: { | ||||
|         network: { | ||||
|  | @ -20,6 +25,9 @@ export default { | |||
|             default: null, | ||||
|         }, | ||||
|     }, | ||||
|     computed: { | ||||
|         sfw, | ||||
|     }, | ||||
| }; | ||||
| </script> | ||||
| 
 | ||||
|  | @ -28,7 +36,7 @@ export default { | |||
| 
 | ||||
| .tile { | ||||
|     height: 6rem; | ||||
|     background: $profile; | ||||
|     background: var(--profile); | ||||
|     display: flex; | ||||
|     flex-shrink: 0; | ||||
|     flex-direction: column; | ||||
|  | @ -57,7 +65,7 @@ export default { | |||
| } | ||||
| 
 | ||||
| .title { | ||||
|     color: $text; | ||||
|     color: var(--text); | ||||
|     height: 100%; | ||||
|     display: flex; | ||||
|     align-items: center; | ||||
|  |  | |||
|  | @ -23,9 +23,8 @@ $highlight-strong: rgba(255, 255, 255, .7); | |||
| $highlight-weak: rgba(255, 255, 255, .2); | ||||
| $highlight-hint: rgba(255, 255, 255, .075); | ||||
| 
 | ||||
| $logo-shadow: drop-shadow(1px 0 0 $shadow-weak) drop-shadow(-1px 0 0 $shadow-weak) drop-shadow(0 1px 0 $shadow-weak) drop-shadow(0 -1px 0 $shadow-weak); | ||||
| /* $logo-highlight: drop-shadow(1px 0 0 $highlight-weak) drop-shadow(-1px 0 0 $highlight-weak) drop-shadow(0 1px 0 $highlight-weak) drop-shadow(0 -1px 0 $highlight-weak); */ | ||||
| $logo-highlight: drop-shadow(0 0 1px $highlight); | ||||
| $logo-shadow: drop-shadow(1px 0 0 var(--shadow-weak)) drop-shadow(-1px 0 0 var(--shadow-weak)) drop-shadow(0 1px 0 var(--shadow-weak)) drop-shadow(0 -1px 0 var(--shadow-weak)); | ||||
| $logo-highlight: drop-shadow(0 0 1px var(--highlight)); | ||||
| 
 | ||||
| $profile: #222; | ||||
| $tile: #2a2a2a; | ||||
|  | @ -47,11 +46,15 @@ $female: #f0a; | |||
| 
 | ||||
|     --lighten: rgba(255, 255, 255, .5); | ||||
|     --lighten-weak: rgba(255, 255, 255, .2); | ||||
| 
 | ||||
|     --logo-shadow: drop-shadow(1px 0 0 $shadow-weak) drop-shadow(-1px 0 0 $shadow-weak) drop-shadow(0 1px 0 $shadow-weak) drop-shadow(0 -1px 0 $shadow-weak); | ||||
|     --logo-highlight: drop-shadow(0 0 1px $highlight); | ||||
| } | ||||
| 
 | ||||
| .light { | ||||
|     --text: #222; | ||||
|     --text-contrast: #fff; | ||||
| 
 | ||||
|     --background: #fff; | ||||
|     --background-dim: #fafafa; | ||||
| 
 | ||||
|  | @ -80,8 +83,9 @@ $female: #f0a; | |||
| .dark { | ||||
|     --text: #fff; | ||||
|     --text-contrast: #222; | ||||
|     --background: #333; | ||||
|     --background-dim: #222; | ||||
| 
 | ||||
|     --background: #222; | ||||
|     --background-dim: #181818; | ||||
| 
 | ||||
|     --profile: #222; | ||||
|     --tile: #2a2a2a; | ||||
|  |  | |||
| After Width: | Height: | Size: 632 KiB | 
| After Width: | Height: | Size: 242 KiB | 
| After Width: | Height: | Size: 175 KiB | 
| After Width: | Height: | Size: 498 KiB | 
| After Width: | Height: | Size: 603 KiB | 
| After Width: | Height: | Size: 548 KiB | 
| After Width: | Height: | Size: 497 KiB | 
| After Width: | Height: | Size: 617 KiB | 
| After Width: | Height: | Size: 546 KiB | 
| After Width: | Height: | Size: 566 KiB | 
| After Width: | Height: | Size: 501 KiB | 
| After Width: | Height: | Size: 602 KiB | 
|  | @ -0,0 +1,142 @@ | |||
| { | ||||
|   "9wGKENQ-qTI": { | ||||
|     "user_name": "Kunj Parekh", | ||||
|     "user_url": "https://unsplash.com/@kunjparekh?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit", | ||||
|     "photo_url": "https://unsplash.com/photos/9wGKENQ-qTI?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit" | ||||
|   }, | ||||
|   "x3BCSWCAtrY": { | ||||
|     "user_name": "yann maignan", | ||||
|     "user_url": "https://unsplash.com/@paris_interieurs?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit", | ||||
|     "photo_url": "https://unsplash.com/photos/x3BCSWCAtrY?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit" | ||||
|   }, | ||||
|   "EF6z_6R94zQ": { | ||||
|     "user_name": "Orlova Maria", | ||||
|     "user_url": "https://unsplash.com/@orlovamaria?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit", | ||||
|     "photo_url": "https://unsplash.com/photos/EF6z_6R94zQ?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit" | ||||
|   }, | ||||
|   "dC8NC2QBFyQ": { | ||||
|     "user_name": "Kari Shea", | ||||
|     "user_url": "https://unsplash.com/@karishea?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit", | ||||
|     "photo_url": "https://unsplash.com/photos/dC8NC2QBFyQ?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit" | ||||
|   }, | ||||
|   "A_AuirVquQY": { | ||||
|     "user_name": "Abbie Bernet", | ||||
|     "user_url": "https://unsplash.com/@abbiebernet?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit", | ||||
|     "photo_url": "https://unsplash.com/photos/A_AuirVquQY?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit" | ||||
|   }, | ||||
|   "IJf2v-StB4Y": { | ||||
|     "user_name": "yann maignan", | ||||
|     "user_url": "https://unsplash.com/@paris_interieurs?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit", | ||||
|     "photo_url": "https://unsplash.com/photos/IJf2v-StB4Y?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit" | ||||
|   }, | ||||
|   "frsN89Tf-1Q": { | ||||
|     "user_name": "Joshua Eckstein", | ||||
|     "user_url": "https://unsplash.com/@dcemr_e?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit", | ||||
|     "photo_url": "https://unsplash.com/photos/frsN89Tf-1Q?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit" | ||||
|   }, | ||||
|   "s95oB2n9jng": { | ||||
|     "user_name": "Aaron Huber", | ||||
|     "user_url": "https://unsplash.com/@aahubs?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit", | ||||
|     "photo_url": "https://unsplash.com/photos/s95oB2n9jng?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit" | ||||
|   }, | ||||
|   "n_vdmdtNh6M": { | ||||
|     "user_name": "Tiplada Mekvisan", | ||||
|     "user_url": "https://unsplash.com/@tipladam?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit", | ||||
|     "photo_url": "https://unsplash.com/photos/n_vdmdtNh6M?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit" | ||||
|   }, | ||||
|   "GbiVL6t4T-o": { | ||||
|     "user_name": "gdtography", | ||||
|     "user_url": "https://unsplash.com/@gdtography?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit", | ||||
|     "photo_url": "https://unsplash.com/photos/GbiVL6t4T-o?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit" | ||||
|   }, | ||||
|   "xx0oSB1YxRE": { | ||||
|     "user_name": "Joseph Albanese", | ||||
|     "user_url": "https://unsplash.com/@jpa?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit", | ||||
|     "photo_url": "https://unsplash.com/photos/xx0oSB1YxRE?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit" | ||||
|   }, | ||||
|   "McaNtoPEEcg": { | ||||
|     "user_name": "Brooke Cagle", | ||||
|     "user_url": "https://unsplash.com/@brookecagle?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit", | ||||
|     "photo_url": "https://unsplash.com/photos/McaNtoPEEcg?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit" | ||||
|   }, | ||||
|   "s65VlkIYSDw": { | ||||
|     "user_name": "Robert Bye", | ||||
|     "user_url": "https://unsplash.com/@robertbye?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit", | ||||
|     "photo_url": "https://unsplash.com/photos/s65VlkIYSDw?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit" | ||||
|   }, | ||||
|   "pEaBEqXXk-M": { | ||||
|     "user_name": "Aw Creative", | ||||
|     "user_url": "https://unsplash.com/@awcreative?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit", | ||||
|     "photo_url": "https://unsplash.com/photos/pEaBEqXXk-M?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit" | ||||
|   }, | ||||
|   "GaX7QTgs8pg": { | ||||
|     "user_name": "Waldemar Brandt", | ||||
|     "user_url": "https://unsplash.com/@waldemarbrandt67w?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit", | ||||
|     "photo_url": "https://unsplash.com/photos/GaX7QTgs8pg?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit" | ||||
|   }, | ||||
|   "b75FBg97dU0": { | ||||
|     "user_name": "Bao Menglong", | ||||
|     "user_url": "https://unsplash.com/@__menglong?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit", | ||||
|     "photo_url": "https://unsplash.com/photos/b75FBg97dU0?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit" | ||||
|   }, | ||||
|   "5i0GnoTTjSE": { | ||||
|     "user_name": "Philipp Berndt", | ||||
|     "user_url": "https://unsplash.com/@philberndt?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit", | ||||
|     "photo_url": "https://unsplash.com/photos/5i0GnoTTjSE?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit" | ||||
|   }, | ||||
|   "buhmhprfo3g": { | ||||
|     "user_name": "Kara Eads", | ||||
|     "user_url": "https://unsplash.com/@karaeads?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit", | ||||
|     "photo_url": "https://unsplash.com/photos/buhmhprfo3g?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit" | ||||
|   }, | ||||
|   "L7EwHkq1B2s": { | ||||
|     "user_name": "Kara Eads", | ||||
|     "user_url": "https://unsplash.com/@karaeads?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit", | ||||
|     "photo_url": "https://unsplash.com/photos/L7EwHkq1B2s?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit" | ||||
|   }, | ||||
|   "gBdirnalxcQ": { | ||||
|     "user_name": "Nick Fewings", | ||||
|     "user_url": "https://unsplash.com/@jannerboy62?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit", | ||||
|     "photo_url": "https://unsplash.com/photos/gBdirnalxcQ?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit" | ||||
|   }, | ||||
|   "-ILgaxpiQu0": { | ||||
|     "user_name": "Matteo Maretto", | ||||
|     "user_url": "https://unsplash.com/@matmaphotos?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit", | ||||
|     "photo_url": "https://unsplash.com/photos/-ILgaxpiQu0?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit" | ||||
|   }, | ||||
|   "ydcMwcfY5E0": { | ||||
|     "user_name": "Clark Street Mercantile", | ||||
|     "user_url": "https://unsplash.com/@mercantile?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit", | ||||
|     "photo_url": "https://unsplash.com/photos/ydcMwcfY5E0?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit" | ||||
|   }, | ||||
|   "zLT3VqWEgOQ": { | ||||
|     "user_name": "Sidekix Media", | ||||
|     "user_url": "https://unsplash.com/@sidekix?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit", | ||||
|     "photo_url": "https://unsplash.com/photos/zLT3VqWEgOQ?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit" | ||||
|   }, | ||||
|   "Yg0Rds6_TsY": { | ||||
|     "user_name": "Sergiu Cindea", | ||||
|     "user_url": "https://unsplash.com/@sergiucindea?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit", | ||||
|     "photo_url": "https://unsplash.com/photos/Yg0Rds6_TsY?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit" | ||||
|   }, | ||||
|   "gbS_fhrFo10": { | ||||
|     "user_name": "Bekah Russom", | ||||
|     "user_url": "https://unsplash.com/@bekahrussom?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit", | ||||
|     "photo_url": "https://unsplash.com/photos/gbS_fhrFo10?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit" | ||||
|   }, | ||||
|   "o3c-euNd_ZM": { | ||||
|     "user_name": "Alessandra Caretto", | ||||
|     "user_url": "https://unsplash.com/@alessandracaretto?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit", | ||||
|     "photo_url": "https://unsplash.com/photos/o3c-euNd_ZM?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit" | ||||
|   }, | ||||
|   "IEkMMvdZFc0": { | ||||
|     "user_name": "Nick Hillier", | ||||
|     "user_url": "https://unsplash.com/@nhillier?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit", | ||||
|     "photo_url": "https://unsplash.com/photos/IEkMMvdZFc0?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit" | ||||
|   }, | ||||
|   "hnhE83RhAWg": { | ||||
|     "user_name": "Stefan Steinbauer", | ||||
|     "user_url": "https://unsplash.com/@usinglight?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit", | ||||
|     "photo_url": "https://unsplash.com/photos/hnhE83RhAWg?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit" | ||||
|   } | ||||
| } | ||||
| After Width: | Height: | Size: 585 KiB | 
| After Width: | Height: | Size: 517 KiB | 
| After Width: | Height: | Size: 358 KiB | 
| After Width: | Height: | Size: 593 KiB | 
| After Width: | Height: | Size: 637 KiB | 
| After Width: | Height: | Size: 672 KiB | 
| After Width: | Height: | Size: 678 KiB | 
| After Width: | Height: | Size: 534 KiB | 
| After Width: | Height: | Size: 632 KiB | 
| After Width: | Height: | Size: 384 KiB | 
| After Width: | Height: | Size: 648 KiB | 
| After Width: | Height: | Size: 487 KiB | 
| After Width: | Height: | Size: 38 KiB | 
| After Width: | Height: | Size: 36 KiB | 
| After Width: | Height: | Size: 68 KiB | 
| After Width: | Height: | Size: 79 KiB | 
| After Width: | Height: | Size: 85 KiB | 
| After Width: | Height: | Size: 76 KiB | 
| After Width: | Height: | Size: 94 KiB | 
| After Width: | Height: | Size: 80 KiB | 
| After Width: | Height: | Size: 94 KiB | 
| After Width: | Height: | Size: 85 KiB | 
| After Width: | Height: | Size: 80 KiB | 
| After Width: | Height: | Size: 84 KiB | 
| After Width: | Height: | Size: 88 KiB | 
| After Width: | Height: | Size: 61 KiB | 
| After Width: | Height: | Size: 52 KiB | 
| After Width: | Height: | Size: 83 KiB | 
| After Width: | Height: | Size: 102 KiB | 
| After Width: | Height: | Size: 84 KiB | 
| After Width: | Height: | Size: 82 KiB | 
| After Width: | Height: | Size: 78 KiB | 
| After Width: | Height: | Size: 93 KiB | 
| After Width: | Height: | Size: 70 KiB | 
| After Width: | Height: | Size: 83 KiB | 
| After Width: | Height: | Size: 79 KiB | 
| After Width: | Height: | Size: 88 KiB | 
| After Width: | Height: | Size: 76 KiB | 
| After Width: | Height: | Size: 78 KiB | 
| After Width: | Height: | Size: 85 KiB | 
| After Width: | Height: | Size: 633 KiB | 
| After Width: | Height: | Size: 472 KiB | 
| After Width: | Height: | Size: 466 KiB | 
| After Width: | Height: | Size: 604 KiB | 
| After Width: | Height: | Size: 786 KiB | 
| After Width: | Height: | Size: 166 KiB | 
| After Width: | Height: | Size: 791 KiB | 
| After Width: | Height: | Size: 774 KiB | 
| After Width: | Height: | Size: 542 KiB | 
| After Width: | Height: | Size: 1.0 MiB | 
| After Width: | Height: | Size: 585 KiB | 
| After Width: | Height: | Size: 626 KiB | 
| After Width: | Height: | Size: 379 KiB | 
| After Width: | Height: | Size: 969 KiB | 
| After Width: | Height: | Size: 579 KiB | 
| After Width: | Height: | Size: 584 KiB | 
| After Width: | Height: | Size: 679 KiB | 
| After Width: | Height: | Size: 958 KiB | 
| After Width: | Height: | Size: 319 KiB | 
| After Width: | Height: | Size: 620 KiB | 
| After Width: | Height: | Size: 347 KiB | 
| After Width: | Height: | Size: 816 KiB | 
| After Width: | Height: | Size: 889 KiB | 
|  | @ -0,0 +1,152 @@ | |||
| { | ||||
|   "W3y9-Nf4go4": { | ||||
|     "user_name": "vardan harutyunyan", | ||||
|     "user_url": "https://unsplash.com/@vardanharutyunyanphotography?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit", | ||||
|     "photo_url": "https://unsplash.com/photos/W3y9-Nf4go4?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit" | ||||
|   }, | ||||
|   "FuaNmJPLAHg": { | ||||
|     "user_name": "MINSUN KIM", | ||||
|     "user_url": "https://unsplash.com/@maroonsun?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit", | ||||
|     "photo_url": "https://unsplash.com/photos/FuaNmJPLAHg?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit" | ||||
|   }, | ||||
|   "8flZ753v87Q": { | ||||
|     "user_name": "Ken Schlabach", | ||||
|     "user_url": "https://unsplash.com/@_tictac_?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit", | ||||
|     "photo_url": "https://unsplash.com/photos/8flZ753v87Q?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit" | ||||
|   }, | ||||
|   "6qdO_nFhYoI": { | ||||
|     "user_name": "Clay Banks", | ||||
|     "user_url": "https://unsplash.com/@claybanks?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit", | ||||
|     "photo_url": "https://unsplash.com/photos/6qdO_nFhYoI?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit" | ||||
|   }, | ||||
|   "357TZAnR11o": { | ||||
|     "user_name": "Anton Lammert", | ||||
|     "user_url": "https://unsplash.com/@anton_lammert?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit", | ||||
|     "photo_url": "https://unsplash.com/photos/357TZAnR11o?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit" | ||||
|   }, | ||||
|   "VMmPxFmfwfQ": { | ||||
|     "user_name": "Xiaopeng Ma", | ||||
|     "user_url": "https://unsplash.com/@celiama?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit", | ||||
|     "photo_url": "https://unsplash.com/photos/VMmPxFmfwfQ?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit" | ||||
|   }, | ||||
|   "DAufF3R8B5Q": { | ||||
|     "user_name": "Sangga Rima Roman Selia", | ||||
|     "user_url": "https://unsplash.com/@sxy_selia?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit", | ||||
|     "photo_url": "https://unsplash.com/photos/DAufF3R8B5Q?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit" | ||||
|   }, | ||||
|   "5U9n9gip7VY": { | ||||
|     "user_name": "Annie Spratt", | ||||
|     "user_url": "https://unsplash.com/@anniespratt?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit", | ||||
|     "photo_url": "https://unsplash.com/photos/5U9n9gip7VY?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit" | ||||
|   }, | ||||
|   "Tot7FLHWotI": { | ||||
|     "user_name": "elCarito", | ||||
|     "user_url": "https://unsplash.com/@elcarito?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit", | ||||
|     "photo_url": "https://unsplash.com/photos/Tot7FLHWotI?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit" | ||||
|   }, | ||||
|   "vph4L_OjhuI": { | ||||
|     "user_name": "Marek Piwnicki", | ||||
|     "user_url": "https://unsplash.com/@marekpiwnicki?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit", | ||||
|     "photo_url": "https://unsplash.com/photos/vph4L_OjhuI?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit" | ||||
|   }, | ||||
|   "Nd8h38tRIlc": { | ||||
|     "user_name": "Kevin Horvat", | ||||
|     "user_url": "https://unsplash.com/@hidd3n?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit", | ||||
|     "photo_url": "https://unsplash.com/photos/Nd8h38tRIlc?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit" | ||||
|   }, | ||||
|   "nACRxCEAut8": { | ||||
|     "user_name": "ALEKSEY KUPRIKOV", | ||||
|     "user_url": "https://unsplash.com/@alekskuprfilmz?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit", | ||||
|     "photo_url": "https://unsplash.com/photos/nACRxCEAut8?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit" | ||||
|   }, | ||||
|   "PjyfZ-Ujut8": { | ||||
|     "user_name": "Denys Nevozhai", | ||||
|     "user_url": "https://unsplash.com/@dnevozhai?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit", | ||||
|     "photo_url": "https://unsplash.com/photos/PjyfZ-Ujut8?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit" | ||||
|   }, | ||||
|   "X6utHocVX8w": { | ||||
|     "user_name": "Ian Williams", | ||||
|     "user_url": "https://unsplash.com/@ian_w?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit", | ||||
|     "photo_url": "https://unsplash.com/photos/X6utHocVX8w?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit" | ||||
|   }, | ||||
|   "cq6g1WssaJI": { | ||||
|     "user_name": "Tyler Casey", | ||||
|     "user_url": "https://unsplash.com/@tylercaseyprod?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit", | ||||
|     "photo_url": "https://unsplash.com/photos/cq6g1WssaJI?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit" | ||||
|   }, | ||||
|   "U1ad7OjdHx8": { | ||||
|     "user_name": "Dave Herring", | ||||
|     "user_url": "https://unsplash.com/@daveherring?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit", | ||||
|     "photo_url": "https://unsplash.com/photos/U1ad7OjdHx8?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit" | ||||
|   }, | ||||
|   "si5673B4PIE": { | ||||
|     "user_name": "Annie Spratt", | ||||
|     "user_url": "https://unsplash.com/@anniespratt?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit", | ||||
|     "photo_url": "https://unsplash.com/photos/si5673B4PIE?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit" | ||||
|   }, | ||||
|   "shv8H0Dv5iE": { | ||||
|     "user_name": "Aditya Chinchure", | ||||
|     "user_url": "https://unsplash.com/@adityachinchure?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit", | ||||
|     "photo_url": "https://unsplash.com/photos/shv8H0Dv5iE?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit" | ||||
|   }, | ||||
|   "hjVrWFVyOqE": { | ||||
|     "user_name": "chuttersnap", | ||||
|     "user_url": "https://unsplash.com/@chuttersnap?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit", | ||||
|     "photo_url": "https://unsplash.com/photos/hjVrWFVyOqE?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit" | ||||
|   }, | ||||
|   "_skrrHIcsEk": { | ||||
|     "user_name": "Edward Ma", | ||||
|     "user_url": "https://unsplash.com/@makcedward?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit", | ||||
|     "photo_url": "https://unsplash.com/photos/_skrrHIcsEk?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit" | ||||
|   }, | ||||
|   "GMNtcgo-KdA": { | ||||
|     "user_name": "Yoav Hornung", | ||||
|     "user_url": "https://unsplash.com/@yoav?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit", | ||||
|     "photo_url": "https://unsplash.com/photos/GMNtcgo-KdA?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit" | ||||
|   }, | ||||
|   "313dueuxHls": { | ||||
|     "user_name": "Jamie Street", | ||||
|     "user_url": "https://unsplash.com/@jamie452?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit", | ||||
|     "photo_url": "https://unsplash.com/photos/313dueuxHls?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit" | ||||
|   }, | ||||
|   "SncOlKOY7NY": { | ||||
|     "user_name": "Ward Mercer", | ||||
|     "user_url": "https://unsplash.com/@wildfirewilly?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit", | ||||
|     "photo_url": "https://unsplash.com/photos/SncOlKOY7NY?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit" | ||||
|   }, | ||||
|   "7R11NCmOY6k": { | ||||
|     "user_name": "Ivan Bandura", | ||||
|     "user_url": "https://unsplash.com/@unstable_affliction?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit", | ||||
|     "photo_url": "https://unsplash.com/photos/7R11NCmOY6k?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit" | ||||
|   }, | ||||
|   "YFwOiSisSLM": { | ||||
|     "user_name": "Krzysztof Kotkowicz", | ||||
|     "user_url": "https://unsplash.com/@lancaster83?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit", | ||||
|     "photo_url": "https://unsplash.com/photos/YFwOiSisSLM?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit" | ||||
|   }, | ||||
|   "gbO7zCOUJIg": { | ||||
|     "user_name": "Brian Kyed", | ||||
|     "user_url": "https://unsplash.com/@brnkd?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit", | ||||
|     "photo_url": "https://unsplash.com/photos/gbO7zCOUJIg?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit" | ||||
|   }, | ||||
|   "5iwG4xlUgJ4": { | ||||
|     "user_name": "Jason Leung", | ||||
|     "user_url": "https://unsplash.com/@ninjason?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit", | ||||
|     "photo_url": "https://unsplash.com/photos/5iwG4xlUgJ4?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit" | ||||
|   }, | ||||
|   "G_PSim-dsvU": { | ||||
|     "user_name": "Alexandra Jitariuc", | ||||
|     "user_url": "https://unsplash.com/@alexandrajitariuc?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit", | ||||
|     "photo_url": "https://unsplash.com/photos/G_PSim-dsvU?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit" | ||||
|   }, | ||||
|   "gVl6Hsi_pxo": { | ||||
|     "user_name": "Jean-Philippe Delberghe", | ||||
|     "user_url": "https://unsplash.com/@jipy32?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit", | ||||
|     "photo_url": "https://unsplash.com/photos/gVl6Hsi_pxo?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit" | ||||
|   }, | ||||
|   "p8h0_0pyW9k": { | ||||
|     "user_name": "Bence Balla-Schottner", | ||||
|     "user_url": "https://unsplash.com/@benballaschottner?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit", | ||||
|     "photo_url": "https://unsplash.com/photos/p8h0_0pyW9k?utm_source=unsample&utm_medium=referral&utm_campaign=api-credit" | ||||
|   } | ||||
| } | ||||
| After Width: | Height: | Size: 684 KiB | 
| After Width: | Height: | Size: 535 KiB | 
| After Width: | Height: | Size: 858 KiB | 
| After Width: | Height: | Size: 917 KiB | 
| After Width: | Height: | Size: 1.0 MiB | 
| After Width: | Height: | Size: 694 KiB | 
| After Width: | Height: | Size: 545 KiB | 
| After Width: | Height: | Size: 546 KiB | 
| After Width: | Height: | Size: 961 KiB | 
| After Width: | Height: | Size: 107 KiB | 
| After Width: | Height: | Size: 24 KiB | 
| After Width: | Height: | Size: 88 KiB | 
| After Width: | Height: | Size: 93 KiB | 
| After Width: | Height: | Size: 67 KiB | 
| After Width: | Height: | Size: 126 KiB | 
| After Width: | Height: | Size: 74 KiB | 
| After Width: | Height: | Size: 84 KiB | 
| After Width: | Height: | Size: 55 KiB | 
| After Width: | Height: | Size: 116 KiB | 
| After Width: | Height: | Size: 88 KiB |