diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 7bc3ec815..d2a59ab23 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -22,3 +22,5 @@ jobs:
node-version: '12'
- run: npm ci
- run: npm run build --if-present
+ env:
+ IDENTITY_POOL_ID: ${{ secrets.IDENTITY_POOL_ID }}
diff --git a/.github/workflows/deploy-production.yml b/.github/workflows/deploy-production.yml
index 722046337..f0144db74 100644
--- a/.github/workflows/deploy-production.yml
+++ b/.github/workflows/deploy-production.yml
@@ -20,6 +20,8 @@ jobs:
run: npm ci
- name: Builder
run: npm run build
+ env:
+ IDENTITY_POOL_ID: ${{ secrets.IDENTITY_POOL_ID }}
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
diff --git a/.github/workflows/deploy-staging.yml b/.github/workflows/deploy-staging.yml
index d9839ec8d..0594c21d4 100644
--- a/.github/workflows/deploy-staging.yml
+++ b/.github/workflows/deploy-staging.yml
@@ -16,5 +16,7 @@ jobs:
run: npm install
- name: Build
run: npm run build
+ env:
+ IDENTITY_POOL_ID: ${{ secrets.IDENTITY_POOL_ID }}
- name: Ping FeaturePeek
run: bash <(curl -s https://peek.run/ci)
diff --git a/README.md b/README.md
index af1e0c3bb..d45a2c680 100644
--- a/README.md
+++ b/README.md
@@ -35,6 +35,18 @@ $ npm run dev
You should then be able to access the site at `localhost:1234`.
+### Environment variables
+
+The images in the [gallery](https://brickhack.io/gallery) are hosted on our AWS S3 instance.
+
+GitHub Actions (our CI/CD) uses a repository secret to store the environment variable.
+
+For local development on the gallery:
+- Create a `.env` file in the root of the project
+- Add `IDENTITY_POOL_ID="key"` to the top, where `key` is the AWS IAM key.
+
+**Note: Ask the Engineering team lead (@peterkos) for an AWS key if you do not have one.**
+
# Development & Deployment
All development work should be done locally in a new branch and/or fork. Then, make a pull request to have the code merged into the develop branch. Once the develop branch gets to a good state, it gets merged into the master branch for a production deployment.
diff --git a/resources/gallery/brickhack_2.svg b/assets/gallery/bh2Logo.svg
similarity index 98%
rename from resources/gallery/brickhack_2.svg
rename to assets/gallery/bh2Logo.svg
index f6aced829..eec1fde2d 100644
--- a/resources/gallery/brickhack_2.svg
+++ b/assets/gallery/bh2Logo.svg
@@ -1,86 +1,86 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- BRICK
-
-
-
-
-
-
-
- 2
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ BRICK
+
+
+
+
+
+
+
+ 2
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/resources/gallery/brickhack_3.svg b/assets/gallery/bh3Logo.svg
similarity index 100%
rename from resources/gallery/brickhack_3.svg
rename to assets/gallery/bh3Logo.svg
diff --git a/resources/gallery/brickhack_4.png b/assets/gallery/bh4Logo.png
similarity index 100%
rename from resources/gallery/brickhack_4.png
rename to assets/gallery/bh4Logo.png
diff --git a/resources/gallery/brickhack_6.svg b/assets/gallery/bh6Logo.svg
similarity index 100%
rename from resources/gallery/brickhack_6.svg
rename to assets/gallery/bh6Logo.svg
diff --git a/resources/gallery/brickhack_1.svg b/assets/gallery/bhLogo.svg
similarity index 100%
rename from resources/gallery/brickhack_1.svg
rename to assets/gallery/bhLogo.svg
diff --git a/resources/gallery/brickhack_5.svg b/assets/gallery/bhVLogo.svg
similarity index 100%
rename from resources/gallery/brickhack_5.svg
rename to assets/gallery/bhVLogo.svg
diff --git a/gallery.html b/gallery.html
new file mode 100644
index 000000000..0e06d3947
--- /dev/null
+++ b/gallery.html
@@ -0,0 +1,104 @@
+
+
+
+ BrickHack Gallery
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/gallery.js b/gallery.js
new file mode 100644
index 000000000..c86bacca9
--- /dev/null
+++ b/gallery.js
@@ -0,0 +1,106 @@
+import './sass/gallery.scss'
+import '@fortawesome/fontawesome-free/css/all.css'
+import LazyLoad from "vanilla-lazyload";
+import $ from 'jquery'
+
+var lazyLoad = new LazyLoad();
+
+var AWS = require('aws-sdk');
+
+// Getting images onto the page
+var albumBucketName = 'brickhack-gallery';
+
+// Credentials
+AWS.config.region = 'us-east-1'; // Region
+AWS.config.credentials = new AWS.CognitoIdentityCredentials({
+ IdentityPoolId: process.env.IDENTITY_POOL_ID
+});
+
+// Service Object
+var s3 = new AWS.S3({
+ apiVersion: '2006-03-01',
+ params: {Bucket: albumBucketName}
+});
+
+var brickhacks = ['bh6', 'bh5', 'bh4', 'bh3', 'bh2', 'bh'];
+for (let name of brickhacks) {
+ viewAlbum(name);
+}
+
+// Used to create HTML for our images
+function getHtml(template) {
+ return template.join('\n');
+}
+function viewAlbum(albumName) {
+ var albumPhotosKey = encodeURIComponent(albumName) + '/thumb/';
+ s3.listObjects({Prefix: albumPhotosKey}, function(err, data) {
+ if (err) {
+ return alert('Oopsie! There was an error viewing ' + albumName + ': ' + err.message);
+ }
+
+ var href = this.request.httpRequest.endpoint.href;
+ var bucketUrl = href + albumBucketName + '/';
+
+ var photos = data.Contents.map(function(photo) {
+ var photoKey = photo.Key;
+ var photoUrl = bucketUrl + photoKey;
+
+ // Seeing if there is actually an image (s3 adds a blank to count the number of images at the beginning)
+ if (photo.Size == 0) {
+ return;
+ }
+ return getHtml([
+ '
',
+ ]);
+ });
+
+ document.getElementById(albumName).innerHTML = getHtml(photos);
+ lazyLoad.update();
+ });
+}
+
+// Opening modal
+$(document).on('click', function(event) {
+ if ($(event.target).hasClass('image')) {
+ $('#modal').show();
+ var top = 'calc(5% + ' + (window.scrollY) + 'px)';
+ var fullUrl = $(event.target).attr('data-bg').replaceAll('/thumb/', '/full/');
+ $('#modal-img').attr('src', fullUrl);
+ $('#modal').css('top', top);
+ $('#modal-background').show();
+ }
+});
+
+// Closing modal with x
+$('#close-modal').on('click', function() {
+ $('#modal').hide();
+ $('#modal-background').hide();
+});
+
+// Closing modal with background
+$('#modal-background').on('click', function() {
+ $('#modal').hide();
+ $('#modal-background').hide();
+});
+
+// Navbar functionality
+$(document).on('click', '#toggler', function() {
+ if ($('.navlinks').hasClass('show-menu')) {
+ $('.navlinks').removeClass('show-menu');
+ $('#toggler').removeClass('fa-times');
+ $('#toggler').addClass('fa-bars');
+ } else {
+ $('.navlinks').addClass('show-menu');
+ $('#toggler').removeClass('fa-bars');
+ $('#toggler').addClass('fa-times');
+ }
+});
+
+// Closing the navbar when a navigation link is clicked
+$(window).on('click', function(event) {
+ if ($(event.target).hasClass('navlink')) {
+ $('.navlinks').removeClass('show-menu');
+ $('#toggler').removeClass('fa-times');
+ $('#toggler').addClass('fa-bars');
+ }
+});
diff --git a/index.html b/index.html
index 747055e1b..69e84a94f 100644
--- a/index.html
+++ b/index.html
@@ -154,9 +154,9 @@ What is a Hackathon?
Visit Major League Hacking
-
-
- Gallery (coming soon!)
+
+
+ BrickHack Gallery
diff --git a/package-lock.json b/package-lock.json
index 9b2e98ff4..3409cab2f 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -9,10 +9,12 @@
"license": "ISC",
"dependencies": {
"active-menu-link": "^1.1.8",
+ "aws-sdk": "^2.831.0",
"jquery": "^3.5.1",
"parcel-plugin-metaimage": "^1.2.4",
"rellax": "^1.12.1",
- "slick-carousel": "^1.8.1"
+ "slick-carousel": "^1.8.1",
+ "vanilla-lazyload": "^17.3.0"
},
"devDependencies": {
"@fortawesome/fontawesome-free": "^5.15.1",
@@ -1489,6 +1491,65 @@
"node": ">= 4.5.0"
}
},
+ "node_modules/aws-sdk": {
+ "version": "2.841.0",
+ "resolved": "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.841.0.tgz",
+ "integrity": "sha512-pMgFr0B4WFIZEKc6EPAcyrvafkqoE1JwU6DJuE4UmT2ntat87DnbWUzFRP2HB4HuJvP1F7KNmElMz8p8j8bkNg==",
+ "dependencies": {
+ "buffer": "4.9.2",
+ "events": "1.1.1",
+ "ieee754": "1.1.13",
+ "jmespath": "0.15.0",
+ "querystring": "0.2.0",
+ "sax": "1.2.1",
+ "url": "0.10.3",
+ "uuid": "3.3.2",
+ "xml2js": "0.4.19"
+ },
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
+ "node_modules/aws-sdk/node_modules/events": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/events/-/events-1.1.1.tgz",
+ "integrity": "sha1-nr23Y1rQmccNzEwqH1AEKI6L2SQ=",
+ "engines": {
+ "node": ">=0.4.x"
+ }
+ },
+ "node_modules/aws-sdk/node_modules/ieee754": {
+ "version": "1.1.13",
+ "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.13.tgz",
+ "integrity": "sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg=="
+ },
+ "node_modules/aws-sdk/node_modules/punycode": {
+ "version": "1.3.2",
+ "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz",
+ "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0="
+ },
+ "node_modules/aws-sdk/node_modules/sax": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.1.tgz",
+ "integrity": "sha1-e45lYZCyKOgaZq6nSEgNgozS03o="
+ },
+ "node_modules/aws-sdk/node_modules/url": {
+ "version": "0.10.3",
+ "resolved": "https://registry.npmjs.org/url/-/url-0.10.3.tgz",
+ "integrity": "sha1-Ah5NnHcF8hu/N9A861h2dAJ3TGQ=",
+ "dependencies": {
+ "punycode": "1.3.2",
+ "querystring": "0.2.0"
+ }
+ },
+ "node_modules/aws-sdk/node_modules/uuid": {
+ "version": "3.3.2",
+ "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.3.2.tgz",
+ "integrity": "sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA==",
+ "bin": {
+ "uuid": "bin/uuid"
+ }
+ },
"node_modules/aws-sign2": {
"version": "0.7.0",
"resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz",
@@ -1605,8 +1666,7 @@
"node_modules/base64-js": {
"version": "1.5.1",
"resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
- "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
- "dev": true
+ "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA=="
},
"node_modules/bcrypt-pbkdf": {
"version": "1.0.2",
@@ -1820,7 +1880,6 @@
"version": "4.9.2",
"resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.2.tgz",
"integrity": "sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==",
- "dev": true,
"dependencies": {
"base64-js": "^1.0.2",
"ieee754": "^1.1.4",
@@ -4047,8 +4106,7 @@
"node_modules/ieee754": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz",
- "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==",
- "dev": true
+ "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA=="
},
"node_modules/import-fresh": {
"version": "2.0.0",
@@ -4390,8 +4448,7 @@
"node_modules/isarray": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
- "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=",
- "dev": true
+ "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE="
},
"node_modules/isexe": {
"version": "2.0.0",
@@ -4414,6 +4471,14 @@
"integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=",
"dev": true
},
+ "node_modules/jmespath": {
+ "version": "0.15.0",
+ "resolved": "https://registry.npmjs.org/jmespath/-/jmespath-0.15.0.tgz",
+ "integrity": "sha1-o/Iiqarp+Wb10nx5ZRDigJF2Qhc=",
+ "engines": {
+ "node": ">= 0.6.0"
+ }
+ },
"node_modules/jquery": {
"version": "3.5.1",
"resolved": "https://registry.npmjs.org/jquery/-/jquery-3.5.1.tgz",
@@ -6290,7 +6355,6 @@
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz",
"integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=",
- "dev": true,
"engines": {
"node": ">=0.4.x"
}
@@ -6714,8 +6778,7 @@
"node_modules/sax": {
"version": "1.2.4",
"resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz",
- "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==",
- "dev": true
+ "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw=="
},
"node_modules/saxes": {
"version": "3.1.11",
@@ -7994,6 +8057,15 @@
"integrity": "sha512-gTpR5XQNKFwOd4clxfnhaqvfqMpqEwr4tOtCyz4MtYZX2JYhfr1JvBFKdS+7K/9rfpZR3VLX+YWBbKoxCgS43Q==",
"dev": true
},
+ "node_modules/vanilla-lazyload": {
+ "version": "17.3.1",
+ "resolved": "https://registry.npmjs.org/vanilla-lazyload/-/vanilla-lazyload-17.3.1.tgz",
+ "integrity": "sha512-9cag1j3ImrmP0VYbqOIT79qit34nV2SijuCgQucv4RhZs5Ln5xfZSqMSWeWgoBBVFp4AIIVSjpkMxmSoW3WiJQ==",
+ "funding": {
+ "type": "individual",
+ "url": "https://ko-fi.com/verlok"
+ }
+ },
"node_modules/vendors": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/vendors/-/vendors-1.0.4.tgz",
@@ -8128,6 +8200,23 @@
"integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==",
"dev": true
},
+ "node_modules/xml2js": {
+ "version": "0.4.19",
+ "resolved": "https://registry.npmjs.org/xml2js/-/xml2js-0.4.19.tgz",
+ "integrity": "sha512-esZnJZJOiJR9wWKMyuvSE1y6Dq5LCuJanqhxslH2bxM6duahNZ+HMpCLhBQGZkbX6xRf8x1Y2eJlgt2q3qo49Q==",
+ "dependencies": {
+ "sax": ">=0.6.0",
+ "xmlbuilder": "~9.0.1"
+ }
+ },
+ "node_modules/xmlbuilder": {
+ "version": "9.0.7",
+ "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-9.0.7.tgz",
+ "integrity": "sha1-Ey7mPS7FVlxVfiD0wi35rKaGsQ0=",
+ "engines": {
+ "node": ">=4.0"
+ }
+ },
"node_modules/xmlchars": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz",
@@ -9526,6 +9615,58 @@
"integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==",
"dev": true
},
+ "aws-sdk": {
+ "version": "2.841.0",
+ "resolved": "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.841.0.tgz",
+ "integrity": "sha512-pMgFr0B4WFIZEKc6EPAcyrvafkqoE1JwU6DJuE4UmT2ntat87DnbWUzFRP2HB4HuJvP1F7KNmElMz8p8j8bkNg==",
+ "requires": {
+ "buffer": "4.9.2",
+ "events": "1.1.1",
+ "ieee754": "1.1.13",
+ "jmespath": "0.15.0",
+ "querystring": "0.2.0",
+ "sax": "1.2.1",
+ "url": "0.10.3",
+ "uuid": "3.3.2",
+ "xml2js": "0.4.19"
+ },
+ "dependencies": {
+ "events": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/events/-/events-1.1.1.tgz",
+ "integrity": "sha1-nr23Y1rQmccNzEwqH1AEKI6L2SQ="
+ },
+ "ieee754": {
+ "version": "1.1.13",
+ "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.13.tgz",
+ "integrity": "sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg=="
+ },
+ "punycode": {
+ "version": "1.3.2",
+ "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz",
+ "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0="
+ },
+ "sax": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.1.tgz",
+ "integrity": "sha1-e45lYZCyKOgaZq6nSEgNgozS03o="
+ },
+ "url": {
+ "version": "0.10.3",
+ "resolved": "https://registry.npmjs.org/url/-/url-0.10.3.tgz",
+ "integrity": "sha1-Ah5NnHcF8hu/N9A861h2dAJ3TGQ=",
+ "requires": {
+ "punycode": "1.3.2",
+ "querystring": "0.2.0"
+ }
+ },
+ "uuid": {
+ "version": "3.3.2",
+ "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.3.2.tgz",
+ "integrity": "sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA=="
+ }
+ }
+ },
"aws-sign2": {
"version": "0.7.0",
"resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz",
@@ -9636,8 +9777,7 @@
"base64-js": {
"version": "1.5.1",
"resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
- "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
- "dev": true
+ "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA=="
},
"bcrypt-pbkdf": {
"version": "1.0.2",
@@ -9835,7 +9975,6 @@
"version": "4.9.2",
"resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.2.tgz",
"integrity": "sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==",
- "dev": true,
"requires": {
"base64-js": "^1.0.2",
"ieee754": "^1.1.4",
@@ -11731,8 +11870,7 @@
"ieee754": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz",
- "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==",
- "dev": true
+ "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA=="
},
"import-fresh": {
"version": "2.0.0",
@@ -12005,8 +12143,7 @@
"isarray": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
- "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=",
- "dev": true
+ "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE="
},
"isexe": {
"version": "2.0.0",
@@ -12026,6 +12163,11 @@
"integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=",
"dev": true
},
+ "jmespath": {
+ "version": "0.15.0",
+ "resolved": "https://registry.npmjs.org/jmespath/-/jmespath-0.15.0.tgz",
+ "integrity": "sha1-o/Iiqarp+Wb10nx5ZRDigJF2Qhc="
+ },
"jquery": {
"version": "3.5.1",
"resolved": "https://registry.npmjs.org/jquery/-/jquery-3.5.1.tgz",
@@ -13601,8 +13743,7 @@
"querystring": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz",
- "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=",
- "dev": true
+ "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA="
},
"querystring-es3": {
"version": "0.2.1",
@@ -13960,8 +14101,7 @@
"sax": {
"version": "1.2.4",
"resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz",
- "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==",
- "dev": true
+ "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw=="
},
"saxes": {
"version": "3.1.11",
@@ -15057,6 +15197,11 @@
"integrity": "sha512-gTpR5XQNKFwOd4clxfnhaqvfqMpqEwr4tOtCyz4MtYZX2JYhfr1JvBFKdS+7K/9rfpZR3VLX+YWBbKoxCgS43Q==",
"dev": true
},
+ "vanilla-lazyload": {
+ "version": "17.3.1",
+ "resolved": "https://registry.npmjs.org/vanilla-lazyload/-/vanilla-lazyload-17.3.1.tgz",
+ "integrity": "sha512-9cag1j3ImrmP0VYbqOIT79qit34nV2SijuCgQucv4RhZs5Ln5xfZSqMSWeWgoBBVFp4AIIVSjpkMxmSoW3WiJQ=="
+ },
"vendors": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/vendors/-/vendors-1.0.4.tgz",
@@ -15182,6 +15327,20 @@
"integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==",
"dev": true
},
+ "xml2js": {
+ "version": "0.4.19",
+ "resolved": "https://registry.npmjs.org/xml2js/-/xml2js-0.4.19.tgz",
+ "integrity": "sha512-esZnJZJOiJR9wWKMyuvSE1y6Dq5LCuJanqhxslH2bxM6duahNZ+HMpCLhBQGZkbX6xRf8x1Y2eJlgt2q3qo49Q==",
+ "requires": {
+ "sax": ">=0.6.0",
+ "xmlbuilder": "~9.0.1"
+ }
+ },
+ "xmlbuilder": {
+ "version": "9.0.7",
+ "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-9.0.7.tgz",
+ "integrity": "sha1-Ey7mPS7FVlxVfiD0wi35rKaGsQ0="
+ },
"xmlchars": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz",
diff --git a/package.json b/package.json
index ee4192e9b..416dfd41c 100644
--- a/package.json
+++ b/package.json
@@ -30,9 +30,11 @@
},
"dependencies": {
"active-menu-link": "^1.1.8",
+ "aws-sdk": "^2.831.0",
"jquery": "^3.5.1",
"parcel-plugin-metaimage": "^1.2.4",
"rellax": "^1.12.1",
- "slick-carousel": "^1.8.1"
+ "slick-carousel": "^1.8.1",
+ "vanilla-lazyload": "^17.3.0"
}
}
diff --git a/resources/gallery/index.html b/resources/gallery/index.html
deleted file mode 100644
index ab946e7a6..000000000
--- a/resources/gallery/index.html
+++ /dev/null
@@ -1,1521 +0,0 @@
-
-
- BrickHack Gallery
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- BrickHack 6
- February 8-9, 2020
- 40 schools - 590 hackers - 24 hours
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- BrickHack 5
- February 16-17, 2019
- 40 schools - 590 hackers - 24 hours
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- BrickHack 4
- January 27-28, 2018
- 17 schools - 510 hackers - 24 hours
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- BrickHack 3
- February 11-12, 2017
- 33 schools - 500 hackers - 24 hours
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- BrickHack 2
- March 5-6, 2016
- 25 schools - 360 hackers - 24 hours
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- BrickHack 1
- April 18-19, 2015
- 20 schools - 320 hackers - 24 hours
-
- The inaugural BrickHack.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/resources/gallery/photos/2015/full/1.jpg b/resources/gallery/photos/2015/full/1.jpg
deleted file mode 100644
index a9617b1bf..000000000
Binary files a/resources/gallery/photos/2015/full/1.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/full/10.jpg b/resources/gallery/photos/2015/full/10.jpg
deleted file mode 100644
index c2026acee..000000000
Binary files a/resources/gallery/photos/2015/full/10.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/full/11.jpg b/resources/gallery/photos/2015/full/11.jpg
deleted file mode 100644
index e3ab254fb..000000000
Binary files a/resources/gallery/photos/2015/full/11.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/full/12.jpg b/resources/gallery/photos/2015/full/12.jpg
deleted file mode 100644
index 077ccf446..000000000
Binary files a/resources/gallery/photos/2015/full/12.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/full/13.jpg b/resources/gallery/photos/2015/full/13.jpg
deleted file mode 100644
index 8b37e39a2..000000000
Binary files a/resources/gallery/photos/2015/full/13.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/full/14.jpg b/resources/gallery/photos/2015/full/14.jpg
deleted file mode 100644
index 7a6f7a9b3..000000000
Binary files a/resources/gallery/photos/2015/full/14.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/full/15.jpg b/resources/gallery/photos/2015/full/15.jpg
deleted file mode 100644
index b327dbf9d..000000000
Binary files a/resources/gallery/photos/2015/full/15.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/full/16.jpg b/resources/gallery/photos/2015/full/16.jpg
deleted file mode 100644
index 4531174a6..000000000
Binary files a/resources/gallery/photos/2015/full/16.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/full/17.jpg b/resources/gallery/photos/2015/full/17.jpg
deleted file mode 100644
index 045eee1f2..000000000
Binary files a/resources/gallery/photos/2015/full/17.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/full/18.jpg b/resources/gallery/photos/2015/full/18.jpg
deleted file mode 100644
index 23b264fe3..000000000
Binary files a/resources/gallery/photos/2015/full/18.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/full/19.jpg b/resources/gallery/photos/2015/full/19.jpg
deleted file mode 100644
index 3036d4c27..000000000
Binary files a/resources/gallery/photos/2015/full/19.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/full/2.jpg b/resources/gallery/photos/2015/full/2.jpg
deleted file mode 100644
index 6c21c57f4..000000000
Binary files a/resources/gallery/photos/2015/full/2.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/full/20.jpg b/resources/gallery/photos/2015/full/20.jpg
deleted file mode 100644
index 090609373..000000000
Binary files a/resources/gallery/photos/2015/full/20.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/full/21.jpg b/resources/gallery/photos/2015/full/21.jpg
deleted file mode 100644
index 66ad63170..000000000
Binary files a/resources/gallery/photos/2015/full/21.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/full/22.jpg b/resources/gallery/photos/2015/full/22.jpg
deleted file mode 100644
index 9f71a18a8..000000000
Binary files a/resources/gallery/photos/2015/full/22.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/full/23.jpg b/resources/gallery/photos/2015/full/23.jpg
deleted file mode 100644
index a7652956d..000000000
Binary files a/resources/gallery/photos/2015/full/23.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/full/24.jpg b/resources/gallery/photos/2015/full/24.jpg
deleted file mode 100644
index d2ef04676..000000000
Binary files a/resources/gallery/photos/2015/full/24.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/full/25.jpg b/resources/gallery/photos/2015/full/25.jpg
deleted file mode 100644
index a6eb26f20..000000000
Binary files a/resources/gallery/photos/2015/full/25.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/full/26.jpg b/resources/gallery/photos/2015/full/26.jpg
deleted file mode 100644
index dadeb59e9..000000000
Binary files a/resources/gallery/photos/2015/full/26.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/full/27.jpg b/resources/gallery/photos/2015/full/27.jpg
deleted file mode 100644
index 87e904d53..000000000
Binary files a/resources/gallery/photos/2015/full/27.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/full/28.jpg b/resources/gallery/photos/2015/full/28.jpg
deleted file mode 100644
index 79cb78214..000000000
Binary files a/resources/gallery/photos/2015/full/28.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/full/29.jpg b/resources/gallery/photos/2015/full/29.jpg
deleted file mode 100644
index ad5828277..000000000
Binary files a/resources/gallery/photos/2015/full/29.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/full/3.jpg b/resources/gallery/photos/2015/full/3.jpg
deleted file mode 100644
index dc3d761b2..000000000
Binary files a/resources/gallery/photos/2015/full/3.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/full/30.jpg b/resources/gallery/photos/2015/full/30.jpg
deleted file mode 100644
index 07349907f..000000000
Binary files a/resources/gallery/photos/2015/full/30.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/full/31.jpg b/resources/gallery/photos/2015/full/31.jpg
deleted file mode 100644
index cca29f375..000000000
Binary files a/resources/gallery/photos/2015/full/31.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/full/32.jpg b/resources/gallery/photos/2015/full/32.jpg
deleted file mode 100644
index 2e637ebb8..000000000
Binary files a/resources/gallery/photos/2015/full/32.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/full/33.jpg b/resources/gallery/photos/2015/full/33.jpg
deleted file mode 100644
index bdc230f39..000000000
Binary files a/resources/gallery/photos/2015/full/33.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/full/34.jpg b/resources/gallery/photos/2015/full/34.jpg
deleted file mode 100644
index 4739f8f26..000000000
Binary files a/resources/gallery/photos/2015/full/34.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/full/35.jpg b/resources/gallery/photos/2015/full/35.jpg
deleted file mode 100644
index 4f2c12f8f..000000000
Binary files a/resources/gallery/photos/2015/full/35.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/full/36.jpg b/resources/gallery/photos/2015/full/36.jpg
deleted file mode 100644
index 5ece9dff2..000000000
Binary files a/resources/gallery/photos/2015/full/36.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/full/37.jpg b/resources/gallery/photos/2015/full/37.jpg
deleted file mode 100644
index f8dfb97b3..000000000
Binary files a/resources/gallery/photos/2015/full/37.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/full/38.jpg b/resources/gallery/photos/2015/full/38.jpg
deleted file mode 100644
index 4e72d8211..000000000
Binary files a/resources/gallery/photos/2015/full/38.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/full/39.jpg b/resources/gallery/photos/2015/full/39.jpg
deleted file mode 100644
index ca825e410..000000000
Binary files a/resources/gallery/photos/2015/full/39.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/full/4.jpg b/resources/gallery/photos/2015/full/4.jpg
deleted file mode 100644
index 9594c5c5a..000000000
Binary files a/resources/gallery/photos/2015/full/4.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/full/40.jpg b/resources/gallery/photos/2015/full/40.jpg
deleted file mode 100644
index 4104a036d..000000000
Binary files a/resources/gallery/photos/2015/full/40.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/full/41.jpg b/resources/gallery/photos/2015/full/41.jpg
deleted file mode 100644
index 737734d03..000000000
Binary files a/resources/gallery/photos/2015/full/41.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/full/42.jpg b/resources/gallery/photos/2015/full/42.jpg
deleted file mode 100644
index 5f06af0e7..000000000
Binary files a/resources/gallery/photos/2015/full/42.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/full/43.jpg b/resources/gallery/photos/2015/full/43.jpg
deleted file mode 100644
index 23eb0834a..000000000
Binary files a/resources/gallery/photos/2015/full/43.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/full/44.jpg b/resources/gallery/photos/2015/full/44.jpg
deleted file mode 100644
index 9e394b1ee..000000000
Binary files a/resources/gallery/photos/2015/full/44.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/full/5.jpg b/resources/gallery/photos/2015/full/5.jpg
deleted file mode 100644
index 34fa4a897..000000000
Binary files a/resources/gallery/photos/2015/full/5.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/full/6.jpg b/resources/gallery/photos/2015/full/6.jpg
deleted file mode 100644
index 07aee8779..000000000
Binary files a/resources/gallery/photos/2015/full/6.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/full/7.jpg b/resources/gallery/photos/2015/full/7.jpg
deleted file mode 100644
index 76129a91d..000000000
Binary files a/resources/gallery/photos/2015/full/7.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/full/8.jpg b/resources/gallery/photos/2015/full/8.jpg
deleted file mode 100644
index 380b793ee..000000000
Binary files a/resources/gallery/photos/2015/full/8.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/full/9.jpg b/resources/gallery/photos/2015/full/9.jpg
deleted file mode 100644
index 45a754f1a..000000000
Binary files a/resources/gallery/photos/2015/full/9.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/thumb/resized_1.jpg b/resources/gallery/photos/2015/thumb/resized_1.jpg
deleted file mode 100644
index c0f5b6a81..000000000
Binary files a/resources/gallery/photos/2015/thumb/resized_1.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/thumb/resized_10.jpg b/resources/gallery/photos/2015/thumb/resized_10.jpg
deleted file mode 100644
index 160fdbcd0..000000000
Binary files a/resources/gallery/photos/2015/thumb/resized_10.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/thumb/resized_11.jpg b/resources/gallery/photos/2015/thumb/resized_11.jpg
deleted file mode 100644
index 1ab992550..000000000
Binary files a/resources/gallery/photos/2015/thumb/resized_11.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/thumb/resized_12.jpg b/resources/gallery/photos/2015/thumb/resized_12.jpg
deleted file mode 100644
index 1bc2b200c..000000000
Binary files a/resources/gallery/photos/2015/thumb/resized_12.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/thumb/resized_13.jpg b/resources/gallery/photos/2015/thumb/resized_13.jpg
deleted file mode 100644
index c8d0f4fcf..000000000
Binary files a/resources/gallery/photos/2015/thumb/resized_13.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/thumb/resized_14.jpg b/resources/gallery/photos/2015/thumb/resized_14.jpg
deleted file mode 100644
index 3c16dc4cb..000000000
Binary files a/resources/gallery/photos/2015/thumb/resized_14.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/thumb/resized_15.jpg b/resources/gallery/photos/2015/thumb/resized_15.jpg
deleted file mode 100644
index 5fb826bca..000000000
Binary files a/resources/gallery/photos/2015/thumb/resized_15.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/thumb/resized_16.jpg b/resources/gallery/photos/2015/thumb/resized_16.jpg
deleted file mode 100644
index 1c717763c..000000000
Binary files a/resources/gallery/photos/2015/thumb/resized_16.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/thumb/resized_17.jpg b/resources/gallery/photos/2015/thumb/resized_17.jpg
deleted file mode 100644
index d45a2e3c6..000000000
Binary files a/resources/gallery/photos/2015/thumb/resized_17.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/thumb/resized_18.jpg b/resources/gallery/photos/2015/thumb/resized_18.jpg
deleted file mode 100644
index 2c72c816b..000000000
Binary files a/resources/gallery/photos/2015/thumb/resized_18.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/thumb/resized_19.jpg b/resources/gallery/photos/2015/thumb/resized_19.jpg
deleted file mode 100644
index c92af18af..000000000
Binary files a/resources/gallery/photos/2015/thumb/resized_19.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/thumb/resized_2.jpg b/resources/gallery/photos/2015/thumb/resized_2.jpg
deleted file mode 100644
index 20b0d8a25..000000000
Binary files a/resources/gallery/photos/2015/thumb/resized_2.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/thumb/resized_20.jpg b/resources/gallery/photos/2015/thumb/resized_20.jpg
deleted file mode 100644
index 1c6f8144e..000000000
Binary files a/resources/gallery/photos/2015/thumb/resized_20.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/thumb/resized_21.jpg b/resources/gallery/photos/2015/thumb/resized_21.jpg
deleted file mode 100644
index 08b46c147..000000000
Binary files a/resources/gallery/photos/2015/thumb/resized_21.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/thumb/resized_22.jpg b/resources/gallery/photos/2015/thumb/resized_22.jpg
deleted file mode 100644
index 4caab3dc8..000000000
Binary files a/resources/gallery/photos/2015/thumb/resized_22.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/thumb/resized_23.jpg b/resources/gallery/photos/2015/thumb/resized_23.jpg
deleted file mode 100644
index 5b85c78ac..000000000
Binary files a/resources/gallery/photos/2015/thumb/resized_23.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/thumb/resized_24.jpg b/resources/gallery/photos/2015/thumb/resized_24.jpg
deleted file mode 100644
index 0fc9cb349..000000000
Binary files a/resources/gallery/photos/2015/thumb/resized_24.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/thumb/resized_25.jpg b/resources/gallery/photos/2015/thumb/resized_25.jpg
deleted file mode 100644
index dac9fb579..000000000
Binary files a/resources/gallery/photos/2015/thumb/resized_25.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/thumb/resized_26.jpg b/resources/gallery/photos/2015/thumb/resized_26.jpg
deleted file mode 100644
index 929082191..000000000
Binary files a/resources/gallery/photos/2015/thumb/resized_26.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/thumb/resized_27.jpg b/resources/gallery/photos/2015/thumb/resized_27.jpg
deleted file mode 100644
index ead390c4c..000000000
Binary files a/resources/gallery/photos/2015/thumb/resized_27.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/thumb/resized_28.jpg b/resources/gallery/photos/2015/thumb/resized_28.jpg
deleted file mode 100644
index 2b0b2c86e..000000000
Binary files a/resources/gallery/photos/2015/thumb/resized_28.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/thumb/resized_29.jpg b/resources/gallery/photos/2015/thumb/resized_29.jpg
deleted file mode 100644
index 69f8c2232..000000000
Binary files a/resources/gallery/photos/2015/thumb/resized_29.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/thumb/resized_3.jpg b/resources/gallery/photos/2015/thumb/resized_3.jpg
deleted file mode 100644
index bc920753f..000000000
Binary files a/resources/gallery/photos/2015/thumb/resized_3.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/thumb/resized_30.jpg b/resources/gallery/photos/2015/thumb/resized_30.jpg
deleted file mode 100644
index 414f6f01d..000000000
Binary files a/resources/gallery/photos/2015/thumb/resized_30.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/thumb/resized_31.jpg b/resources/gallery/photos/2015/thumb/resized_31.jpg
deleted file mode 100644
index f95951b03..000000000
Binary files a/resources/gallery/photos/2015/thumb/resized_31.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/thumb/resized_32.jpg b/resources/gallery/photos/2015/thumb/resized_32.jpg
deleted file mode 100644
index 5372571f4..000000000
Binary files a/resources/gallery/photos/2015/thumb/resized_32.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/thumb/resized_33.jpg b/resources/gallery/photos/2015/thumb/resized_33.jpg
deleted file mode 100644
index 8d7f76ae9..000000000
Binary files a/resources/gallery/photos/2015/thumb/resized_33.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/thumb/resized_34.jpg b/resources/gallery/photos/2015/thumb/resized_34.jpg
deleted file mode 100644
index 640c584f0..000000000
Binary files a/resources/gallery/photos/2015/thumb/resized_34.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/thumb/resized_35.jpg b/resources/gallery/photos/2015/thumb/resized_35.jpg
deleted file mode 100644
index 78b7bc391..000000000
Binary files a/resources/gallery/photos/2015/thumb/resized_35.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/thumb/resized_36.jpg b/resources/gallery/photos/2015/thumb/resized_36.jpg
deleted file mode 100644
index 866f7ee20..000000000
Binary files a/resources/gallery/photos/2015/thumb/resized_36.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/thumb/resized_37.jpg b/resources/gallery/photos/2015/thumb/resized_37.jpg
deleted file mode 100644
index 0c809a6de..000000000
Binary files a/resources/gallery/photos/2015/thumb/resized_37.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/thumb/resized_38.jpg b/resources/gallery/photos/2015/thumb/resized_38.jpg
deleted file mode 100644
index 3950613f3..000000000
Binary files a/resources/gallery/photos/2015/thumb/resized_38.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/thumb/resized_39.jpg b/resources/gallery/photos/2015/thumb/resized_39.jpg
deleted file mode 100644
index 60a4645c5..000000000
Binary files a/resources/gallery/photos/2015/thumb/resized_39.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/thumb/resized_4.jpg b/resources/gallery/photos/2015/thumb/resized_4.jpg
deleted file mode 100644
index 4332466bc..000000000
Binary files a/resources/gallery/photos/2015/thumb/resized_4.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/thumb/resized_40.jpg b/resources/gallery/photos/2015/thumb/resized_40.jpg
deleted file mode 100644
index 2b66a6c07..000000000
Binary files a/resources/gallery/photos/2015/thumb/resized_40.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/thumb/resized_41.jpg b/resources/gallery/photos/2015/thumb/resized_41.jpg
deleted file mode 100644
index 96eb6a72e..000000000
Binary files a/resources/gallery/photos/2015/thumb/resized_41.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/thumb/resized_42.jpg b/resources/gallery/photos/2015/thumb/resized_42.jpg
deleted file mode 100644
index cc1daf291..000000000
Binary files a/resources/gallery/photos/2015/thumb/resized_42.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/thumb/resized_43.jpg b/resources/gallery/photos/2015/thumb/resized_43.jpg
deleted file mode 100644
index 567249128..000000000
Binary files a/resources/gallery/photos/2015/thumb/resized_43.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/thumb/resized_44.jpg b/resources/gallery/photos/2015/thumb/resized_44.jpg
deleted file mode 100644
index 8560acc8c..000000000
Binary files a/resources/gallery/photos/2015/thumb/resized_44.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/thumb/resized_5.jpg b/resources/gallery/photos/2015/thumb/resized_5.jpg
deleted file mode 100644
index 0b18d177e..000000000
Binary files a/resources/gallery/photos/2015/thumb/resized_5.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/thumb/resized_6.jpg b/resources/gallery/photos/2015/thumb/resized_6.jpg
deleted file mode 100644
index 76449dc0f..000000000
Binary files a/resources/gallery/photos/2015/thumb/resized_6.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/thumb/resized_7.jpg b/resources/gallery/photos/2015/thumb/resized_7.jpg
deleted file mode 100644
index a607f4e56..000000000
Binary files a/resources/gallery/photos/2015/thumb/resized_7.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/thumb/resized_8.jpg b/resources/gallery/photos/2015/thumb/resized_8.jpg
deleted file mode 100644
index bc45956fc..000000000
Binary files a/resources/gallery/photos/2015/thumb/resized_8.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2015/thumb/resized_9.jpg b/resources/gallery/photos/2015/thumb/resized_9.jpg
deleted file mode 100644
index 65bb51208..000000000
Binary files a/resources/gallery/photos/2015/thumb/resized_9.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/full/1.jpg b/resources/gallery/photos/2016/full/1.jpg
deleted file mode 100644
index 73d7efbd6..000000000
Binary files a/resources/gallery/photos/2016/full/1.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/full/10.jpg b/resources/gallery/photos/2016/full/10.jpg
deleted file mode 100644
index 1d9641f81..000000000
Binary files a/resources/gallery/photos/2016/full/10.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/full/11.jpg b/resources/gallery/photos/2016/full/11.jpg
deleted file mode 100644
index 49e7d2640..000000000
Binary files a/resources/gallery/photos/2016/full/11.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/full/12.jpg b/resources/gallery/photos/2016/full/12.jpg
deleted file mode 100644
index a495d573b..000000000
Binary files a/resources/gallery/photos/2016/full/12.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/full/13.jpg b/resources/gallery/photos/2016/full/13.jpg
deleted file mode 100644
index 72900282d..000000000
Binary files a/resources/gallery/photos/2016/full/13.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/full/14.jpg b/resources/gallery/photos/2016/full/14.jpg
deleted file mode 100644
index 5b85e51f6..000000000
Binary files a/resources/gallery/photos/2016/full/14.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/full/15.jpg b/resources/gallery/photos/2016/full/15.jpg
deleted file mode 100644
index 8e90dbc7a..000000000
Binary files a/resources/gallery/photos/2016/full/15.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/full/16.jpg b/resources/gallery/photos/2016/full/16.jpg
deleted file mode 100644
index 71b6867fb..000000000
Binary files a/resources/gallery/photos/2016/full/16.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/full/17.jpg b/resources/gallery/photos/2016/full/17.jpg
deleted file mode 100644
index 5f559cb07..000000000
Binary files a/resources/gallery/photos/2016/full/17.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/full/18.jpg b/resources/gallery/photos/2016/full/18.jpg
deleted file mode 100644
index 77af8f883..000000000
Binary files a/resources/gallery/photos/2016/full/18.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/full/19.jpg b/resources/gallery/photos/2016/full/19.jpg
deleted file mode 100644
index 8f4746572..000000000
Binary files a/resources/gallery/photos/2016/full/19.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/full/2.jpg b/resources/gallery/photos/2016/full/2.jpg
deleted file mode 100644
index 7a42f3300..000000000
Binary files a/resources/gallery/photos/2016/full/2.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/full/20.jpg b/resources/gallery/photos/2016/full/20.jpg
deleted file mode 100644
index 26d3caefd..000000000
Binary files a/resources/gallery/photos/2016/full/20.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/full/21.jpg b/resources/gallery/photos/2016/full/21.jpg
deleted file mode 100644
index 28fcd2b43..000000000
Binary files a/resources/gallery/photos/2016/full/21.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/full/22.jpg b/resources/gallery/photos/2016/full/22.jpg
deleted file mode 100644
index 536fe5f13..000000000
Binary files a/resources/gallery/photos/2016/full/22.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/full/23.jpg b/resources/gallery/photos/2016/full/23.jpg
deleted file mode 100644
index 24fc9eec9..000000000
Binary files a/resources/gallery/photos/2016/full/23.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/full/24.jpg b/resources/gallery/photos/2016/full/24.jpg
deleted file mode 100644
index ddaa6067d..000000000
Binary files a/resources/gallery/photos/2016/full/24.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/full/25.jpg b/resources/gallery/photos/2016/full/25.jpg
deleted file mode 100644
index 277e1004b..000000000
Binary files a/resources/gallery/photos/2016/full/25.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/full/26.jpg b/resources/gallery/photos/2016/full/26.jpg
deleted file mode 100644
index b0440411f..000000000
Binary files a/resources/gallery/photos/2016/full/26.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/full/27.jpg b/resources/gallery/photos/2016/full/27.jpg
deleted file mode 100644
index 1b85ebd37..000000000
Binary files a/resources/gallery/photos/2016/full/27.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/full/28.jpg b/resources/gallery/photos/2016/full/28.jpg
deleted file mode 100644
index 9da7161bd..000000000
Binary files a/resources/gallery/photos/2016/full/28.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/full/29.jpg b/resources/gallery/photos/2016/full/29.jpg
deleted file mode 100644
index a35a4a634..000000000
Binary files a/resources/gallery/photos/2016/full/29.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/full/3.jpg b/resources/gallery/photos/2016/full/3.jpg
deleted file mode 100644
index 5d8dad866..000000000
Binary files a/resources/gallery/photos/2016/full/3.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/full/30.jpg b/resources/gallery/photos/2016/full/30.jpg
deleted file mode 100644
index 4a191ce6e..000000000
Binary files a/resources/gallery/photos/2016/full/30.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/full/31.jpg b/resources/gallery/photos/2016/full/31.jpg
deleted file mode 100644
index 698fbf1a5..000000000
Binary files a/resources/gallery/photos/2016/full/31.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/full/32.jpg b/resources/gallery/photos/2016/full/32.jpg
deleted file mode 100644
index 06bbf97ff..000000000
Binary files a/resources/gallery/photos/2016/full/32.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/full/33.jpg b/resources/gallery/photos/2016/full/33.jpg
deleted file mode 100644
index adbecd2d5..000000000
Binary files a/resources/gallery/photos/2016/full/33.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/full/34.jpg b/resources/gallery/photos/2016/full/34.jpg
deleted file mode 100644
index 93906ca61..000000000
Binary files a/resources/gallery/photos/2016/full/34.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/full/35.jpg b/resources/gallery/photos/2016/full/35.jpg
deleted file mode 100644
index c1bb59b8d..000000000
Binary files a/resources/gallery/photos/2016/full/35.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/full/36.jpg b/resources/gallery/photos/2016/full/36.jpg
deleted file mode 100644
index e819716dd..000000000
Binary files a/resources/gallery/photos/2016/full/36.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/full/37.jpg b/resources/gallery/photos/2016/full/37.jpg
deleted file mode 100644
index caea456a8..000000000
Binary files a/resources/gallery/photos/2016/full/37.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/full/38.jpg b/resources/gallery/photos/2016/full/38.jpg
deleted file mode 100644
index 80a487732..000000000
Binary files a/resources/gallery/photos/2016/full/38.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/full/39.jpg b/resources/gallery/photos/2016/full/39.jpg
deleted file mode 100644
index f068df70c..000000000
Binary files a/resources/gallery/photos/2016/full/39.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/full/4.jpg b/resources/gallery/photos/2016/full/4.jpg
deleted file mode 100644
index 837e9a845..000000000
Binary files a/resources/gallery/photos/2016/full/4.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/full/40.jpg b/resources/gallery/photos/2016/full/40.jpg
deleted file mode 100644
index 1d13d480b..000000000
Binary files a/resources/gallery/photos/2016/full/40.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/full/41.jpg b/resources/gallery/photos/2016/full/41.jpg
deleted file mode 100644
index 32dd40165..000000000
Binary files a/resources/gallery/photos/2016/full/41.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/full/42.jpg b/resources/gallery/photos/2016/full/42.jpg
deleted file mode 100644
index 015cb7e1f..000000000
Binary files a/resources/gallery/photos/2016/full/42.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/full/43.jpg b/resources/gallery/photos/2016/full/43.jpg
deleted file mode 100644
index 0c43d4bfb..000000000
Binary files a/resources/gallery/photos/2016/full/43.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/full/44.jpg b/resources/gallery/photos/2016/full/44.jpg
deleted file mode 100644
index 739149503..000000000
Binary files a/resources/gallery/photos/2016/full/44.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/full/45.jpg b/resources/gallery/photos/2016/full/45.jpg
deleted file mode 100644
index 61ae979d8..000000000
Binary files a/resources/gallery/photos/2016/full/45.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/full/46.jpg b/resources/gallery/photos/2016/full/46.jpg
deleted file mode 100644
index 33288aba6..000000000
Binary files a/resources/gallery/photos/2016/full/46.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/full/47.jpg b/resources/gallery/photos/2016/full/47.jpg
deleted file mode 100644
index 62e090679..000000000
Binary files a/resources/gallery/photos/2016/full/47.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/full/48.jpg b/resources/gallery/photos/2016/full/48.jpg
deleted file mode 100644
index cf1eda12c..000000000
Binary files a/resources/gallery/photos/2016/full/48.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/full/49.jpg b/resources/gallery/photos/2016/full/49.jpg
deleted file mode 100644
index d326453a7..000000000
Binary files a/resources/gallery/photos/2016/full/49.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/full/5.jpg b/resources/gallery/photos/2016/full/5.jpg
deleted file mode 100644
index 850df1bc9..000000000
Binary files a/resources/gallery/photos/2016/full/5.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/full/50.jpg b/resources/gallery/photos/2016/full/50.jpg
deleted file mode 100644
index 9497e1ae6..000000000
Binary files a/resources/gallery/photos/2016/full/50.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/full/51.jpg b/resources/gallery/photos/2016/full/51.jpg
deleted file mode 100644
index 85e170d03..000000000
Binary files a/resources/gallery/photos/2016/full/51.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/full/52.jpg b/resources/gallery/photos/2016/full/52.jpg
deleted file mode 100644
index 94f1e81da..000000000
Binary files a/resources/gallery/photos/2016/full/52.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/full/53.jpg b/resources/gallery/photos/2016/full/53.jpg
deleted file mode 100644
index 046264074..000000000
Binary files a/resources/gallery/photos/2016/full/53.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/full/54.jpg b/resources/gallery/photos/2016/full/54.jpg
deleted file mode 100644
index ee6605edf..000000000
Binary files a/resources/gallery/photos/2016/full/54.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/full/55.jpg b/resources/gallery/photos/2016/full/55.jpg
deleted file mode 100644
index 63c7db2e6..000000000
Binary files a/resources/gallery/photos/2016/full/55.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/full/56.jpg b/resources/gallery/photos/2016/full/56.jpg
deleted file mode 100644
index a9e9a30ae..000000000
Binary files a/resources/gallery/photos/2016/full/56.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/full/57.jpg b/resources/gallery/photos/2016/full/57.jpg
deleted file mode 100644
index 43434758e..000000000
Binary files a/resources/gallery/photos/2016/full/57.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/full/58.jpg b/resources/gallery/photos/2016/full/58.jpg
deleted file mode 100644
index 16f4438e5..000000000
Binary files a/resources/gallery/photos/2016/full/58.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/full/59.jpg b/resources/gallery/photos/2016/full/59.jpg
deleted file mode 100644
index 849d81ba4..000000000
Binary files a/resources/gallery/photos/2016/full/59.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/full/6.jpg b/resources/gallery/photos/2016/full/6.jpg
deleted file mode 100644
index bdbb549a3..000000000
Binary files a/resources/gallery/photos/2016/full/6.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/full/60.jpg b/resources/gallery/photos/2016/full/60.jpg
deleted file mode 100644
index 949cc6aad..000000000
Binary files a/resources/gallery/photos/2016/full/60.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/full/61.jpg b/resources/gallery/photos/2016/full/61.jpg
deleted file mode 100644
index 96de58ccd..000000000
Binary files a/resources/gallery/photos/2016/full/61.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/full/7.jpg b/resources/gallery/photos/2016/full/7.jpg
deleted file mode 100644
index 22f03481a..000000000
Binary files a/resources/gallery/photos/2016/full/7.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/full/8.jpg b/resources/gallery/photos/2016/full/8.jpg
deleted file mode 100644
index 5ab0660bd..000000000
Binary files a/resources/gallery/photos/2016/full/8.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/full/9.jpg b/resources/gallery/photos/2016/full/9.jpg
deleted file mode 100644
index e90b2e9cf..000000000
Binary files a/resources/gallery/photos/2016/full/9.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/thumb/1.jpg b/resources/gallery/photos/2016/thumb/1.jpg
deleted file mode 100644
index 81c63f5d3..000000000
Binary files a/resources/gallery/photos/2016/thumb/1.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/thumb/10.jpg b/resources/gallery/photos/2016/thumb/10.jpg
deleted file mode 100644
index 9a6de315a..000000000
Binary files a/resources/gallery/photos/2016/thumb/10.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/thumb/11.jpg b/resources/gallery/photos/2016/thumb/11.jpg
deleted file mode 100644
index ad5600bdf..000000000
Binary files a/resources/gallery/photos/2016/thumb/11.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/thumb/12.jpg b/resources/gallery/photos/2016/thumb/12.jpg
deleted file mode 100644
index acf435b75..000000000
Binary files a/resources/gallery/photos/2016/thumb/12.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/thumb/13.jpg b/resources/gallery/photos/2016/thumb/13.jpg
deleted file mode 100644
index d5a2a9028..000000000
Binary files a/resources/gallery/photos/2016/thumb/13.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/thumb/14.jpg b/resources/gallery/photos/2016/thumb/14.jpg
deleted file mode 100644
index ef93f2438..000000000
Binary files a/resources/gallery/photos/2016/thumb/14.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/thumb/15.jpg b/resources/gallery/photos/2016/thumb/15.jpg
deleted file mode 100644
index c9b720bb6..000000000
Binary files a/resources/gallery/photos/2016/thumb/15.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/thumb/16.jpg b/resources/gallery/photos/2016/thumb/16.jpg
deleted file mode 100644
index 8af892fb9..000000000
Binary files a/resources/gallery/photos/2016/thumb/16.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/thumb/17.jpg b/resources/gallery/photos/2016/thumb/17.jpg
deleted file mode 100644
index 877f4f4d2..000000000
Binary files a/resources/gallery/photos/2016/thumb/17.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/thumb/18.jpg b/resources/gallery/photos/2016/thumb/18.jpg
deleted file mode 100644
index f5f8d2ccd..000000000
Binary files a/resources/gallery/photos/2016/thumb/18.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/thumb/19.jpg b/resources/gallery/photos/2016/thumb/19.jpg
deleted file mode 100644
index b29bc6097..000000000
Binary files a/resources/gallery/photos/2016/thumb/19.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/thumb/2.jpg b/resources/gallery/photos/2016/thumb/2.jpg
deleted file mode 100644
index 208c9a97a..000000000
Binary files a/resources/gallery/photos/2016/thumb/2.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/thumb/20.jpg b/resources/gallery/photos/2016/thumb/20.jpg
deleted file mode 100644
index 59e9a7005..000000000
Binary files a/resources/gallery/photos/2016/thumb/20.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/thumb/21.jpg b/resources/gallery/photos/2016/thumb/21.jpg
deleted file mode 100644
index feb638f1c..000000000
Binary files a/resources/gallery/photos/2016/thumb/21.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/thumb/22.jpg b/resources/gallery/photos/2016/thumb/22.jpg
deleted file mode 100644
index 7d6771f4e..000000000
Binary files a/resources/gallery/photos/2016/thumb/22.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/thumb/23.jpg b/resources/gallery/photos/2016/thumb/23.jpg
deleted file mode 100644
index 3f09e4074..000000000
Binary files a/resources/gallery/photos/2016/thumb/23.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/thumb/24.jpg b/resources/gallery/photos/2016/thumb/24.jpg
deleted file mode 100644
index 874ef8917..000000000
Binary files a/resources/gallery/photos/2016/thumb/24.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/thumb/25.jpg b/resources/gallery/photos/2016/thumb/25.jpg
deleted file mode 100644
index caffdf2b0..000000000
Binary files a/resources/gallery/photos/2016/thumb/25.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/thumb/26.jpg b/resources/gallery/photos/2016/thumb/26.jpg
deleted file mode 100644
index 97ba67a55..000000000
Binary files a/resources/gallery/photos/2016/thumb/26.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/thumb/27.jpg b/resources/gallery/photos/2016/thumb/27.jpg
deleted file mode 100644
index 59da4d9ec..000000000
Binary files a/resources/gallery/photos/2016/thumb/27.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/thumb/28.jpg b/resources/gallery/photos/2016/thumb/28.jpg
deleted file mode 100644
index a55ad5737..000000000
Binary files a/resources/gallery/photos/2016/thumb/28.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/thumb/29.jpg b/resources/gallery/photos/2016/thumb/29.jpg
deleted file mode 100644
index c823d6d01..000000000
Binary files a/resources/gallery/photos/2016/thumb/29.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/thumb/3.jpg b/resources/gallery/photos/2016/thumb/3.jpg
deleted file mode 100644
index 3eb19de5f..000000000
Binary files a/resources/gallery/photos/2016/thumb/3.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/thumb/30.jpg b/resources/gallery/photos/2016/thumb/30.jpg
deleted file mode 100644
index abee68e1b..000000000
Binary files a/resources/gallery/photos/2016/thumb/30.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/thumb/31.jpg b/resources/gallery/photos/2016/thumb/31.jpg
deleted file mode 100644
index 005ad62c9..000000000
Binary files a/resources/gallery/photos/2016/thumb/31.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/thumb/32.jpg b/resources/gallery/photos/2016/thumb/32.jpg
deleted file mode 100644
index b4915cecb..000000000
Binary files a/resources/gallery/photos/2016/thumb/32.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/thumb/33.jpg b/resources/gallery/photos/2016/thumb/33.jpg
deleted file mode 100644
index da2e0d3aa..000000000
Binary files a/resources/gallery/photos/2016/thumb/33.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/thumb/34.jpg b/resources/gallery/photos/2016/thumb/34.jpg
deleted file mode 100644
index 851cf0aad..000000000
Binary files a/resources/gallery/photos/2016/thumb/34.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/thumb/35.jpg b/resources/gallery/photos/2016/thumb/35.jpg
deleted file mode 100644
index 60c350338..000000000
Binary files a/resources/gallery/photos/2016/thumb/35.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/thumb/36.jpg b/resources/gallery/photos/2016/thumb/36.jpg
deleted file mode 100644
index 3c85818a1..000000000
Binary files a/resources/gallery/photos/2016/thumb/36.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/thumb/37.jpg b/resources/gallery/photos/2016/thumb/37.jpg
deleted file mode 100644
index fea60e94b..000000000
Binary files a/resources/gallery/photos/2016/thumb/37.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/thumb/38.jpg b/resources/gallery/photos/2016/thumb/38.jpg
deleted file mode 100644
index c2bd0b55c..000000000
Binary files a/resources/gallery/photos/2016/thumb/38.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/thumb/39.jpg b/resources/gallery/photos/2016/thumb/39.jpg
deleted file mode 100644
index a2f23caaf..000000000
Binary files a/resources/gallery/photos/2016/thumb/39.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/thumb/4.jpg b/resources/gallery/photos/2016/thumb/4.jpg
deleted file mode 100644
index 87076cd9c..000000000
Binary files a/resources/gallery/photos/2016/thumb/4.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/thumb/40.jpg b/resources/gallery/photos/2016/thumb/40.jpg
deleted file mode 100644
index b288ad210..000000000
Binary files a/resources/gallery/photos/2016/thumb/40.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/thumb/41.jpg b/resources/gallery/photos/2016/thumb/41.jpg
deleted file mode 100644
index c67fdd49b..000000000
Binary files a/resources/gallery/photos/2016/thumb/41.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/thumb/42.jpg b/resources/gallery/photos/2016/thumb/42.jpg
deleted file mode 100644
index 640548c40..000000000
Binary files a/resources/gallery/photos/2016/thumb/42.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/thumb/43.jpg b/resources/gallery/photos/2016/thumb/43.jpg
deleted file mode 100644
index b42461bbf..000000000
Binary files a/resources/gallery/photos/2016/thumb/43.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/thumb/44.jpg b/resources/gallery/photos/2016/thumb/44.jpg
deleted file mode 100644
index 831160179..000000000
Binary files a/resources/gallery/photos/2016/thumb/44.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/thumb/45.jpg b/resources/gallery/photos/2016/thumb/45.jpg
deleted file mode 100644
index b75058dfa..000000000
Binary files a/resources/gallery/photos/2016/thumb/45.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/thumb/46.jpg b/resources/gallery/photos/2016/thumb/46.jpg
deleted file mode 100644
index 9220e0efb..000000000
Binary files a/resources/gallery/photos/2016/thumb/46.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/thumb/47.jpg b/resources/gallery/photos/2016/thumb/47.jpg
deleted file mode 100644
index 2329b2d61..000000000
Binary files a/resources/gallery/photos/2016/thumb/47.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/thumb/48.jpg b/resources/gallery/photos/2016/thumb/48.jpg
deleted file mode 100644
index 65738bd71..000000000
Binary files a/resources/gallery/photos/2016/thumb/48.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/thumb/49.jpg b/resources/gallery/photos/2016/thumb/49.jpg
deleted file mode 100644
index 42e4d2b52..000000000
Binary files a/resources/gallery/photos/2016/thumb/49.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/thumb/5.jpg b/resources/gallery/photos/2016/thumb/5.jpg
deleted file mode 100644
index 0819ffad3..000000000
Binary files a/resources/gallery/photos/2016/thumb/5.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/thumb/50.jpg b/resources/gallery/photos/2016/thumb/50.jpg
deleted file mode 100644
index eb308c58b..000000000
Binary files a/resources/gallery/photos/2016/thumb/50.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/thumb/51.jpg b/resources/gallery/photos/2016/thumb/51.jpg
deleted file mode 100644
index 278fbd08a..000000000
Binary files a/resources/gallery/photos/2016/thumb/51.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/thumb/52.jpg b/resources/gallery/photos/2016/thumb/52.jpg
deleted file mode 100644
index f5d783db9..000000000
Binary files a/resources/gallery/photos/2016/thumb/52.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/thumb/53.jpg b/resources/gallery/photos/2016/thumb/53.jpg
deleted file mode 100644
index 16cd62760..000000000
Binary files a/resources/gallery/photos/2016/thumb/53.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/thumb/54.jpg b/resources/gallery/photos/2016/thumb/54.jpg
deleted file mode 100644
index af1315d7a..000000000
Binary files a/resources/gallery/photos/2016/thumb/54.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/thumb/55.jpg b/resources/gallery/photos/2016/thumb/55.jpg
deleted file mode 100644
index dc9c5682a..000000000
Binary files a/resources/gallery/photos/2016/thumb/55.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/thumb/56.jpg b/resources/gallery/photos/2016/thumb/56.jpg
deleted file mode 100644
index d67a22d18..000000000
Binary files a/resources/gallery/photos/2016/thumb/56.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/thumb/57.jpg b/resources/gallery/photos/2016/thumb/57.jpg
deleted file mode 100644
index 750690ed9..000000000
Binary files a/resources/gallery/photos/2016/thumb/57.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/thumb/58.jpg b/resources/gallery/photos/2016/thumb/58.jpg
deleted file mode 100644
index 89ddffb25..000000000
Binary files a/resources/gallery/photos/2016/thumb/58.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/thumb/59.jpg b/resources/gallery/photos/2016/thumb/59.jpg
deleted file mode 100644
index f7c9b196c..000000000
Binary files a/resources/gallery/photos/2016/thumb/59.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/thumb/6.jpg b/resources/gallery/photos/2016/thumb/6.jpg
deleted file mode 100644
index 39e3384e8..000000000
Binary files a/resources/gallery/photos/2016/thumb/6.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/thumb/60.jpg b/resources/gallery/photos/2016/thumb/60.jpg
deleted file mode 100644
index e7bb515fe..000000000
Binary files a/resources/gallery/photos/2016/thumb/60.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/thumb/61.jpg b/resources/gallery/photos/2016/thumb/61.jpg
deleted file mode 100644
index 612332c0b..000000000
Binary files a/resources/gallery/photos/2016/thumb/61.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/thumb/7.jpg b/resources/gallery/photos/2016/thumb/7.jpg
deleted file mode 100644
index 17520023c..000000000
Binary files a/resources/gallery/photos/2016/thumb/7.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/thumb/8.jpg b/resources/gallery/photos/2016/thumb/8.jpg
deleted file mode 100644
index 3bda43a68..000000000
Binary files a/resources/gallery/photos/2016/thumb/8.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2016/thumb/9.jpg b/resources/gallery/photos/2016/thumb/9.jpg
deleted file mode 100644
index c73165568..000000000
Binary files a/resources/gallery/photos/2016/thumb/9.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/full/1.jpg b/resources/gallery/photos/2017/full/1.jpg
deleted file mode 100644
index deb11c2cd..000000000
Binary files a/resources/gallery/photos/2017/full/1.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/full/10.jpg b/resources/gallery/photos/2017/full/10.jpg
deleted file mode 100644
index 8a482cad7..000000000
Binary files a/resources/gallery/photos/2017/full/10.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/full/11.jpg b/resources/gallery/photos/2017/full/11.jpg
deleted file mode 100644
index ac4714d6a..000000000
Binary files a/resources/gallery/photos/2017/full/11.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/full/12.jpg b/resources/gallery/photos/2017/full/12.jpg
deleted file mode 100644
index 4b7f6be46..000000000
Binary files a/resources/gallery/photos/2017/full/12.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/full/13.jpg b/resources/gallery/photos/2017/full/13.jpg
deleted file mode 100644
index 21c0454f2..000000000
Binary files a/resources/gallery/photos/2017/full/13.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/full/14.jpg b/resources/gallery/photos/2017/full/14.jpg
deleted file mode 100644
index f93bb385a..000000000
Binary files a/resources/gallery/photos/2017/full/14.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/full/15.jpg b/resources/gallery/photos/2017/full/15.jpg
deleted file mode 100644
index 0a01f956f..000000000
Binary files a/resources/gallery/photos/2017/full/15.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/full/16.jpg b/resources/gallery/photos/2017/full/16.jpg
deleted file mode 100644
index 69bf9e6ad..000000000
Binary files a/resources/gallery/photos/2017/full/16.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/full/17.jpg b/resources/gallery/photos/2017/full/17.jpg
deleted file mode 100644
index 50b483f9b..000000000
Binary files a/resources/gallery/photos/2017/full/17.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/full/18.jpg b/resources/gallery/photos/2017/full/18.jpg
deleted file mode 100644
index 498898d77..000000000
Binary files a/resources/gallery/photos/2017/full/18.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/full/19.jpg b/resources/gallery/photos/2017/full/19.jpg
deleted file mode 100644
index 6e9cec1d6..000000000
Binary files a/resources/gallery/photos/2017/full/19.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/full/2.jpg b/resources/gallery/photos/2017/full/2.jpg
deleted file mode 100644
index efc4f99d9..000000000
Binary files a/resources/gallery/photos/2017/full/2.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/full/20.jpg b/resources/gallery/photos/2017/full/20.jpg
deleted file mode 100644
index 7c7e6f387..000000000
Binary files a/resources/gallery/photos/2017/full/20.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/full/21.jpg b/resources/gallery/photos/2017/full/21.jpg
deleted file mode 100644
index 3faa099f6..000000000
Binary files a/resources/gallery/photos/2017/full/21.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/full/22.jpg b/resources/gallery/photos/2017/full/22.jpg
deleted file mode 100644
index dc9a50cb5..000000000
Binary files a/resources/gallery/photos/2017/full/22.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/full/23.jpg b/resources/gallery/photos/2017/full/23.jpg
deleted file mode 100644
index e75411741..000000000
Binary files a/resources/gallery/photos/2017/full/23.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/full/24.jpg b/resources/gallery/photos/2017/full/24.jpg
deleted file mode 100644
index 44cc06eb1..000000000
Binary files a/resources/gallery/photos/2017/full/24.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/full/25.jpg b/resources/gallery/photos/2017/full/25.jpg
deleted file mode 100644
index 7284d1958..000000000
Binary files a/resources/gallery/photos/2017/full/25.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/full/26.jpg b/resources/gallery/photos/2017/full/26.jpg
deleted file mode 100644
index 6598c90a5..000000000
Binary files a/resources/gallery/photos/2017/full/26.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/full/27.jpg b/resources/gallery/photos/2017/full/27.jpg
deleted file mode 100644
index 0d049c0e4..000000000
Binary files a/resources/gallery/photos/2017/full/27.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/full/28.jpg b/resources/gallery/photos/2017/full/28.jpg
deleted file mode 100644
index ea50e09c7..000000000
Binary files a/resources/gallery/photos/2017/full/28.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/full/29.jpg b/resources/gallery/photos/2017/full/29.jpg
deleted file mode 100644
index d9bc625bd..000000000
Binary files a/resources/gallery/photos/2017/full/29.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/full/3.jpg b/resources/gallery/photos/2017/full/3.jpg
deleted file mode 100644
index 39f2159c1..000000000
Binary files a/resources/gallery/photos/2017/full/3.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/full/30.jpg b/resources/gallery/photos/2017/full/30.jpg
deleted file mode 100644
index 154ced187..000000000
Binary files a/resources/gallery/photos/2017/full/30.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/full/31.jpg b/resources/gallery/photos/2017/full/31.jpg
deleted file mode 100644
index c3ba909a5..000000000
Binary files a/resources/gallery/photos/2017/full/31.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/full/32.jpg b/resources/gallery/photos/2017/full/32.jpg
deleted file mode 100644
index 361d651e0..000000000
Binary files a/resources/gallery/photos/2017/full/32.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/full/33.jpg b/resources/gallery/photos/2017/full/33.jpg
deleted file mode 100644
index 65d90d6ae..000000000
Binary files a/resources/gallery/photos/2017/full/33.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/full/34.jpg b/resources/gallery/photos/2017/full/34.jpg
deleted file mode 100644
index 92d614740..000000000
Binary files a/resources/gallery/photos/2017/full/34.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/full/35.jpg b/resources/gallery/photos/2017/full/35.jpg
deleted file mode 100644
index 79824da0e..000000000
Binary files a/resources/gallery/photos/2017/full/35.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/full/36.jpg b/resources/gallery/photos/2017/full/36.jpg
deleted file mode 100644
index a0c85b6ab..000000000
Binary files a/resources/gallery/photos/2017/full/36.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/full/37.jpg b/resources/gallery/photos/2017/full/37.jpg
deleted file mode 100644
index 25cf1f6ed..000000000
Binary files a/resources/gallery/photos/2017/full/37.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/full/38.jpg b/resources/gallery/photos/2017/full/38.jpg
deleted file mode 100644
index cfe3cfcf8..000000000
Binary files a/resources/gallery/photos/2017/full/38.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/full/39.jpg b/resources/gallery/photos/2017/full/39.jpg
deleted file mode 100644
index a39ee5b8f..000000000
Binary files a/resources/gallery/photos/2017/full/39.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/full/4.jpg b/resources/gallery/photos/2017/full/4.jpg
deleted file mode 100644
index 6cf42b811..000000000
Binary files a/resources/gallery/photos/2017/full/4.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/full/40.jpg b/resources/gallery/photos/2017/full/40.jpg
deleted file mode 100644
index 9c3815c84..000000000
Binary files a/resources/gallery/photos/2017/full/40.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/full/41.jpg b/resources/gallery/photos/2017/full/41.jpg
deleted file mode 100644
index 6434cfc49..000000000
Binary files a/resources/gallery/photos/2017/full/41.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/full/42.jpg b/resources/gallery/photos/2017/full/42.jpg
deleted file mode 100644
index 784845f2b..000000000
Binary files a/resources/gallery/photos/2017/full/42.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/full/43.jpg b/resources/gallery/photos/2017/full/43.jpg
deleted file mode 100644
index 3706cf728..000000000
Binary files a/resources/gallery/photos/2017/full/43.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/full/44.jpg b/resources/gallery/photos/2017/full/44.jpg
deleted file mode 100644
index f369aeaef..000000000
Binary files a/resources/gallery/photos/2017/full/44.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/full/5.jpg b/resources/gallery/photos/2017/full/5.jpg
deleted file mode 100644
index 5d64ba516..000000000
Binary files a/resources/gallery/photos/2017/full/5.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/full/6.jpg b/resources/gallery/photos/2017/full/6.jpg
deleted file mode 100644
index 227106eb1..000000000
Binary files a/resources/gallery/photos/2017/full/6.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/full/7.jpg b/resources/gallery/photos/2017/full/7.jpg
deleted file mode 100644
index 373049cf3..000000000
Binary files a/resources/gallery/photos/2017/full/7.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/full/8.jpg b/resources/gallery/photos/2017/full/8.jpg
deleted file mode 100644
index 84d88efd4..000000000
Binary files a/resources/gallery/photos/2017/full/8.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/full/9.jpg b/resources/gallery/photos/2017/full/9.jpg
deleted file mode 100644
index 3985f8afa..000000000
Binary files a/resources/gallery/photos/2017/full/9.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/thumb/1.jpg b/resources/gallery/photos/2017/thumb/1.jpg
deleted file mode 100644
index c0054823e..000000000
Binary files a/resources/gallery/photos/2017/thumb/1.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/thumb/10.jpg b/resources/gallery/photos/2017/thumb/10.jpg
deleted file mode 100644
index ab44ed4aa..000000000
Binary files a/resources/gallery/photos/2017/thumb/10.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/thumb/11.jpg b/resources/gallery/photos/2017/thumb/11.jpg
deleted file mode 100644
index c2db3fbb3..000000000
Binary files a/resources/gallery/photos/2017/thumb/11.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/thumb/12.jpg b/resources/gallery/photos/2017/thumb/12.jpg
deleted file mode 100644
index 3daf268af..000000000
Binary files a/resources/gallery/photos/2017/thumb/12.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/thumb/13.jpg b/resources/gallery/photos/2017/thumb/13.jpg
deleted file mode 100644
index 549c43069..000000000
Binary files a/resources/gallery/photos/2017/thumb/13.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/thumb/14.jpg b/resources/gallery/photos/2017/thumb/14.jpg
deleted file mode 100644
index 9243c3778..000000000
Binary files a/resources/gallery/photos/2017/thumb/14.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/thumb/15.jpg b/resources/gallery/photos/2017/thumb/15.jpg
deleted file mode 100644
index b79432f01..000000000
Binary files a/resources/gallery/photos/2017/thumb/15.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/thumb/16.jpg b/resources/gallery/photos/2017/thumb/16.jpg
deleted file mode 100644
index f192faae9..000000000
Binary files a/resources/gallery/photos/2017/thumb/16.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/thumb/17.jpg b/resources/gallery/photos/2017/thumb/17.jpg
deleted file mode 100644
index 36b9b438a..000000000
Binary files a/resources/gallery/photos/2017/thumb/17.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/thumb/18.jpg b/resources/gallery/photos/2017/thumb/18.jpg
deleted file mode 100644
index dc1620b2a..000000000
Binary files a/resources/gallery/photos/2017/thumb/18.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/thumb/19.jpg b/resources/gallery/photos/2017/thumb/19.jpg
deleted file mode 100644
index ab00a9514..000000000
Binary files a/resources/gallery/photos/2017/thumb/19.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/thumb/2.jpg b/resources/gallery/photos/2017/thumb/2.jpg
deleted file mode 100644
index 00ac99ef0..000000000
Binary files a/resources/gallery/photos/2017/thumb/2.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/thumb/20.jpg b/resources/gallery/photos/2017/thumb/20.jpg
deleted file mode 100644
index 48e1e4ca2..000000000
Binary files a/resources/gallery/photos/2017/thumb/20.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/thumb/21.jpg b/resources/gallery/photos/2017/thumb/21.jpg
deleted file mode 100644
index 11dc6d444..000000000
Binary files a/resources/gallery/photos/2017/thumb/21.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/thumb/22.jpg b/resources/gallery/photos/2017/thumb/22.jpg
deleted file mode 100644
index d792d436b..000000000
Binary files a/resources/gallery/photos/2017/thumb/22.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/thumb/23.jpg b/resources/gallery/photos/2017/thumb/23.jpg
deleted file mode 100644
index 9d30b1976..000000000
Binary files a/resources/gallery/photos/2017/thumb/23.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/thumb/24.jpg b/resources/gallery/photos/2017/thumb/24.jpg
deleted file mode 100644
index e06bbd851..000000000
Binary files a/resources/gallery/photos/2017/thumb/24.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/thumb/25.jpg b/resources/gallery/photos/2017/thumb/25.jpg
deleted file mode 100644
index c0e88e22e..000000000
Binary files a/resources/gallery/photos/2017/thumb/25.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/thumb/26.jpg b/resources/gallery/photos/2017/thumb/26.jpg
deleted file mode 100644
index b6a199a20..000000000
Binary files a/resources/gallery/photos/2017/thumb/26.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/thumb/27.jpg b/resources/gallery/photos/2017/thumb/27.jpg
deleted file mode 100644
index 5e957561d..000000000
Binary files a/resources/gallery/photos/2017/thumb/27.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/thumb/28.jpg b/resources/gallery/photos/2017/thumb/28.jpg
deleted file mode 100644
index 168081288..000000000
Binary files a/resources/gallery/photos/2017/thumb/28.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/thumb/29.jpg b/resources/gallery/photos/2017/thumb/29.jpg
deleted file mode 100644
index ed8fc4743..000000000
Binary files a/resources/gallery/photos/2017/thumb/29.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/thumb/3.jpg b/resources/gallery/photos/2017/thumb/3.jpg
deleted file mode 100644
index 606969237..000000000
Binary files a/resources/gallery/photos/2017/thumb/3.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/thumb/30.jpg b/resources/gallery/photos/2017/thumb/30.jpg
deleted file mode 100644
index 41e2dd1de..000000000
Binary files a/resources/gallery/photos/2017/thumb/30.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/thumb/31.jpg b/resources/gallery/photos/2017/thumb/31.jpg
deleted file mode 100644
index f3255dc14..000000000
Binary files a/resources/gallery/photos/2017/thumb/31.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/thumb/32.jpg b/resources/gallery/photos/2017/thumb/32.jpg
deleted file mode 100644
index 8ef942c41..000000000
Binary files a/resources/gallery/photos/2017/thumb/32.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/thumb/33.jpg b/resources/gallery/photos/2017/thumb/33.jpg
deleted file mode 100644
index 6f551fe4e..000000000
Binary files a/resources/gallery/photos/2017/thumb/33.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/thumb/34.jpg b/resources/gallery/photos/2017/thumb/34.jpg
deleted file mode 100644
index 1f720ac6e..000000000
Binary files a/resources/gallery/photos/2017/thumb/34.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/thumb/35.jpg b/resources/gallery/photos/2017/thumb/35.jpg
deleted file mode 100644
index 046173464..000000000
Binary files a/resources/gallery/photos/2017/thumb/35.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/thumb/36.jpg b/resources/gallery/photos/2017/thumb/36.jpg
deleted file mode 100644
index 522c968ef..000000000
Binary files a/resources/gallery/photos/2017/thumb/36.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/thumb/37.jpg b/resources/gallery/photos/2017/thumb/37.jpg
deleted file mode 100644
index 4816955fb..000000000
Binary files a/resources/gallery/photos/2017/thumb/37.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/thumb/38.jpg b/resources/gallery/photos/2017/thumb/38.jpg
deleted file mode 100644
index 7f76a433c..000000000
Binary files a/resources/gallery/photos/2017/thumb/38.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/thumb/39.jpg b/resources/gallery/photos/2017/thumb/39.jpg
deleted file mode 100644
index be1f6d77f..000000000
Binary files a/resources/gallery/photos/2017/thumb/39.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/thumb/4.jpg b/resources/gallery/photos/2017/thumb/4.jpg
deleted file mode 100644
index 812a8819d..000000000
Binary files a/resources/gallery/photos/2017/thumb/4.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/thumb/40.jpg b/resources/gallery/photos/2017/thumb/40.jpg
deleted file mode 100644
index 5d8ecd9a7..000000000
Binary files a/resources/gallery/photos/2017/thumb/40.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/thumb/41.jpg b/resources/gallery/photos/2017/thumb/41.jpg
deleted file mode 100644
index bb1ec08c5..000000000
Binary files a/resources/gallery/photos/2017/thumb/41.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/thumb/42.jpg b/resources/gallery/photos/2017/thumb/42.jpg
deleted file mode 100644
index 07ef7eda2..000000000
Binary files a/resources/gallery/photos/2017/thumb/42.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/thumb/43.jpg b/resources/gallery/photos/2017/thumb/43.jpg
deleted file mode 100644
index 7b3dfebd2..000000000
Binary files a/resources/gallery/photos/2017/thumb/43.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/thumb/44.jpg b/resources/gallery/photos/2017/thumb/44.jpg
deleted file mode 100644
index 3073b9c37..000000000
Binary files a/resources/gallery/photos/2017/thumb/44.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/thumb/5.jpg b/resources/gallery/photos/2017/thumb/5.jpg
deleted file mode 100644
index 5a4c37a1b..000000000
Binary files a/resources/gallery/photos/2017/thumb/5.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/thumb/6.jpg b/resources/gallery/photos/2017/thumb/6.jpg
deleted file mode 100644
index 266e74c2d..000000000
Binary files a/resources/gallery/photos/2017/thumb/6.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/thumb/7.jpg b/resources/gallery/photos/2017/thumb/7.jpg
deleted file mode 100644
index 446e66227..000000000
Binary files a/resources/gallery/photos/2017/thumb/7.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/thumb/8.jpg b/resources/gallery/photos/2017/thumb/8.jpg
deleted file mode 100644
index b49e9344e..000000000
Binary files a/resources/gallery/photos/2017/thumb/8.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2017/thumb/9.jpg b/resources/gallery/photos/2017/thumb/9.jpg
deleted file mode 100644
index 2e34c3994..000000000
Binary files a/resources/gallery/photos/2017/thumb/9.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2018/full/1.JPG b/resources/gallery/photos/2018/full/1.JPG
deleted file mode 100644
index 91d5a2af4..000000000
Binary files a/resources/gallery/photos/2018/full/1.JPG and /dev/null differ
diff --git a/resources/gallery/photos/2018/full/10.JPG b/resources/gallery/photos/2018/full/10.JPG
deleted file mode 100644
index 35ce75499..000000000
Binary files a/resources/gallery/photos/2018/full/10.JPG and /dev/null differ
diff --git a/resources/gallery/photos/2018/full/11.JPG b/resources/gallery/photos/2018/full/11.JPG
deleted file mode 100644
index 9a66b5c1f..000000000
Binary files a/resources/gallery/photos/2018/full/11.JPG and /dev/null differ
diff --git a/resources/gallery/photos/2018/full/12.JPG b/resources/gallery/photos/2018/full/12.JPG
deleted file mode 100644
index e0567094d..000000000
Binary files a/resources/gallery/photos/2018/full/12.JPG and /dev/null differ
diff --git a/resources/gallery/photos/2018/full/13.JPG b/resources/gallery/photos/2018/full/13.JPG
deleted file mode 100644
index 905519eea..000000000
Binary files a/resources/gallery/photos/2018/full/13.JPG and /dev/null differ
diff --git a/resources/gallery/photos/2018/full/14.JPG b/resources/gallery/photos/2018/full/14.JPG
deleted file mode 100644
index 5848401b0..000000000
Binary files a/resources/gallery/photos/2018/full/14.JPG and /dev/null differ
diff --git a/resources/gallery/photos/2018/full/15.JPG b/resources/gallery/photos/2018/full/15.JPG
deleted file mode 100644
index 9ee1e9431..000000000
Binary files a/resources/gallery/photos/2018/full/15.JPG and /dev/null differ
diff --git a/resources/gallery/photos/2018/full/16.JPG b/resources/gallery/photos/2018/full/16.JPG
deleted file mode 100644
index daecf4ec4..000000000
Binary files a/resources/gallery/photos/2018/full/16.JPG and /dev/null differ
diff --git a/resources/gallery/photos/2018/full/17.JPG b/resources/gallery/photos/2018/full/17.JPG
deleted file mode 100644
index 1205d619d..000000000
Binary files a/resources/gallery/photos/2018/full/17.JPG and /dev/null differ
diff --git a/resources/gallery/photos/2018/full/18.JPG b/resources/gallery/photos/2018/full/18.JPG
deleted file mode 100644
index 893c874af..000000000
Binary files a/resources/gallery/photos/2018/full/18.JPG and /dev/null differ
diff --git a/resources/gallery/photos/2018/full/19.JPG b/resources/gallery/photos/2018/full/19.JPG
deleted file mode 100644
index bb03d3c3d..000000000
Binary files a/resources/gallery/photos/2018/full/19.JPG and /dev/null differ
diff --git a/resources/gallery/photos/2018/full/2.JPG b/resources/gallery/photos/2018/full/2.JPG
deleted file mode 100644
index 556ab4281..000000000
Binary files a/resources/gallery/photos/2018/full/2.JPG and /dev/null differ
diff --git a/resources/gallery/photos/2018/full/20.JPG b/resources/gallery/photos/2018/full/20.JPG
deleted file mode 100644
index 73794ca7f..000000000
Binary files a/resources/gallery/photos/2018/full/20.JPG and /dev/null differ
diff --git a/resources/gallery/photos/2018/full/21.JPG b/resources/gallery/photos/2018/full/21.JPG
deleted file mode 100644
index 25df27411..000000000
Binary files a/resources/gallery/photos/2018/full/21.JPG and /dev/null differ
diff --git a/resources/gallery/photos/2018/full/22.JPG b/resources/gallery/photos/2018/full/22.JPG
deleted file mode 100644
index af4353e16..000000000
Binary files a/resources/gallery/photos/2018/full/22.JPG and /dev/null differ
diff --git a/resources/gallery/photos/2018/full/23.JPG b/resources/gallery/photos/2018/full/23.JPG
deleted file mode 100644
index 2598e1781..000000000
Binary files a/resources/gallery/photos/2018/full/23.JPG and /dev/null differ
diff --git a/resources/gallery/photos/2018/full/24.JPG b/resources/gallery/photos/2018/full/24.JPG
deleted file mode 100644
index 7960c4680..000000000
Binary files a/resources/gallery/photos/2018/full/24.JPG and /dev/null differ
diff --git a/resources/gallery/photos/2018/full/25.JPG b/resources/gallery/photos/2018/full/25.JPG
deleted file mode 100644
index 2dcb585cf..000000000
Binary files a/resources/gallery/photos/2018/full/25.JPG and /dev/null differ
diff --git a/resources/gallery/photos/2018/full/26.JPG b/resources/gallery/photos/2018/full/26.JPG
deleted file mode 100644
index e1dbf9149..000000000
Binary files a/resources/gallery/photos/2018/full/26.JPG and /dev/null differ
diff --git a/resources/gallery/photos/2018/full/27.JPG b/resources/gallery/photos/2018/full/27.JPG
deleted file mode 100644
index 1af220f30..000000000
Binary files a/resources/gallery/photos/2018/full/27.JPG and /dev/null differ
diff --git a/resources/gallery/photos/2018/full/28.JPG b/resources/gallery/photos/2018/full/28.JPG
deleted file mode 100644
index b18c67e64..000000000
Binary files a/resources/gallery/photos/2018/full/28.JPG and /dev/null differ
diff --git a/resources/gallery/photos/2018/full/29.JPG b/resources/gallery/photos/2018/full/29.JPG
deleted file mode 100644
index 488a06ef2..000000000
Binary files a/resources/gallery/photos/2018/full/29.JPG and /dev/null differ
diff --git a/resources/gallery/photos/2018/full/3.JPG b/resources/gallery/photos/2018/full/3.JPG
deleted file mode 100644
index def23412a..000000000
Binary files a/resources/gallery/photos/2018/full/3.JPG and /dev/null differ
diff --git a/resources/gallery/photos/2018/full/30.JPG b/resources/gallery/photos/2018/full/30.JPG
deleted file mode 100644
index 899757270..000000000
Binary files a/resources/gallery/photos/2018/full/30.JPG and /dev/null differ
diff --git a/resources/gallery/photos/2018/full/31.JPG b/resources/gallery/photos/2018/full/31.JPG
deleted file mode 100644
index 55d3b4f32..000000000
Binary files a/resources/gallery/photos/2018/full/31.JPG and /dev/null differ
diff --git a/resources/gallery/photos/2018/full/32.JPG b/resources/gallery/photos/2018/full/32.JPG
deleted file mode 100644
index c85e8d7c2..000000000
Binary files a/resources/gallery/photos/2018/full/32.JPG and /dev/null differ
diff --git a/resources/gallery/photos/2018/full/33.JPG b/resources/gallery/photos/2018/full/33.JPG
deleted file mode 100644
index fc41d7bd8..000000000
Binary files a/resources/gallery/photos/2018/full/33.JPG and /dev/null differ
diff --git a/resources/gallery/photos/2018/full/34.JPG b/resources/gallery/photos/2018/full/34.JPG
deleted file mode 100644
index 555ebf91a..000000000
Binary files a/resources/gallery/photos/2018/full/34.JPG and /dev/null differ
diff --git a/resources/gallery/photos/2018/full/35.JPG b/resources/gallery/photos/2018/full/35.JPG
deleted file mode 100644
index e2e2ab26d..000000000
Binary files a/resources/gallery/photos/2018/full/35.JPG and /dev/null differ
diff --git a/resources/gallery/photos/2018/full/36.JPG b/resources/gallery/photos/2018/full/36.JPG
deleted file mode 100644
index 859caa03b..000000000
Binary files a/resources/gallery/photos/2018/full/36.JPG and /dev/null differ
diff --git a/resources/gallery/photos/2018/full/37.JPG b/resources/gallery/photos/2018/full/37.JPG
deleted file mode 100644
index 4bca6ab49..000000000
Binary files a/resources/gallery/photos/2018/full/37.JPG and /dev/null differ
diff --git a/resources/gallery/photos/2018/full/38.JPG b/resources/gallery/photos/2018/full/38.JPG
deleted file mode 100644
index 6e32f7257..000000000
Binary files a/resources/gallery/photos/2018/full/38.JPG and /dev/null differ
diff --git a/resources/gallery/photos/2018/full/4.JPG b/resources/gallery/photos/2018/full/4.JPG
deleted file mode 100644
index 17341c088..000000000
Binary files a/resources/gallery/photos/2018/full/4.JPG and /dev/null differ
diff --git a/resources/gallery/photos/2018/full/5.JPG b/resources/gallery/photos/2018/full/5.JPG
deleted file mode 100644
index 321905192..000000000
Binary files a/resources/gallery/photos/2018/full/5.JPG and /dev/null differ
diff --git a/resources/gallery/photos/2018/full/6.JPG b/resources/gallery/photos/2018/full/6.JPG
deleted file mode 100644
index 1dfe725b2..000000000
Binary files a/resources/gallery/photos/2018/full/6.JPG and /dev/null differ
diff --git a/resources/gallery/photos/2018/full/7.JPG b/resources/gallery/photos/2018/full/7.JPG
deleted file mode 100644
index 6b8f890e3..000000000
Binary files a/resources/gallery/photos/2018/full/7.JPG and /dev/null differ
diff --git a/resources/gallery/photos/2018/full/8.JPG b/resources/gallery/photos/2018/full/8.JPG
deleted file mode 100644
index 248dc5c60..000000000
Binary files a/resources/gallery/photos/2018/full/8.JPG and /dev/null differ
diff --git a/resources/gallery/photos/2018/full/9.JPG b/resources/gallery/photos/2018/full/9.JPG
deleted file mode 100644
index 8150acb8e..000000000
Binary files a/resources/gallery/photos/2018/full/9.JPG and /dev/null differ
diff --git a/resources/gallery/photos/2018/thumb/1.jpg b/resources/gallery/photos/2018/thumb/1.jpg
deleted file mode 100644
index d9b18fb2b..000000000
Binary files a/resources/gallery/photos/2018/thumb/1.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2018/thumb/10.jpg b/resources/gallery/photos/2018/thumb/10.jpg
deleted file mode 100644
index 191e821aa..000000000
Binary files a/resources/gallery/photos/2018/thumb/10.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2018/thumb/11.jpg b/resources/gallery/photos/2018/thumb/11.jpg
deleted file mode 100644
index e48cd9d35..000000000
Binary files a/resources/gallery/photos/2018/thumb/11.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2018/thumb/12.jpg b/resources/gallery/photos/2018/thumb/12.jpg
deleted file mode 100644
index c1686bc3d..000000000
Binary files a/resources/gallery/photos/2018/thumb/12.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2018/thumb/13.jpg b/resources/gallery/photos/2018/thumb/13.jpg
deleted file mode 100644
index 440ec1cf1..000000000
Binary files a/resources/gallery/photos/2018/thumb/13.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2018/thumb/14.jpg b/resources/gallery/photos/2018/thumb/14.jpg
deleted file mode 100644
index 5e26c4bc4..000000000
Binary files a/resources/gallery/photos/2018/thumb/14.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2018/thumb/15.jpg b/resources/gallery/photos/2018/thumb/15.jpg
deleted file mode 100644
index 92fa24e09..000000000
Binary files a/resources/gallery/photos/2018/thumb/15.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2018/thumb/16.jpg b/resources/gallery/photos/2018/thumb/16.jpg
deleted file mode 100644
index 89b89df99..000000000
Binary files a/resources/gallery/photos/2018/thumb/16.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2018/thumb/17.jpg b/resources/gallery/photos/2018/thumb/17.jpg
deleted file mode 100644
index c0f76d05d..000000000
Binary files a/resources/gallery/photos/2018/thumb/17.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2018/thumb/18.jpg b/resources/gallery/photos/2018/thumb/18.jpg
deleted file mode 100644
index 0292181b0..000000000
Binary files a/resources/gallery/photos/2018/thumb/18.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2018/thumb/19.jpg b/resources/gallery/photos/2018/thumb/19.jpg
deleted file mode 100644
index ce4318339..000000000
Binary files a/resources/gallery/photos/2018/thumb/19.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2018/thumb/2.jpg b/resources/gallery/photos/2018/thumb/2.jpg
deleted file mode 100644
index 69ccde642..000000000
Binary files a/resources/gallery/photos/2018/thumb/2.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2018/thumb/20.jpg b/resources/gallery/photos/2018/thumb/20.jpg
deleted file mode 100644
index 8eb2f0551..000000000
Binary files a/resources/gallery/photos/2018/thumb/20.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2018/thumb/21.jpg b/resources/gallery/photos/2018/thumb/21.jpg
deleted file mode 100644
index a517ad9f8..000000000
Binary files a/resources/gallery/photos/2018/thumb/21.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2018/thumb/22.jpg b/resources/gallery/photos/2018/thumb/22.jpg
deleted file mode 100644
index f1bc774cb..000000000
Binary files a/resources/gallery/photos/2018/thumb/22.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2018/thumb/23.jpg b/resources/gallery/photos/2018/thumb/23.jpg
deleted file mode 100644
index 47c998f86..000000000
Binary files a/resources/gallery/photos/2018/thumb/23.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2018/thumb/24.jpg b/resources/gallery/photos/2018/thumb/24.jpg
deleted file mode 100644
index 2119fe0e2..000000000
Binary files a/resources/gallery/photos/2018/thumb/24.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2018/thumb/25.jpg b/resources/gallery/photos/2018/thumb/25.jpg
deleted file mode 100644
index ba14532bd..000000000
Binary files a/resources/gallery/photos/2018/thumb/25.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2018/thumb/26.jpg b/resources/gallery/photos/2018/thumb/26.jpg
deleted file mode 100644
index 88e96d155..000000000
Binary files a/resources/gallery/photos/2018/thumb/26.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2018/thumb/27.jpg b/resources/gallery/photos/2018/thumb/27.jpg
deleted file mode 100644
index dd2e9dbac..000000000
Binary files a/resources/gallery/photos/2018/thumb/27.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2018/thumb/28.jpg b/resources/gallery/photos/2018/thumb/28.jpg
deleted file mode 100644
index 3a20242f7..000000000
Binary files a/resources/gallery/photos/2018/thumb/28.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2018/thumb/29.jpg b/resources/gallery/photos/2018/thumb/29.jpg
deleted file mode 100644
index 251a1356f..000000000
Binary files a/resources/gallery/photos/2018/thumb/29.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2018/thumb/3.jpg b/resources/gallery/photos/2018/thumb/3.jpg
deleted file mode 100644
index 5fd431d2c..000000000
Binary files a/resources/gallery/photos/2018/thumb/3.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2018/thumb/30.jpg b/resources/gallery/photos/2018/thumb/30.jpg
deleted file mode 100644
index 0c15571a8..000000000
Binary files a/resources/gallery/photos/2018/thumb/30.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2018/thumb/31.jpg b/resources/gallery/photos/2018/thumb/31.jpg
deleted file mode 100644
index 9122d2507..000000000
Binary files a/resources/gallery/photos/2018/thumb/31.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2018/thumb/32.jpg b/resources/gallery/photos/2018/thumb/32.jpg
deleted file mode 100644
index 72eb6f1a2..000000000
Binary files a/resources/gallery/photos/2018/thumb/32.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2018/thumb/33.jpg b/resources/gallery/photos/2018/thumb/33.jpg
deleted file mode 100644
index f316c9085..000000000
Binary files a/resources/gallery/photos/2018/thumb/33.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2018/thumb/34.jpg b/resources/gallery/photos/2018/thumb/34.jpg
deleted file mode 100644
index cc01eaa22..000000000
Binary files a/resources/gallery/photos/2018/thumb/34.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2018/thumb/35.jpg b/resources/gallery/photos/2018/thumb/35.jpg
deleted file mode 100644
index 765f068a8..000000000
Binary files a/resources/gallery/photos/2018/thumb/35.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2018/thumb/36.jpg b/resources/gallery/photos/2018/thumb/36.jpg
deleted file mode 100644
index 8be1baad4..000000000
Binary files a/resources/gallery/photos/2018/thumb/36.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2018/thumb/37.jpg b/resources/gallery/photos/2018/thumb/37.jpg
deleted file mode 100644
index 0a4be2b14..000000000
Binary files a/resources/gallery/photos/2018/thumb/37.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2018/thumb/38.jpg b/resources/gallery/photos/2018/thumb/38.jpg
deleted file mode 100644
index 2f0e3e3cd..000000000
Binary files a/resources/gallery/photos/2018/thumb/38.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2018/thumb/4.jpg b/resources/gallery/photos/2018/thumb/4.jpg
deleted file mode 100644
index 75d7edd4c..000000000
Binary files a/resources/gallery/photos/2018/thumb/4.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2018/thumb/5.jpg b/resources/gallery/photos/2018/thumb/5.jpg
deleted file mode 100644
index 5203dd9a6..000000000
Binary files a/resources/gallery/photos/2018/thumb/5.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2018/thumb/6.jpg b/resources/gallery/photos/2018/thumb/6.jpg
deleted file mode 100644
index 399ba04c4..000000000
Binary files a/resources/gallery/photos/2018/thumb/6.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2018/thumb/7.jpg b/resources/gallery/photos/2018/thumb/7.jpg
deleted file mode 100644
index 7df3ea029..000000000
Binary files a/resources/gallery/photos/2018/thumb/7.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2018/thumb/8.jpg b/resources/gallery/photos/2018/thumb/8.jpg
deleted file mode 100644
index 19742c76b..000000000
Binary files a/resources/gallery/photos/2018/thumb/8.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2018/thumb/9.jpg b/resources/gallery/photos/2018/thumb/9.jpg
deleted file mode 100644
index 7ed8c0ada..000000000
Binary files a/resources/gallery/photos/2018/thumb/9.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/1.jpg b/resources/gallery/photos/2019/full/1.jpg
deleted file mode 100644
index e3952e7ee..000000000
Binary files a/resources/gallery/photos/2019/full/1.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/10.jpg b/resources/gallery/photos/2019/full/10.jpg
deleted file mode 100644
index 3a62b9321..000000000
Binary files a/resources/gallery/photos/2019/full/10.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/100.jpg b/resources/gallery/photos/2019/full/100.jpg
deleted file mode 100644
index 3c280297b..000000000
Binary files a/resources/gallery/photos/2019/full/100.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/101.jpg b/resources/gallery/photos/2019/full/101.jpg
deleted file mode 100644
index ffd1a6b67..000000000
Binary files a/resources/gallery/photos/2019/full/101.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/102.jpg b/resources/gallery/photos/2019/full/102.jpg
deleted file mode 100644
index b5ff5514a..000000000
Binary files a/resources/gallery/photos/2019/full/102.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/103.jpg b/resources/gallery/photos/2019/full/103.jpg
deleted file mode 100644
index e1fb602a3..000000000
Binary files a/resources/gallery/photos/2019/full/103.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/104.jpg b/resources/gallery/photos/2019/full/104.jpg
deleted file mode 100644
index f3c242117..000000000
Binary files a/resources/gallery/photos/2019/full/104.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/105.jpg b/resources/gallery/photos/2019/full/105.jpg
deleted file mode 100644
index 5e7a46550..000000000
Binary files a/resources/gallery/photos/2019/full/105.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/106.jpg b/resources/gallery/photos/2019/full/106.jpg
deleted file mode 100644
index ef636fa18..000000000
Binary files a/resources/gallery/photos/2019/full/106.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/107.jpg b/resources/gallery/photos/2019/full/107.jpg
deleted file mode 100644
index d9026b193..000000000
Binary files a/resources/gallery/photos/2019/full/107.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/108.jpg b/resources/gallery/photos/2019/full/108.jpg
deleted file mode 100644
index b1e2fe772..000000000
Binary files a/resources/gallery/photos/2019/full/108.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/109.jpg b/resources/gallery/photos/2019/full/109.jpg
deleted file mode 100644
index d12057f2c..000000000
Binary files a/resources/gallery/photos/2019/full/109.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/11.jpg b/resources/gallery/photos/2019/full/11.jpg
deleted file mode 100644
index 825f04022..000000000
Binary files a/resources/gallery/photos/2019/full/11.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/110.jpg b/resources/gallery/photos/2019/full/110.jpg
deleted file mode 100644
index 5e5829914..000000000
Binary files a/resources/gallery/photos/2019/full/110.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/111.jpg b/resources/gallery/photos/2019/full/111.jpg
deleted file mode 100644
index 5d0223bb8..000000000
Binary files a/resources/gallery/photos/2019/full/111.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/112.jpg b/resources/gallery/photos/2019/full/112.jpg
deleted file mode 100644
index dcd464e98..000000000
Binary files a/resources/gallery/photos/2019/full/112.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/113.jpg b/resources/gallery/photos/2019/full/113.jpg
deleted file mode 100644
index 5985e1f72..000000000
Binary files a/resources/gallery/photos/2019/full/113.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/114.jpg b/resources/gallery/photos/2019/full/114.jpg
deleted file mode 100644
index ffd3695a9..000000000
Binary files a/resources/gallery/photos/2019/full/114.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/115.jpg b/resources/gallery/photos/2019/full/115.jpg
deleted file mode 100644
index fe79eb444..000000000
Binary files a/resources/gallery/photos/2019/full/115.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/116.jpg b/resources/gallery/photos/2019/full/116.jpg
deleted file mode 100644
index b51b0a08d..000000000
Binary files a/resources/gallery/photos/2019/full/116.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/117.jpg b/resources/gallery/photos/2019/full/117.jpg
deleted file mode 100644
index 1ac9f9175..000000000
Binary files a/resources/gallery/photos/2019/full/117.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/118.jpg b/resources/gallery/photos/2019/full/118.jpg
deleted file mode 100644
index eadb06d73..000000000
Binary files a/resources/gallery/photos/2019/full/118.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/119.jpg b/resources/gallery/photos/2019/full/119.jpg
deleted file mode 100644
index affb974bb..000000000
Binary files a/resources/gallery/photos/2019/full/119.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/12.jpg b/resources/gallery/photos/2019/full/12.jpg
deleted file mode 100644
index 7b2889634..000000000
Binary files a/resources/gallery/photos/2019/full/12.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/120.jpg b/resources/gallery/photos/2019/full/120.jpg
deleted file mode 100644
index a6f8819b2..000000000
Binary files a/resources/gallery/photos/2019/full/120.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/121.jpg b/resources/gallery/photos/2019/full/121.jpg
deleted file mode 100644
index 8cef94d76..000000000
Binary files a/resources/gallery/photos/2019/full/121.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/122.jpg b/resources/gallery/photos/2019/full/122.jpg
deleted file mode 100644
index 249991435..000000000
Binary files a/resources/gallery/photos/2019/full/122.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/123.jpg b/resources/gallery/photos/2019/full/123.jpg
deleted file mode 100644
index f23cfdd72..000000000
Binary files a/resources/gallery/photos/2019/full/123.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/124.jpg b/resources/gallery/photos/2019/full/124.jpg
deleted file mode 100644
index 84ebdfead..000000000
Binary files a/resources/gallery/photos/2019/full/124.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/125.jpg b/resources/gallery/photos/2019/full/125.jpg
deleted file mode 100644
index a59efa780..000000000
Binary files a/resources/gallery/photos/2019/full/125.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/126.jpg b/resources/gallery/photos/2019/full/126.jpg
deleted file mode 100644
index 521859d9e..000000000
Binary files a/resources/gallery/photos/2019/full/126.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/127.jpg b/resources/gallery/photos/2019/full/127.jpg
deleted file mode 100644
index 12e4010f2..000000000
Binary files a/resources/gallery/photos/2019/full/127.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/128.jpg b/resources/gallery/photos/2019/full/128.jpg
deleted file mode 100644
index cf1189d3b..000000000
Binary files a/resources/gallery/photos/2019/full/128.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/129.jpg b/resources/gallery/photos/2019/full/129.jpg
deleted file mode 100644
index 1314425ce..000000000
Binary files a/resources/gallery/photos/2019/full/129.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/13.jpg b/resources/gallery/photos/2019/full/13.jpg
deleted file mode 100644
index 9677fdfa0..000000000
Binary files a/resources/gallery/photos/2019/full/13.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/130.jpg b/resources/gallery/photos/2019/full/130.jpg
deleted file mode 100644
index c56a79306..000000000
Binary files a/resources/gallery/photos/2019/full/130.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/131.jpg b/resources/gallery/photos/2019/full/131.jpg
deleted file mode 100644
index 35d703df0..000000000
Binary files a/resources/gallery/photos/2019/full/131.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/132.jpg b/resources/gallery/photos/2019/full/132.jpg
deleted file mode 100644
index 0a107ffba..000000000
Binary files a/resources/gallery/photos/2019/full/132.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/133.jpg b/resources/gallery/photos/2019/full/133.jpg
deleted file mode 100644
index 718b5a3af..000000000
Binary files a/resources/gallery/photos/2019/full/133.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/134.jpg b/resources/gallery/photos/2019/full/134.jpg
deleted file mode 100644
index c6dbab17b..000000000
Binary files a/resources/gallery/photos/2019/full/134.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/135.jpg b/resources/gallery/photos/2019/full/135.jpg
deleted file mode 100644
index 1c5545879..000000000
Binary files a/resources/gallery/photos/2019/full/135.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/136.jpg b/resources/gallery/photos/2019/full/136.jpg
deleted file mode 100644
index 7232ee736..000000000
Binary files a/resources/gallery/photos/2019/full/136.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/137.jpg b/resources/gallery/photos/2019/full/137.jpg
deleted file mode 100644
index d953490f2..000000000
Binary files a/resources/gallery/photos/2019/full/137.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/138.jpg b/resources/gallery/photos/2019/full/138.jpg
deleted file mode 100644
index 60271e9a5..000000000
Binary files a/resources/gallery/photos/2019/full/138.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/139.jpg b/resources/gallery/photos/2019/full/139.jpg
deleted file mode 100644
index c4c5a3fa7..000000000
Binary files a/resources/gallery/photos/2019/full/139.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/14.jpg b/resources/gallery/photos/2019/full/14.jpg
deleted file mode 100644
index b8203e871..000000000
Binary files a/resources/gallery/photos/2019/full/14.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/140.jpg b/resources/gallery/photos/2019/full/140.jpg
deleted file mode 100644
index 39e1ac878..000000000
Binary files a/resources/gallery/photos/2019/full/140.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/141.jpg b/resources/gallery/photos/2019/full/141.jpg
deleted file mode 100644
index afeb8ae0c..000000000
Binary files a/resources/gallery/photos/2019/full/141.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/142.jpg b/resources/gallery/photos/2019/full/142.jpg
deleted file mode 100644
index ca1eaaf68..000000000
Binary files a/resources/gallery/photos/2019/full/142.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/15.jpg b/resources/gallery/photos/2019/full/15.jpg
deleted file mode 100644
index ed0e32f67..000000000
Binary files a/resources/gallery/photos/2019/full/15.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/16.jpg b/resources/gallery/photos/2019/full/16.jpg
deleted file mode 100644
index 3da543849..000000000
Binary files a/resources/gallery/photos/2019/full/16.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/17.jpg b/resources/gallery/photos/2019/full/17.jpg
deleted file mode 100644
index 664dee3fd..000000000
Binary files a/resources/gallery/photos/2019/full/17.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/18.jpg b/resources/gallery/photos/2019/full/18.jpg
deleted file mode 100644
index afed50cd3..000000000
Binary files a/resources/gallery/photos/2019/full/18.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/19.jpg b/resources/gallery/photos/2019/full/19.jpg
deleted file mode 100644
index cab18444f..000000000
Binary files a/resources/gallery/photos/2019/full/19.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/2.jpg b/resources/gallery/photos/2019/full/2.jpg
deleted file mode 100644
index a29e84e1b..000000000
Binary files a/resources/gallery/photos/2019/full/2.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/20.jpg b/resources/gallery/photos/2019/full/20.jpg
deleted file mode 100644
index 84e6c8041..000000000
Binary files a/resources/gallery/photos/2019/full/20.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/21.jpg b/resources/gallery/photos/2019/full/21.jpg
deleted file mode 100644
index d3e58dfae..000000000
Binary files a/resources/gallery/photos/2019/full/21.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/22.jpg b/resources/gallery/photos/2019/full/22.jpg
deleted file mode 100644
index 3a7b08b27..000000000
Binary files a/resources/gallery/photos/2019/full/22.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/23.jpg b/resources/gallery/photos/2019/full/23.jpg
deleted file mode 100644
index 629d32e4c..000000000
Binary files a/resources/gallery/photos/2019/full/23.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/24.jpg b/resources/gallery/photos/2019/full/24.jpg
deleted file mode 100644
index fbea6ba96..000000000
Binary files a/resources/gallery/photos/2019/full/24.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/25.jpg b/resources/gallery/photos/2019/full/25.jpg
deleted file mode 100644
index 40be2c083..000000000
Binary files a/resources/gallery/photos/2019/full/25.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/26.jpg b/resources/gallery/photos/2019/full/26.jpg
deleted file mode 100644
index 9c0e7fe19..000000000
Binary files a/resources/gallery/photos/2019/full/26.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/27.jpg b/resources/gallery/photos/2019/full/27.jpg
deleted file mode 100644
index cf8ec9ff8..000000000
Binary files a/resources/gallery/photos/2019/full/27.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/28.jpg b/resources/gallery/photos/2019/full/28.jpg
deleted file mode 100644
index dccc17164..000000000
Binary files a/resources/gallery/photos/2019/full/28.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/29.jpg b/resources/gallery/photos/2019/full/29.jpg
deleted file mode 100644
index 7761d0be0..000000000
Binary files a/resources/gallery/photos/2019/full/29.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/3.jpg b/resources/gallery/photos/2019/full/3.jpg
deleted file mode 100644
index 077918936..000000000
Binary files a/resources/gallery/photos/2019/full/3.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/30.jpg b/resources/gallery/photos/2019/full/30.jpg
deleted file mode 100644
index c9d226165..000000000
Binary files a/resources/gallery/photos/2019/full/30.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/31.jpg b/resources/gallery/photos/2019/full/31.jpg
deleted file mode 100644
index 1cf09a2ad..000000000
Binary files a/resources/gallery/photos/2019/full/31.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/32.jpg b/resources/gallery/photos/2019/full/32.jpg
deleted file mode 100644
index 0be65eefe..000000000
Binary files a/resources/gallery/photos/2019/full/32.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/33.jpg b/resources/gallery/photos/2019/full/33.jpg
deleted file mode 100644
index e28995ac1..000000000
Binary files a/resources/gallery/photos/2019/full/33.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/34.jpg b/resources/gallery/photos/2019/full/34.jpg
deleted file mode 100644
index 5cd4fb780..000000000
Binary files a/resources/gallery/photos/2019/full/34.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/35.jpg b/resources/gallery/photos/2019/full/35.jpg
deleted file mode 100644
index cadf5c761..000000000
Binary files a/resources/gallery/photos/2019/full/35.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/36.jpg b/resources/gallery/photos/2019/full/36.jpg
deleted file mode 100644
index efe8bcf25..000000000
Binary files a/resources/gallery/photos/2019/full/36.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/37.jpg b/resources/gallery/photos/2019/full/37.jpg
deleted file mode 100644
index f477d05d8..000000000
Binary files a/resources/gallery/photos/2019/full/37.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/38.jpg b/resources/gallery/photos/2019/full/38.jpg
deleted file mode 100644
index e1f87ac26..000000000
Binary files a/resources/gallery/photos/2019/full/38.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/39.jpg b/resources/gallery/photos/2019/full/39.jpg
deleted file mode 100644
index 9989d4ebe..000000000
Binary files a/resources/gallery/photos/2019/full/39.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/4.jpg b/resources/gallery/photos/2019/full/4.jpg
deleted file mode 100644
index 7ed498e8f..000000000
Binary files a/resources/gallery/photos/2019/full/4.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/40.jpg b/resources/gallery/photos/2019/full/40.jpg
deleted file mode 100644
index 663e3852e..000000000
Binary files a/resources/gallery/photos/2019/full/40.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/41.jpg b/resources/gallery/photos/2019/full/41.jpg
deleted file mode 100644
index 7d42c8a0c..000000000
Binary files a/resources/gallery/photos/2019/full/41.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/42.jpg b/resources/gallery/photos/2019/full/42.jpg
deleted file mode 100644
index 6559b5240..000000000
Binary files a/resources/gallery/photos/2019/full/42.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/43.jpg b/resources/gallery/photos/2019/full/43.jpg
deleted file mode 100644
index 17a5c288a..000000000
Binary files a/resources/gallery/photos/2019/full/43.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/44.jpg b/resources/gallery/photos/2019/full/44.jpg
deleted file mode 100644
index 7fe4059ee..000000000
Binary files a/resources/gallery/photos/2019/full/44.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/45.jpg b/resources/gallery/photos/2019/full/45.jpg
deleted file mode 100644
index 95c6f31f2..000000000
Binary files a/resources/gallery/photos/2019/full/45.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/46.jpg b/resources/gallery/photos/2019/full/46.jpg
deleted file mode 100644
index 1c8255f8e..000000000
Binary files a/resources/gallery/photos/2019/full/46.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/47.jpg b/resources/gallery/photos/2019/full/47.jpg
deleted file mode 100644
index cc8c48d42..000000000
Binary files a/resources/gallery/photos/2019/full/47.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/48.jpg b/resources/gallery/photos/2019/full/48.jpg
deleted file mode 100644
index 6d58305bd..000000000
Binary files a/resources/gallery/photos/2019/full/48.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/49.jpg b/resources/gallery/photos/2019/full/49.jpg
deleted file mode 100644
index 76a5b0426..000000000
Binary files a/resources/gallery/photos/2019/full/49.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/5.jpg b/resources/gallery/photos/2019/full/5.jpg
deleted file mode 100644
index 4313dce5a..000000000
Binary files a/resources/gallery/photos/2019/full/5.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/50.jpg b/resources/gallery/photos/2019/full/50.jpg
deleted file mode 100644
index bb1754038..000000000
Binary files a/resources/gallery/photos/2019/full/50.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/51.jpg b/resources/gallery/photos/2019/full/51.jpg
deleted file mode 100644
index 229e51d50..000000000
Binary files a/resources/gallery/photos/2019/full/51.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/52.jpg b/resources/gallery/photos/2019/full/52.jpg
deleted file mode 100644
index 175433001..000000000
Binary files a/resources/gallery/photos/2019/full/52.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/53.jpg b/resources/gallery/photos/2019/full/53.jpg
deleted file mode 100644
index 5fef8926d..000000000
Binary files a/resources/gallery/photos/2019/full/53.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/54.jpg b/resources/gallery/photos/2019/full/54.jpg
deleted file mode 100644
index 173f5b8d8..000000000
Binary files a/resources/gallery/photos/2019/full/54.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/55.jpg b/resources/gallery/photos/2019/full/55.jpg
deleted file mode 100644
index 9a3777c90..000000000
Binary files a/resources/gallery/photos/2019/full/55.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/56.jpg b/resources/gallery/photos/2019/full/56.jpg
deleted file mode 100644
index 4e431ce93..000000000
Binary files a/resources/gallery/photos/2019/full/56.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/57.jpg b/resources/gallery/photos/2019/full/57.jpg
deleted file mode 100644
index fd429827e..000000000
Binary files a/resources/gallery/photos/2019/full/57.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/58.jpg b/resources/gallery/photos/2019/full/58.jpg
deleted file mode 100644
index 297cd8732..000000000
Binary files a/resources/gallery/photos/2019/full/58.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/59.jpg b/resources/gallery/photos/2019/full/59.jpg
deleted file mode 100644
index d59eaf11c..000000000
Binary files a/resources/gallery/photos/2019/full/59.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/6.jpg b/resources/gallery/photos/2019/full/6.jpg
deleted file mode 100644
index 7c08bff3b..000000000
Binary files a/resources/gallery/photos/2019/full/6.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/60.jpg b/resources/gallery/photos/2019/full/60.jpg
deleted file mode 100644
index a83f3f399..000000000
Binary files a/resources/gallery/photos/2019/full/60.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/61.jpg b/resources/gallery/photos/2019/full/61.jpg
deleted file mode 100644
index c4c7215a7..000000000
Binary files a/resources/gallery/photos/2019/full/61.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/62.jpg b/resources/gallery/photos/2019/full/62.jpg
deleted file mode 100644
index 225599233..000000000
Binary files a/resources/gallery/photos/2019/full/62.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/63.jpg b/resources/gallery/photos/2019/full/63.jpg
deleted file mode 100644
index 55ad762d7..000000000
Binary files a/resources/gallery/photos/2019/full/63.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/64.jpg b/resources/gallery/photos/2019/full/64.jpg
deleted file mode 100644
index b7b6797c5..000000000
Binary files a/resources/gallery/photos/2019/full/64.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/65.jpg b/resources/gallery/photos/2019/full/65.jpg
deleted file mode 100644
index 2691a4e0a..000000000
Binary files a/resources/gallery/photos/2019/full/65.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/66.jpg b/resources/gallery/photos/2019/full/66.jpg
deleted file mode 100644
index 61d03f9cd..000000000
Binary files a/resources/gallery/photos/2019/full/66.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/67.jpg b/resources/gallery/photos/2019/full/67.jpg
deleted file mode 100644
index 58b4450c2..000000000
Binary files a/resources/gallery/photos/2019/full/67.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/68.jpg b/resources/gallery/photos/2019/full/68.jpg
deleted file mode 100644
index 2abf3cffe..000000000
Binary files a/resources/gallery/photos/2019/full/68.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/69.jpg b/resources/gallery/photos/2019/full/69.jpg
deleted file mode 100644
index c64de8be8..000000000
Binary files a/resources/gallery/photos/2019/full/69.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/7.jpg b/resources/gallery/photos/2019/full/7.jpg
deleted file mode 100644
index a0abc4159..000000000
Binary files a/resources/gallery/photos/2019/full/7.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/70.jpg b/resources/gallery/photos/2019/full/70.jpg
deleted file mode 100644
index e0eea3d28..000000000
Binary files a/resources/gallery/photos/2019/full/70.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/71.jpg b/resources/gallery/photos/2019/full/71.jpg
deleted file mode 100644
index 0d3e77f8a..000000000
Binary files a/resources/gallery/photos/2019/full/71.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/72.jpg b/resources/gallery/photos/2019/full/72.jpg
deleted file mode 100644
index 86ceccc54..000000000
Binary files a/resources/gallery/photos/2019/full/72.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/73.jpg b/resources/gallery/photos/2019/full/73.jpg
deleted file mode 100644
index 35a3e06fc..000000000
Binary files a/resources/gallery/photos/2019/full/73.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/74.jpg b/resources/gallery/photos/2019/full/74.jpg
deleted file mode 100644
index 3f58d392f..000000000
Binary files a/resources/gallery/photos/2019/full/74.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/75.jpg b/resources/gallery/photos/2019/full/75.jpg
deleted file mode 100644
index e0811ad28..000000000
Binary files a/resources/gallery/photos/2019/full/75.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/76.jpg b/resources/gallery/photos/2019/full/76.jpg
deleted file mode 100644
index f1d6e31df..000000000
Binary files a/resources/gallery/photos/2019/full/76.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/77.jpg b/resources/gallery/photos/2019/full/77.jpg
deleted file mode 100644
index 38cc6a259..000000000
Binary files a/resources/gallery/photos/2019/full/77.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/78.jpg b/resources/gallery/photos/2019/full/78.jpg
deleted file mode 100644
index f1e0d29a2..000000000
Binary files a/resources/gallery/photos/2019/full/78.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/79.jpg b/resources/gallery/photos/2019/full/79.jpg
deleted file mode 100644
index b56cd6bf9..000000000
Binary files a/resources/gallery/photos/2019/full/79.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/8.jpg b/resources/gallery/photos/2019/full/8.jpg
deleted file mode 100644
index 41831abfd..000000000
Binary files a/resources/gallery/photos/2019/full/8.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/80.jpg b/resources/gallery/photos/2019/full/80.jpg
deleted file mode 100644
index be8bd9940..000000000
Binary files a/resources/gallery/photos/2019/full/80.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/81.jpg b/resources/gallery/photos/2019/full/81.jpg
deleted file mode 100644
index 05b662d0d..000000000
Binary files a/resources/gallery/photos/2019/full/81.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/82.jpg b/resources/gallery/photos/2019/full/82.jpg
deleted file mode 100644
index 9599d8351..000000000
Binary files a/resources/gallery/photos/2019/full/82.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/83.jpg b/resources/gallery/photos/2019/full/83.jpg
deleted file mode 100644
index e820a44ed..000000000
Binary files a/resources/gallery/photos/2019/full/83.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/84.jpg b/resources/gallery/photos/2019/full/84.jpg
deleted file mode 100644
index 1591e97a4..000000000
Binary files a/resources/gallery/photos/2019/full/84.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/85.jpg b/resources/gallery/photos/2019/full/85.jpg
deleted file mode 100644
index 0b914a030..000000000
Binary files a/resources/gallery/photos/2019/full/85.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/86.jpg b/resources/gallery/photos/2019/full/86.jpg
deleted file mode 100644
index 42671e676..000000000
Binary files a/resources/gallery/photos/2019/full/86.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/87.jpg b/resources/gallery/photos/2019/full/87.jpg
deleted file mode 100644
index 3599b996b..000000000
Binary files a/resources/gallery/photos/2019/full/87.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/88.jpg b/resources/gallery/photos/2019/full/88.jpg
deleted file mode 100644
index 6417303d2..000000000
Binary files a/resources/gallery/photos/2019/full/88.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/89.jpg b/resources/gallery/photos/2019/full/89.jpg
deleted file mode 100644
index 0eb379ab1..000000000
Binary files a/resources/gallery/photos/2019/full/89.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/9.jpg b/resources/gallery/photos/2019/full/9.jpg
deleted file mode 100644
index d14584290..000000000
Binary files a/resources/gallery/photos/2019/full/9.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/90.jpg b/resources/gallery/photos/2019/full/90.jpg
deleted file mode 100644
index 82a004f0b..000000000
Binary files a/resources/gallery/photos/2019/full/90.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/91.jpg b/resources/gallery/photos/2019/full/91.jpg
deleted file mode 100644
index 95fd3d19f..000000000
Binary files a/resources/gallery/photos/2019/full/91.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/92.jpg b/resources/gallery/photos/2019/full/92.jpg
deleted file mode 100644
index 81241733e..000000000
Binary files a/resources/gallery/photos/2019/full/92.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/93.jpg b/resources/gallery/photos/2019/full/93.jpg
deleted file mode 100644
index af0c10640..000000000
Binary files a/resources/gallery/photos/2019/full/93.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/94.jpg b/resources/gallery/photos/2019/full/94.jpg
deleted file mode 100644
index 0ac96c2f2..000000000
Binary files a/resources/gallery/photos/2019/full/94.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/95.jpg b/resources/gallery/photos/2019/full/95.jpg
deleted file mode 100644
index 84cabfb38..000000000
Binary files a/resources/gallery/photos/2019/full/95.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/96.jpg b/resources/gallery/photos/2019/full/96.jpg
deleted file mode 100644
index f13d3f2e8..000000000
Binary files a/resources/gallery/photos/2019/full/96.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/97.jpg b/resources/gallery/photos/2019/full/97.jpg
deleted file mode 100644
index 8d4b76e49..000000000
Binary files a/resources/gallery/photos/2019/full/97.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/98.jpg b/resources/gallery/photos/2019/full/98.jpg
deleted file mode 100644
index eefadc315..000000000
Binary files a/resources/gallery/photos/2019/full/98.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/full/99.jpg b/resources/gallery/photos/2019/full/99.jpg
deleted file mode 100644
index f09515761..000000000
Binary files a/resources/gallery/photos/2019/full/99.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/1.jpg b/resources/gallery/photos/2019/thumb/1.jpg
deleted file mode 100644
index 978235f00..000000000
Binary files a/resources/gallery/photos/2019/thumb/1.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/10.jpg b/resources/gallery/photos/2019/thumb/10.jpg
deleted file mode 100644
index 5c7e5c067..000000000
Binary files a/resources/gallery/photos/2019/thumb/10.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/100.jpg b/resources/gallery/photos/2019/thumb/100.jpg
deleted file mode 100644
index 5004a474a..000000000
Binary files a/resources/gallery/photos/2019/thumb/100.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/101.jpg b/resources/gallery/photos/2019/thumb/101.jpg
deleted file mode 100644
index 2323c1402..000000000
Binary files a/resources/gallery/photos/2019/thumb/101.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/102.jpg b/resources/gallery/photos/2019/thumb/102.jpg
deleted file mode 100644
index 47f22319d..000000000
Binary files a/resources/gallery/photos/2019/thumb/102.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/103.jpg b/resources/gallery/photos/2019/thumb/103.jpg
deleted file mode 100644
index ba516de4b..000000000
Binary files a/resources/gallery/photos/2019/thumb/103.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/104.jpg b/resources/gallery/photos/2019/thumb/104.jpg
deleted file mode 100644
index 3eb6f5399..000000000
Binary files a/resources/gallery/photos/2019/thumb/104.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/105.jpg b/resources/gallery/photos/2019/thumb/105.jpg
deleted file mode 100644
index dc92232e5..000000000
Binary files a/resources/gallery/photos/2019/thumb/105.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/106.jpg b/resources/gallery/photos/2019/thumb/106.jpg
deleted file mode 100644
index f650be694..000000000
Binary files a/resources/gallery/photos/2019/thumb/106.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/107.jpg b/resources/gallery/photos/2019/thumb/107.jpg
deleted file mode 100644
index c12153642..000000000
Binary files a/resources/gallery/photos/2019/thumb/107.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/108.jpg b/resources/gallery/photos/2019/thumb/108.jpg
deleted file mode 100644
index 4896198b5..000000000
Binary files a/resources/gallery/photos/2019/thumb/108.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/109.jpg b/resources/gallery/photos/2019/thumb/109.jpg
deleted file mode 100644
index 269791d90..000000000
Binary files a/resources/gallery/photos/2019/thumb/109.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/11.jpg b/resources/gallery/photos/2019/thumb/11.jpg
deleted file mode 100644
index 586989cd6..000000000
Binary files a/resources/gallery/photos/2019/thumb/11.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/110.jpg b/resources/gallery/photos/2019/thumb/110.jpg
deleted file mode 100644
index 3f04ceb50..000000000
Binary files a/resources/gallery/photos/2019/thumb/110.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/111.jpg b/resources/gallery/photos/2019/thumb/111.jpg
deleted file mode 100644
index d82b1c51f..000000000
Binary files a/resources/gallery/photos/2019/thumb/111.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/112.jpg b/resources/gallery/photos/2019/thumb/112.jpg
deleted file mode 100644
index d76c2832c..000000000
Binary files a/resources/gallery/photos/2019/thumb/112.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/113.jpg b/resources/gallery/photos/2019/thumb/113.jpg
deleted file mode 100644
index 8aa64d93f..000000000
Binary files a/resources/gallery/photos/2019/thumb/113.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/114.jpg b/resources/gallery/photos/2019/thumb/114.jpg
deleted file mode 100644
index 02b269f7c..000000000
Binary files a/resources/gallery/photos/2019/thumb/114.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/115.jpg b/resources/gallery/photos/2019/thumb/115.jpg
deleted file mode 100644
index daaf4a296..000000000
Binary files a/resources/gallery/photos/2019/thumb/115.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/116.jpg b/resources/gallery/photos/2019/thumb/116.jpg
deleted file mode 100644
index b12950763..000000000
Binary files a/resources/gallery/photos/2019/thumb/116.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/117.jpg b/resources/gallery/photos/2019/thumb/117.jpg
deleted file mode 100644
index 5ed8917b1..000000000
Binary files a/resources/gallery/photos/2019/thumb/117.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/118.jpg b/resources/gallery/photos/2019/thumb/118.jpg
deleted file mode 100644
index 642f3401e..000000000
Binary files a/resources/gallery/photos/2019/thumb/118.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/119.jpg b/resources/gallery/photos/2019/thumb/119.jpg
deleted file mode 100644
index c1ae32c48..000000000
Binary files a/resources/gallery/photos/2019/thumb/119.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/12.jpg b/resources/gallery/photos/2019/thumb/12.jpg
deleted file mode 100644
index cfc5d7858..000000000
Binary files a/resources/gallery/photos/2019/thumb/12.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/120.jpg b/resources/gallery/photos/2019/thumb/120.jpg
deleted file mode 100644
index 00dad58f4..000000000
Binary files a/resources/gallery/photos/2019/thumb/120.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/121.jpg b/resources/gallery/photos/2019/thumb/121.jpg
deleted file mode 100644
index c507edac6..000000000
Binary files a/resources/gallery/photos/2019/thumb/121.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/122.jpg b/resources/gallery/photos/2019/thumb/122.jpg
deleted file mode 100644
index a011e1cab..000000000
Binary files a/resources/gallery/photos/2019/thumb/122.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/123.jpg b/resources/gallery/photos/2019/thumb/123.jpg
deleted file mode 100644
index ea553b8a3..000000000
Binary files a/resources/gallery/photos/2019/thumb/123.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/124.jpg b/resources/gallery/photos/2019/thumb/124.jpg
deleted file mode 100644
index 70fc99933..000000000
Binary files a/resources/gallery/photos/2019/thumb/124.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/125.jpg b/resources/gallery/photos/2019/thumb/125.jpg
deleted file mode 100644
index 8fb34cab0..000000000
Binary files a/resources/gallery/photos/2019/thumb/125.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/126.jpg b/resources/gallery/photos/2019/thumb/126.jpg
deleted file mode 100644
index 28cdd1efb..000000000
Binary files a/resources/gallery/photos/2019/thumb/126.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/127.jpg b/resources/gallery/photos/2019/thumb/127.jpg
deleted file mode 100644
index 0bec496b1..000000000
Binary files a/resources/gallery/photos/2019/thumb/127.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/128.jpg b/resources/gallery/photos/2019/thumb/128.jpg
deleted file mode 100644
index 40f759784..000000000
Binary files a/resources/gallery/photos/2019/thumb/128.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/129.jpg b/resources/gallery/photos/2019/thumb/129.jpg
deleted file mode 100644
index 1a7ba3f55..000000000
Binary files a/resources/gallery/photos/2019/thumb/129.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/13.jpg b/resources/gallery/photos/2019/thumb/13.jpg
deleted file mode 100644
index b2e410cc3..000000000
Binary files a/resources/gallery/photos/2019/thumb/13.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/130.jpg b/resources/gallery/photos/2019/thumb/130.jpg
deleted file mode 100644
index 4a96bbd00..000000000
Binary files a/resources/gallery/photos/2019/thumb/130.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/131.jpg b/resources/gallery/photos/2019/thumb/131.jpg
deleted file mode 100644
index 495ed9f81..000000000
Binary files a/resources/gallery/photos/2019/thumb/131.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/132.jpg b/resources/gallery/photos/2019/thumb/132.jpg
deleted file mode 100644
index 796113ff4..000000000
Binary files a/resources/gallery/photos/2019/thumb/132.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/133.jpg b/resources/gallery/photos/2019/thumb/133.jpg
deleted file mode 100644
index ba8410c2d..000000000
Binary files a/resources/gallery/photos/2019/thumb/133.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/134.jpg b/resources/gallery/photos/2019/thumb/134.jpg
deleted file mode 100644
index 9c41b5651..000000000
Binary files a/resources/gallery/photos/2019/thumb/134.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/135.jpg b/resources/gallery/photos/2019/thumb/135.jpg
deleted file mode 100644
index 6e818be13..000000000
Binary files a/resources/gallery/photos/2019/thumb/135.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/136.jpg b/resources/gallery/photos/2019/thumb/136.jpg
deleted file mode 100644
index 700c6aca2..000000000
Binary files a/resources/gallery/photos/2019/thumb/136.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/137.jpg b/resources/gallery/photos/2019/thumb/137.jpg
deleted file mode 100644
index 01a47b45c..000000000
Binary files a/resources/gallery/photos/2019/thumb/137.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/138.jpg b/resources/gallery/photos/2019/thumb/138.jpg
deleted file mode 100644
index bd3259861..000000000
Binary files a/resources/gallery/photos/2019/thumb/138.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/139.jpg b/resources/gallery/photos/2019/thumb/139.jpg
deleted file mode 100644
index c5019d409..000000000
Binary files a/resources/gallery/photos/2019/thumb/139.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/14.jpg b/resources/gallery/photos/2019/thumb/14.jpg
deleted file mode 100644
index e31a6fbd0..000000000
Binary files a/resources/gallery/photos/2019/thumb/14.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/140.jpg b/resources/gallery/photos/2019/thumb/140.jpg
deleted file mode 100644
index 2f445d0f4..000000000
Binary files a/resources/gallery/photos/2019/thumb/140.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/141.jpg b/resources/gallery/photos/2019/thumb/141.jpg
deleted file mode 100644
index 93da39014..000000000
Binary files a/resources/gallery/photos/2019/thumb/141.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/142.jpg b/resources/gallery/photos/2019/thumb/142.jpg
deleted file mode 100644
index aa2ab1fbf..000000000
Binary files a/resources/gallery/photos/2019/thumb/142.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/15.jpg b/resources/gallery/photos/2019/thumb/15.jpg
deleted file mode 100644
index f9635c8cc..000000000
Binary files a/resources/gallery/photos/2019/thumb/15.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/16.jpg b/resources/gallery/photos/2019/thumb/16.jpg
deleted file mode 100644
index 13e877886..000000000
Binary files a/resources/gallery/photos/2019/thumb/16.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/17.jpg b/resources/gallery/photos/2019/thumb/17.jpg
deleted file mode 100644
index 5b7017c5d..000000000
Binary files a/resources/gallery/photos/2019/thumb/17.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/18.jpg b/resources/gallery/photos/2019/thumb/18.jpg
deleted file mode 100644
index 38911b0ac..000000000
Binary files a/resources/gallery/photos/2019/thumb/18.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/19.jpg b/resources/gallery/photos/2019/thumb/19.jpg
deleted file mode 100644
index 49628e350..000000000
Binary files a/resources/gallery/photos/2019/thumb/19.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/2.jpg b/resources/gallery/photos/2019/thumb/2.jpg
deleted file mode 100644
index 9d522307a..000000000
Binary files a/resources/gallery/photos/2019/thumb/2.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/20.jpg b/resources/gallery/photos/2019/thumb/20.jpg
deleted file mode 100644
index 0854fd148..000000000
Binary files a/resources/gallery/photos/2019/thumb/20.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/21.jpg b/resources/gallery/photos/2019/thumb/21.jpg
deleted file mode 100644
index 32de59d3f..000000000
Binary files a/resources/gallery/photos/2019/thumb/21.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/22.jpg b/resources/gallery/photos/2019/thumb/22.jpg
deleted file mode 100644
index 2993e88d8..000000000
Binary files a/resources/gallery/photos/2019/thumb/22.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/23.jpg b/resources/gallery/photos/2019/thumb/23.jpg
deleted file mode 100644
index 35aa2ad9a..000000000
Binary files a/resources/gallery/photos/2019/thumb/23.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/24.jpg b/resources/gallery/photos/2019/thumb/24.jpg
deleted file mode 100644
index cbd434e93..000000000
Binary files a/resources/gallery/photos/2019/thumb/24.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/25.jpg b/resources/gallery/photos/2019/thumb/25.jpg
deleted file mode 100644
index ad39f2afc..000000000
Binary files a/resources/gallery/photos/2019/thumb/25.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/26.jpg b/resources/gallery/photos/2019/thumb/26.jpg
deleted file mode 100644
index ab103af7b..000000000
Binary files a/resources/gallery/photos/2019/thumb/26.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/27.jpg b/resources/gallery/photos/2019/thumb/27.jpg
deleted file mode 100644
index 6f8d6f32f..000000000
Binary files a/resources/gallery/photos/2019/thumb/27.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/28.jpg b/resources/gallery/photos/2019/thumb/28.jpg
deleted file mode 100644
index 320fb0550..000000000
Binary files a/resources/gallery/photos/2019/thumb/28.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/29.jpg b/resources/gallery/photos/2019/thumb/29.jpg
deleted file mode 100644
index 6022271cc..000000000
Binary files a/resources/gallery/photos/2019/thumb/29.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/3.jpg b/resources/gallery/photos/2019/thumb/3.jpg
deleted file mode 100644
index 16d5db13f..000000000
Binary files a/resources/gallery/photos/2019/thumb/3.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/30.jpg b/resources/gallery/photos/2019/thumb/30.jpg
deleted file mode 100644
index 1a8803cdd..000000000
Binary files a/resources/gallery/photos/2019/thumb/30.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/31.jpg b/resources/gallery/photos/2019/thumb/31.jpg
deleted file mode 100644
index 36b43a154..000000000
Binary files a/resources/gallery/photos/2019/thumb/31.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/32.jpg b/resources/gallery/photos/2019/thumb/32.jpg
deleted file mode 100644
index 0300b79f1..000000000
Binary files a/resources/gallery/photos/2019/thumb/32.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/33.jpg b/resources/gallery/photos/2019/thumb/33.jpg
deleted file mode 100644
index e8286df92..000000000
Binary files a/resources/gallery/photos/2019/thumb/33.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/34.jpg b/resources/gallery/photos/2019/thumb/34.jpg
deleted file mode 100644
index 42578455e..000000000
Binary files a/resources/gallery/photos/2019/thumb/34.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/35.jpg b/resources/gallery/photos/2019/thumb/35.jpg
deleted file mode 100644
index 74d1d728c..000000000
Binary files a/resources/gallery/photos/2019/thumb/35.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/36.jpg b/resources/gallery/photos/2019/thumb/36.jpg
deleted file mode 100644
index dc09d70b4..000000000
Binary files a/resources/gallery/photos/2019/thumb/36.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/37.jpg b/resources/gallery/photos/2019/thumb/37.jpg
deleted file mode 100644
index 36ee9b809..000000000
Binary files a/resources/gallery/photos/2019/thumb/37.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/38.jpg b/resources/gallery/photos/2019/thumb/38.jpg
deleted file mode 100644
index e17f3cea2..000000000
Binary files a/resources/gallery/photos/2019/thumb/38.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/39.jpg b/resources/gallery/photos/2019/thumb/39.jpg
deleted file mode 100644
index fa6efacd0..000000000
Binary files a/resources/gallery/photos/2019/thumb/39.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/4.jpg b/resources/gallery/photos/2019/thumb/4.jpg
deleted file mode 100644
index 28e487587..000000000
Binary files a/resources/gallery/photos/2019/thumb/4.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/40.jpg b/resources/gallery/photos/2019/thumb/40.jpg
deleted file mode 100644
index ed323b355..000000000
Binary files a/resources/gallery/photos/2019/thumb/40.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/41.jpg b/resources/gallery/photos/2019/thumb/41.jpg
deleted file mode 100644
index e952f494f..000000000
Binary files a/resources/gallery/photos/2019/thumb/41.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/42.jpg b/resources/gallery/photos/2019/thumb/42.jpg
deleted file mode 100644
index 3ed8d3a23..000000000
Binary files a/resources/gallery/photos/2019/thumb/42.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/43.jpg b/resources/gallery/photos/2019/thumb/43.jpg
deleted file mode 100644
index dc4b5edf0..000000000
Binary files a/resources/gallery/photos/2019/thumb/43.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/44.jpg b/resources/gallery/photos/2019/thumb/44.jpg
deleted file mode 100644
index 38e74094f..000000000
Binary files a/resources/gallery/photos/2019/thumb/44.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/45.jpg b/resources/gallery/photos/2019/thumb/45.jpg
deleted file mode 100644
index 051fd1cf4..000000000
Binary files a/resources/gallery/photos/2019/thumb/45.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/46.jpg b/resources/gallery/photos/2019/thumb/46.jpg
deleted file mode 100644
index ebcb5e144..000000000
Binary files a/resources/gallery/photos/2019/thumb/46.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/47.jpg b/resources/gallery/photos/2019/thumb/47.jpg
deleted file mode 100644
index f1e68786f..000000000
Binary files a/resources/gallery/photos/2019/thumb/47.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/48.jpg b/resources/gallery/photos/2019/thumb/48.jpg
deleted file mode 100644
index ae0ca2ca8..000000000
Binary files a/resources/gallery/photos/2019/thumb/48.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/49.jpg b/resources/gallery/photos/2019/thumb/49.jpg
deleted file mode 100644
index 0d0403f46..000000000
Binary files a/resources/gallery/photos/2019/thumb/49.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/5.jpg b/resources/gallery/photos/2019/thumb/5.jpg
deleted file mode 100644
index 930ac216a..000000000
Binary files a/resources/gallery/photos/2019/thumb/5.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/50.jpg b/resources/gallery/photos/2019/thumb/50.jpg
deleted file mode 100644
index 018f216d8..000000000
Binary files a/resources/gallery/photos/2019/thumb/50.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/51.jpg b/resources/gallery/photos/2019/thumb/51.jpg
deleted file mode 100644
index 7988db74b..000000000
Binary files a/resources/gallery/photos/2019/thumb/51.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/52.jpg b/resources/gallery/photos/2019/thumb/52.jpg
deleted file mode 100644
index fb854066e..000000000
Binary files a/resources/gallery/photos/2019/thumb/52.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/53.jpg b/resources/gallery/photos/2019/thumb/53.jpg
deleted file mode 100644
index e103d6fdb..000000000
Binary files a/resources/gallery/photos/2019/thumb/53.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/54.jpg b/resources/gallery/photos/2019/thumb/54.jpg
deleted file mode 100644
index 2cb08d895..000000000
Binary files a/resources/gallery/photos/2019/thumb/54.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/55.jpg b/resources/gallery/photos/2019/thumb/55.jpg
deleted file mode 100644
index d90fd1422..000000000
Binary files a/resources/gallery/photos/2019/thumb/55.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/56.jpg b/resources/gallery/photos/2019/thumb/56.jpg
deleted file mode 100644
index d1c34d294..000000000
Binary files a/resources/gallery/photos/2019/thumb/56.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/57.jpg b/resources/gallery/photos/2019/thumb/57.jpg
deleted file mode 100644
index c75783e73..000000000
Binary files a/resources/gallery/photos/2019/thumb/57.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/58.jpg b/resources/gallery/photos/2019/thumb/58.jpg
deleted file mode 100644
index 9bf3682cb..000000000
Binary files a/resources/gallery/photos/2019/thumb/58.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/59.jpg b/resources/gallery/photos/2019/thumb/59.jpg
deleted file mode 100644
index 9cbc8da86..000000000
Binary files a/resources/gallery/photos/2019/thumb/59.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/6.jpg b/resources/gallery/photos/2019/thumb/6.jpg
deleted file mode 100644
index 587feff9f..000000000
Binary files a/resources/gallery/photos/2019/thumb/6.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/60.jpg b/resources/gallery/photos/2019/thumb/60.jpg
deleted file mode 100644
index 53b5d1a51..000000000
Binary files a/resources/gallery/photos/2019/thumb/60.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/61.jpg b/resources/gallery/photos/2019/thumb/61.jpg
deleted file mode 100644
index ffae9e434..000000000
Binary files a/resources/gallery/photos/2019/thumb/61.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/62.jpg b/resources/gallery/photos/2019/thumb/62.jpg
deleted file mode 100644
index ae86e68aa..000000000
Binary files a/resources/gallery/photos/2019/thumb/62.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/63.jpg b/resources/gallery/photos/2019/thumb/63.jpg
deleted file mode 100644
index 8e0d2228d..000000000
Binary files a/resources/gallery/photos/2019/thumb/63.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/64.jpg b/resources/gallery/photos/2019/thumb/64.jpg
deleted file mode 100644
index 779a3cd42..000000000
Binary files a/resources/gallery/photos/2019/thumb/64.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/65.jpg b/resources/gallery/photos/2019/thumb/65.jpg
deleted file mode 100644
index 407e85bb3..000000000
Binary files a/resources/gallery/photos/2019/thumb/65.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/66.jpg b/resources/gallery/photos/2019/thumb/66.jpg
deleted file mode 100644
index 499263263..000000000
Binary files a/resources/gallery/photos/2019/thumb/66.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/67.jpg b/resources/gallery/photos/2019/thumb/67.jpg
deleted file mode 100644
index 8ca7645c5..000000000
Binary files a/resources/gallery/photos/2019/thumb/67.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/68.jpg b/resources/gallery/photos/2019/thumb/68.jpg
deleted file mode 100644
index 3fdaf929c..000000000
Binary files a/resources/gallery/photos/2019/thumb/68.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/69.jpg b/resources/gallery/photos/2019/thumb/69.jpg
deleted file mode 100644
index ce05ac897..000000000
Binary files a/resources/gallery/photos/2019/thumb/69.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/7.jpg b/resources/gallery/photos/2019/thumb/7.jpg
deleted file mode 100644
index 323a7ba94..000000000
Binary files a/resources/gallery/photos/2019/thumb/7.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/70.jpg b/resources/gallery/photos/2019/thumb/70.jpg
deleted file mode 100644
index 0c32f0613..000000000
Binary files a/resources/gallery/photos/2019/thumb/70.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/71.jpg b/resources/gallery/photos/2019/thumb/71.jpg
deleted file mode 100644
index 1c4276026..000000000
Binary files a/resources/gallery/photos/2019/thumb/71.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/72.jpg b/resources/gallery/photos/2019/thumb/72.jpg
deleted file mode 100644
index 96c88ecf7..000000000
Binary files a/resources/gallery/photos/2019/thumb/72.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/73.jpg b/resources/gallery/photos/2019/thumb/73.jpg
deleted file mode 100644
index 7db9a280e..000000000
Binary files a/resources/gallery/photos/2019/thumb/73.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/74.jpg b/resources/gallery/photos/2019/thumb/74.jpg
deleted file mode 100644
index 99eedd6f0..000000000
Binary files a/resources/gallery/photos/2019/thumb/74.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/75.jpg b/resources/gallery/photos/2019/thumb/75.jpg
deleted file mode 100644
index 8210ad8d3..000000000
Binary files a/resources/gallery/photos/2019/thumb/75.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/76.jpg b/resources/gallery/photos/2019/thumb/76.jpg
deleted file mode 100644
index 236cdd950..000000000
Binary files a/resources/gallery/photos/2019/thumb/76.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/77.jpg b/resources/gallery/photos/2019/thumb/77.jpg
deleted file mode 100644
index daf095830..000000000
Binary files a/resources/gallery/photos/2019/thumb/77.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/78.jpg b/resources/gallery/photos/2019/thumb/78.jpg
deleted file mode 100644
index 9c9bf35ea..000000000
Binary files a/resources/gallery/photos/2019/thumb/78.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/79.jpg b/resources/gallery/photos/2019/thumb/79.jpg
deleted file mode 100644
index 2fe023e5c..000000000
Binary files a/resources/gallery/photos/2019/thumb/79.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/8.jpg b/resources/gallery/photos/2019/thumb/8.jpg
deleted file mode 100644
index bd071d860..000000000
Binary files a/resources/gallery/photos/2019/thumb/8.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/80.jpg b/resources/gallery/photos/2019/thumb/80.jpg
deleted file mode 100644
index 7506a733b..000000000
Binary files a/resources/gallery/photos/2019/thumb/80.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/81.jpg b/resources/gallery/photos/2019/thumb/81.jpg
deleted file mode 100644
index 7b3c2bb73..000000000
Binary files a/resources/gallery/photos/2019/thumb/81.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/82.jpg b/resources/gallery/photos/2019/thumb/82.jpg
deleted file mode 100644
index f5bcca4ae..000000000
Binary files a/resources/gallery/photos/2019/thumb/82.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/83.jpg b/resources/gallery/photos/2019/thumb/83.jpg
deleted file mode 100644
index e1f5bf463..000000000
Binary files a/resources/gallery/photos/2019/thumb/83.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/84.jpg b/resources/gallery/photos/2019/thumb/84.jpg
deleted file mode 100644
index d38c82437..000000000
Binary files a/resources/gallery/photos/2019/thumb/84.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/85.jpg b/resources/gallery/photos/2019/thumb/85.jpg
deleted file mode 100644
index 6ae0b9a70..000000000
Binary files a/resources/gallery/photos/2019/thumb/85.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/86.jpg b/resources/gallery/photos/2019/thumb/86.jpg
deleted file mode 100644
index 3d0f2136f..000000000
Binary files a/resources/gallery/photos/2019/thumb/86.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/87.jpg b/resources/gallery/photos/2019/thumb/87.jpg
deleted file mode 100644
index 3e03104e0..000000000
Binary files a/resources/gallery/photos/2019/thumb/87.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/88.jpg b/resources/gallery/photos/2019/thumb/88.jpg
deleted file mode 100644
index a816f5c79..000000000
Binary files a/resources/gallery/photos/2019/thumb/88.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/89.jpg b/resources/gallery/photos/2019/thumb/89.jpg
deleted file mode 100644
index 1b9267282..000000000
Binary files a/resources/gallery/photos/2019/thumb/89.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/9.jpg b/resources/gallery/photos/2019/thumb/9.jpg
deleted file mode 100644
index 549aa8049..000000000
Binary files a/resources/gallery/photos/2019/thumb/9.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/90.jpg b/resources/gallery/photos/2019/thumb/90.jpg
deleted file mode 100644
index 7da774834..000000000
Binary files a/resources/gallery/photos/2019/thumb/90.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/91.jpg b/resources/gallery/photos/2019/thumb/91.jpg
deleted file mode 100644
index 0fdcf95e5..000000000
Binary files a/resources/gallery/photos/2019/thumb/91.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/92.jpg b/resources/gallery/photos/2019/thumb/92.jpg
deleted file mode 100644
index d765e8b80..000000000
Binary files a/resources/gallery/photos/2019/thumb/92.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/93.jpg b/resources/gallery/photos/2019/thumb/93.jpg
deleted file mode 100644
index 6c056eeee..000000000
Binary files a/resources/gallery/photos/2019/thumb/93.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/94.jpg b/resources/gallery/photos/2019/thumb/94.jpg
deleted file mode 100644
index 9cf6c8ea8..000000000
Binary files a/resources/gallery/photos/2019/thumb/94.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/95.jpg b/resources/gallery/photos/2019/thumb/95.jpg
deleted file mode 100644
index 0def6d518..000000000
Binary files a/resources/gallery/photos/2019/thumb/95.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/96.jpg b/resources/gallery/photos/2019/thumb/96.jpg
deleted file mode 100644
index c2675fd5f..000000000
Binary files a/resources/gallery/photos/2019/thumb/96.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/97.jpg b/resources/gallery/photos/2019/thumb/97.jpg
deleted file mode 100644
index f1a75dc99..000000000
Binary files a/resources/gallery/photos/2019/thumb/97.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/98.jpg b/resources/gallery/photos/2019/thumb/98.jpg
deleted file mode 100644
index 0d55b662e..000000000
Binary files a/resources/gallery/photos/2019/thumb/98.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2019/thumb/99.jpg b/resources/gallery/photos/2019/thumb/99.jpg
deleted file mode 100644
index 0eabaa0bb..000000000
Binary files a/resources/gallery/photos/2019/thumb/99.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/1.jpg b/resources/gallery/photos/2020/full/1.jpg
deleted file mode 100644
index f439be23a..000000000
Binary files a/resources/gallery/photos/2020/full/1.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/10.jpg b/resources/gallery/photos/2020/full/10.jpg
deleted file mode 100644
index 0e8536432..000000000
Binary files a/resources/gallery/photos/2020/full/10.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/100.jpg b/resources/gallery/photos/2020/full/100.jpg
deleted file mode 100644
index b376c75f6..000000000
Binary files a/resources/gallery/photos/2020/full/100.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/101.jpg b/resources/gallery/photos/2020/full/101.jpg
deleted file mode 100644
index 0115b6313..000000000
Binary files a/resources/gallery/photos/2020/full/101.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/102.jpg b/resources/gallery/photos/2020/full/102.jpg
deleted file mode 100644
index af9549826..000000000
Binary files a/resources/gallery/photos/2020/full/102.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/103.jpg b/resources/gallery/photos/2020/full/103.jpg
deleted file mode 100644
index 6ba697d1c..000000000
Binary files a/resources/gallery/photos/2020/full/103.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/104.jpg b/resources/gallery/photos/2020/full/104.jpg
deleted file mode 100644
index 1ab79ff8c..000000000
Binary files a/resources/gallery/photos/2020/full/104.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/105.jpg b/resources/gallery/photos/2020/full/105.jpg
deleted file mode 100644
index 7cff207c5..000000000
Binary files a/resources/gallery/photos/2020/full/105.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/106.jpg b/resources/gallery/photos/2020/full/106.jpg
deleted file mode 100644
index 44d85f0e8..000000000
Binary files a/resources/gallery/photos/2020/full/106.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/107.jpg b/resources/gallery/photos/2020/full/107.jpg
deleted file mode 100644
index c5856634a..000000000
Binary files a/resources/gallery/photos/2020/full/107.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/108.jpg b/resources/gallery/photos/2020/full/108.jpg
deleted file mode 100644
index 1b3949c35..000000000
Binary files a/resources/gallery/photos/2020/full/108.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/109.jpg b/resources/gallery/photos/2020/full/109.jpg
deleted file mode 100644
index ea473a068..000000000
Binary files a/resources/gallery/photos/2020/full/109.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/11.jpg b/resources/gallery/photos/2020/full/11.jpg
deleted file mode 100644
index 3e7b4a0a6..000000000
Binary files a/resources/gallery/photos/2020/full/11.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/110.jpg b/resources/gallery/photos/2020/full/110.jpg
deleted file mode 100644
index 55af2566b..000000000
Binary files a/resources/gallery/photos/2020/full/110.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/111.jpg b/resources/gallery/photos/2020/full/111.jpg
deleted file mode 100644
index e812566d1..000000000
Binary files a/resources/gallery/photos/2020/full/111.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/112.jpg b/resources/gallery/photos/2020/full/112.jpg
deleted file mode 100644
index 973037c8e..000000000
Binary files a/resources/gallery/photos/2020/full/112.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/113.jpg b/resources/gallery/photos/2020/full/113.jpg
deleted file mode 100644
index 0e79a7221..000000000
Binary files a/resources/gallery/photos/2020/full/113.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/114.jpg b/resources/gallery/photos/2020/full/114.jpg
deleted file mode 100644
index 432f7f560..000000000
Binary files a/resources/gallery/photos/2020/full/114.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/115.jpg b/resources/gallery/photos/2020/full/115.jpg
deleted file mode 100644
index 31ad6f979..000000000
Binary files a/resources/gallery/photos/2020/full/115.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/116.jpg b/resources/gallery/photos/2020/full/116.jpg
deleted file mode 100644
index 3dce41e7d..000000000
Binary files a/resources/gallery/photos/2020/full/116.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/117.jpg b/resources/gallery/photos/2020/full/117.jpg
deleted file mode 100644
index 407a75c5e..000000000
Binary files a/resources/gallery/photos/2020/full/117.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/118.jpg b/resources/gallery/photos/2020/full/118.jpg
deleted file mode 100644
index 10a5d1f63..000000000
Binary files a/resources/gallery/photos/2020/full/118.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/119.jpg b/resources/gallery/photos/2020/full/119.jpg
deleted file mode 100644
index c72ed97b1..000000000
Binary files a/resources/gallery/photos/2020/full/119.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/12.jpg b/resources/gallery/photos/2020/full/12.jpg
deleted file mode 100644
index 4ccee2743..000000000
Binary files a/resources/gallery/photos/2020/full/12.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/120.jpg b/resources/gallery/photos/2020/full/120.jpg
deleted file mode 100644
index dfad30561..000000000
Binary files a/resources/gallery/photos/2020/full/120.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/121.jpg b/resources/gallery/photos/2020/full/121.jpg
deleted file mode 100644
index 816cfd9a5..000000000
Binary files a/resources/gallery/photos/2020/full/121.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/122.jpg b/resources/gallery/photos/2020/full/122.jpg
deleted file mode 100644
index c9bf75d16..000000000
Binary files a/resources/gallery/photos/2020/full/122.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/123.jpg b/resources/gallery/photos/2020/full/123.jpg
deleted file mode 100644
index 257c24edc..000000000
Binary files a/resources/gallery/photos/2020/full/123.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/124.jpg b/resources/gallery/photos/2020/full/124.jpg
deleted file mode 100644
index 162e856fb..000000000
Binary files a/resources/gallery/photos/2020/full/124.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/125.jpg b/resources/gallery/photos/2020/full/125.jpg
deleted file mode 100644
index 4fc417807..000000000
Binary files a/resources/gallery/photos/2020/full/125.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/126.jpg b/resources/gallery/photos/2020/full/126.jpg
deleted file mode 100644
index 809e7b805..000000000
Binary files a/resources/gallery/photos/2020/full/126.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/13.jpg b/resources/gallery/photos/2020/full/13.jpg
deleted file mode 100644
index 3ce682980..000000000
Binary files a/resources/gallery/photos/2020/full/13.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/14.jpg b/resources/gallery/photos/2020/full/14.jpg
deleted file mode 100644
index 35a055bf7..000000000
Binary files a/resources/gallery/photos/2020/full/14.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/15.jpg b/resources/gallery/photos/2020/full/15.jpg
deleted file mode 100644
index e25b00855..000000000
Binary files a/resources/gallery/photos/2020/full/15.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/16.jpg b/resources/gallery/photos/2020/full/16.jpg
deleted file mode 100644
index aa9e5db4d..000000000
Binary files a/resources/gallery/photos/2020/full/16.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/17.jpg b/resources/gallery/photos/2020/full/17.jpg
deleted file mode 100644
index 0328e053c..000000000
Binary files a/resources/gallery/photos/2020/full/17.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/18.jpg b/resources/gallery/photos/2020/full/18.jpg
deleted file mode 100644
index 6bec12a17..000000000
Binary files a/resources/gallery/photos/2020/full/18.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/19.jpg b/resources/gallery/photos/2020/full/19.jpg
deleted file mode 100644
index d1b3e22ed..000000000
Binary files a/resources/gallery/photos/2020/full/19.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/2.jpg b/resources/gallery/photos/2020/full/2.jpg
deleted file mode 100644
index d0f0a032f..000000000
Binary files a/resources/gallery/photos/2020/full/2.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/20.jpg b/resources/gallery/photos/2020/full/20.jpg
deleted file mode 100644
index 237024f2c..000000000
Binary files a/resources/gallery/photos/2020/full/20.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/21.jpg b/resources/gallery/photos/2020/full/21.jpg
deleted file mode 100644
index 0cd2a4091..000000000
Binary files a/resources/gallery/photos/2020/full/21.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/22.jpg b/resources/gallery/photos/2020/full/22.jpg
deleted file mode 100644
index b4a60333a..000000000
Binary files a/resources/gallery/photos/2020/full/22.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/23.jpg b/resources/gallery/photos/2020/full/23.jpg
deleted file mode 100644
index 3134c2922..000000000
Binary files a/resources/gallery/photos/2020/full/23.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/24.jpg b/resources/gallery/photos/2020/full/24.jpg
deleted file mode 100644
index 4db280ed2..000000000
Binary files a/resources/gallery/photos/2020/full/24.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/25.jpg b/resources/gallery/photos/2020/full/25.jpg
deleted file mode 100644
index 7a1a53be4..000000000
Binary files a/resources/gallery/photos/2020/full/25.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/26.jpg b/resources/gallery/photos/2020/full/26.jpg
deleted file mode 100644
index c7bdab38a..000000000
Binary files a/resources/gallery/photos/2020/full/26.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/27.jpg b/resources/gallery/photos/2020/full/27.jpg
deleted file mode 100644
index 59e9b6a33..000000000
Binary files a/resources/gallery/photos/2020/full/27.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/28.jpg b/resources/gallery/photos/2020/full/28.jpg
deleted file mode 100644
index 8151cfa48..000000000
Binary files a/resources/gallery/photos/2020/full/28.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/29.jpg b/resources/gallery/photos/2020/full/29.jpg
deleted file mode 100644
index a5780a313..000000000
Binary files a/resources/gallery/photos/2020/full/29.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/3.jpg b/resources/gallery/photos/2020/full/3.jpg
deleted file mode 100644
index ffe5412ad..000000000
Binary files a/resources/gallery/photos/2020/full/3.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/30.jpg b/resources/gallery/photos/2020/full/30.jpg
deleted file mode 100644
index 166adf6bb..000000000
Binary files a/resources/gallery/photos/2020/full/30.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/31.jpg b/resources/gallery/photos/2020/full/31.jpg
deleted file mode 100644
index 86add0bd2..000000000
Binary files a/resources/gallery/photos/2020/full/31.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/32.jpg b/resources/gallery/photos/2020/full/32.jpg
deleted file mode 100644
index 023e348e8..000000000
Binary files a/resources/gallery/photos/2020/full/32.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/33.jpg b/resources/gallery/photos/2020/full/33.jpg
deleted file mode 100644
index 2b77bf7b1..000000000
Binary files a/resources/gallery/photos/2020/full/33.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/34.jpg b/resources/gallery/photos/2020/full/34.jpg
deleted file mode 100644
index a944fb724..000000000
Binary files a/resources/gallery/photos/2020/full/34.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/35.jpg b/resources/gallery/photos/2020/full/35.jpg
deleted file mode 100644
index a82a674df..000000000
Binary files a/resources/gallery/photos/2020/full/35.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/36.jpg b/resources/gallery/photos/2020/full/36.jpg
deleted file mode 100644
index 2a91f5cde..000000000
Binary files a/resources/gallery/photos/2020/full/36.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/37.jpg b/resources/gallery/photos/2020/full/37.jpg
deleted file mode 100644
index d6fdba60a..000000000
Binary files a/resources/gallery/photos/2020/full/37.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/38.jpg b/resources/gallery/photos/2020/full/38.jpg
deleted file mode 100644
index c9cf50d18..000000000
Binary files a/resources/gallery/photos/2020/full/38.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/39.jpg b/resources/gallery/photos/2020/full/39.jpg
deleted file mode 100644
index 7215dbee2..000000000
Binary files a/resources/gallery/photos/2020/full/39.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/4.jpg b/resources/gallery/photos/2020/full/4.jpg
deleted file mode 100644
index e487cde9c..000000000
Binary files a/resources/gallery/photos/2020/full/4.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/40.jpg b/resources/gallery/photos/2020/full/40.jpg
deleted file mode 100644
index e6f68f5da..000000000
Binary files a/resources/gallery/photos/2020/full/40.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/41.jpg b/resources/gallery/photos/2020/full/41.jpg
deleted file mode 100644
index 8ded49857..000000000
Binary files a/resources/gallery/photos/2020/full/41.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/42.jpg b/resources/gallery/photos/2020/full/42.jpg
deleted file mode 100644
index 35f5efb50..000000000
Binary files a/resources/gallery/photos/2020/full/42.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/43.jpg b/resources/gallery/photos/2020/full/43.jpg
deleted file mode 100644
index b23a52183..000000000
Binary files a/resources/gallery/photos/2020/full/43.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/44.jpg b/resources/gallery/photos/2020/full/44.jpg
deleted file mode 100644
index ac19fd406..000000000
Binary files a/resources/gallery/photos/2020/full/44.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/45.jpg b/resources/gallery/photos/2020/full/45.jpg
deleted file mode 100644
index 15a10744c..000000000
Binary files a/resources/gallery/photos/2020/full/45.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/46.jpg b/resources/gallery/photos/2020/full/46.jpg
deleted file mode 100644
index d61280313..000000000
Binary files a/resources/gallery/photos/2020/full/46.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/47.jpg b/resources/gallery/photos/2020/full/47.jpg
deleted file mode 100644
index 91122bf69..000000000
Binary files a/resources/gallery/photos/2020/full/47.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/48.jpg b/resources/gallery/photos/2020/full/48.jpg
deleted file mode 100644
index 3238ba054..000000000
Binary files a/resources/gallery/photos/2020/full/48.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/49.jpg b/resources/gallery/photos/2020/full/49.jpg
deleted file mode 100644
index bc04eb289..000000000
Binary files a/resources/gallery/photos/2020/full/49.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/5.jpg b/resources/gallery/photos/2020/full/5.jpg
deleted file mode 100644
index c404ddb5d..000000000
Binary files a/resources/gallery/photos/2020/full/5.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/50.jpg b/resources/gallery/photos/2020/full/50.jpg
deleted file mode 100644
index 3b5f026d1..000000000
Binary files a/resources/gallery/photos/2020/full/50.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/51.jpg b/resources/gallery/photos/2020/full/51.jpg
deleted file mode 100644
index 3794b6df2..000000000
Binary files a/resources/gallery/photos/2020/full/51.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/52.jpg b/resources/gallery/photos/2020/full/52.jpg
deleted file mode 100644
index 0551a61c7..000000000
Binary files a/resources/gallery/photos/2020/full/52.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/53.jpg b/resources/gallery/photos/2020/full/53.jpg
deleted file mode 100644
index 6a9fc94a0..000000000
Binary files a/resources/gallery/photos/2020/full/53.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/54.jpg b/resources/gallery/photos/2020/full/54.jpg
deleted file mode 100644
index b9906d790..000000000
Binary files a/resources/gallery/photos/2020/full/54.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/55.jpg b/resources/gallery/photos/2020/full/55.jpg
deleted file mode 100644
index 3896e98ca..000000000
Binary files a/resources/gallery/photos/2020/full/55.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/56.jpg b/resources/gallery/photos/2020/full/56.jpg
deleted file mode 100644
index 501609e99..000000000
Binary files a/resources/gallery/photos/2020/full/56.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/57.jpg b/resources/gallery/photos/2020/full/57.jpg
deleted file mode 100644
index 30cd13884..000000000
Binary files a/resources/gallery/photos/2020/full/57.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/58.jpg b/resources/gallery/photos/2020/full/58.jpg
deleted file mode 100644
index 37282de73..000000000
Binary files a/resources/gallery/photos/2020/full/58.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/59.jpg b/resources/gallery/photos/2020/full/59.jpg
deleted file mode 100644
index 26f27b05f..000000000
Binary files a/resources/gallery/photos/2020/full/59.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/6.jpg b/resources/gallery/photos/2020/full/6.jpg
deleted file mode 100644
index 6d9d2bb7a..000000000
Binary files a/resources/gallery/photos/2020/full/6.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/60.jpg b/resources/gallery/photos/2020/full/60.jpg
deleted file mode 100644
index 6f5ceacae..000000000
Binary files a/resources/gallery/photos/2020/full/60.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/61.jpg b/resources/gallery/photos/2020/full/61.jpg
deleted file mode 100644
index 5fd4bb62a..000000000
Binary files a/resources/gallery/photos/2020/full/61.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/62.jpg b/resources/gallery/photos/2020/full/62.jpg
deleted file mode 100644
index 059fcd462..000000000
Binary files a/resources/gallery/photos/2020/full/62.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/63.jpg b/resources/gallery/photos/2020/full/63.jpg
deleted file mode 100644
index 6ef42dc70..000000000
Binary files a/resources/gallery/photos/2020/full/63.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/64.jpg b/resources/gallery/photos/2020/full/64.jpg
deleted file mode 100644
index 8b82962d5..000000000
Binary files a/resources/gallery/photos/2020/full/64.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/65.jpg b/resources/gallery/photos/2020/full/65.jpg
deleted file mode 100644
index 6301bac69..000000000
Binary files a/resources/gallery/photos/2020/full/65.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/66.jpg b/resources/gallery/photos/2020/full/66.jpg
deleted file mode 100644
index c31bcc192..000000000
Binary files a/resources/gallery/photos/2020/full/66.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/67.jpg b/resources/gallery/photos/2020/full/67.jpg
deleted file mode 100644
index 8e5791b7b..000000000
Binary files a/resources/gallery/photos/2020/full/67.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/68.jpg b/resources/gallery/photos/2020/full/68.jpg
deleted file mode 100644
index 9bdea9393..000000000
Binary files a/resources/gallery/photos/2020/full/68.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/69.jpg b/resources/gallery/photos/2020/full/69.jpg
deleted file mode 100644
index 45b6f6991..000000000
Binary files a/resources/gallery/photos/2020/full/69.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/7.jpg b/resources/gallery/photos/2020/full/7.jpg
deleted file mode 100644
index bcb1ba497..000000000
Binary files a/resources/gallery/photos/2020/full/7.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/70.jpg b/resources/gallery/photos/2020/full/70.jpg
deleted file mode 100644
index 5565fb210..000000000
Binary files a/resources/gallery/photos/2020/full/70.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/71.jpg b/resources/gallery/photos/2020/full/71.jpg
deleted file mode 100644
index 3cc03a884..000000000
Binary files a/resources/gallery/photos/2020/full/71.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/72.jpg b/resources/gallery/photos/2020/full/72.jpg
deleted file mode 100644
index d9aa47be5..000000000
Binary files a/resources/gallery/photos/2020/full/72.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/73.jpg b/resources/gallery/photos/2020/full/73.jpg
deleted file mode 100644
index d457488bd..000000000
Binary files a/resources/gallery/photos/2020/full/73.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/74.jpg b/resources/gallery/photos/2020/full/74.jpg
deleted file mode 100644
index 775caa3c2..000000000
Binary files a/resources/gallery/photos/2020/full/74.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/75.jpg b/resources/gallery/photos/2020/full/75.jpg
deleted file mode 100644
index 950884caf..000000000
Binary files a/resources/gallery/photos/2020/full/75.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/76.jpg b/resources/gallery/photos/2020/full/76.jpg
deleted file mode 100644
index b7e568493..000000000
Binary files a/resources/gallery/photos/2020/full/76.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/77.jpg b/resources/gallery/photos/2020/full/77.jpg
deleted file mode 100644
index 20a0e1e09..000000000
Binary files a/resources/gallery/photos/2020/full/77.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/78.jpg b/resources/gallery/photos/2020/full/78.jpg
deleted file mode 100644
index 18568baf0..000000000
Binary files a/resources/gallery/photos/2020/full/78.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/79.jpg b/resources/gallery/photos/2020/full/79.jpg
deleted file mode 100644
index 3d405c581..000000000
Binary files a/resources/gallery/photos/2020/full/79.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/8.jpg b/resources/gallery/photos/2020/full/8.jpg
deleted file mode 100644
index 130045340..000000000
Binary files a/resources/gallery/photos/2020/full/8.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/80.jpg b/resources/gallery/photos/2020/full/80.jpg
deleted file mode 100644
index 0ce4c6076..000000000
Binary files a/resources/gallery/photos/2020/full/80.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/81.jpg b/resources/gallery/photos/2020/full/81.jpg
deleted file mode 100644
index 5baed68fc..000000000
Binary files a/resources/gallery/photos/2020/full/81.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/82.jpg b/resources/gallery/photos/2020/full/82.jpg
deleted file mode 100644
index 2923edd63..000000000
Binary files a/resources/gallery/photos/2020/full/82.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/83.jpg b/resources/gallery/photos/2020/full/83.jpg
deleted file mode 100644
index 12fab0484..000000000
Binary files a/resources/gallery/photos/2020/full/83.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/84.jpg b/resources/gallery/photos/2020/full/84.jpg
deleted file mode 100644
index f608a1688..000000000
Binary files a/resources/gallery/photos/2020/full/84.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/85.jpg b/resources/gallery/photos/2020/full/85.jpg
deleted file mode 100644
index 9dabf7a47..000000000
Binary files a/resources/gallery/photos/2020/full/85.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/86.jpg b/resources/gallery/photos/2020/full/86.jpg
deleted file mode 100644
index b1bd8ba09..000000000
Binary files a/resources/gallery/photos/2020/full/86.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/87.jpg b/resources/gallery/photos/2020/full/87.jpg
deleted file mode 100644
index 39f78c220..000000000
Binary files a/resources/gallery/photos/2020/full/87.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/88.jpg b/resources/gallery/photos/2020/full/88.jpg
deleted file mode 100644
index fe3f3d005..000000000
Binary files a/resources/gallery/photos/2020/full/88.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/89.jpg b/resources/gallery/photos/2020/full/89.jpg
deleted file mode 100644
index 2d5a6d51d..000000000
Binary files a/resources/gallery/photos/2020/full/89.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/9.jpg b/resources/gallery/photos/2020/full/9.jpg
deleted file mode 100644
index a06d25ca6..000000000
Binary files a/resources/gallery/photos/2020/full/9.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/90.jpg b/resources/gallery/photos/2020/full/90.jpg
deleted file mode 100644
index c2cb24955..000000000
Binary files a/resources/gallery/photos/2020/full/90.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/91.jpg b/resources/gallery/photos/2020/full/91.jpg
deleted file mode 100644
index a8c9aff61..000000000
Binary files a/resources/gallery/photos/2020/full/91.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/92.jpg b/resources/gallery/photos/2020/full/92.jpg
deleted file mode 100644
index db9fedfcc..000000000
Binary files a/resources/gallery/photos/2020/full/92.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/93.jpg b/resources/gallery/photos/2020/full/93.jpg
deleted file mode 100644
index 321221144..000000000
Binary files a/resources/gallery/photos/2020/full/93.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/94.jpg b/resources/gallery/photos/2020/full/94.jpg
deleted file mode 100644
index a823da554..000000000
Binary files a/resources/gallery/photos/2020/full/94.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/95.jpg b/resources/gallery/photos/2020/full/95.jpg
deleted file mode 100644
index 1c00b91ba..000000000
Binary files a/resources/gallery/photos/2020/full/95.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/96.jpg b/resources/gallery/photos/2020/full/96.jpg
deleted file mode 100644
index 93b76772d..000000000
Binary files a/resources/gallery/photos/2020/full/96.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/97.jpg b/resources/gallery/photos/2020/full/97.jpg
deleted file mode 100644
index 4f56060d7..000000000
Binary files a/resources/gallery/photos/2020/full/97.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/98.jpg b/resources/gallery/photos/2020/full/98.jpg
deleted file mode 100644
index 3e87f06ba..000000000
Binary files a/resources/gallery/photos/2020/full/98.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/full/99.jpg b/resources/gallery/photos/2020/full/99.jpg
deleted file mode 100644
index 6f8257c0a..000000000
Binary files a/resources/gallery/photos/2020/full/99.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/1.jpg b/resources/gallery/photos/2020/thumb/1.jpg
deleted file mode 100644
index 33563d147..000000000
Binary files a/resources/gallery/photos/2020/thumb/1.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/10.jpg b/resources/gallery/photos/2020/thumb/10.jpg
deleted file mode 100644
index afd66f027..000000000
Binary files a/resources/gallery/photos/2020/thumb/10.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/100.jpg b/resources/gallery/photos/2020/thumb/100.jpg
deleted file mode 100644
index 90859ab0a..000000000
Binary files a/resources/gallery/photos/2020/thumb/100.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/101.jpg b/resources/gallery/photos/2020/thumb/101.jpg
deleted file mode 100644
index a0650d99f..000000000
Binary files a/resources/gallery/photos/2020/thumb/101.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/102.jpg b/resources/gallery/photos/2020/thumb/102.jpg
deleted file mode 100644
index b1dc8645d..000000000
Binary files a/resources/gallery/photos/2020/thumb/102.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/103.jpg b/resources/gallery/photos/2020/thumb/103.jpg
deleted file mode 100644
index 16377dbda..000000000
Binary files a/resources/gallery/photos/2020/thumb/103.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/104.jpg b/resources/gallery/photos/2020/thumb/104.jpg
deleted file mode 100644
index 788ea0dc8..000000000
Binary files a/resources/gallery/photos/2020/thumb/104.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/105.jpg b/resources/gallery/photos/2020/thumb/105.jpg
deleted file mode 100644
index 2278d9380..000000000
Binary files a/resources/gallery/photos/2020/thumb/105.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/106.jpg b/resources/gallery/photos/2020/thumb/106.jpg
deleted file mode 100644
index cd468de57..000000000
Binary files a/resources/gallery/photos/2020/thumb/106.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/107.jpg b/resources/gallery/photos/2020/thumb/107.jpg
deleted file mode 100644
index b22147706..000000000
Binary files a/resources/gallery/photos/2020/thumb/107.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/108.jpg b/resources/gallery/photos/2020/thumb/108.jpg
deleted file mode 100644
index 8183b2ff0..000000000
Binary files a/resources/gallery/photos/2020/thumb/108.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/109.jpg b/resources/gallery/photos/2020/thumb/109.jpg
deleted file mode 100644
index d4adb08c6..000000000
Binary files a/resources/gallery/photos/2020/thumb/109.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/11.jpg b/resources/gallery/photos/2020/thumb/11.jpg
deleted file mode 100644
index 372cee788..000000000
Binary files a/resources/gallery/photos/2020/thumb/11.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/110.jpg b/resources/gallery/photos/2020/thumb/110.jpg
deleted file mode 100644
index 07e4f80b5..000000000
Binary files a/resources/gallery/photos/2020/thumb/110.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/111.jpg b/resources/gallery/photos/2020/thumb/111.jpg
deleted file mode 100644
index 39632f19d..000000000
Binary files a/resources/gallery/photos/2020/thumb/111.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/112.jpg b/resources/gallery/photos/2020/thumb/112.jpg
deleted file mode 100644
index 8401584cc..000000000
Binary files a/resources/gallery/photos/2020/thumb/112.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/113.jpg b/resources/gallery/photos/2020/thumb/113.jpg
deleted file mode 100644
index c4655233b..000000000
Binary files a/resources/gallery/photos/2020/thumb/113.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/114.jpg b/resources/gallery/photos/2020/thumb/114.jpg
deleted file mode 100644
index 943c29d2e..000000000
Binary files a/resources/gallery/photos/2020/thumb/114.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/115.jpg b/resources/gallery/photos/2020/thumb/115.jpg
deleted file mode 100644
index e24c6b386..000000000
Binary files a/resources/gallery/photos/2020/thumb/115.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/116.jpg b/resources/gallery/photos/2020/thumb/116.jpg
deleted file mode 100644
index 9fd2e0746..000000000
Binary files a/resources/gallery/photos/2020/thumb/116.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/117.jpg b/resources/gallery/photos/2020/thumb/117.jpg
deleted file mode 100644
index 73f541713..000000000
Binary files a/resources/gallery/photos/2020/thumb/117.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/118.jpg b/resources/gallery/photos/2020/thumb/118.jpg
deleted file mode 100644
index 24f9e71b2..000000000
Binary files a/resources/gallery/photos/2020/thumb/118.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/119.jpg b/resources/gallery/photos/2020/thumb/119.jpg
deleted file mode 100644
index 7201ef0a6..000000000
Binary files a/resources/gallery/photos/2020/thumb/119.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/12.jpg b/resources/gallery/photos/2020/thumb/12.jpg
deleted file mode 100644
index 7e26aa8a5..000000000
Binary files a/resources/gallery/photos/2020/thumb/12.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/120.jpg b/resources/gallery/photos/2020/thumb/120.jpg
deleted file mode 100644
index 33730c1f2..000000000
Binary files a/resources/gallery/photos/2020/thumb/120.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/121.jpg b/resources/gallery/photos/2020/thumb/121.jpg
deleted file mode 100644
index 9afcd4fc7..000000000
Binary files a/resources/gallery/photos/2020/thumb/121.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/122.jpg b/resources/gallery/photos/2020/thumb/122.jpg
deleted file mode 100644
index 231c7772f..000000000
Binary files a/resources/gallery/photos/2020/thumb/122.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/123.jpg b/resources/gallery/photos/2020/thumb/123.jpg
deleted file mode 100644
index 606aa4032..000000000
Binary files a/resources/gallery/photos/2020/thumb/123.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/124.jpg b/resources/gallery/photos/2020/thumb/124.jpg
deleted file mode 100644
index a4915490d..000000000
Binary files a/resources/gallery/photos/2020/thumb/124.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/125.jpg b/resources/gallery/photos/2020/thumb/125.jpg
deleted file mode 100644
index 07a9d0bb4..000000000
Binary files a/resources/gallery/photos/2020/thumb/125.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/126.jpg b/resources/gallery/photos/2020/thumb/126.jpg
deleted file mode 100644
index ffd82ce4d..000000000
Binary files a/resources/gallery/photos/2020/thumb/126.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/13.jpg b/resources/gallery/photos/2020/thumb/13.jpg
deleted file mode 100644
index 405cba6f4..000000000
Binary files a/resources/gallery/photos/2020/thumb/13.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/14.jpg b/resources/gallery/photos/2020/thumb/14.jpg
deleted file mode 100644
index b580a63e9..000000000
Binary files a/resources/gallery/photos/2020/thumb/14.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/15.jpg b/resources/gallery/photos/2020/thumb/15.jpg
deleted file mode 100644
index 949016ca8..000000000
Binary files a/resources/gallery/photos/2020/thumb/15.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/16.jpg b/resources/gallery/photos/2020/thumb/16.jpg
deleted file mode 100644
index 825c97ba6..000000000
Binary files a/resources/gallery/photos/2020/thumb/16.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/17.jpg b/resources/gallery/photos/2020/thumb/17.jpg
deleted file mode 100644
index e8b61ab78..000000000
Binary files a/resources/gallery/photos/2020/thumb/17.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/18.jpg b/resources/gallery/photos/2020/thumb/18.jpg
deleted file mode 100644
index bd4c6be85..000000000
Binary files a/resources/gallery/photos/2020/thumb/18.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/19.jpg b/resources/gallery/photos/2020/thumb/19.jpg
deleted file mode 100644
index 2930cb6ce..000000000
Binary files a/resources/gallery/photos/2020/thumb/19.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/2.jpg b/resources/gallery/photos/2020/thumb/2.jpg
deleted file mode 100644
index 1d0015c23..000000000
Binary files a/resources/gallery/photos/2020/thumb/2.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/20.jpg b/resources/gallery/photos/2020/thumb/20.jpg
deleted file mode 100644
index c5934eee1..000000000
Binary files a/resources/gallery/photos/2020/thumb/20.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/21.jpg b/resources/gallery/photos/2020/thumb/21.jpg
deleted file mode 100644
index b0eec51b7..000000000
Binary files a/resources/gallery/photos/2020/thumb/21.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/22.jpg b/resources/gallery/photos/2020/thumb/22.jpg
deleted file mode 100644
index 62520a293..000000000
Binary files a/resources/gallery/photos/2020/thumb/22.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/23.jpg b/resources/gallery/photos/2020/thumb/23.jpg
deleted file mode 100644
index c41af140c..000000000
Binary files a/resources/gallery/photos/2020/thumb/23.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/24.jpg b/resources/gallery/photos/2020/thumb/24.jpg
deleted file mode 100644
index 59b9d9733..000000000
Binary files a/resources/gallery/photos/2020/thumb/24.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/25.jpg b/resources/gallery/photos/2020/thumb/25.jpg
deleted file mode 100644
index f877b9c4f..000000000
Binary files a/resources/gallery/photos/2020/thumb/25.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/26.jpg b/resources/gallery/photos/2020/thumb/26.jpg
deleted file mode 100644
index 7744965ad..000000000
Binary files a/resources/gallery/photos/2020/thumb/26.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/27.jpg b/resources/gallery/photos/2020/thumb/27.jpg
deleted file mode 100644
index b9a173ec9..000000000
Binary files a/resources/gallery/photos/2020/thumb/27.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/28.jpg b/resources/gallery/photos/2020/thumb/28.jpg
deleted file mode 100644
index 4d7046454..000000000
Binary files a/resources/gallery/photos/2020/thumb/28.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/29.jpg b/resources/gallery/photos/2020/thumb/29.jpg
deleted file mode 100644
index fdd20eeca..000000000
Binary files a/resources/gallery/photos/2020/thumb/29.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/3.jpg b/resources/gallery/photos/2020/thumb/3.jpg
deleted file mode 100644
index 37e215e29..000000000
Binary files a/resources/gallery/photos/2020/thumb/3.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/30.jpg b/resources/gallery/photos/2020/thumb/30.jpg
deleted file mode 100644
index d7d663dd7..000000000
Binary files a/resources/gallery/photos/2020/thumb/30.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/31.jpg b/resources/gallery/photos/2020/thumb/31.jpg
deleted file mode 100644
index 68ba72a56..000000000
Binary files a/resources/gallery/photos/2020/thumb/31.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/32.jpg b/resources/gallery/photos/2020/thumb/32.jpg
deleted file mode 100644
index 98d973182..000000000
Binary files a/resources/gallery/photos/2020/thumb/32.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/33.jpg b/resources/gallery/photos/2020/thumb/33.jpg
deleted file mode 100644
index a553d7fba..000000000
Binary files a/resources/gallery/photos/2020/thumb/33.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/34.jpg b/resources/gallery/photos/2020/thumb/34.jpg
deleted file mode 100644
index de3593b5d..000000000
Binary files a/resources/gallery/photos/2020/thumb/34.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/35.jpg b/resources/gallery/photos/2020/thumb/35.jpg
deleted file mode 100644
index e5537321a..000000000
Binary files a/resources/gallery/photos/2020/thumb/35.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/36.jpg b/resources/gallery/photos/2020/thumb/36.jpg
deleted file mode 100644
index 0f6a0bc34..000000000
Binary files a/resources/gallery/photos/2020/thumb/36.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/37.jpg b/resources/gallery/photos/2020/thumb/37.jpg
deleted file mode 100644
index 9d10951dd..000000000
Binary files a/resources/gallery/photos/2020/thumb/37.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/38.jpg b/resources/gallery/photos/2020/thumb/38.jpg
deleted file mode 100644
index 1e30a5c56..000000000
Binary files a/resources/gallery/photos/2020/thumb/38.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/39.jpg b/resources/gallery/photos/2020/thumb/39.jpg
deleted file mode 100644
index 8873274c4..000000000
Binary files a/resources/gallery/photos/2020/thumb/39.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/4.jpg b/resources/gallery/photos/2020/thumb/4.jpg
deleted file mode 100644
index 5d7c1ed07..000000000
Binary files a/resources/gallery/photos/2020/thumb/4.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/40.jpg b/resources/gallery/photos/2020/thumb/40.jpg
deleted file mode 100644
index 9a24d76b2..000000000
Binary files a/resources/gallery/photos/2020/thumb/40.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/41.jpg b/resources/gallery/photos/2020/thumb/41.jpg
deleted file mode 100644
index 22fefa932..000000000
Binary files a/resources/gallery/photos/2020/thumb/41.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/42.jpg b/resources/gallery/photos/2020/thumb/42.jpg
deleted file mode 100644
index dd34b1130..000000000
Binary files a/resources/gallery/photos/2020/thumb/42.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/43.jpg b/resources/gallery/photos/2020/thumb/43.jpg
deleted file mode 100644
index 880fbf349..000000000
Binary files a/resources/gallery/photos/2020/thumb/43.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/44.jpg b/resources/gallery/photos/2020/thumb/44.jpg
deleted file mode 100644
index 46b495321..000000000
Binary files a/resources/gallery/photos/2020/thumb/44.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/45.jpg b/resources/gallery/photos/2020/thumb/45.jpg
deleted file mode 100644
index 4de78a31c..000000000
Binary files a/resources/gallery/photos/2020/thumb/45.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/46.jpg b/resources/gallery/photos/2020/thumb/46.jpg
deleted file mode 100644
index bf29152f1..000000000
Binary files a/resources/gallery/photos/2020/thumb/46.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/47.jpg b/resources/gallery/photos/2020/thumb/47.jpg
deleted file mode 100644
index b0fe85753..000000000
Binary files a/resources/gallery/photos/2020/thumb/47.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/48.jpg b/resources/gallery/photos/2020/thumb/48.jpg
deleted file mode 100644
index 1b3cf1b94..000000000
Binary files a/resources/gallery/photos/2020/thumb/48.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/49.jpg b/resources/gallery/photos/2020/thumb/49.jpg
deleted file mode 100644
index 1ede62eb8..000000000
Binary files a/resources/gallery/photos/2020/thumb/49.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/5.jpg b/resources/gallery/photos/2020/thumb/5.jpg
deleted file mode 100644
index 4b03a5cf9..000000000
Binary files a/resources/gallery/photos/2020/thumb/5.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/50.jpg b/resources/gallery/photos/2020/thumb/50.jpg
deleted file mode 100644
index fb01ca6b3..000000000
Binary files a/resources/gallery/photos/2020/thumb/50.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/51.jpg b/resources/gallery/photos/2020/thumb/51.jpg
deleted file mode 100644
index 99c4db28d..000000000
Binary files a/resources/gallery/photos/2020/thumb/51.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/52.jpg b/resources/gallery/photos/2020/thumb/52.jpg
deleted file mode 100644
index 176e55d17..000000000
Binary files a/resources/gallery/photos/2020/thumb/52.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/53.jpg b/resources/gallery/photos/2020/thumb/53.jpg
deleted file mode 100644
index 4a95d15b9..000000000
Binary files a/resources/gallery/photos/2020/thumb/53.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/54.jpg b/resources/gallery/photos/2020/thumb/54.jpg
deleted file mode 100644
index f24bb5e23..000000000
Binary files a/resources/gallery/photos/2020/thumb/54.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/55.jpg b/resources/gallery/photos/2020/thumb/55.jpg
deleted file mode 100644
index 6014e45bc..000000000
Binary files a/resources/gallery/photos/2020/thumb/55.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/56.jpg b/resources/gallery/photos/2020/thumb/56.jpg
deleted file mode 100644
index 69c650876..000000000
Binary files a/resources/gallery/photos/2020/thumb/56.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/57.jpg b/resources/gallery/photos/2020/thumb/57.jpg
deleted file mode 100644
index 6c41814c2..000000000
Binary files a/resources/gallery/photos/2020/thumb/57.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/58.jpg b/resources/gallery/photos/2020/thumb/58.jpg
deleted file mode 100644
index 924551d6e..000000000
Binary files a/resources/gallery/photos/2020/thumb/58.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/59.jpg b/resources/gallery/photos/2020/thumb/59.jpg
deleted file mode 100644
index 016e149de..000000000
Binary files a/resources/gallery/photos/2020/thumb/59.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/6.jpg b/resources/gallery/photos/2020/thumb/6.jpg
deleted file mode 100644
index e5d96d9e0..000000000
Binary files a/resources/gallery/photos/2020/thumb/6.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/60.jpg b/resources/gallery/photos/2020/thumb/60.jpg
deleted file mode 100644
index dd4a4be1d..000000000
Binary files a/resources/gallery/photos/2020/thumb/60.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/61.jpg b/resources/gallery/photos/2020/thumb/61.jpg
deleted file mode 100644
index dd0089800..000000000
Binary files a/resources/gallery/photos/2020/thumb/61.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/62.jpg b/resources/gallery/photos/2020/thumb/62.jpg
deleted file mode 100644
index 3254e998e..000000000
Binary files a/resources/gallery/photos/2020/thumb/62.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/63.jpg b/resources/gallery/photos/2020/thumb/63.jpg
deleted file mode 100644
index 7dad8d192..000000000
Binary files a/resources/gallery/photos/2020/thumb/63.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/64.jpg b/resources/gallery/photos/2020/thumb/64.jpg
deleted file mode 100644
index 9c38a45ba..000000000
Binary files a/resources/gallery/photos/2020/thumb/64.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/65.jpg b/resources/gallery/photos/2020/thumb/65.jpg
deleted file mode 100644
index 939efbdbf..000000000
Binary files a/resources/gallery/photos/2020/thumb/65.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/66.jpg b/resources/gallery/photos/2020/thumb/66.jpg
deleted file mode 100644
index 116cc09dc..000000000
Binary files a/resources/gallery/photos/2020/thumb/66.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/67.jpg b/resources/gallery/photos/2020/thumb/67.jpg
deleted file mode 100644
index 0b5197406..000000000
Binary files a/resources/gallery/photos/2020/thumb/67.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/68.jpg b/resources/gallery/photos/2020/thumb/68.jpg
deleted file mode 100644
index b44b39e76..000000000
Binary files a/resources/gallery/photos/2020/thumb/68.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/69.jpg b/resources/gallery/photos/2020/thumb/69.jpg
deleted file mode 100644
index 4ea2a3992..000000000
Binary files a/resources/gallery/photos/2020/thumb/69.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/7.jpg b/resources/gallery/photos/2020/thumb/7.jpg
deleted file mode 100644
index 514aeb46f..000000000
Binary files a/resources/gallery/photos/2020/thumb/7.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/70.jpg b/resources/gallery/photos/2020/thumb/70.jpg
deleted file mode 100644
index f1776b104..000000000
Binary files a/resources/gallery/photos/2020/thumb/70.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/71.jpg b/resources/gallery/photos/2020/thumb/71.jpg
deleted file mode 100644
index d2b0abedd..000000000
Binary files a/resources/gallery/photos/2020/thumb/71.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/72.jpg b/resources/gallery/photos/2020/thumb/72.jpg
deleted file mode 100644
index c0d2b7144..000000000
Binary files a/resources/gallery/photos/2020/thumb/72.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/73.jpg b/resources/gallery/photos/2020/thumb/73.jpg
deleted file mode 100644
index 22801774f..000000000
Binary files a/resources/gallery/photos/2020/thumb/73.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/74.jpg b/resources/gallery/photos/2020/thumb/74.jpg
deleted file mode 100644
index a9a1772f9..000000000
Binary files a/resources/gallery/photos/2020/thumb/74.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/75.jpg b/resources/gallery/photos/2020/thumb/75.jpg
deleted file mode 100644
index 9f0772700..000000000
Binary files a/resources/gallery/photos/2020/thumb/75.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/76.jpg b/resources/gallery/photos/2020/thumb/76.jpg
deleted file mode 100644
index 98092c611..000000000
Binary files a/resources/gallery/photos/2020/thumb/76.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/77.jpg b/resources/gallery/photos/2020/thumb/77.jpg
deleted file mode 100644
index dd1908eb1..000000000
Binary files a/resources/gallery/photos/2020/thumb/77.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/78.jpg b/resources/gallery/photos/2020/thumb/78.jpg
deleted file mode 100644
index e6b57911a..000000000
Binary files a/resources/gallery/photos/2020/thumb/78.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/79.jpg b/resources/gallery/photos/2020/thumb/79.jpg
deleted file mode 100644
index 5612d76fb..000000000
Binary files a/resources/gallery/photos/2020/thumb/79.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/8.jpg b/resources/gallery/photos/2020/thumb/8.jpg
deleted file mode 100644
index e83675548..000000000
Binary files a/resources/gallery/photos/2020/thumb/8.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/80.jpg b/resources/gallery/photos/2020/thumb/80.jpg
deleted file mode 100644
index 712378fc7..000000000
Binary files a/resources/gallery/photos/2020/thumb/80.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/81.jpg b/resources/gallery/photos/2020/thumb/81.jpg
deleted file mode 100644
index 82e0426a7..000000000
Binary files a/resources/gallery/photos/2020/thumb/81.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/82.jpg b/resources/gallery/photos/2020/thumb/82.jpg
deleted file mode 100644
index 42720b537..000000000
Binary files a/resources/gallery/photos/2020/thumb/82.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/83.jpg b/resources/gallery/photos/2020/thumb/83.jpg
deleted file mode 100644
index b04bfaaa9..000000000
Binary files a/resources/gallery/photos/2020/thumb/83.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/84.jpg b/resources/gallery/photos/2020/thumb/84.jpg
deleted file mode 100644
index eb04e4885..000000000
Binary files a/resources/gallery/photos/2020/thumb/84.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/85.jpg b/resources/gallery/photos/2020/thumb/85.jpg
deleted file mode 100644
index 6f74417d1..000000000
Binary files a/resources/gallery/photos/2020/thumb/85.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/86.jpg b/resources/gallery/photos/2020/thumb/86.jpg
deleted file mode 100644
index cb8c3cee4..000000000
Binary files a/resources/gallery/photos/2020/thumb/86.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/87.jpg b/resources/gallery/photos/2020/thumb/87.jpg
deleted file mode 100644
index dfa1cbd3a..000000000
Binary files a/resources/gallery/photos/2020/thumb/87.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/88.jpg b/resources/gallery/photos/2020/thumb/88.jpg
deleted file mode 100644
index bee9e30af..000000000
Binary files a/resources/gallery/photos/2020/thumb/88.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/89.jpg b/resources/gallery/photos/2020/thumb/89.jpg
deleted file mode 100644
index 4d4592a5b..000000000
Binary files a/resources/gallery/photos/2020/thumb/89.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/9.jpg b/resources/gallery/photos/2020/thumb/9.jpg
deleted file mode 100644
index cf824fc7e..000000000
Binary files a/resources/gallery/photos/2020/thumb/9.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/90.jpg b/resources/gallery/photos/2020/thumb/90.jpg
deleted file mode 100644
index a147fb54a..000000000
Binary files a/resources/gallery/photos/2020/thumb/90.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/91.jpg b/resources/gallery/photos/2020/thumb/91.jpg
deleted file mode 100644
index 32146763b..000000000
Binary files a/resources/gallery/photos/2020/thumb/91.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/92.jpg b/resources/gallery/photos/2020/thumb/92.jpg
deleted file mode 100644
index 14a030c44..000000000
Binary files a/resources/gallery/photos/2020/thumb/92.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/93.jpg b/resources/gallery/photos/2020/thumb/93.jpg
deleted file mode 100644
index c612837e8..000000000
Binary files a/resources/gallery/photos/2020/thumb/93.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/94.jpg b/resources/gallery/photos/2020/thumb/94.jpg
deleted file mode 100644
index 245306d02..000000000
Binary files a/resources/gallery/photos/2020/thumb/94.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/95.jpg b/resources/gallery/photos/2020/thumb/95.jpg
deleted file mode 100644
index 3831bcb6a..000000000
Binary files a/resources/gallery/photos/2020/thumb/95.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/96.jpg b/resources/gallery/photos/2020/thumb/96.jpg
deleted file mode 100644
index 259587ec2..000000000
Binary files a/resources/gallery/photos/2020/thumb/96.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/97.jpg b/resources/gallery/photos/2020/thumb/97.jpg
deleted file mode 100644
index 7ff35ca49..000000000
Binary files a/resources/gallery/photos/2020/thumb/97.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/98.jpg b/resources/gallery/photos/2020/thumb/98.jpg
deleted file mode 100644
index afb804bd6..000000000
Binary files a/resources/gallery/photos/2020/thumb/98.jpg and /dev/null differ
diff --git a/resources/gallery/photos/2020/thumb/99.jpg b/resources/gallery/photos/2020/thumb/99.jpg
deleted file mode 100644
index 00cd6de54..000000000
Binary files a/resources/gallery/photos/2020/thumb/99.jpg and /dev/null differ
diff --git a/resources/gallery/photos/create_thumbs.sh b/resources/gallery/photos/create_thumbs.sh
deleted file mode 100644
index d792f791c..000000000
--- a/resources/gallery/photos/create_thumbs.sh
+++ /dev/null
@@ -1,40 +0,0 @@
-#!/bin/bash
-set -eo pipefail
-
-#
-# This script generates thumbnails for a year's gallery photos.
-# Run it like this:
-#
-# cd /path/to/brickhack.io/public/gallery/photos/
-# bash create_thumbs.sh
-#
-#For Windows users, open docker and run:
-# docker-compose run web bash
-# cd public/gallery/photos
-# ./create_thumbs.sh
-
-# UPDATE THIS FOR THE SPECIFIC YEAR TO GENERATE
-YEAR_FOLDER=2018
-
-# Nothing below this line should need to be modified
-FULL_FOLDER="${YEAR_FOLDER}/full"
-THUMBS_FOLDER="${YEAR_FOLDER}/thumb"
-mkdir -p $THUMBS_FOLDER
-for file in ${FULL_FOLDER}/*
-do
- # next line checks the mime-type of the file
- CHECKTYPE=`file --mime-type -b "$file" | awk -F'/' '{print $1}'`
- if [ "x$CHECKTYPE" == "ximage" ]; then
- #CHECKSIZE=`stat -f "%z" "$file"` # this returns the filesize
- CHECKWIDTH=`identify -format "%W" "$file"` # this returns the image width
- CHECKHEIGHT=`identify -format "%H" "$file"` # this returns the image width
-
- # next 'if' is true if either filesize >= 200000 bytes OR if image width >=201
- #if [ $CHECKSIZE -ge 200000 ] || [ $CHECKWIDTH -ge 401 ]; then
- if [ $CHECKWIDTH -gt $CHECKHEIGHT ]; then
- convert -resize 400x300 "$file" "${THUMBS_FOLDER}/$(basename "$file")"
- else
- convert -resize 400x603 "$file" "${THUMBS_FOLDER}/$(basename "$file")"
- fi
- fi
-done
diff --git a/resources/gallery/photos/fix_full.sh b/resources/gallery/photos/fix_full.sh
deleted file mode 100644
index 4d77b3c9b..000000000
--- a/resources/gallery/photos/fix_full.sh
+++ /dev/null
@@ -1,37 +0,0 @@
-#!/bin/bash
-set -eo pipefail
-
-#
-# This script fixes resizes and re-orients the full images for a year's gallery photos.
-# Run it like this:
-#
-# cd /path/to/brickhack.io/public/gallery/photos/
-# bash fix_full.sh
-#
-#For Windows users, open docker and run:
-# docker-compose run web bash
-# cd public/gallery/photos
-# ./fix_full.sh
-
-# UPDATE THIS FOR THE SPECIFIC YEAR TO GENERATE
-YEAR_FOLDER=2018
-
-# Nothing below this line should need to be modified
-FULL_FOLDER="${YEAR_FOLDER}/full"
-
-for file in ${FULL_FOLDER}/*
-do
- # next line checks the mime-type of the file
- CHECKTYPE=`file --mime-type -b "$file" | awk -F'/' '{print $1}'`
- if [ "x$CHECKTYPE" == "ximage" ]; then
-
- CHECKWIDTH=`identify -format "%W" "$file"` # this returns the image width
- CHECKHEIGHT=`identify -format "%H" "$file"`
-
- if [ $CHECKWIDTH -gt $CHECKHEIGHT ]; then
- convert -resize 1024x683 "$file" -auto-orient "${FULL_FOLDER}/$(basename "$file")"
- else
- convert -resize 637x960 "$file" -auto-orient "${FULL_FOLDER}/$(basename "$file")"
- fi
- fi
-done
diff --git a/sass/gallery.scss b/sass/gallery.scss
new file mode 100644
index 000000000..3277a9d6b
--- /dev/null
+++ b/sass/gallery.scss
@@ -0,0 +1,235 @@
+// Variables
+$orange: #F98728;
+$off-white: #F9F6F3;
+
+* {
+ padding: 0;
+ margin: 0;
+ box-sizing: border-box;
+}
+
+body {
+ background-color: $off-white;
+}
+
+nav {
+ position: fixed;
+ top: 0;
+ width: 100%;
+ background-color: $off-white;
+ border-bottom: 3px solid $orange;
+ display: flex;
+ justify-content: space-between;
+ padding: 0px 20px;
+ z-index: 1;
+
+ a {
+ color: $orange;
+ font-family: Roboto, sans-serif;
+ text-decoration: none;
+ font-size: 25px;
+ margin: 10px;
+ border-bottom: 3px solid rgba($orange, 0%);
+ border-top: 3px solid transparent; // for balance
+
+ &:hover, &:active {
+ border-bottom: 3px solid rgba($orange, 100%);
+ }
+ }
+
+ i {
+ color: $orange;
+ font-size: 35px;
+ margin: 10px;
+ }
+}
+
+.navlinks {
+ display: flex;
+}
+
+.navpoints {
+ position: relative;
+ top: -80px;
+}
+
+#mobile-menu {
+ display: none;
+}
+
+#toggler:hover {
+ cursor: pointer;
+}
+
+.header {
+ background-color: $orange;
+ width: 100%;
+ padding: 30px;
+ text-align: center;
+
+ img {
+ width: 150px;
+ }
+}
+
+#first-header {
+ margin-top: 55px;
+}
+
+h1, p {
+ text-align: center;
+ color: $off-white;
+ font-family: Roboto, sans-serif;
+}
+
+h1 {
+ font-size: 50px;
+ margin-top: 10px;
+}
+
+p {
+ font-size: 20px;
+ line-height: 20px;
+}
+
+#logo {
+ margin: auto;
+ width: 100px;
+ height: 100px;
+ background: $off-white;
+ border-radius: 25px;
+}
+
+.image-container {
+ display: grid;
+ grid-template-columns: repeat(5, 1fr);
+ gap: 20px;
+ padding: 20px;
+ align-items: center;
+
+ .image {
+ cursor: pointer;
+ width: 100%;
+ height: 40vh;
+ background-size: cover;
+ background-position: center center;
+ opacity: 0;
+ transition: 0.5s opacity;
+ }
+
+ .loaded {
+ opacity: 1;
+ transition: 0.5s opacity;
+ }
+}
+
+#modal-background {
+ background-color: rgba(black, 85%);
+ width: 100%;
+ height: 100%;
+ position: fixed;
+ z-index: 2;
+ display: none;
+ top: 0;
+ cursor: pointer;
+}
+
+#modal {
+ text-align: center;
+ background-color: $off-white;
+ border-radius: 20px;
+ padding-top: 50px;
+ top: 10%;
+ margin: auto;
+ width: auto;
+ left: 50%;
+ transform: translateX(-50%);
+ max-height: 90%;
+ position: absolute;
+ z-index: 3;
+ display: none;
+
+ img {
+ display: block;
+ max-width: 100%;
+ max-height: calc(90vh - 40px); // 40px from the padding of modal (20 top + 20 bottom)
+ width: auto;
+ height: auto;
+ border: 8px solid $off-white;
+ border-top: none;
+ border-radius: 20px;
+ }
+}
+
+#close-modal {
+ color: $orange;
+ font-size: 40px;
+ position: absolute;
+ top: 5px;
+ right: 15px;
+ z-index: 3;
+ cursor: pointer;
+}
+
+@media screen and (max-width: 1800px) {
+ .image-container {
+ grid-template-columns: repeat(4, 1fr);
+ }
+}
+
+@media screen and (max-width: 1400px) {
+ .image-container {
+ grid-template-columns: repeat(3, 1fr);
+ }
+}
+
+@media screen and (max-width: 1000px) {
+ .image-container {
+ grid-template-columns: repeat(2, 1fr);
+ }
+
+ #modal {
+ width: 90%;
+ max-height: none;
+ padding-top: 40px;
+
+ img {
+ width: 100%;
+ max-height: none;
+ }
+ }
+
+ #close-modal {
+ font-size: 30px;
+ }
+}
+
+@media screen and (max-width: 660px) {
+ #mobile-menu {
+ display: flex;
+ align-self: flex-end;
+ padding-right: 20px;
+ }
+
+ nav {
+ padding: 0;
+ flex-direction: column;
+ align-items: center;
+ }
+
+ .navlinks {
+ flex-direction: column;
+ align-items: center;
+ display: none;
+ border-top: 3px solid $orange;
+ width: 100%;
+ }
+
+ .show-menu {
+ display: flex;
+ }
+
+ .image-container {
+ grid-template-columns: repeat(1, 1fr);
+ }
+}
diff --git a/sass/main.scss b/sass/main.scss
index 0909c6f37..7ec74f2c3 100644
--- a/sass/main.scss
+++ b/sass/main.scss
@@ -502,7 +502,7 @@ nav {
font-weight: $font-medium;
}
- i.fa-arrow-right, i.fa-tools {
+ i.fa-arrow-right, i.fa-images {
font-size: 1.6em;
color: $red;
padding-right: 10px;