Skip to content

Commit

Permalink
[Automation] Site update No.218
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jan 10, 2024
0 parents commit 70fccfd
Show file tree
Hide file tree
Showing 2,644 changed files with 26,828 additions and 0 deletions.
1 change: 1 addition & 0 deletions .nojekyll
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions 404.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<!doctype html><html lang="en" ><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><meta name="theme-color" media="(prefers-color-scheme: light)" content="#f7f7f7"><meta name="theme-color" media="(prefers-color-scheme: dark)" content="#1b1b1e"><meta name="apple-mobile-web-app-capable" content="yes"><meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"><meta name="viewport" content="width=device-width, user-scalable=no initial-scale=1, shrink-to-fit=no, viewport-fit=cover" ><meta name="generator" content="Jekyll v4.3.2" /><meta property="og:title" content="404: Page not found" /><meta property="og:locale" content="en" /><meta name="description" content="ZhgChgLi iOS Developer 求知若渴 教學相長 更愛電影/美劇/西音/運動/生活" /><meta property="og:description" content="ZhgChgLi iOS Developer 求知若渴 教學相長 更愛電影/美劇/西音/運動/生活" /><link rel="canonical" href="https://zhgchg.li/404.html" /><meta property="og:url" content="https://zhgchg.li/404.html" /><meta property="og:site_name" content="ZhgChgLi" /><meta property="og:type" content="website" /><meta name="twitter:card" content="summary" /><meta property="twitter:title" content="404: Page not found" /><meta name="twitter:site" content="@zhgchgli" /> <script type="application/ld+json"> {"@context":"https://schema.org","@type":"WebPage","description":"ZhgChgLi iOS Developer 求知若渴 教學相長 更愛電影/美劇/西音/運動/生活","headline":"404: Page not found","url":"https://zhgchg.li/404.html"}</script><title>404: Page not found | ZhgChgLi</title><link rel="apple-touch-icon" sizes="180x180" href="/assets/img/favicons/apple-touch-icon.png"><link rel="icon" type="image/png" sizes="32x32" href="/assets/img/favicons/favicon-32x32.png"><link rel="icon" type="image/png" sizes="16x16" href="/assets/img/favicons/favicon-16x16.png"><link rel="manifest" href="/assets/img/favicons/site.webmanifest"><link rel="shortcut icon" href="/assets/img/favicons/favicon.ico"><meta name="apple-mobile-web-app-title" content="ZhgChgLi"><meta name="application-name" content="ZhgChgLi"><meta name="msapplication-TileColor" content="#da532c"><meta name="msapplication-config" content="/assets/img/favicons/browserconfig.xml"><meta name="theme-color" content="#ffffff"><link rel="preconnect" href="https://fonts.googleapis.com" ><link rel="dns-prefetch" href="https://fonts.googleapis.com" ><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin><link rel="dns-prefetch" href="https://fonts.gstatic.com" crossorigin><link rel="preconnect" href="https://fonts.googleapis.com" ><link rel="dns-prefetch" href="https://fonts.googleapis.com" ><link rel="preconnect" href="https://cdn.jsdelivr.net" ><link rel="dns-prefetch" href="https://cdn.jsdelivr.net" ><link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Lato&family=Source+Sans+Pro:wght@400;600;700;900&display=swap"><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/all.min.css"><link rel="stylesheet" href="/assets/css/style.css"><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/magnific-popup.min.css"> <script type="text/javascript"> class ModeToggle { static get MODE_KEY() { return 'mode'; } static get MODE_ATTR() { return 'data-mode'; } static get DARK_MODE() { return 'dark'; } static get LIGHT_MODE() { return 'light'; } static get ID() { return 'mode-toggle'; } constructor() { if (this.hasMode) { if (this.isDarkMode) { if (!this.isSysDarkPrefer) { this.setDark(); } } else { if (this.isSysDarkPrefer) { this.setLight(); } } } let self = this; /* always follow the system prefers */ this.sysDarkPrefers.addEventListener('change', () => { if (self.hasMode) { if (self.isDarkMode) { if (!self.isSysDarkPrefer) { self.setDark(); } } else { if (self.isSysDarkPrefer) { self.setLight(); } } self.clearMode(); } self.notify(); }); } /* constructor() */ get sysDarkPrefers() { return window.matchMedia('(prefers-color-scheme: dark)'); } get isSysDarkPrefer() { return this.sysDarkPrefers.matches; } get isDarkMode() { return this.mode === ModeToggle.DARK_MODE; } get isLightMode() { return this.mode === ModeToggle.LIGHT_MODE; } get hasMode() { return this.mode != null; } get mode() { return sessionStorage.getItem(ModeToggle.MODE_KEY); } /* get the current mode on screen */ get modeStatus() { if (this.isDarkMode || (!this.hasMode && this.isSysDarkPrefer)) { return ModeToggle.DARK_MODE; } else { return ModeToggle.LIGHT_MODE; } } setDark() { document.documentElement.setAttribute(ModeToggle.MODE_ATTR, ModeToggle.DARK_MODE); sessionStorage.setItem(ModeToggle.MODE_KEY, ModeToggle.DARK_MODE); } setLight() { document.documentElement.setAttribute(ModeToggle.MODE_ATTR, ModeToggle.LIGHT_MODE); sessionStorage.setItem(ModeToggle.MODE_KEY, ModeToggle.LIGHT_MODE); } clearMode() { document.documentElement.removeAttribute(ModeToggle.MODE_ATTR); sessionStorage.removeItem(ModeToggle.MODE_KEY); } /* Notify another plugins that the theme mode has changed */ notify() { window.postMessage( { direction: ModeToggle.ID, message: this.modeStatus }, '*' ); } flipMode() { if (this.hasMode) { if (this.isSysDarkPrefer) { if (this.isLightMode) { this.clearMode(); } else { this.setLight(); } } else { if (this.isDarkMode) { this.clearMode(); } else { this.setDark(); } } } else { if (this.isSysDarkPrefer) { this.setLight(); } else { this.setDark(); } } this.notify(); } /* flipMode() */ } /* ModeToggle */ const modeToggle = new ModeToggle(); </script><body><div id="sidebar" class="d-flex flex-column align-items-end"><div class="profile-wrapper"> <a href="/" id="avatar" class="rounded-circle"> <img src="/assets/images/zhgchgli.jpg" width="112" height="112" alt="avatar" onerror="this.style.display='none'"> </a><div class="site-title"> <a href="/">ZhgChgLi</a></div><div class="site-subtitle fst-italic">Live a life you will remember.</div></div><ul class="nav flex-column flex-grow-1 w-100 ps-0"><li class="nav-item"> <a href="/" class="nav-link"> <i class="fa-fw fas fa-home"></i> <span>HOME</span> </a><li class="nav-item"> <a href="/categories/" class="nav-link"> <i class="fa-fw fas fa-stream"></i> <span>CATEGORIES</span> </a><li class="nav-item"> <a href="/tags/" class="nav-link"> <i class="fa-fw fas fa-tag"></i> <span>TAGS</span> </a><li class="nav-item"> <a href="/archives/" class="nav-link"> <i class="fa-fw fas fa-archive"></i> <span>ARCHIVES</span> </a><li class="nav-item"> <a href="/about/" class="nav-link"> <i class="fa-fw fas fa-info-circle"></i> <span>ABOUT</span> </a><li class="nav-item"> <a href="/real/" class="nav-link"> <i class="fa-fw fa fa-camera-retro"></i> <span>REAL LIFE</span> </a><li class="nav-item"> <a href="/contact/" class="nav-link"> <i class="fa-fw fa fa-envelope-open"></i> <span>CONTACT</span> </a></ul><div class="sidebar-bottom d-flex flex-wrap align-items-center w-100"> <button class="mode-toggle btn" aria-label="Switch Mode"> <i class="fas fa-adjust"></i> </button> <span class="icon-border"></span> <a href="https://medium.com/@zhgchgli" aria-label="medium" target="_blank" rel="noopener noreferrer" > <i class="fab fa-medium"></i> </a> <a href="https://www.linkedin.com/in/zhgchgli" aria-label="linkedin" target="_blank" rel="noopener noreferrer" > <i class="fab fa-linkedin"></i> </a> <a href="javascript:location.href = 'mailto:' + ['zhgchgli','gmail.com'].join('@')" aria-label="email" > <i class="fas fa-envelope"></i> </a> <a href="/feed.xml" aria-label="rss" > <i class="fas fa-rss"></i> </a></div></div><div id="main-wrapper" class="d-flex justify-content-center"><div id="main" class="container px-xxl-5"><div id="topbar-wrapper"><div id="topbar" class="container d-flex align-items-center justify-content-between h-100" > <span id="breadcrumb"> <span> <a href="/"> Home </a> </span> <span>404: Page not found</span> </span> <i id="sidebar-trigger" class="fas fa-bars fa-fw"></i><div id="topbar-title"> 404: Page not found</div><i id="search-trigger" class="fas fa-search fa-fw"></i> <span id="search-wrapper" class="align-items-center"> <i class="fas fa-search fa-fw"></i> <input class="form-control" id="search-input" type="search" aria-label="search" autocomplete="off" placeholder="Search..." > </span> <span id="search-cancel">Cancel</span></div></div><div class="row"><div id="core-wrapper" class="col-12 col-lg-11 col-xl-9 pe-xl-4"><div class="post px-1 px-md-2"><h1 class="dynamic-title"> 404: Page not found</h1><div class="post-content"><div class="lead"><p>Sorry, we've misplaced that URL or it's pointing to something that doesn't exist.</p></div><script type="text/javascript"> window.onload = function(){ var pid = window.location.pathname.split("/").filter((val) => val != "").slice(-1)[0].match(/-([a-zA-Z0-9]+)$/)[1]; location.replace("/posts/"+pid); }; </script></div></div></div><div id="panel-wrapper" class="col-xl-3 ps-2 text-muted"><div class="access"><div id="access-lastmod" class="post"><div class="panel-heading">Recently Updated</div><ul class="post-content list-unstyled ps-0 pb-1 ms-1 mt-2"><li class="text-truncate lh-lg"> <a href="/posts/76d66c2e34af/">遊記 2023 京阪神 8 日自由行</a><li class="text-truncate lh-lg"> <a href="/posts/9da2c51fa4f2/">遊記 2023 東京 5 日自由行</a><li class="text-truncate lh-lg"> <a href="/posts/7b8a0563c157/">遊記 9/11 名古屋一日快閃自由行</a><li class="text-truncate lh-lg"> <a href="/posts/d78e0b15a08a/">遊記 2023 九州 10 日自由行獨旅</a><li class="text-truncate lh-lg"> <a href="/posts/31b9b3a63abc/">遊記 2023 廣島岡山 6 日自由行</a></ul></div><div id="access-tags"><div class="panel-heading">Trending Tags</div><div class="d-flex flex-wrap mt-3 mb-1 me-3"> <a class="post-tag btn btn-outline-primary" href="/tags/ios-app-development/">ios-app-development</a> <a class="post-tag btn btn-outline-primary" href="/tags/ios/">ios</a> <a class="post-tag btn btn-outline-primary" href="/tags/%E7%94%9F%E6%B4%BB/">生活</a> <a class="post-tag btn btn-outline-primary" href="/tags/swift/">swift</a> <a class="post-tag btn btn-outline-primary" href="/tags/medium/">medium</a> <a class="post-tag btn btn-outline-primary" href="/tags/%E9%96%8B%E7%AE%B1/">開箱</a> <a class="post-tag btn btn-outline-primary" href="/tags/japan/">japan</a> <a class="post-tag btn btn-outline-primary" href="/tags/apple-watch/">apple-watch</a> <a class="post-tag btn btn-outline-primary" href="/tags/automation/">automation</a> <a class="post-tag btn btn-outline-primary" href="/tags/html/">html</a></div></div></div></div></div><div class="row"><div id="tail-wrapper" class="col-12 col-lg-11 col-xl-9 px-3 pe-xl-4 mt-5"></div></div><div id="search-result-wrapper" class="d-flex justify-content-center unloaded"><div class="col-11 post-content"><div id="search-hints"><div id="access-tags"><div class="panel-heading">Trending Tags</div><div class="d-flex flex-wrap mt-3 mb-1 me-3"> <a class="post-tag btn btn-outline-primary" href="/tags/ios-app-development/">ios-app-development</a> <a class="post-tag btn btn-outline-primary" href="/tags/ios/">ios</a> <a class="post-tag btn btn-outline-primary" href="/tags/%E7%94%9F%E6%B4%BB/">生活</a> <a class="post-tag btn btn-outline-primary" href="/tags/swift/">swift</a> <a class="post-tag btn btn-outline-primary" href="/tags/medium/">medium</a> <a class="post-tag btn btn-outline-primary" href="/tags/%E9%96%8B%E7%AE%B1/">開箱</a> <a class="post-tag btn btn-outline-primary" href="/tags/japan/">japan</a> <a class="post-tag btn btn-outline-primary" href="/tags/apple-watch/">apple-watch</a> <a class="post-tag btn btn-outline-primary" href="/tags/automation/">automation</a> <a class="post-tag btn btn-outline-primary" href="/tags/html/">html</a></div></div></div><div id="search-results" class="d-flex flex-wrap justify-content-center text-muted mt-3"></div></div></div></div></div><footer><div class="container px-lg-4"><div class="d-flex justify-content-center align-items-center text-muted mx-md-3"><p>Using the <a href="https://jekyllrb.com" target="_blank" rel="noopener">Jekyll</a> theme <a href="https://github.com/cotes2020/jekyll-theme-chirpy" target="_blank" rel="noopener">Chirpy</a> <br/> Automatically sync Medium articles with <a href="https://github.com/ZhgChgLi/ZMediumToJekyll" target="_blank">ZMediumToJekyll</a>.<br/> Powered by <a href="https://github.com/ZhgChgLi/ZMediumToMarkdown" target="_blank">ZMediumToMarkdown</a>.</p><p>© 2024 <a href="https://medium.com/@zhgchgli">ZhgChgLi</a>. <span data-bs-toggle="tooltip" data-bs-placement="top" title="Except where otherwise noted, the blog posts on this site are licensed under the Creative Commons Attribution 4.0 International (CC BY 4.0) License by the author." >All rights reserved.</span></p></div></div></footer><div id="mask"></div><button id="back-to-top" aria-label="back-to-top" class="btn btn-lg btn-box-shadow"> <i class="fas fa-angle-up"></i> </button><div id="notification" class="toast" role="alert" aria-live="assertive" aria-atomic="true" data-bs-animation="true" data-bs-autohide="false" ><div class="toast-header"> <button type="button" class="btn-close ms-auto" data-bs-dismiss="toast" aria-label="Close" ></button></div><div class="toast-body text-center pt-0"><p class="px-2 mb-3">A new version of content is available.</p><button type="button" class="btn btn-primary" aria-label="Update"> Update </button></div></div><script src="https://cdn.jsdelivr.net/combine/npm/[email protected]/dist/jquery.min.js,npm/[email protected]/dist/js/bootstrap.bundle.min.js,npm/[email protected]/dest/simple-jekyll-search.min.js,npm/[email protected]/lazysizes.min.js,npm/[email protected]/dist/jquery.magnific-popup.min.js,npm/[email protected]/dist/clipboard.min.js"></script> <script defer src="/assets/js/dist/page.min.js"></script> <script defer src="/app.js"></script> <script> /* Note: dependent library will be loaded in `js-selector.html` */ SimpleJekyllSearch({ searchInput: document.getElementById('search-input'), resultsContainer: document.getElementById('search-results'), json: '/assets/js/data/search.json', searchResultTemplate: '<div class="px-1 px-sm-2 px-lg-4 px-xl-0"> <a href="{url}">{title}</a><div class="post-meta d-flex flex-column flex-sm-row text-muted mt-1 mb-1"> {categories} {tags}</div><p>{snippet}</p></div>', noResultsText: '<p class="mt-5"></p>', templateMiddleware: function(prop, value, template) { if (prop === 'categories') { if (value === '') { return `${value}`; } else { return `<div class="me-sm-4"><i class="far fa-folder fa-fw"></i>${value}</div>`; } } if (prop === 'tags') { if (value === '') { return `${value}`; } else { return `<div><i class="fa fa-tag fa-fw"></i>${value}</div>`; } } } }); </script>
1 change: 1 addition & 0 deletions CNAME
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
zhgchg.li
1 change: 1 addition & 0 deletions about/index.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions ads.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
google.com, pub-3184248473087645, DIRECT, f08c47fec0942fa0
1 change: 1 addition & 0 deletions app.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions archives/index.html

