HTML rendering of library contents
This commit provides an index.html file that shows the contents of the library with download links for the different formats. The index.html page and its thumbnails stored in the images/ folder can be regenerated anytime by running the build_index.py script
326
build_index.py
Executable file
|
@ -0,0 +1,326 @@
|
|||
#!/usr/bin/env python
|
||||
|
||||
# ************************************************************************
|
||||
# * Copyright (c) 2022 Yorik van Havre <yorik@uncreated.net> *
|
||||
# * *
|
||||
# * This program is free software; you can redistribute it and/or modify *
|
||||
# * it under the terms of the GNU Lesser General Public License (LGPL) *
|
||||
# * as published by the Free Software Foundation; either version 2 of *
|
||||
# * the License, or (at your option) any later version. *
|
||||
# * for detail see the LICENCE text file. *
|
||||
# * *
|
||||
# * This program is distributed in the hope that it will be useful, *
|
||||
# * but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
||||
# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
||||
# * GNU Library General Public License for more details. *
|
||||
# * *
|
||||
# * You should have received a copy of the GNU Library General Public *
|
||||
# * License along with this program; if not, write to the Free Software *
|
||||
# * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 *
|
||||
# * USA *
|
||||
# * *
|
||||
# ************************************************************************
|
||||
|
||||
"""This script produces an index.html file and an images/ folder which
|
||||
shows and allows to download the contents of the library"""
|
||||
|
||||
import os
|
||||
import zipfile
|
||||
import hashlib
|
||||
import urllib.request
|
||||
import urllib.parse
|
||||
|
||||
# path definitions
|
||||
homefolder = os.path.abspath(os.curdir)
|
||||
imagefolder = "thumbnails"
|
||||
htmlfile = os.path.join(homefolder, "index.html")
|
||||
baseurl = "https://github.com/FreeCAD/FreeCAD-library/blob/master/"
|
||||
excludelist = ["thumbnails"]
|
||||
|
||||
# icons
|
||||
defaulticon = os.path.join(imagefolder, "freecad-document.svg")
|
||||
gridicon = os.path.join(imagefolder, "icon-grid.svg")
|
||||
listicon = os.path.join(imagefolder, "icon-list.svg")
|
||||
stepicon = os.path.join(imagefolder, "icon-grey.svg")
|
||||
brepicon = os.path.join(imagefolder, "icon-blue.svg")
|
||||
stlicon = os.path.join(imagefolder, "icon-green.svg")
|
||||
collapseicon = os.path.join(imagefolder, "icon-right.svg")
|
||||
expandicon = os.path.join(imagefolder, "icon-down.svg")
|
||||
|
||||
# html template
|
||||
template = """<html>
|
||||
<head>
|
||||
<title>FreeCAD Library</title>
|
||||
<style>
|
||||
body {
|
||||
font-family: Arial,sans;
|
||||
color: black;
|
||||
background: white;
|
||||
}
|
||||
a:link, a:visited {
|
||||
color: black;
|
||||
text-decoration: none;
|
||||
}
|
||||
img {
|
||||
width: 16px;
|
||||
}
|
||||
h1, h2, h3, h4, h5, h6, .h7, .h8, .h9 {
|
||||
clear: both;
|
||||
margin: 0;
|
||||
cursor: pointer;
|
||||
font-size: 1em;
|
||||
}
|
||||
.collapsable {
|
||||
border-left: 1px solid grey;
|
||||
padding-left: 8px;
|
||||
margin-left: 5px;
|
||||
}
|
||||
.cards {
|
||||
margin: 0;
|
||||
}
|
||||
.card {
|
||||
float:left;
|
||||
width: 128px;
|
||||
margin: 4px;
|
||||
}
|
||||
.icon {
|
||||
width: 128px;
|
||||
}
|
||||
.hicon {
|
||||
width: 12px;
|
||||
margin-right: 4px;
|
||||
}
|
||||
.name {
|
||||
clear: left;
|
||||
float: left;
|
||||
overflow-wrap: break-word;
|
||||
width: 128px;
|
||||
}
|
||||
.links {
|
||||
float: left;
|
||||
}
|
||||
.fullwidth {
|
||||
width: 100% !important;
|
||||
}
|
||||
.smallicon {
|
||||
width: 16px !important;
|
||||
margin-right: 8px;
|
||||
float: left !important;
|
||||
}
|
||||
.largetext {
|
||||
clear: none !important;
|
||||
width: auto !important;
|
||||
margin-right: 8px;
|
||||
}
|
||||
.hidden {
|
||||
display: none;
|
||||
}
|
||||
.iconselected {
|
||||
border: 2px solid black;
|
||||
}
|
||||
</style>
|
||||
<script>
|
||||
function seticon() {
|
||||
collection = document.getElementsByClassName("card");
|
||||
for (let i = 0; i < collection.length; i++) {
|
||||
collection[i].classList.remove("fullwidth")
|
||||
}
|
||||
collection = document.getElementsByClassName("icon");
|
||||
for (let i = 0; i < collection.length; i++) {
|
||||
collection[i].classList.remove("smallicon")
|
||||
}
|
||||
collection = document.getElementsByClassName("name");
|
||||
for (let i = 0; i < collection.length; i++) {
|
||||
collection[i].classList.remove("largetext")
|
||||
}
|
||||
icon_icon = document.getElementById("icon_icon");
|
||||
icon_icon.classList.add("iconselected")
|
||||
icon_grid = document.getElementById("icon_grid");
|
||||
icon_grid.classList.remove("iconselected")
|
||||
}
|
||||
function setgrid() {
|
||||
collection = document.getElementsByClassName("card");
|
||||
for (let i = 0; i < collection.length; i++) {
|
||||
collection[i].classList.add("fullwidth")
|
||||
}
|
||||
collection = document.getElementsByClassName("icon");
|
||||
for (let i = 0; i < collection.length; i++) {
|
||||
collection[i].classList.add("smallicon")
|
||||
}
|
||||
collection = document.getElementsByClassName("name");
|
||||
for (let i = 0; i < collection.length; i++) {
|
||||
collection[i].classList.add("largetext")
|
||||
}
|
||||
icon_icon = document.getElementById("icon_icon");
|
||||
icon_icon.classList.remove("iconselected")
|
||||
icon_grid = document.getElementById("icon_grid");
|
||||
icon_grid.classList.add("iconselected")
|
||||
}
|
||||
function collapse(elt) {
|
||||
ndiv = elt.parentElement.nextSibling.nextSibling;
|
||||
if (ndiv.classList.contains("hidden")) {
|
||||
elt.src = "<!--expandicon-->";
|
||||
ndiv.classList.remove("hidden");
|
||||
} else {
|
||||
elt.src = "<!--collapseicon-->";
|
||||
ndiv.classList.add("hidden");
|
||||
}
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="nav">
|
||||
<a id="icon_icon" class="navicon iconselected" href="#" title="icon view" onclick="seticon()">
|
||||
<img src="<!--gridicon-->"/>
|
||||
</a>
|
||||
<a id="icon_grid" class="navicon" href="#" title="list view" onclick="setgrid()">
|
||||
<img src="<!--listicon-->"/>
|
||||
</a>
|
||||
</div>
|
||||
<!--contents-->
|
||||
</body>
|
||||
</html>"""
|
||||
|
||||
|
||||
def build_html(dirpath, level=1):
|
||||
|
||||
"""walks a directory and builds cards from its contents"""
|
||||
|
||||
html = ""
|
||||
if os.path.isdir(dirpath):
|
||||
html += build_title(dirpath, level)
|
||||
if level > 1:
|
||||
offset = 5 + (level - 2) * 2
|
||||
html += '<div class="collapsable hidden">\n'
|
||||
nodes = os.listdir(dirpath)
|
||||
nodes = [node for node in nodes if node[0] != "."]
|
||||
nodes = [node for node in nodes if node not in excludelist]
|
||||
nodes = [os.path.join(dirpath, node) for node in nodes]
|
||||
dirs = [node for node in nodes if os.path.isdir(node)]
|
||||
dirs = sorted(dirs)
|
||||
files = [node for node in nodes if node.lower().endswith(".fcstd")]
|
||||
files = sorted(files)
|
||||
for fpath in dirs:
|
||||
html += build_html(fpath, level+1)
|
||||
if files:
|
||||
html += '<div class="cards">\n'
|
||||
for fpath in files:
|
||||
html += build_card(fpath)
|
||||
html += '</div>\n'
|
||||
if level > 1:
|
||||
html += '</div>\n'
|
||||
return html
|
||||
|
||||
|
||||
def build_title(dirpath, level):
|
||||
|
||||
"""builds an html title from a path"""
|
||||
|
||||
if level == 1:
|
||||
# do not print the first-level title
|
||||
return ""
|
||||
sl = str(level)
|
||||
sn = '<img class="hicon" src="'+collapseicon+'"/>'
|
||||
sn += os.path.basename(dirpath)
|
||||
if level < 7:
|
||||
title = '<h' + sl + ' onclick="collapse(this.children[0])">'
|
||||
title += sn + '</h' + sl + '>\n'
|
||||
else:
|
||||
title = '<div class="h' + sl + '" onclick="collapse(this.children[0])">'
|
||||
title += sn + '</div>\n'
|
||||
return title
|
||||
|
||||
|
||||
def build_card(filepath):
|
||||
|
||||
"""builds an HTML card for a given file"""
|
||||
|
||||
print("Building card for", filepath)
|
||||
html = ""
|
||||
if os.path.exists(filepath):
|
||||
basename = os.path.splitext(filepath)[0]
|
||||
name = os.path.basename(basename)
|
||||
iconpath = get_icon(filepath)
|
||||
raw = "?raw=true"
|
||||
fileurl = baseurl + clean_path(filepath) + raw
|
||||
html += '<div class="card">'
|
||||
html += '<a title="FCSTD version" href="' + fileurl + '">'
|
||||
html += '<img class="icon" src="' + clean_path(iconpath) + '"/>'
|
||||
html += '<div class="name">' + name + '</div>'
|
||||
html += '</a>'
|
||||
html += '<div class="links">'
|
||||
exts = {'STEP': (".stp", ".step", ".STP", ".STEP"),
|
||||
'BREP': (".brp", ".brep", ".BRP", ".BREP"),
|
||||
'STL': (".stl", ".STL")}
|
||||
icons = {'STEP': stepicon,
|
||||
'BREP': brepicon,
|
||||
'STL': stlicon}
|
||||
for name, exts in exts.items():
|
||||
for ext in exts:
|
||||
if os.path.exists(basename + ext):
|
||||
exturl = baseurl + clean_path(basename + ext) + raw
|
||||
html += ' <a href="' + exturl
|
||||
html += '" title="' + name + ' version">'
|
||||
html += '<img src="' + icons[name] + '"/>'
|
||||
html += '</a>'
|
||||
break
|
||||
html += '</div>' # links
|
||||
html += '</div>\n' # card
|
||||
return html
|
||||
|
||||
|
||||
def get_icon(filepath):
|
||||
|
||||
"""returns a thumbnail image path for a given file path"""
|
||||
|
||||
iconname = get_hashname(filepath)
|
||||
iconurl = os.path.join(imagefolder, iconname)
|
||||
iconpath = os.path.join(homefolder, iconurl)
|
||||
try:
|
||||
zfile = zipfile.ZipFile(filepath)
|
||||
except Exception:
|
||||
return defaulticon
|
||||
if "thumbnails/Thumbnail.png" in zfile.namelist():
|
||||
data = zfile.read("thumbnails/Thumbnail.png")
|
||||
thumb = open(iconpath, "wb")
|
||||
thumb.write(data)
|
||||
thumb.close()
|
||||
else:
|
||||
return defaulticon
|
||||
if not os.path.exists(iconpath):
|
||||
return defaulticon
|
||||
return iconurl
|
||||
|
||||
|
||||
def get_hashname(filepath):
|
||||
|
||||
"""creates a png filename for a given file path"""
|
||||
|
||||
filepath = clean_path(filepath)
|
||||
return hashlib.md5(filepath.encode()).hexdigest()+".png"
|
||||
|
||||
|
||||
def clean_path(filepath):
|
||||
|
||||
"""cleans a file path into subfolder/subfolder/file form"""
|
||||
|
||||
if filepath.startswith(homefolder):
|
||||
# strip local part od the path
|
||||
filepath = filepath[len(homefolder):]
|
||||
filepath = filepath.replace("\\", "/")
|
||||
if filepath.startswith("/"):
|
||||
filepath = filepath[1:]
|
||||
filepath = urllib.parse.quote(filepath)
|
||||
return filepath
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
html = build_html(homefolder)
|
||||
html = template.replace("<!--contents-->", html)
|
||||
html = html.replace("<!--listicon-->", listicon)
|
||||
html = html.replace("<!--gridicon-->", gridicon)
|
||||
html = html.replace("<!--collapseicon-->", collapseicon)
|
||||
html = html.replace("<!--expandicon-->", expandicon)
|
||||
with open(htmlfile, "w") as index:
|
||||
index.write(html)
|
||||
print("Saving", htmlfile, "... All done!")
|
6753
index.html
Normal file
BIN
thumbnails/0017dd6ccf4298c410b47e1edec8a671.png
Normal file
After Width: | Height: | Size: 4.6 KiB |
BIN
thumbnails/0019d62d099991bf20cac8dad7a7681a.png
Normal file
After Width: | Height: | Size: 5.8 KiB |
BIN
thumbnails/0061a69b31ecae5f01fa016cecee0729.png
Normal file
After Width: | Height: | Size: 6 KiB |
BIN
thumbnails/00d5516ceebd7276da60a1e92be611b3.png
Normal file
After Width: | Height: | Size: 4.4 KiB |
BIN
thumbnails/00d95ca6bcab55808746bdf0d2c66784.png
Normal file
After Width: | Height: | Size: 6 KiB |
BIN
thumbnails/00ff9614a0f3470a3868b2923f6adf4e.png
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
thumbnails/01850e68d0a2bb8c3c8ff39b4d4dd2f8.png
Normal file
After Width: | Height: | Size: 5.1 KiB |
BIN
thumbnails/0193585220a1d8248a9a2e0d9fa7a30c.png
Normal file
After Width: | Height: | Size: 7.7 KiB |
BIN
thumbnails/023eed74f193ff88a2e393d4c7f37072.png
Normal file
After Width: | Height: | Size: 8.1 KiB |
BIN
thumbnails/025305acc147e4530eb34425b00592bd.png
Normal file
After Width: | Height: | Size: 7.6 KiB |
BIN
thumbnails/0362e58245e5e0cf918375f7df80806a.png
Normal file
After Width: | Height: | Size: 6.6 KiB |
BIN
thumbnails/041f52a41ef2cf3b9f74427929480f38.png
Normal file
After Width: | Height: | Size: 6.2 KiB |
BIN
thumbnails/043129c4adfaca6e8954f8c71178e3dd.png
Normal file
After Width: | Height: | Size: 5.1 KiB |
BIN
thumbnails/04e9d41e615abc5da05a4a8413970892.png
Normal file
After Width: | Height: | Size: 4.4 KiB |
BIN
thumbnails/055a6499b8f4a791d744d2b174b72d17.png
Normal file
After Width: | Height: | Size: 5.3 KiB |
BIN
thumbnails/056371433c8dc840d6b3828de472eeac.png
Normal file
After Width: | Height: | Size: 6.1 KiB |
BIN
thumbnails/0696fd59c8fb73803e68917295c5790b.png
Normal file
After Width: | Height: | Size: 27 KiB |
BIN
thumbnails/072c6bd08914bdfdd07075adc53bba7c.png
Normal file
After Width: | Height: | Size: 6.4 KiB |
BIN
thumbnails/07436a3a3e0e3028411588acd4690190.png
Normal file
After Width: | Height: | Size: 5.4 KiB |
BIN
thumbnails/080e2f48625dec03cbbe7c4d3531678b.png
Normal file
After Width: | Height: | Size: 6.1 KiB |
BIN
thumbnails/081ad16e62c72fe88e517f3b8cea2383.png
Normal file
After Width: | Height: | Size: 5 KiB |
BIN
thumbnails/081d75def22a10560f349f6c8076f519.png
Normal file
After Width: | Height: | Size: 8.2 KiB |
BIN
thumbnails/0835c9847b2ed96f4f84b43055f709bc.png
Normal file
After Width: | Height: | Size: 8.2 KiB |
BIN
thumbnails/089bf967997645e62f715fb9366f51d6.png
Normal file
After Width: | Height: | Size: 7.6 KiB |
BIN
thumbnails/08ce021a0000af07edd44a60b39d7997.png
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
thumbnails/08f0a886bc801e3e396db7d45246f24a.png
Normal file
After Width: | Height: | Size: 6.4 KiB |
BIN
thumbnails/0927354df38533d41467bb3a4d5058fb.png
Normal file
After Width: | Height: | Size: 8.8 KiB |
BIN
thumbnails/09432ef0c0624e1457e0c9fe62a96f8b.png
Normal file
After Width: | Height: | Size: 5.2 KiB |
0
thumbnails/0a88596c28b0c5793dab8d1bb22949a8.png
Normal file
BIN
thumbnails/0b29a312e85f9dbf99460b108259ae25.png
Normal file
After Width: | Height: | Size: 5.4 KiB |
BIN
thumbnails/0b3cd4a92ff12614e549224763e2911c.png
Normal file
After Width: | Height: | Size: 5.2 KiB |
BIN
thumbnails/0bcc255ad8b0eb96154698de2b1e54f1.png
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
thumbnails/0bdf8e3674cb12cbcc8651c691ef1289.png
Normal file
After Width: | Height: | Size: 4 KiB |
BIN
thumbnails/0be33d6b6a146d814172d919a1fb2b0c.png
Normal file
After Width: | Height: | Size: 5.2 KiB |
BIN
thumbnails/0c0d6c0a26c69f5b33cbfc967d212ee6.png
Normal file
After Width: | Height: | Size: 4.9 KiB |
BIN
thumbnails/0cf68a02b121c58120dffdb1648830f8.png
Normal file
After Width: | Height: | Size: 6.4 KiB |
BIN
thumbnails/0d685f58045e97639f73b88123e8b9da.png
Normal file
After Width: | Height: | Size: 5.6 KiB |
BIN
thumbnails/0ea15176a2fd354a3f75f3c78d8b00b3.png
Normal file
After Width: | Height: | Size: 5.5 KiB |
BIN
thumbnails/0ee569ca9a6a9961d25ee2ecb1d0a188.png
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
thumbnails/0f0f13aa102ed7f01f8ce350f9af5cea.png
Normal file
After Width: | Height: | Size: 8.9 KiB |
BIN
thumbnails/0f3acdbae37f4fc774a27133a0b40b30.png
Normal file
After Width: | Height: | Size: 6.1 KiB |
BIN
thumbnails/0fafe158fa104cf474b7cc772e35b4a7.png
Normal file
After Width: | Height: | Size: 6.7 KiB |
BIN
thumbnails/0fe2639f679c6fc79a3930251b6948d8.png
Normal file
After Width: | Height: | Size: 10 KiB |
BIN
thumbnails/100e14e83c54a011688b7fe7431760cf.png
Normal file
After Width: | Height: | Size: 6.1 KiB |
BIN
thumbnails/1019fa8b0cfd0b821733017670d603cb.png
Normal file
After Width: | Height: | Size: 8.1 KiB |
0
thumbnails/10684b1b4007e19ae05865933736e52b.png
Normal file
BIN
thumbnails/109df1216d601c3504d07f9df4945f80.png
Normal file
After Width: | Height: | Size: 13 KiB |
0
thumbnails/112f999dc49d543adfccaff1cc0f7a31.png
Normal file
BIN
thumbnails/12584b43d88be8dbbe31b6a40f792c4e.png
Normal file
After Width: | Height: | Size: 6.7 KiB |
BIN
thumbnails/126db0acc393dda1f9e31518bb9b9100.png
Normal file
After Width: | Height: | Size: 6.2 KiB |
BIN
thumbnails/13210dbdc8ce64091ec6265aa8fb8a1d.png
Normal file
After Width: | Height: | Size: 7.9 KiB |
BIN
thumbnails/13b3df4f5693c8945f70345d5c1f7d93.png
Normal file
After Width: | Height: | Size: 3.8 KiB |
BIN
thumbnails/13caf1e090b3fac834db0bbef3cbe79a.png
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
thumbnails/13d3817755d1c2571dee4057cb221223.png
Normal file
After Width: | Height: | Size: 7.7 KiB |
BIN
thumbnails/13e8610a9eca081bab01e93013dab1fe.png
Normal file
After Width: | Height: | Size: 7.9 KiB |
BIN
thumbnails/1425a81116971a2225c5c06b0a307fe9.png
Normal file
After Width: | Height: | Size: 6.9 KiB |
BIN
thumbnails/147aa3b8e83821878d876a764bf6d6f1.png
Normal file
After Width: | Height: | Size: 4.9 KiB |
BIN
thumbnails/14c0180332280b480389f158bb9a62a0.png
Normal file
After Width: | Height: | Size: 6.1 KiB |
BIN
thumbnails/14e66bc093722eccd95eec24a4d36cc3.png
Normal file
After Width: | Height: | Size: 4.3 KiB |
BIN
thumbnails/14fe67115b75bbc8a40eedef9e338e1a.png
Normal file
After Width: | Height: | Size: 7.1 KiB |
BIN
thumbnails/155a1bb3adccba4baeb65167f8c001e7.png
Normal file
After Width: | Height: | Size: 7.1 KiB |
BIN
thumbnails/15a1f8c737e7da2e7d7c81e5a244ece4.png
Normal file
After Width: | Height: | Size: 6 KiB |
BIN
thumbnails/1613ca1b2803defd296887eeff04c834.png
Normal file
After Width: | Height: | Size: 2.7 KiB |
BIN
thumbnails/16772f47fe9558b8f8dadfb3fc812d3c.png
Normal file
After Width: | Height: | Size: 5 KiB |
BIN
thumbnails/171850841868e30337d264e5a28da8df.png
Normal file
After Width: | Height: | Size: 2.7 KiB |
BIN
thumbnails/17773b376950a5e6e3d58d4be46aec0a.png
Normal file
After Width: | Height: | Size: 7.5 KiB |
BIN
thumbnails/17915ffe96f55da81f86e65707eeda97.png
Normal file
After Width: | Height: | Size: 4.9 KiB |
BIN
thumbnails/17a296a5549d4c42b8168e4669bb6bae.png
Normal file
After Width: | Height: | Size: 7.8 KiB |
BIN
thumbnails/18e214b8e4b6209464e3984620b4face.png
Normal file
After Width: | Height: | Size: 6.2 KiB |
BIN
thumbnails/1911167daf4168d01723b02b67029d2e.png
Normal file
After Width: | Height: | Size: 7.5 KiB |
BIN
thumbnails/19645d0238b87ffd0d1f4a9c8a7b61aa.png
Normal file
After Width: | Height: | Size: 7.3 KiB |
BIN
thumbnails/1973567d97845979f0b591f87ea676cf.png
Normal file
After Width: | Height: | Size: 6.6 KiB |
BIN
thumbnails/19ed03d6a704ead493954ab64fbab3f6.png
Normal file
After Width: | Height: | Size: 6.8 KiB |
BIN
thumbnails/19f15fcedd65a5e5f877c86b03023db3.png
Normal file
After Width: | Height: | Size: 4.8 KiB |
BIN
thumbnails/1a7de5b36d678eabc07f713026e0b1a2.png
Normal file
After Width: | Height: | Size: 6.3 KiB |
BIN
thumbnails/1afe1a4a524794374ec15633cbb6d3f7.png
Normal file
After Width: | Height: | Size: 3.7 KiB |
BIN
thumbnails/1b7459b5a172b6cb339811d5be1bcfcf.png
Normal file
After Width: | Height: | Size: 6.1 KiB |
BIN
thumbnails/1bd6c315ce96c5a1e38a5a06e2f7c409.png
Normal file
After Width: | Height: | Size: 5.3 KiB |
BIN
thumbnails/1c05ed3793dfe2495efcefcdac521303.png
Normal file
After Width: | Height: | Size: 5.8 KiB |
BIN
thumbnails/1c0aa7ad55d72c333876abf492b19e55.png
Normal file
After Width: | Height: | Size: 5.2 KiB |
BIN
thumbnails/1c16ff96f74f2b75cc821c1f7423da68.png
Normal file
After Width: | Height: | Size: 7.3 KiB |
BIN
thumbnails/1c29572afe24626865b4bb13df595e87.png
Normal file
After Width: | Height: | Size: 5.5 KiB |
BIN
thumbnails/1c51eee713a58a8f103c944032554b9f.png
Normal file
After Width: | Height: | Size: 7.1 KiB |
0
thumbnails/1cd73466148c425597169649a692071c.png
Normal file
BIN
thumbnails/1cea0b1a4aaf2720847bc83d11633cc2.png
Normal file
After Width: | Height: | Size: 7.1 KiB |
BIN
thumbnails/1d5f38aceef177d46b87b06a9e160f20.png
Normal file
After Width: | Height: | Size: 6.1 KiB |
BIN
thumbnails/1db64d541aca7c7449cabd21bcd8aa96.png
Normal file
After Width: | Height: | Size: 5.4 KiB |
BIN
thumbnails/1e03a0fc8759fc4fedf0d2eeb4164a1e.png
Normal file
After Width: | Height: | Size: 6.7 KiB |
BIN
thumbnails/1e405c87494044037ae9f8fb2da308df.png
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
thumbnails/1e4a2a02dfae3940cbae08f2b4ffc569.png
Normal file
After Width: | Height: | Size: 6.8 KiB |
BIN
thumbnails/1e6411dd5a85b189d89bc413fafc92f4.png
Normal file
After Width: | Height: | Size: 7.2 KiB |
BIN
thumbnails/1e6f511bd9c5da98ea03ee9eb731d746.png
Normal file
After Width: | Height: | Size: 5.2 KiB |
BIN
thumbnails/1e6f9cd7eb0bfe810896d7116d72f527.png
Normal file
After Width: | Height: | Size: 4.7 KiB |
BIN
thumbnails/1f65de10a5102f0713a4325063e6d79f.png
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
thumbnails/1f9651f80c51aa8338a38664c802b345.png
Normal file
After Width: | Height: | Size: 4.2 KiB |
BIN
thumbnails/1fd5594ba4f0ef4ed732bdb257ccfb60.png
Normal file
After Width: | Height: | Size: 4.9 KiB |
BIN
thumbnails/21754951c6428a34bda7e91b98e68a27.png
Normal file
After Width: | Height: | Size: 8.2 KiB |
BIN
thumbnails/217ed5345f8cad5fba5a87e4540e7e02.png
Normal file
After Width: | Height: | Size: 4.8 KiB |