Large diffs are not rendered by default.

Binary file added assets/118e924a1477/1*-qG2uYUb_E9Sn3aSIkbqJQ.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/118e924a1477/1*24LXqcP6raSLufNqU4k6ew.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/118e924a1477/1*2AyCVXM6Ha6JPA3zEKrDoQ.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/118e924a1477/1*5U5Pk45aHMgBsSqZjB4cXg.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/118e924a1477/1*5Up0RxyfddsPeQistL2kQA.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/118e924a1477/1*B60RpU-WptmbOuUaA3kW3Q.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/118e924a1477/1*EXC0AJpQOXBPCD7RB6XTpg.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/118e924a1477/1*I_BXx4y_m4isFs3bz_yNkg.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/118e924a1477/1*NauUZEY2vfGsVncUhc6hrA.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/118e924a1477/1*PnXdiHp2mmuC62Iq-I1O2w.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/118e924a1477/1*UQh7o0fls_Hc3opQLTVFZg.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/118e924a1477/1*Y5_ESbe7KRLu3OjweqNZuw.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/118e924a1477/1*fhvH5HyxA_iJd1HfzbrekA.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/118e924a1477/1*hN5uieaQBJv1p9iTnwyDFw.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/118e924a1477/1*jeCSiX0FXtll-IgBM4JDnw.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/118e924a1477/1*mwF0s6KNZGYOX65EHGtUXA.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/118e924a1477/1*sZ7GOnfC2hAi4tp3qvQnlA.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/118e924a1477/1*vJxqus1O5taM-AkSEDRh-w.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/11f6c8568154/1*-2oet_gRdews7-wccdrmiA.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/11f6c8568154/1*0plljgmrQhyW0N5F9wtlrg.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/11f6c8568154/1*2e_pEWb1khuMTgJPkpCY9w.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/11f6c8568154/1*2mNIlReKlROzcgviY9_JTg.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/11f6c8568154/1*3b_wX91dtYF0ogHjKsaR6g.png
Binary file added assets/11f6c8568154/1*5wBfMU9AiCVfmEcvmPZSiQ.png
Binary file added assets/11f6c8568154/1*64GaqzcldMHwU-HE4yt3_A.png
Binary file added assets/11f6c8568154/1*7M1AgCebRbRMEgmdJh6rIA.jpeg
Binary file added assets/11f6c8568154/1*8CZSygOrZbXPVIDzx2AFRQ.png
Binary file added assets/11f6c8568154/1*8Ywxhvk1dzmDLGLunuHNww.png
Binary file added assets/11f6c8568154/1*9SG2JlwEfNSJq9WxscfV5w.png
Binary file added assets/11f6c8568154/1*AUPvV8j9-AWyHor-Ig_jiA.png
Binary file added assets/11f6c8568154/1*DZwSmwnVCGkO--1PEzgqgw.png
Binary file added assets/11f6c8568154/1*FQy-Xr_V6sz9cuppumVaFw.png
Binary file added assets/11f6c8568154/1*Fd245lp2QSQV7d3AIdf94w.png
Binary file added assets/11f6c8568154/1*HtF6bI9jcL95Dn3AHRXmcw.png
Binary file added assets/11f6c8568154/1*Jg0DrQsNe1QA6UOT3Z_elg.png
Binary file added assets/11f6c8568154/1*Q44KLIwDjvAPuNDDf6KB3g.png
Binary file added assets/11f6c8568154/1*QJ8P_HjSvPdYrUmrqsQZXA.png
Binary file added assets/11f6c8568154/1*QeKDmnbkrkQvMU2yn8FBZg.png
Binary file added assets/11f6c8568154/1*V7jEnBoR5XpRsPM-WF8GdA.png
Binary file added assets/11f6c8568154/1*WmP6qgq40go7IMDw1ZcCPg.png
Binary file added assets/11f6c8568154/1*XLB0THtHAM65_e4FdtEXKg.png
Binary file added assets/11f6c8568154/1*_1Pe12uYqddPyd5muKuTMw.png
Binary file added assets/11f6c8568154/1*d3I-cJoeUiT_h2uvZ8PgFw.png
Binary file added assets/11f6c8568154/1*dwwOvnVwuF1sCUnyppBCDQ.jpeg
Binary file added assets/11f6c8568154/1*eRm97daYTwlEBFGtWoZgdQ.png
Binary file added assets/11f6c8568154/1*gdwkOBumSPH469IMCd8TVw.png
Binary file added assets/11f6c8568154/1*i_0yUCYq6jl-7uf5mynxLA.png
Binary file added assets/11f6c8568154/1*jWzR6iVOeXD9naa3KQllLw.png
Binary file added assets/11f6c8568154/1*kRiuACBFiI-xjyxt_oKRMw.png
Binary file added assets/11f6c8568154/1*kaNm3auxnqlJ4ObE84sitA.png
Binary file added assets/11f6c8568154/1*ksnbNTYxBX4ou90D2WmmdA.png
Binary file added assets/11f6c8568154/1*luRT1gAUkFuxSixkd-OsrA.png
Binary file added assets/11f6c8568154/1*nbSdYTY3AQEVdCOYkWh04A.png
Binary file added assets/11f6c8568154/1*nkSy-H-33Jdtf10fISwqrw.png
Binary file added assets/11f6c8568154/1*nn--T1ToO7FxRUHAv_3vig.png
Binary file added assets/11f6c8568154/1*oN-qJ4lNMtijsCoSIqrr_g.png
Binary file added assets/11f6c8568154/1*olR70CQ2zbvTWwzh72-gRQ.png
Binary file added assets/11f6c8568154/1*q_MQ6y3RPKeO7q-zxSGqDg.png
Binary file added assets/11f6c8568154/1*r_jYD3jukkUPKOdtnK8zyA.png
Binary file added assets/11f6c8568154/1*smel97dJH6y2LzXdWTKYYw.jpeg
Binary file added assets/11f6c8568154/1*smgTFSo4jQFcbiOfiH42hQ.png
Binary file added assets/11f6c8568154/1*tBGh-uxgoCTXfQ-u4GZq8g.png
Binary file added assets/11f6c8568154/1*vJcYjkcLpZcKRvgFzP5C1g.png
Binary file added assets/11f6c8568154/1*vMq1UmYeW611XYf0yHv8AQ.png
Binary file added assets/11f6c8568154/1*xMFfrYqGJD6CPY8YTIVMIg.png
Binary file added assets/12c5026da33d/1*8i6EP7KKwxihLZ1PG1RUGw.png
Binary file added assets/12c5026da33d/1*AzM6lK0kzT-M-2OdXoyIXA.png
Binary file added assets/12c5026da33d/1*K5Eio0Yi7nNHQuLSuIsYeA.png
Binary file added assets/12c5026da33d/1*UFwnnjCot8xRqslhdQktKg.png
Binary file added assets/12c5026da33d/1*VFIKU-UxCHNQVnf8DOV8Qw.png
Binary file added assets/12c5026da33d/1*d6yvnEaiOPbqy57PDMe2Mw.png
Binary file added assets/12c5026da33d/1*dgDfMgkFPUfeuAuEhl7RFQ.png
Binary file added assets/12c5026da33d/1*fnEUyJMtVhUGurU5vX5K6A.png
Binary file added assets/12c5026da33d/1*ljBqKrOFb9Gq48dO0GeIeA.png
Binary file added assets/12c5026da33d/1*z4R7wEHHAlLyF1rdAEAmew.png
Binary file added assets/142244e5f07a/1*1kZp5LQ1yT6m7IBJLoYj9Q.png
Binary file added assets/142244e5f07a/1*9BccKKQMxdqgtqlad13Ghg.png
Binary file added assets/142244e5f07a/1*EQPani1J-PTO-ccp588gBg.jpeg
Binary file added assets/142244e5f07a/1*ILb0VdnkAvgH5aW7qos_lg.png
Binary file added assets/142244e5f07a/1*PRTZJZuv7DG11CoUn5OHQg.png
Binary file added assets/142244e5f07a/1*VLoCTluycBbW70QplV50Lw.png
Binary file added assets/142244e5f07a/1*cb0Rpz_Zuto5e6WTPsA_Tw.png
Binary file added assets/142244e5f07a/1*mQVMT-D8avyeYSYp5VBU8w.png
Binary file added assets/142244e5f07a/1*nfAhh3QasOLCDxdxH5jEQg.png
Binary file added assets/142244e5f07a/1*sPNp2NfoykG8-m3vWociQQ.png
Binary file added assets/142244e5f07a/1*tdqRy5N0k8WS85l8u8CbKw.png
Binary file added assets/14cee137c565/1*6IQTrlT4vIKR-NjLRsvZ-A.gif
Binary file added assets/14cee137c565/1*G0us0AtYJCy3va1sh_bWhQ.gif
Binary file added assets/14cee137c565/1*RRAVb3p7mZpUCNOpd64-Pw.gif
Binary file added assets/14cee137c565/1*Wz8y5UJSgS0IUN86upSqLw.gif
Binary file added assets/14cee137c565/1*cVg7iZ_rFC2nxm2H5ET1Gg.gif
Binary file added assets/14cee137c565/1*j0NeJfAuR2fXP56KWglS7Q.gif
Binary file added assets/1aa2f8445642/1*9VYP3_Mhj9xsLKbgCwt6XQ.jpeg
Binary file added assets/1aa2f8445642/1*B-j47uMMshXozF32msbRtg.jpeg
Binary file added assets/1aa2f8445642/1*IE_dCAdXGDMaW-nSNT2ITg.png
Binary file added assets/1aa2f8445642/1*U2Rt9KZq3Vw_lkZkJl7t_Q.png
Binary file added assets/1aa2f8445642/43b3_hqdefault.jpg
Binary file added assets/1c9eafd4a190/1*7772qy7BVUCPa4LbvLGv6g.png
Binary file added assets/1c9eafd4a190/1*7trny5YJAnmgr6AMxqsduw.png
Binary file added assets/1c9eafd4a190/1*ckCF-uBpxAjNzbUTdvMhBA.png
Binary file added assets/1c9eafd4a190/1*yJCwDuo9tMhDD_sSoCSNqA.png
Binary file added assets/1c9eafd4a190/b618_hqdefault.jpg
Binary file added assets/1ca246e27273/1*AAFevro2x7s9J6yRshAGtg.png
Binary file added assets/1ca246e27273/1*L7VwD_lyG86eXzTzgIuELQ.png
Binary file added assets/1ca246e27273/1*LBgSqm8CTdBPycGnuYNMkA.png
Binary file added assets/1ca246e27273/1*Nl6uz_dA2h13g7PtqSi6aw.gif
Binary file added assets/1ca246e27273/1*PlbW5bVYGkN2olZC9WAvHw.png
Binary file added assets/1ca246e27273/1*S3dbMWNnTvhdt-NlxAQ2Tw.png
Binary file added assets/1ca246e27273/1*VcIEwZxiW26eVqCk4kUEZw.gif
Binary file added assets/1ca246e27273/1*cIIVrNDdziBVJn4z_QsLJg.png
Binary file added assets/21119db777dd/1*-8sdXS2aUk8bd-ZOGaAfKQ.png
Binary file added assets/21119db777dd/1*1Ab0t-A6H9GoB3FaLuetvQ.png
Binary file added assets/21119db777dd/1*3-StxB6DSIQ9CEvg8xxMVg.png
Binary file added assets/21119db777dd/1*3UQO0R4bt-oXwglOrhXbCQ.png
Binary file added assets/21119db777dd/1*5zxxXEtsSqQPsJh8qoRcwA.png
Binary file added assets/21119db777dd/1*7NJfN3nJ_YjDVDfg1eOkiA.png
Binary file added assets/21119db777dd/1*E1jWgwNHDTrXR9qQmtTmeA.png
Binary file added assets/21119db777dd/1*EdRki0mt6-KE2MfW5MSB4w.png
Binary file added assets/21119db777dd/1*IPg5D4G7N514em_kfWuc5w.png
Binary file added assets/21119db777dd/1*J3bs38gdCu7lWM5_BF3Gxg.png
Binary file added assets/21119db777dd/1*KjRJQutJbRD3aPQUw7LeUQ.png
Binary file added assets/21119db777dd/1*NkJcbWEBZACxpdVT7plPDQ.png
Binary file added assets/21119db777dd/1*PhBHbQ57IqvvToRYfT_C5g.png
Binary file added assets/21119db777dd/1*PxV5JPkSaWVLENgQwM1MqQ.png
Binary file added assets/21119db777dd/1*V2yPBSYfv770EePQoTTJFQ.png
Binary file added assets/21119db777dd/1*Z0Papen1int2BNH-UO5GjQ.png
Binary file added assets/21119db777dd/1*ZC6BZHvVtyFWyw-mfJcvXQ.png
Binary file added assets/21119db777dd/1*_LPvWc3F9OKed2q93u2sQA.png
Binary file added assets/21119db777dd/1*g0PjYwD7i-oiA3Ju9V76QQ.png
Binary file added assets/21119db777dd/1*gXm4pRJbryAtQkuwd9dc_Q.png
Binary file added assets/21119db777dd/1*gosnwKrxnR77BX4z9IMTUQ.png
Binary file added assets/21119db777dd/1*i-L6rmMe0aj5D-bReIc9Nw.png
Binary file added assets/21119db777dd/1*iO-DeUtcQtfwiMhkvpZLwA.png
Binary file added assets/21119db777dd/1*k70shMyqZ68g3TT6xQIr6Q.png
Binary file added assets/21119db777dd/1*njtg1AlUWKWc3cUCrGmSEQ.png
Binary file added assets/21119db777dd/1*ojg-47V9xCb_kL80sCIj-g.png
Binary file added assets/21119db777dd/1*seDM3PVZQfQsjHpOjecQuQ.png
Binary file added assets/21119db777dd/1*wQOvC90cSr2iswe_80qHxw.png
Binary file added assets/2724f02f6e7/0*9YdJaNSQXlAfmT21.jpg
Binary file added assets/2724f02f6e7/1*A0yXupXW9-F9ZWe4gp2ObA.jpeg
Binary file added assets/2724f02f6e7/1*AcKpF4dijglahV-iVYLvvA.png
Binary file added assets/2724f02f6e7/1*D-oMszCDzsBpUYnCEWGKHQ.png
Binary file added assets/2724f02f6e7/1*Dft7H2BbeyWIO-dH4QpuSw.png
Binary file added assets/2724f02f6e7/1*JEMBNdbQcBgDQ49jFw4ePQ.png
Binary file added assets/2724f02f6e7/1*JZ8IVVNj9B2l-UBemGbAig.png
Binary file added assets/2724f02f6e7/1*LOXfC8yYg2JCeoCH5m7kGA.png
Binary file added assets/2724f02f6e7/1*PzYcnSkW7qKeJBkaiNTKjQ.gif
Binary file added assets/2724f02f6e7/1*U50CX56M_xy1EXZKb69YeA.png
Binary file added assets/2724f02f6e7/1*Wk-U_sQuvLo1OJhcE1BQPQ.png
Binary file added assets/2724f02f6e7/1*YF5L7gefMCMwU1wmnGgy6A.png
Binary file added assets/2724f02f6e7/1*bl65v-SVOK3H9ajR-Ksg6w.png
Binary file added assets/2724f02f6e7/1*gJA_6uM5tQw2kUJsqIssuw.png
Binary file added assets/2724f02f6e7/1*jvIgDjO4DNAKpPZF1balmw.png
Binary file added assets/2724f02f6e7/1*kXjJQnSIJ7x-lSIYtacRrQ.jpeg
Binary file added assets/2724f02f6e7/1*tpPwCi-nSBMqqXKFqCSuDA.png
Binary file added assets/2724f02f6e7/1*wV6BZcEGYuT9B9Xy4QzI0w.png
Binary file added assets/2e4429f410d6/1*-qVuOCQWlTpjkopYVV_SMg.png
Binary file added assets/2e4429f410d6/1*GGZFGI_ttJyAc4L1GghZBw.png
Binary file added assets/2e4429f410d6/1*NYjXaoCiscPDzYdIlyUPbA.png
Binary file added assets/2e4429f410d6/1*QWv0KEjoOGT6ij1A9aSeFA.png
Binary file added assets/2e4429f410d6/1*ajTSwFaGmyAwQq05vUQVqA.png
Binary file added assets/2e4429f410d6/1*bV7cBJN5tQyez7h1UEo3GA.jpeg
Binary file added assets/2e4429f410d6/1*hCeZAoZggCU14s5rAmqv9Q.png
Binary file added assets/2e4429f410d6/1*ld3iXPtwH_pqTLADZcnSNg.png
Binary file added assets/2e4429f410d6/1*m_MEA1SudODPvYyogcd5Gw.png
Binary file added assets/2e4429f410d6/1*nsCFd5nwtAIYr0qc8QlzUg.jpeg
Binary file added assets/2e4429f410d6/1*qso6JJNOi2Ox_hMfLMAR6A.png
Binary file added assets/2e4429f410d6/1*r2Y1PvoSM5IVrXGoekR1zA.png
Binary file added assets/2e4429f410d6/1*rlG8lMVKmPhUqBkrvzfglA.png
Binary file added assets/2e4429f410d6/1*s71QOS2Eici5nXtOohc1UQ.png
Binary file added assets/2e4429f410d6/1*syfCA0bTJvKuf7cKQxzOrQ.gif
Binary file added assets/2e4429f410d6/1*y7fi8Q5R4oAf9DGmsc9v1Q.png
Binary file added assets/2e4429f410d6/1cac_hqdefault.jpg
Binary file added assets/31b9b3a63abc/0*RZlVO1fuMs6au4Ij.jpeg
Binary file added assets/31b9b3a63abc/1*-YwLmHr8op_lrrQY3SCd2g.png
Binary file added assets/31b9b3a63abc/1*-oaDeGwEkmWDa3xLLzzw4g.jpeg
Binary file added assets/31b9b3a63abc/1*0RivogHw5D_eDTxmY4NZQQ.jpeg
Binary file added assets/31b9b3a63abc/1*1e9jevMIzlfYSdAJdHoBDQ.jpeg
Binary file added assets/31b9b3a63abc/1*3H1rWAQ3rCQMNqY8wPXO6w.jpeg
Binary file added assets/31b9b3a63abc/1*3YCu2TUlMXp6W95RtQsGnQ.jpeg
Binary file added assets/31b9b3a63abc/1*7rDTJGw3sn-Xk4b1TfC_4w.jpeg
Binary file added assets/31b9b3a63abc/1*7w-qojYRysDghAlXytA84w.jpeg
Binary file added assets/31b9b3a63abc/1*937pWhC7CiWNGyG3S4oZyQ.jpeg
Binary file added assets/31b9b3a63abc/1*9BWAVAGIVbZ4va3NDMjo1A.jpeg
Binary file added assets/31b9b3a63abc/1*9W_382zPShaYzQWQAv_Z0Q.jpeg
Binary file added assets/31b9b3a63abc/1*ANvCs92M_L6FjVOIACWxmg.png
Binary file added assets/31b9b3a63abc/1*AV0wiyIjyHbm4LJ4DO8QOQ.jpeg
Binary file added assets/31b9b3a63abc/1*Agd-DC4jUc5xcvez71cIVw.png
Binary file added assets/31b9b3a63abc/1*CAALyqb2A1jEQnURiQF3mQ.png
Binary file added assets/31b9b3a63abc/1*DBRSEVhlkEWmssAlqhcySw.jpeg
Binary file added assets/31b9b3a63abc/1*Dx5Q2PO13pMOR0mWgpTTSw.jpeg
Binary file added assets/31b9b3a63abc/1*F5rO356jsxQwugfbxANN8w.png
Binary file added assets/31b9b3a63abc/1*FCPy8100jPW_FIk2jc3YzQ.jpeg
Binary file added assets/31b9b3a63abc/1*FuEoMnObeAs0VV-JlHH79A.png
Binary file added assets/31b9b3a63abc/1*G8U07uxOV7zPFg6olh148A.jpeg
Binary file added assets/31b9b3a63abc/1*GTxleAm57w_c8KlVR2nuaw.jpeg
Binary file added assets/31b9b3a63abc/1*Hm1kET2fwTNqTmDCLySGTg.png
Binary file added assets/31b9b3a63abc/1*I0K5vrSgtXKMRsyIvntREw.jpeg
Binary file added assets/31b9b3a63abc/1*ISmvz9Ld6CkthFdYO-Ab4w.jpeg
Binary file added assets/31b9b3a63abc/1*JAe4i7XdyYcjdsQkjRDzwQ.png
Binary file added assets/31b9b3a63abc/1*JC4MGzSm0SyDbYDdU8SfvA.jpeg
Binary file added assets/31b9b3a63abc/1*KYh4O8O87uf_u0B-suZEEA.jpeg
Binary file added assets/31b9b3a63abc/1*KgQ6iEBeEyuurbF5qw0rQQ.jpeg
Loading

0 comments on commit 70fccfd

Please sign in to comment.