+
+
+
+
\ No newline at end of file
diff --git a/about/index.html b/about/index.html
deleted file mode 100644
index d6b9267c..00000000
--- a/about/index.html
+++ /dev/null
@@ -1,39 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- CC - About
-
About Me
-
-
- Hello! My name is Kyle Burton, and I'm the creator of Card Conjurer. I started playing Magic with the M14 deckbuilder's toolkit. I played 60-card casual games with several close friends, and when Khans of Tarkir was released we attended our first prerelease. As the years passed I got more and more into Magic and ultimately discovered Commander, which is the format I currently play.
-
-
- During middle school I did some light programming with Processing and Lego's NXT, and halfway through high school I taught myself Javascript, HTML, and CSS (the languages that compose websites). Then, in the summer of 2018, I combined my love for Magic and curiosity for programming by creating Card Conjurer.
-
-
- I initially wanted to make some Commander Achievement cards that looked like real Magic cards, so I decided to make a small web-based application to fill blank magic card images with text and mana symbols. It worked surprisingly well, and I soon began to expand on the original idea by adding more customization and more frames. By the end of summer break I decided to purchase the domain CardConjurer.com so I could share my program with the world. Since then I've remade the entire website from the ground-up three times, and am very pleased with its current state. While I don't plan on any major revisions, I will continue adding new frames and features.
-
-
- I "graduated" (no ceremony 😭) high school in 2020, and because I had such a great time learning to code and discovering how much it could accomplish I decided to pursue programming. As of Fall of 2020, I've been attending CalPoly SLO majoring in Software Engineering.
-
-
- Whether you'd like to see what I'm up to in the Magic world or take a look at some of the cards I've made with Card Conjurer, please consider taking a moment to check out my Twitter @ImKyle4815!
-
- Ask Urza 2.0 is a replacement for AskUrza.com that periodically compiles all planeswalker abilities and sorts them into three categories for use with Urza, Academy Headmaster. This allows for much more unpredictability and, in my opinion, much more fun. To use Ask Urza, simply click on the +1, -1, or -6, and let the gods of chaos decide your fate!
-
- Currently this box generator only supports odd numbers of tabs and single-row boxes with sliding lids. Hopefully in the future I'll add more options!
-
-
-
-
- Before laser cutting, you'll have to adjust the stroke width and color, as well as scale SVG correctly. Note down the PPI (default is 72) when you download the SVGs. In case you forget which PPI you used, the margins on the SVG files are one inch.
-
-
-
-
-
-
-
diff --git a/css/reset.css b/css/reset.css
new file mode 100644
index 00000000..bc37bae8
--- /dev/null
+++ b/css/reset.css
@@ -0,0 +1,48 @@
+/* http://meyerweb.com/eric/tools/css/reset/
+ v2.0 | 20110126
+ License: none (public domain)
+*/
+
+html, body, div, span, applet, object, iframe,
+h1, h2, h3, h4, h5, h6, p, blockquote, pre,
+a, abbr, acronym, address, big, cite, code,
+del, dfn, em, img, ins, kbd, q, s, samp,
+small, strike, strong, sub, sup, tt, var,
+b, u, i, center,
+dl, dt, dd, ol, ul, li,
+fieldset, form, label, legend,
+table, caption, tbody, tfoot, thead, tr, th, td,
+article, aside, canvas, details, embed,
+figure, figcaption, footer, header, hgroup,
+menu, nav, output, ruby, section, summary,
+time, mark, audio, video {
+ margin: 0;
+ padding: 0;
+ border: 0;
+ font-size: 100%;
+ font: inherit;
+ vertical-align: baseline;
+}
+/* HTML5 display-role reset for older browsers */
+article, aside, details, figcaption, figure,
+footer, header, hgroup, menu, nav, section {
+ display: block;
+}
+body {
+ line-height: normal;
+}
+ol, ul {
+ list-style: none;
+}
+blockquote, q {
+ quotes: none;
+}
+blockquote:before, blockquote:after,
+q:before, q:after {
+ content: '';
+ content: none;
+}
+table {
+ border-collapse: collapse;
+ border-spacing: 0;
+}
\ No newline at end of file
diff --git a/css/style.css b/css/style.css
new file mode 100644
index 00000000..dd05793b
--- /dev/null
+++ b/css/style.css
@@ -0,0 +1,593 @@
+/*fonts*/
+@font-face {
+ font-family: gothammedium;
+ src: url("/fonts/gotham-medium.ttf");
+}
+@font-face {
+ font-family: belerenb;
+ src: url("/fonts/beleren-b.ttf");
+}
+@font-face {
+ font-family: belerenbsc;
+ src: url("/fonts/beleren-bsc.ttf");
+}
+@font-face {
+ font-family: matrix;
+ src: url("/fonts/matrix.ttf");
+}
+@font-face {
+ font-family: matrixb;
+ src: url("/fonts/matrix-b.ttf");
+}
+@font-face {
+ font-family: mplantin;
+ src: url("/fonts/mplantin.ttf");
+}
+@font-face {
+ font-family: mplantini;
+ src: url("/fonts/mplantin-i.ttf");
+}
+@font-face {
+ font-family: plantinsemibold;
+ src: url("/fonts/plantin-semibold.otf");
+}
+@font-face {
+ font-family: goudymedieval;
+ src: url("/fonts/goudy-medieval.ttf");
+}
+@font-face {
+ font-family: phyrexian;
+ src: url("/fonts/phyrexian.ttf");
+}
+@font-face {
+ font-family: Montserrat-SemiBold;
+ src: url("/fonts/Montserrat-SemiBold.ttf");
+}
+@font-face {
+ font-family: Montserrat-Medium;
+ src: url("/fonts/Montserrat-Medium.ttf");
+}
+/*Variables*/
+:root {
+ --darkened-backdrop-filter: grayscale(1) brightness(0.3);
+ --regular-backdrop-filter: none;
+ --window-diagonal-size: 400px;
+}
+/*Main Site Elements*/
+.background {
+ position: fixed;
+ z-index: -1;
+ width: 100vw;
+ height: 100vh;
+ background: url('/img/lowpolyBackground.svg');
+ background-repeat: no-repeat;
+ background-attachment: fixed;
+ background-size: cover;
+ background-position: center;
+ filter: var(--regular-backdrop-filter);
+}
+html {
+ font-size: 12pt;
+ overflow-x: hidden;
+ background: none;
+ color: white;
+}
+body {
+ width: 100vw;
+}
+header, footer, .main-content {
+ /*width: 100%;*/
+}
+header, footer {
+ backdrop-filter: var(--darkened-backdrop-filter);
+}
+header {
+ padding: 2rem 0;
+}
+.header-extension {
+ padding-bottom: 2rem;
+}
+footer {
+ padding: 2rem;
+ /*background: #427A36;*/
+ display: grid;
+ grid-template-columns: calc(1fr - 4rem);
+ grid-gap: 1rem;
+}
+@media only screen and (min-width: 750px) {
+ footer {
+ grid-template-columns: repeat(3, 1fr);
+ }
+}
+footer > div > * {
+ margin: 1rem 0;
+}
+/*Viewport*/
+img {
+ max-width: 100%;
+}
+/*Scrollbar Mod*/
+::-webkit-scrollbar {
+ width: 0.5rem;
+ height: 0;
+ background: #222;
+}
+::-webkit-scrollbar-thumb {
+ background: #888;
+ border-radius: 0.25rem;
+}
+/*Fonts*/
+.title {
+ font-family: belerenbsc;
+ text-shadow: 0.2rem 0.2rem 0.5rem black;
+}
+h1 {
+ font-size: 4rem;
+ font-family: Montserrat-SemiBold, Helvetica, Tahoma, Verdana, Geneva, sans-serif;
+
+}
+h2 {
+ font-size: 2.5rem;
+ font-family: Montserrat-SemiBold, Helvetica, Tahoma, Verdana, Geneva, sans-serif;
+}
+h3 {
+ font-size: 2rem;
+ font-family: Montserrat-SemiBold, Helvetica, Tahoma, Verdana, Geneva, sans-serif;
+}
+h4 {
+ font-size: 1.5rem;
+ font-family: Montserrat-SemiBold, Helvetica, Tahoma, Verdana, Geneva, sans-serif;
+}
+h5 {
+ font-size: 1.25rem;
+ font-family: Montserrat-SemiBold, Helvetica, Tahoma, Verdana, Geneva, sans-serif;
+}
+p {
+ font-size: 1rem;
+ font-family: Montserrat-Medium, Helvetica, Tahoma, Verdana, Geneva, sans-serif;
+}
+a {
+ color: inherit;
+ text-decoration: inherit;
+}
+a:hover {
+ text-decoration: underline;
+}
+::selection {
+ color: white;
+ background: #8f8;
+}
+::moz-selection {
+ color: white;
+ background: #8f8;
+}
+/*General styles*/
+.hidden {
+ display: none;
+}
+.margin-bottom {
+ margin-bottom: 0.5rem;
+}
+.margin-large {
+ margin: 4rem 0;
+}
+.margin-top {
+ margin-top: 0.5rem;
+}
+.padding {
+ padding: 0.5rem;
+}
+.readable-background {
+ backdrop-filter: var(--darkened-backdrop-filter);
+}
+.box-shadow {
+ box-shadow: 0 2px 8px #0008;
+}
+.split-grid {
+ display: grid;
+ grid-template-columns: 1fr 1fr;
+ grid-gap: 0.5rem;
+}
+.center {
+ text-align: center;
+}
+.layer {
+ padding: 4rem;
+}
+/*Hamburger*/
+.hamburger {
+ position: fixed;
+ right: 2rem;
+ top: 2rem;
+ width: 4rem;
+ height: 4rem;
+ fill-rule: evenodd;
+ clip-rule: evenodd;
+ stroke-linejoin: round;
+ stroke-miterlimit: 1.5;
+ cursor: pointer;
+ z-index: 100;
+ background: #35603E;
+ border-radius: 0.5rem;
+}
+.hamburger > path {
+ fill: none;
+ stroke: white;
+ stroke-width: 8px;
+ transition: 0.5s;
+}
+.line1, .line3 {
+ stroke-dasharray: 80 183;
+ stroke-dashoffset: 0;
+}
+.line2 {
+ stroke-dasharray: 80 80;
+ stroke-dashoffset: 0;
+}
+.opened > .line1, .opened > .line3 {
+ stroke-dasharray: 103 183;
+ stroke-dashoffset: -80;
+}
+.opened > .line2 {
+ stroke-dasharray: 0 60;
+ stroke-dashoffset: -40;
+}
+.circle {
+ z-index: 5;
+ position: fixed;
+ right: 4rem;
+ top: 4rem;
+ padding: 0;
+ background: #35603E;
+ border-radius: 100%;
+ transition: 0.333s ease;
+}
+.hamburger:hover + .circle {
+ padding: 3rem;
+ right: 1rem;
+ top: 1rem;
+}
+.hamburger.opened + .circle {
+ padding: var(--window-diagonal-size);
+ right: calc(4rem - var(--window-diagonal-size));
+ top: calc(4rem - var(--window-diagonal-size));
+ transition: 0.75s cubic-bezier(.53,.47,.76,-0.52);
+}
+/*Menus*/
+.menu {
+ position: fixed;
+ z-index: 10;
+ bottom: 100vh;
+ left: 0;
+ width: 100vw;
+ height: 100vh;
+ overflow-y: scroll;
+ transition: 0.5s;
+ text-align: center;
+}
+.menu.menu-visible {
+ bottom: 0;
+ transition-delay: 0.667s;
+}
+.menu > div {
+ display: inline-block;
+ margin: 0 auto;
+ text-align: left;
+}
+/*Main (Nav) Menu*/
+.main-menu {
+ padding: 2rem;
+ line-height: 3rem;
+}
+.main-menu > h2 {
+ margin-top: 4rem;
+}
+/*Inputs*/
+.input {
+ box-sizing: border-box;
+ width: 100%;
+ background: #333;
+ color: inherit;
+ font-size: 1.25rem;
+ font-family: Montserrat-Medium, Helvetica, Tahoma, Verdana, Geneva, sans-serif;
+ font-weight: 100;
+ border-width: 0.25rem 0 0 0;
+ border-style: solid;
+ border-color: #0000;
+ padding: 0 0.25rem 0.25rem 0.25rem;
+ transition: 0.5s;
+}
+.input:hover {
+ box-shadow: 0 0px 16px black;
+ transition: 0.05s;
+}
+.input:focus {
+ outline: none;
+}
+.input:active {
+ border-color: #ae9;
+}
+.input:disabled {
+ opacity: 0.5;
+}
+.input:disabled:hover {
+ box-shadow: none;
+}
+.input-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
+ grid-gap: 0.5rem;
+}
+.input-description {
+ color: #bbb;
+ font-style: italic;
+}
+input[type=checkbox].input {
+ /*nothing for now*/
+}
+.input:not([type=text]):not([type=number]) {
+ cursor: pointer;
+}
+textarea.input {
+ cursor: text !important;
+ resize: vertical;
+ box-sizing: border-box;
+ min-height: 10rem;
+ max-height: 20rem;
+ transition: height 0s;
+}
+/*Collapsible*/
+.collapsible {
+ cursor: pointer;
+ user-select: none;
+}
+.collapsible:after {
+ content: '';
+ border: solid white;
+ border-width: 0 0.15em 0.15em 0;
+ display: inline-block;
+ padding: 0.15em;
+ transform: rotate(-135deg) translate(-0.2em, 0.2em);
+ -webkit-transform: rotate(-135deg) translate(-0.2em, 0.2em);
+}
+.collapsible.collapsed:after {
+ transform: rotate(45deg) translate(0, -0.3em);
+ -webkit-transform: rotate(45deg) translate(0, -0.3em);
+}
+.collapsed + div {
+ display: none;
+}
+/*Videos*/
+.video {
+ position: relative;
+ padding-bottom: 56.25%;
+ padding-top: 30px;
+ height: 0;
+ overflow: hidden;
+}
+.video iframe, .video object, .video embed, .video video {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+}
+
+
+
+
+
+
+/*Creator related only*/
+/*Creator Grid/Canvas/Menu*/
+.creator-grid {
+ width: 100%;
+ display: grid;
+ grid-template-columns: 1fr;
+ justify-items: center;
+ grid-gap: 1rem;
+ padding: 1rem 0;
+}
+.creator-canvas {
+ max-width: 750px;
+ width: 100vw;
+ height: auto;
+ /*backdrop-filter: hue-rotate(80deg);*/
+}
+.creator-menu {
+ width: 100%;
+}
+@media only screen and (min-width: 1250px) {
+ .creator-grid {
+ grid-template-columns: 750px auto;
+ padding: 1rem;
+ justify-items: left;
+ }
+ .creator-menu {
+ width: calc(100% - 2rem);
+ }
+ .creator-canvas {
+ border-radius: 37.5px;
+ }
+}
+/*Creator Menu Tabs*/
+.creator-menu-tabs {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
+ grid-gap: 0.5rem;
+ margin-bottom: 0.5rem;
+}
+/*Selectables*/
+.selectable {
+ text-align: center;
+ user-select: none;
+ padding: 1rem;
+ padding-top: 0.9rem;
+ border-top: 0.1rem;
+ border-style: solid;
+ border-color: #0000;
+ transition: 0.5s;
+ cursor: pointer;
+}
+.selectable.selected {
+ padding-top: 0.5rem;
+ border-top: 0.5rem;
+ border-style: solid;
+ border-color: #ae9;
+ transition: 0.5s !important;
+}
+.selectable:hover {
+ box-shadow: 0 0px 16px black;
+ transition: 0.05s;
+}
+/*Draggables*/
+.draggable {
+ background: #333;
+}
+.dragging {
+ box-shadow: 0 0px 16px black;
+ background: #555;
+ cursor: move;
+}
+.frame-list{
+ display: grid;
+ grid-template-columns: 1fr;
+ grid-gap: 0.25rem;
+ user-select: none;
+}
+/*Frame/Mask-Pickers*/
+.frame-picker, .mask-picker {
+ display: grid;
+ grid-gap: 0.5rem;
+ height: 20rem;
+ overflow-y: scroll;
+ grid-auto-rows: 6.5rem;
+}
+.frame-picker {
+ grid-template-columns: repeat(auto-fit, minmax(6rem, 1fr));
+ justify-items: left;
+ align-items: left;
+}
+.mask-picker {
+ grid-template-columns: 1fr;
+}
+.frame-option, .mask-option {
+ cursor: pointer;
+ background: #333;
+ width: 100%;
+ height: 6rem;
+ padding: 0.25rem 0;
+ text-align: center;
+ -webkit-user-select: none;
+ -khtml-user-select: none;
+ -moz-user-select: none;
+ -o-user-select: none;
+ user-select: none;
+ transition: 0.25s;
+}
+.frame-option.selected, .mask-option.selected {
+ background: #555;
+}
+.frame-option > img, .mask-option > img {
+ width: 100%;
+ height: 100%;
+ object-fit: contain;
+ -webkit-user-select: none;
+ -khtml-user-select: none;
+ -moz-user-select: none;
+ -o-user-select: none;
+ user-select: none;
+}
+.mask-option {
+ display: grid;
+ grid-template-columns: 6rem auto;
+ text-align: left;
+ grid-gap: 0.5rem;
+ align-items: center;
+ height: 6rem;
+}
+/*Frame Elements*/
+.frame-element {
+ display: grid;
+ grid-template-columns: 4rem 4rem 1fr 4rem;
+ grid-gap: 0.5rem;
+ padding: 0.25rem;
+ align-items: center;
+ cursor: grab;
+}
+.frame-element > h4 {
+ overflow-x: scroll;
+}
+.frame-element > img {
+ width: 4rem;
+ height: 4rem;
+ object-fit: contain;
+ padding: none;
+}
+.frame-element:hover {
+ box-shadow: 0 0px 16px black;
+ transition: 0.05s;
+}
+.frame-element-close {
+ font-size: 2rem;
+ cursor: pointer;
+ text-align: center;
+ padding: 0.5rem 0;
+}
+.frame-element-editor {
+ display: none;
+ position: fixed;
+ max-width: calc(100vw - 6rem);
+ width: 64rem; /*multiple of 16?*/
+ height: auto;
+ -webkit-transform: translateX(-50%) translateY(-50%);
+ -moz-transform: translateX(-50%) translateY(-50%);
+ -ms-transform: translateX(-50%) translateY(-50%);
+ -o-transform: translateX(-50%) translateY(-50%);
+ transform: translateX(-50%) translateY(-50%);
+ top: 50%;
+ left: 50%;
+ background: #35603E;
+ border: 0.5rem solid #333;
+ border-radius: 1rem;
+ box-shadow: 0.5rem 0.5rem 1rem 0.5rem black;
+ z-index: 10;
+ padding: 2rem;
+ grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
+ grid-gap: 1rem;
+}
+.frame-element-editor.opened {
+ display: grid;
+}
+.frame-element-editor > .frame-element-editor-title {
+ grid-column: 1 / -2;
+}
+.frame-element-editor > .frame-element-editor-close {
+ cursor: pointer;
+ width: auto;
+ height: auto;
+ grid-column: -1 span 1;
+ user-select: none;
+ justify-self: right;
+}
+/*Text tab*/
+.text-option {
+ background: #333;
+}
+.text-codes {
+ display: grid;
+ grid-template-columns: 11rem auto;
+}
+.text-codes > * {
+ border: 1px solid black;
+ padding: 0.5rem;
+}
+/*download button*/
+.download {
+ text-align: center;
+ user-select: none;
+ cursor: pointer;
+}
+.download:hover {
+ text-decoration: underline;
+}
\ No newline at end of file
diff --git a/favicon.ico b/favicon.ico
deleted file mode 100644
index 692317a4..00000000
Binary files a/favicon.ico and /dev/null differ
diff --git a/fonts/Montserrat-Medium.ttf b/fonts/Montserrat-Medium.ttf
new file mode 100644
index 00000000..6e079f69
Binary files /dev/null and b/fonts/Montserrat-Medium.ttf differ
diff --git a/fonts/Montserrat-SemiBold.ttf b/fonts/Montserrat-SemiBold.ttf
new file mode 100644
index 00000000..f8a43f2b
Binary files /dev/null and b/fonts/Montserrat-SemiBold.ttf differ
diff --git a/fonts/beleren-b.ttf b/fonts/beleren-b.ttf
new file mode 100644
index 00000000..979b66c6
Binary files /dev/null and b/fonts/beleren-b.ttf differ
diff --git a/fonts/beleren-bsc.ttf b/fonts/beleren-bsc.ttf
new file mode 100644
index 00000000..4cbe6344
Binary files /dev/null and b/fonts/beleren-bsc.ttf differ
diff --git a/fonts/brush.svg b/fonts/brush.svg
new file mode 100644
index 00000000..a52564f8
--- /dev/null
+++ b/fonts/brush.svg
@@ -0,0 +1,7 @@
+
+
+
diff --git a/fonts/gotham-medium.ttf b/fonts/gotham-medium.ttf
new file mode 100644
index 00000000..7817d91d
Binary files /dev/null and b/fonts/gotham-medium.ttf differ
diff --git a/fonts/goudy-medieval.ttf b/fonts/goudy-medieval.ttf
new file mode 100644
index 00000000..3f0c59e3
Binary files /dev/null and b/fonts/goudy-medieval.ttf differ
diff --git a/fonts/matrix-b - Copy.ttf b/fonts/matrix-b - Copy.ttf
new file mode 100644
index 00000000..855e51f9
Binary files /dev/null and b/fonts/matrix-b - Copy.ttf differ
diff --git a/fonts/matrix-b.ttf b/fonts/matrix-b.ttf
new file mode 100644
index 00000000..6f64ea23
Binary files /dev/null and b/fonts/matrix-b.ttf differ
diff --git a/fonts/matrix.ttf b/fonts/matrix.ttf
new file mode 100644
index 00000000..c9b5e105
Binary files /dev/null and b/fonts/matrix.ttf differ
diff --git a/fonts/mplantin-i.ttf b/fonts/mplantin-i.ttf
new file mode 100644
index 00000000..5755831c
Binary files /dev/null and b/fonts/mplantin-i.ttf differ
diff --git a/fonts/mplantin.ttf b/fonts/mplantin.ttf
new file mode 100644
index 00000000..116529ef
Binary files /dev/null and b/fonts/mplantin.ttf differ
diff --git a/fonts/phyrexian.ttf b/fonts/phyrexian.ttf
new file mode 100644
index 00000000..30fd6d79
Binary files /dev/null and b/fonts/phyrexian.ttf differ
diff --git a/fonts/plantin-semibold.otf b/fonts/plantin-semibold.otf
new file mode 100644
index 00000000..c11e7033
Binary files /dev/null and b/fonts/plantin-semibold.otf differ
diff --git a/gallery/gallery.css b/gallery/gallery.css
deleted file mode 100644
index 089c8225..00000000
--- a/gallery/gallery.css
+++ /dev/null
@@ -1,93 +0,0 @@
-#imageGallery {
- margin-top: 2rem;
- width: 100%;
- display: grid;
- grid-template-columns: repeat(auto-fit, minmax(375px, 1fr));
- grid-auto-rows: min-content;
- grid-gap: 1rem;
- justify-items: center;
- align-items: center;
-}
-
-
-
-.galleryCard {
- /*margin: 1rem;*/
- cursor: pointer;
- width: 375px;
- height: 525px;
- transition: 2s;
- text-align: center;
-}
-.galleryCard > img {
- z-index: 1;
- width: 100%;
- height: auto;
-}
-.galleryCard > div {
- opacity: 0;
- position: relative;
- top: -2rem;
- left: 0;
- z-index: -1;
-}
-
-
-
-.galleryHidden {
- opacity: 0;
-}
-.galleryVisible {
- opacity: 1;
-}
-
-
-
-.filterHidden {
- display: none;
-}
-
-
-
-#fullImageViewbox {
- display: none;
- position: fixed;
- top: 0;
- left: 0;
- width: 100vw;
- height: 100vh;
- backdrop-filter: brightness(40%) blur(8px);
- -webkit-backdrop-filter: brightness(40%) blur(8px);
- text-align: center;
- cursor: pointer;
-}
-#fullImageViewbox.visible {
- display: block;
-}
-#fullImageViewbox > img {
- position: fixed;
- left: 50%;
- top: 50%;
- transform: translate(-50%, -50%);
- object-fit: contain;
- width: calc(100vw - 2rem);
- height: calc(100vh - 2rem);
- animation-duration: 0.5s;
-}
-#fullImageViewbox.visible > img.visible {
- animation-name: previewIn;
-}
-#fullImageViewbox.visible > img:not(.visible) {
- animation-name: previewOut;
- animation-duration: 0.3s;
- transform: translate(-50%, calc(50% + 1rem));
-}
-
-@keyframes previewIn {
- from {transform: translate(-50%, calc(50% + 1rem));}
- to {transform: translate(-50%, -50%);}
-}
-@keyframes previewOut {
- from {transform: translate(-50%, -50%);}
- to {transform: translate(-50%, calc(50% + 1rem));}
-}
\ No newline at end of file
diff --git a/gallery/gallery.js b/gallery/gallery.js
deleted file mode 100644
index 0e8d3c05..00000000
--- a/gallery/gallery.js
+++ /dev/null
@@ -1,80 +0,0 @@
-var imageElementList = []
-const imageHeight = 525
-var windowY
-
-function readGalleryImageList() {
- var xhttp = new XMLHttpRequest()
- xhttp.onreadystatechange = function() {
- if (this.readyState == 4 && this.status == 200) {
- buildHTML(this.responseText.split('\n'))
- }
- }
- xhttp.open('GET', '/gallery/galleryImageNameList.txt', true)
- xhttp.send()
-}
-
-readGalleryImageList()
-
-function buildHTML(imageNameList) {
- imageNameList.forEach(function(item) {
- var element = document.createElement('div')
- var label = document.createElement('div')
- var image = document.createElement('img')
- element.classList = 'galleryCard galleryHidden'
- if (item.includes('Wasteland.png')) {
- element.classList += ' filterHidden'
- }
- image.imageName = item
- image.addEventListener('click', zoomImage)
- label.innerHTML = item.replace('.png', '').replace('_', ' ')
- element.appendChild(image)
- element.appendChild(label)
- document.getElementById('imageGallery').appendChild(element)
- imageElementList.push(element)
- })
- scrollEvent()
-}
-
-function zoomImage(event) {
- document.getElementById('fullImage').src = '/gallery/images/fullres/' + event.target.imageName
- document.getElementById('fullImage').classList = 'visible'
- document.getElementById('fullImagePreview').src = '/gallery/images/preview/' + event.target.imageName
- document.getElementById('fullImagePreview').classList = 'visible'
- document.getElementById('fullImageViewbox').classList = 'visible'
- windowY = window.scrollY
-}
-
-function unzoomImage() {
- document.getElementById('fullImage').classList = ''
- document.getElementById('fullImagePreview').classList = ''
- setTimeout(function(){document.getElementById('fullImageViewbox').classList = ''; document.getElementById('fullImage').src = ''}, 300)
-}
-
-window.addEventListener('scroll', scrollEvent, false)
-
-function scrollEvent() {
- if (document.getElementById('fullImageViewbox').classList == 'visible') {
- window.scrollTo(0, windowY)
- return
- }
- windowInnerHeight = window.innerHeight
- imageElementList.forEach(function(element) {
- boundingRect = element.getBoundingClientRect()
- if (element.classList.contains('galleryHidden') && boundingRect.bottom >= 0 && boundingRect.top - windowInnerHeight <= 0) {
- element.children[0].src = '/gallery/images/preview/' + element.children[0].imageName
- element.classList.replace('galleryHidden', 'galleryVisible')
- }
- })
-}
-
-function sort(word) {
- imageElementList.forEach(function(element) {
- if (!element.classList.contains('filterHidden')) {
- element.classList.add('filterHidden')
- }
- if (element.children[1].innerHTML.toLowerCase().includes(word.toLowerCase())) {
- element.classList.remove('filterHidden')
- }
- })
- scrollEvent()
-}
\ No newline at end of file
diff --git a/gallery/galleryImageNameList.txt b/gallery/galleryImageNameList.txt
deleted file mode 100644
index 7fb8c694..00000000
--- a/gallery/galleryImageNameList.txt
+++ /dev/null
@@ -1,252 +0,0 @@
-Opposition Agent.png
-Sol Ring.png
-Omnath, Locus of Mana.png
-Valakut Stoneforge (Mustufar Forges).png
-Valakut Awakening (Mustufar's Meltdown).png
-Expedition Map.png
-Craterhoof Behemoth.png
-Wasteland.png
-Turntimber Symbiosis.png
-Shatterskull Smashing.png
-Agadeem's Awakening.png
-Emeria's Call.png
-sea_gate,_reborn.png
-rick, steadfast leader (odric, steadfast leader) (1).png
-sea_gate_restoration.png
-rick, steadfast leader (thalia, steadfast leader).png
-rick, steadfast leader (odric, steadfast leader).png
-child of alara (creeper, child of notch).png
-merciless eviction (not the impostor...).png
-polluted_delta.png
-rogue's passage (the vent).png
-darksteel reactor (the reactor).png
-council's judgment (who is the impostor).png
-teferi's protection (emergency meeting).png
-murder.png
-negan,_the_cold_blooded (aurra_sing,_bounty_hunter).png
-negan,_the_cold_blooded (dryden_vos,_crime_lord).png
-breeding_pool (2).png
-sacred_foundry (2).png
-overgrown_tomb (2).png
-steam_vents (2).png
-godless_shrine (2).png
-windswept_heath (2).png
-fellwar stone.png
-kozilek,_the_great_distortion.png
-ulamog,_the_ceaseless_hunger.png
-emrakul,_the_promised_end (2).png
-darksteel plate (aang's_epic_armor).png
-sram, senior edificer (sokka,_veteran_combatant).png
-stoneforge mystic (piandao,_master_swordsman).png
-animar,_soul_of_elements.png
-emrakul,_the_aeons_torn.png
-ulamog,_the_infinite_gyre.png
-kozilek,_butcher_of_truth (2).png
-emeria_angel.png
-temple_garden (2).png
-wooded_foothills (1).png
-stomping_ground (2).png
-bloodstained_mire (2).png
-blood_crypt (2).png
-watery_grave (2).png
-flooded_strand (3).png
-hallowed_fountain (2).png
-command_tower (2).png
-helm_of_the_host.png
-vanquisher's_banner.png
-dryad_of_the_ilysian_grove (2).png
-deadeye_navigator .png
-talisman_of_curiosity.png
-talisman_of_hierarchy.png
-panharmonicon.png
-yarok,_the_desecrated.png
-brago,_king_eternal.png
-wooded_foothills (2).png
-flooded_strand (2).png
-mountain.png
-forest.png
-island.png
-swamp.png
-mana_confluence (2).png
-valakut,_the_molten_pinnacle.png
-jace, mirror mage (double_identity).png
-karn's_bastion.png
-nesting_grounds.png
-mana_confluence.png
-metallic_mimic.png
-the_ozolith.png
-lightning_greaves.png
-blood_artist.png
-manascape_refractor.png
-dimir_signet (1).png
-rakdos_signet.png
-arcane_signet.png
-chromatic_lantern.png
-phyrexian_metamorph.png
-phyrexian_altar (1).png
-sol_ring (2).png
-zurzoth,_chaos_rider.png
-maze_of_ith.png
-hammer_of_nazahn.png
-sword_of_feast_and_famine (2).png
-gaea's_cradle (3).png
-gaea's_cradle (2).png
-gaea's_cradle (1).png
-gaea's_cradle.png
-revel_in_riches.png
-skullclamp.png
-ashnod's_altar.png
-jhoira,_weatherlight_captain.png
-avenger_of_zendikar.png
-doubling_season.png
-solemn_simulacrum.png
-mox_opal.png
-the_storm_crow.png
-sword_of_feast_and_famine.png
-academy_ruins (3).png
-academy_ruins (2).png
-academy_ruins (1).png
-academy_ruins.png
-blood_moon.png
-sword_of_fire_and_ice.png
-cyclonic_rift.png
-thriving_heath.png
-thriving_grove.png
-thriving_moor.png
-thriving_bluff.png
-demonic_tutor.png
-aven_mindcensor.png
-opt.png
-return_of_the_wildspeaker.png
-buried_ruin.png
-whispersilk_cloak.png
-mystic_remora.png
-force_of_vigor.png
-generous_gift.png
-farseek (1).png
-farseek.png
-orzhov_signet.png
-liliana's_caress.png
-hall_of_heliod's_generosity.png
-nykthos,_shrine_to_nyx (1).png
-inventors'_fair.png
-steelshaper's_gift.png
-sword_of_light_and_shadow.png
-sword_of_sinew_and_steel.png
-sword_of_truth_and_justice.png
-chandra's_ignition.png
-ash_barrens (1).png
-true_conviction.png
-coalition_relic.png
-talisman_of_conviction.png
-boros_signet.png
-azorius_signet.png
-phyrexian_altar.png
-craterhoof_behemoth.png
-beastmaster_ascension.png
-goblin_bombardment.png
-bloodstained_mire.png
-growing_rites_of_itlimoc.png
-rogue's_passage.png
-zacama,_primal_calamity.png
-solemn_simulacrum (1).png
-solemn_simulacrum (2).png
-thassa's_oracle.png
-eladamri's_call.png
-intruder_alarm.png
-idyllic_tutor.png
-cryptolith_rite.png
-eternal_witness.png
-vizier_of_the_menagerie.png
-rhystic_study.png
-emrakul,_the_promised_end.png
-breeding_pool.png
-temple_garden.png
-sacred_foundry.png
-stomping_ground.png
-blood_crypt.png
-steam_vents.png
-godless_shrine.png
-hallowed_fountain.png
-darksteel_plate.png
-blade_of_selves.png
-return_to_dust.png
-smothering_tithe.png
-ren and seri, inseperable (catdog,_inseperable).png
-kalamax,_the_stormsire.png
-helm_of_awakening.png
-reflecting_pool.png
-seedborn_muse.png
-dryad_of_the_ilysian_grove.png
-emerald_medallion.png
-ruby_medallion.png
-fire_diamond.png
-moss_diamond.png
-gruul_signet.png
-simic_signet.png
-izzet_signet.png
-oona,_queen_of_the_fae.png
-vilis,_broker_of_blood.png
-thryx, the sudden storm (aquaman).png
-sol_ring.png
-show_and_tell.png
-enlightened_tutor.png
-zirda, the dawnwaker (flareon).png
-reliquary_tower (1).png
-reliquary_tower.png
-nykthos,_shrine_to_nyx.png
-watery_grave.png
-flooded_strand.png
-dolmen_gate.png
-sensei's_divining_top.png
-rune-scarred_demon.png
-rhystic_study (2).png
-propaganda.png
-evacuation.png
-spark_double.png
-gilded_lotus.png
-dimir_signet.png
-thran_dynamo.png
-solemn simulacrum (c-3po).png
-keruga, the macrosage (jabba_the_hutt,_crime_lord).png
-ramos, dragon engine (super_mechagodzilla,_kaiju_engine).png
-ramos, dragon engine (mechagodzilla,_kaiju_engine).png
-zirda,_the_dawnwaker.png
-fertilid.png
-ash_barrens.png
-the-gitrog-monster.png
-life_from_the_loam.png
-songs-of-the-damned.png
-band_of_brushwaggs.png
-niv-mizzet, parun (nivvy_m).png
-kaheera, the orphanguard (katniss, friend to all).png
-arahbo, roar of the world (griffin, rambunctious boyo).png
-golgari_signet (1).png
-golgari_signet.png
-lotus_petal (1).png
-kozilek,_butcher_of_truth.png
-culling_the_weak.png
-fabricate (1).png
-fabricate.png
-talisman_of_resilience.png
-talisman_of_creativity.png
-command_tower (1).png
-command_tower.png
-lotus_petal.png
-overgrown_tomb.png
-windswept_heath.png
-wooded_foothills.png
-worldly_tutor.png
-demonic_tutor (2).png
-squee's_embrace (smeagol's final embrace).png
-squee's_revenge (gollum's betrayal).png
-squee's_toy (gollum's precious).png
-squee,_goblin_nabob (smeagol, unlikely ally).png
-maze_of_ith (the mines of moria).png
-gavi_nest_warden (gavin verhey).png
-sakura_tribe_elder (baby yoda, the innocent).png
-tiana_ship's_caretaker (kaylee frye).png
-gerrard,_weatherlight_hero (malcolm reynolds).png
-predator,_flagship (reaver cutter).png
-weatherlight (serenity).png
-kozilek,_the_great_distortion (saitama).png
\ No newline at end of file
diff --git a/gallery/images/fullres/Agadeem's Awakening.png b/gallery/images/fullres/Agadeem's Awakening.png
deleted file mode 100644
index be9412c3..00000000
Binary files a/gallery/images/fullres/Agadeem's Awakening.png and /dev/null differ
diff --git a/gallery/images/fullres/Craterhoof Behemoth.png b/gallery/images/fullres/Craterhoof Behemoth.png
deleted file mode 100644
index 59fafd00..00000000
Binary files a/gallery/images/fullres/Craterhoof Behemoth.png and /dev/null differ
diff --git a/gallery/images/fullres/Emeria's Call.png b/gallery/images/fullres/Emeria's Call.png
deleted file mode 100644
index 777f858c..00000000
Binary files a/gallery/images/fullres/Emeria's Call.png and /dev/null differ
diff --git a/gallery/images/fullres/Expedition Map.png b/gallery/images/fullres/Expedition Map.png
deleted file mode 100644
index 8fd48399..00000000
Binary files a/gallery/images/fullres/Expedition Map.png and /dev/null differ
diff --git a/gallery/images/fullres/Omnath, Locus of Mana.png b/gallery/images/fullres/Omnath, Locus of Mana.png
deleted file mode 100644
index a66ebc46..00000000
Binary files a/gallery/images/fullres/Omnath, Locus of Mana.png and /dev/null differ
diff --git a/gallery/images/fullres/Opposition Agent.png b/gallery/images/fullres/Opposition Agent.png
deleted file mode 100644
index 46c72bcc..00000000
Binary files a/gallery/images/fullres/Opposition Agent.png and /dev/null differ
diff --git a/gallery/images/fullres/Shatterskull Smashing.png b/gallery/images/fullres/Shatterskull Smashing.png
deleted file mode 100644
index b5bebab6..00000000
Binary files a/gallery/images/fullres/Shatterskull Smashing.png and /dev/null differ
diff --git a/gallery/images/fullres/Sol Ring.png b/gallery/images/fullres/Sol Ring.png
deleted file mode 100644
index 8252ea1a..00000000
Binary files a/gallery/images/fullres/Sol Ring.png and /dev/null differ
diff --git a/gallery/images/fullres/Turntimber Symbiosis.png b/gallery/images/fullres/Turntimber Symbiosis.png
deleted file mode 100644
index fec7c066..00000000
Binary files a/gallery/images/fullres/Turntimber Symbiosis.png and /dev/null differ
diff --git a/gallery/images/fullres/Valakut Awakening (Mustufar's Meltdown).png b/gallery/images/fullres/Valakut Awakening (Mustufar's Meltdown).png
deleted file mode 100644
index 80b7c148..00000000
Binary files a/gallery/images/fullres/Valakut Awakening (Mustufar's Meltdown).png and /dev/null differ
diff --git a/gallery/images/fullres/Valakut Stoneforge (Mustufar Forges).png b/gallery/images/fullres/Valakut Stoneforge (Mustufar Forges).png
deleted file mode 100644
index e4b9f629..00000000
Binary files a/gallery/images/fullres/Valakut Stoneforge (Mustufar Forges).png and /dev/null differ
diff --git a/gallery/images/fullres/Wasteland.png b/gallery/images/fullres/Wasteland.png
deleted file mode 100644
index d81ce916..00000000
Binary files a/gallery/images/fullres/Wasteland.png and /dev/null differ
diff --git a/gallery/images/fullres/academy_ruins (1).png b/gallery/images/fullres/academy_ruins (1).png
deleted file mode 100644
index 363fd418..00000000
Binary files a/gallery/images/fullres/academy_ruins (1).png and /dev/null differ
diff --git a/gallery/images/fullres/academy_ruins (2).png b/gallery/images/fullres/academy_ruins (2).png
deleted file mode 100644
index 186e25f3..00000000
Binary files a/gallery/images/fullres/academy_ruins (2).png and /dev/null differ
diff --git a/gallery/images/fullres/academy_ruins (3).png b/gallery/images/fullres/academy_ruins (3).png
deleted file mode 100644
index 0daf9975..00000000
Binary files a/gallery/images/fullres/academy_ruins (3).png and /dev/null differ
diff --git a/gallery/images/fullres/academy_ruins.png b/gallery/images/fullres/academy_ruins.png
deleted file mode 100644
index 6052160e..00000000
Binary files a/gallery/images/fullres/academy_ruins.png and /dev/null differ
diff --git a/gallery/images/fullres/animar,_soul_of_elements.png b/gallery/images/fullres/animar,_soul_of_elements.png
deleted file mode 100644
index 70903d46..00000000
Binary files a/gallery/images/fullres/animar,_soul_of_elements.png and /dev/null differ
diff --git a/gallery/images/fullres/arahbo, roar of the world (griffin, rambunctious boyo).png b/gallery/images/fullres/arahbo, roar of the world (griffin, rambunctious boyo).png
deleted file mode 100644
index 49a3d7df..00000000
Binary files a/gallery/images/fullres/arahbo, roar of the world (griffin, rambunctious boyo).png and /dev/null differ
diff --git a/gallery/images/fullres/arcane_signet.png b/gallery/images/fullres/arcane_signet.png
deleted file mode 100644
index 22026aac..00000000
Binary files a/gallery/images/fullres/arcane_signet.png and /dev/null differ
diff --git a/gallery/images/fullres/ash_barrens (1).png b/gallery/images/fullres/ash_barrens (1).png
deleted file mode 100644
index 6f627123..00000000
Binary files a/gallery/images/fullres/ash_barrens (1).png and /dev/null differ
diff --git a/gallery/images/fullres/ash_barrens.png b/gallery/images/fullres/ash_barrens.png
deleted file mode 100644
index fcf039b7..00000000
Binary files a/gallery/images/fullres/ash_barrens.png and /dev/null differ
diff --git a/gallery/images/fullres/ashnod's_altar.png b/gallery/images/fullres/ashnod's_altar.png
deleted file mode 100644
index a8183459..00000000
Binary files a/gallery/images/fullres/ashnod's_altar.png and /dev/null differ
diff --git a/gallery/images/fullres/aven_mindcensor.png b/gallery/images/fullres/aven_mindcensor.png
deleted file mode 100644
index fd5cf785..00000000
Binary files a/gallery/images/fullres/aven_mindcensor.png and /dev/null differ
diff --git a/gallery/images/fullres/avenger_of_zendikar.png b/gallery/images/fullres/avenger_of_zendikar.png
deleted file mode 100644
index bb1584e4..00000000
Binary files a/gallery/images/fullres/avenger_of_zendikar.png and /dev/null differ
diff --git a/gallery/images/fullres/azorius_signet.png b/gallery/images/fullres/azorius_signet.png
deleted file mode 100644
index 3f2ec0d1..00000000
Binary files a/gallery/images/fullres/azorius_signet.png and /dev/null differ
diff --git a/gallery/images/fullres/band_of_brushwaggs.png b/gallery/images/fullres/band_of_brushwaggs.png
deleted file mode 100644
index 72b29cfc..00000000
Binary files a/gallery/images/fullres/band_of_brushwaggs.png and /dev/null differ
diff --git a/gallery/images/fullres/beastmaster_ascension.png b/gallery/images/fullres/beastmaster_ascension.png
deleted file mode 100644
index d33ea503..00000000
Binary files a/gallery/images/fullres/beastmaster_ascension.png and /dev/null differ
diff --git a/gallery/images/fullres/blade_of_selves.png b/gallery/images/fullres/blade_of_selves.png
deleted file mode 100644
index b3bc6a87..00000000
Binary files a/gallery/images/fullres/blade_of_selves.png and /dev/null differ
diff --git a/gallery/images/fullres/blood_artist.png b/gallery/images/fullres/blood_artist.png
deleted file mode 100644
index d5a3bd87..00000000
Binary files a/gallery/images/fullres/blood_artist.png and /dev/null differ
diff --git a/gallery/images/fullres/blood_crypt (2).png b/gallery/images/fullres/blood_crypt (2).png
deleted file mode 100644
index 9b8935d6..00000000
Binary files a/gallery/images/fullres/blood_crypt (2).png and /dev/null differ
diff --git a/gallery/images/fullres/blood_crypt.png b/gallery/images/fullres/blood_crypt.png
deleted file mode 100644
index 71b5bf64..00000000
Binary files a/gallery/images/fullres/blood_crypt.png and /dev/null differ
diff --git a/gallery/images/fullres/blood_moon.png b/gallery/images/fullres/blood_moon.png
deleted file mode 100644
index 64fe83ff..00000000
Binary files a/gallery/images/fullres/blood_moon.png and /dev/null differ
diff --git a/gallery/images/fullres/bloodstained_mire (2).png b/gallery/images/fullres/bloodstained_mire (2).png
deleted file mode 100644
index 9775206a..00000000
Binary files a/gallery/images/fullres/bloodstained_mire (2).png and /dev/null differ
diff --git a/gallery/images/fullres/bloodstained_mire.png b/gallery/images/fullres/bloodstained_mire.png
deleted file mode 100644
index 325158f5..00000000
Binary files a/gallery/images/fullres/bloodstained_mire.png and /dev/null differ
diff --git a/gallery/images/fullres/boros_signet.png b/gallery/images/fullres/boros_signet.png
deleted file mode 100644
index 2eaaac0e..00000000
Binary files a/gallery/images/fullres/boros_signet.png and /dev/null differ
diff --git a/gallery/images/fullres/brago,_king_eternal.png b/gallery/images/fullres/brago,_king_eternal.png
deleted file mode 100644
index b8b24958..00000000
Binary files a/gallery/images/fullres/brago,_king_eternal.png and /dev/null differ
diff --git a/gallery/images/fullres/breeding_pool (2).png b/gallery/images/fullres/breeding_pool (2).png
deleted file mode 100644
index b9896012..00000000
Binary files a/gallery/images/fullres/breeding_pool (2).png and /dev/null differ
diff --git a/gallery/images/fullres/breeding_pool.png b/gallery/images/fullres/breeding_pool.png
deleted file mode 100644
index dc06f796..00000000
Binary files a/gallery/images/fullres/breeding_pool.png and /dev/null differ
diff --git a/gallery/images/fullres/buried_ruin.png b/gallery/images/fullres/buried_ruin.png
deleted file mode 100644
index 91a8bab3..00000000
Binary files a/gallery/images/fullres/buried_ruin.png and /dev/null differ
diff --git a/gallery/images/fullres/chandra's_ignition.png b/gallery/images/fullres/chandra's_ignition.png
deleted file mode 100644
index 8c05f541..00000000
Binary files a/gallery/images/fullres/chandra's_ignition.png and /dev/null differ
diff --git a/gallery/images/fullres/child of alara (creeper, child of notch).png b/gallery/images/fullres/child of alara (creeper, child of notch).png
deleted file mode 100644
index 62dba97d..00000000
Binary files a/gallery/images/fullres/child of alara (creeper, child of notch).png and /dev/null differ
diff --git a/gallery/images/fullres/chromatic_lantern.png b/gallery/images/fullres/chromatic_lantern.png
deleted file mode 100644
index f82bef6b..00000000
Binary files a/gallery/images/fullres/chromatic_lantern.png and /dev/null differ
diff --git a/gallery/images/fullres/coalition_relic.png b/gallery/images/fullres/coalition_relic.png
deleted file mode 100644
index da65d538..00000000
Binary files a/gallery/images/fullres/coalition_relic.png and /dev/null differ
diff --git a/gallery/images/fullres/command_tower (1).png b/gallery/images/fullres/command_tower (1).png
deleted file mode 100644
index 738367b8..00000000
Binary files a/gallery/images/fullres/command_tower (1).png and /dev/null differ
diff --git a/gallery/images/fullres/command_tower (2).png b/gallery/images/fullres/command_tower (2).png
deleted file mode 100644
index 0dd03769..00000000
Binary files a/gallery/images/fullres/command_tower (2).png and /dev/null differ
diff --git a/gallery/images/fullres/command_tower.png b/gallery/images/fullres/command_tower.png
deleted file mode 100644
index 697388df..00000000
Binary files a/gallery/images/fullres/command_tower.png and /dev/null differ
diff --git a/gallery/images/fullres/council's judgment (who is the impostor).png b/gallery/images/fullres/council's judgment (who is the impostor).png
deleted file mode 100644
index 83186c25..00000000
Binary files a/gallery/images/fullres/council's judgment (who is the impostor).png and /dev/null differ
diff --git a/gallery/images/fullres/craterhoof_behemoth.png b/gallery/images/fullres/craterhoof_behemoth.png
deleted file mode 100644
index d245106d..00000000
Binary files a/gallery/images/fullres/craterhoof_behemoth.png and /dev/null differ
diff --git a/gallery/images/fullres/cryptolith_rite.png b/gallery/images/fullres/cryptolith_rite.png
deleted file mode 100644
index 106ab16b..00000000
Binary files a/gallery/images/fullres/cryptolith_rite.png and /dev/null differ
diff --git a/gallery/images/fullres/culling_the_weak.png b/gallery/images/fullres/culling_the_weak.png
deleted file mode 100644
index 89d4e363..00000000
Binary files a/gallery/images/fullres/culling_the_weak.png and /dev/null differ
diff --git a/gallery/images/fullres/cyclonic_rift.png b/gallery/images/fullres/cyclonic_rift.png
deleted file mode 100644
index 9573dbaf..00000000
Binary files a/gallery/images/fullres/cyclonic_rift.png and /dev/null differ
diff --git a/gallery/images/fullres/darksteel plate (aang's_epic_armor).png b/gallery/images/fullres/darksteel plate (aang's_epic_armor).png
deleted file mode 100644
index 73f30ffe..00000000
Binary files a/gallery/images/fullres/darksteel plate (aang's_epic_armor).png and /dev/null differ
diff --git a/gallery/images/fullres/darksteel reactor (the reactor).png b/gallery/images/fullres/darksteel reactor (the reactor).png
deleted file mode 100644
index c961121b..00000000
Binary files a/gallery/images/fullres/darksteel reactor (the reactor).png and /dev/null differ
diff --git a/gallery/images/fullres/darksteel_plate.png b/gallery/images/fullres/darksteel_plate.png
deleted file mode 100644
index 4aed3efe..00000000
Binary files a/gallery/images/fullres/darksteel_plate.png and /dev/null differ
diff --git a/gallery/images/fullres/deadeye_navigator .png b/gallery/images/fullres/deadeye_navigator .png
deleted file mode 100644
index e10664a3..00000000
Binary files a/gallery/images/fullres/deadeye_navigator .png and /dev/null differ
diff --git a/gallery/images/fullres/demonic_tutor (2).png b/gallery/images/fullres/demonic_tutor (2).png
deleted file mode 100644
index 92ef49de..00000000
Binary files a/gallery/images/fullres/demonic_tutor (2).png and /dev/null differ
diff --git a/gallery/images/fullres/demonic_tutor.png b/gallery/images/fullres/demonic_tutor.png
deleted file mode 100644
index 9142aca1..00000000
Binary files a/gallery/images/fullres/demonic_tutor.png and /dev/null differ
diff --git a/gallery/images/fullres/dimir_signet (1).png b/gallery/images/fullres/dimir_signet (1).png
deleted file mode 100644
index 8444e5bc..00000000
Binary files a/gallery/images/fullres/dimir_signet (1).png and /dev/null differ
diff --git a/gallery/images/fullres/dimir_signet.png b/gallery/images/fullres/dimir_signet.png
deleted file mode 100644
index ac813827..00000000
Binary files a/gallery/images/fullres/dimir_signet.png and /dev/null differ
diff --git a/gallery/images/fullres/dolmen_gate.png b/gallery/images/fullres/dolmen_gate.png
deleted file mode 100644
index 0e14927a..00000000
Binary files a/gallery/images/fullres/dolmen_gate.png and /dev/null differ
diff --git a/gallery/images/fullres/doubling_season.png b/gallery/images/fullres/doubling_season.png
deleted file mode 100644
index 5a8eb3c8..00000000
Binary files a/gallery/images/fullres/doubling_season.png and /dev/null differ
diff --git a/gallery/images/fullres/dryad_of_the_ilysian_grove (2).png b/gallery/images/fullres/dryad_of_the_ilysian_grove (2).png
deleted file mode 100644
index 285b133d..00000000
Binary files a/gallery/images/fullres/dryad_of_the_ilysian_grove (2).png and /dev/null differ
diff --git a/gallery/images/fullres/dryad_of_the_ilysian_grove.png b/gallery/images/fullres/dryad_of_the_ilysian_grove.png
deleted file mode 100644
index 73279700..00000000
Binary files a/gallery/images/fullres/dryad_of_the_ilysian_grove.png and /dev/null differ
diff --git a/gallery/images/fullres/eladamri's_call.png b/gallery/images/fullres/eladamri's_call.png
deleted file mode 100644
index 353222ce..00000000
Binary files a/gallery/images/fullres/eladamri's_call.png and /dev/null differ
diff --git a/gallery/images/fullres/emerald_medallion.png b/gallery/images/fullres/emerald_medallion.png
deleted file mode 100644
index beca8d6f..00000000
Binary files a/gallery/images/fullres/emerald_medallion.png and /dev/null differ
diff --git a/gallery/images/fullres/emeria_angel.png b/gallery/images/fullres/emeria_angel.png
deleted file mode 100644
index 6bddbc0e..00000000
Binary files a/gallery/images/fullres/emeria_angel.png and /dev/null differ
diff --git a/gallery/images/fullres/emrakul,_the_aeons_torn.png b/gallery/images/fullres/emrakul,_the_aeons_torn.png
deleted file mode 100644
index 8bfc3d4d..00000000
Binary files a/gallery/images/fullres/emrakul,_the_aeons_torn.png and /dev/null differ
diff --git a/gallery/images/fullres/emrakul,_the_promised_end (2).png b/gallery/images/fullres/emrakul,_the_promised_end (2).png
deleted file mode 100644
index d921e2c3..00000000
Binary files a/gallery/images/fullres/emrakul,_the_promised_end (2).png and /dev/null differ
diff --git a/gallery/images/fullres/emrakul,_the_promised_end.png b/gallery/images/fullres/emrakul,_the_promised_end.png
deleted file mode 100644
index e91aba68..00000000
Binary files a/gallery/images/fullres/emrakul,_the_promised_end.png and /dev/null differ
diff --git a/gallery/images/fullres/enlightened_tutor.png b/gallery/images/fullres/enlightened_tutor.png
deleted file mode 100644
index ec303bac..00000000
Binary files a/gallery/images/fullres/enlightened_tutor.png and /dev/null differ
diff --git a/gallery/images/fullres/eternal_witness.png b/gallery/images/fullres/eternal_witness.png
deleted file mode 100644
index 7f61edda..00000000
Binary files a/gallery/images/fullres/eternal_witness.png and /dev/null differ
diff --git a/gallery/images/fullres/evacuation.png b/gallery/images/fullres/evacuation.png
deleted file mode 100644
index b2cb7ac4..00000000
Binary files a/gallery/images/fullres/evacuation.png and /dev/null differ
diff --git a/gallery/images/fullres/fabricate (1).png b/gallery/images/fullres/fabricate (1).png
deleted file mode 100644
index 178504fd..00000000
Binary files a/gallery/images/fullres/fabricate (1).png and /dev/null differ
diff --git a/gallery/images/fullres/fabricate.png b/gallery/images/fullres/fabricate.png
deleted file mode 100644
index b76fec41..00000000
Binary files a/gallery/images/fullres/fabricate.png and /dev/null differ
diff --git a/gallery/images/fullres/farseek (1).png b/gallery/images/fullres/farseek (1).png
deleted file mode 100644
index 991934cf..00000000
Binary files a/gallery/images/fullres/farseek (1).png and /dev/null differ
diff --git a/gallery/images/fullres/farseek.png b/gallery/images/fullres/farseek.png
deleted file mode 100644
index 3bccce3f..00000000
Binary files a/gallery/images/fullres/farseek.png and /dev/null differ
diff --git a/gallery/images/fullres/fellwar stone.png b/gallery/images/fullres/fellwar stone.png
deleted file mode 100644
index cb898949..00000000
Binary files a/gallery/images/fullres/fellwar stone.png and /dev/null differ
diff --git a/gallery/images/fullres/fertilid.png b/gallery/images/fullres/fertilid.png
deleted file mode 100644
index 8a6ce9d0..00000000
Binary files a/gallery/images/fullres/fertilid.png and /dev/null differ
diff --git a/gallery/images/fullres/fire_diamond.png b/gallery/images/fullres/fire_diamond.png
deleted file mode 100644
index 0228faec..00000000
Binary files a/gallery/images/fullres/fire_diamond.png and /dev/null differ
diff --git a/gallery/images/fullres/flooded_strand (2).png b/gallery/images/fullres/flooded_strand (2).png
deleted file mode 100644
index d109450b..00000000
Binary files a/gallery/images/fullres/flooded_strand (2).png and /dev/null differ
diff --git a/gallery/images/fullres/flooded_strand (3).png b/gallery/images/fullres/flooded_strand (3).png
deleted file mode 100644
index 0e314917..00000000
Binary files a/gallery/images/fullres/flooded_strand (3).png and /dev/null differ
diff --git a/gallery/images/fullres/flooded_strand.png b/gallery/images/fullres/flooded_strand.png
deleted file mode 100644
index d62e6023..00000000
Binary files a/gallery/images/fullres/flooded_strand.png and /dev/null differ
diff --git a/gallery/images/fullres/force_of_vigor.png b/gallery/images/fullres/force_of_vigor.png
deleted file mode 100644
index f20137cf..00000000
Binary files a/gallery/images/fullres/force_of_vigor.png and /dev/null differ
diff --git a/gallery/images/fullres/forest.png b/gallery/images/fullres/forest.png
deleted file mode 100644
index a965cef9..00000000
Binary files a/gallery/images/fullres/forest.png and /dev/null differ
diff --git a/gallery/images/fullres/gaea's_cradle (1).png b/gallery/images/fullres/gaea's_cradle (1).png
deleted file mode 100644
index 77053cd6..00000000
Binary files a/gallery/images/fullres/gaea's_cradle (1).png and /dev/null differ
diff --git a/gallery/images/fullres/gaea's_cradle (2).png b/gallery/images/fullres/gaea's_cradle (2).png
deleted file mode 100644
index 51dab1d0..00000000
Binary files a/gallery/images/fullres/gaea's_cradle (2).png and /dev/null differ
diff --git a/gallery/images/fullres/gaea's_cradle (3).png b/gallery/images/fullres/gaea's_cradle (3).png
deleted file mode 100644
index e7f24836..00000000
Binary files a/gallery/images/fullres/gaea's_cradle (3).png and /dev/null differ
diff --git a/gallery/images/fullres/gaea's_cradle.png b/gallery/images/fullres/gaea's_cradle.png
deleted file mode 100644
index ff65ee2d..00000000
Binary files a/gallery/images/fullres/gaea's_cradle.png and /dev/null differ
diff --git a/gallery/images/fullres/gavi_nest_warden (gavin verhey).png b/gallery/images/fullres/gavi_nest_warden (gavin verhey).png
deleted file mode 100644
index 91689da4..00000000
Binary files a/gallery/images/fullres/gavi_nest_warden (gavin verhey).png and /dev/null differ
diff --git a/gallery/images/fullres/generous_gift.png b/gallery/images/fullres/generous_gift.png
deleted file mode 100644
index 9334207d..00000000
Binary files a/gallery/images/fullres/generous_gift.png and /dev/null differ
diff --git a/gallery/images/fullres/gerrard,_weatherlight_hero (malcolm reynolds).png b/gallery/images/fullres/gerrard,_weatherlight_hero (malcolm reynolds).png
deleted file mode 100644
index d7c757cf..00000000
Binary files a/gallery/images/fullres/gerrard,_weatherlight_hero (malcolm reynolds).png and /dev/null differ
diff --git a/gallery/images/fullres/gilded_lotus.png b/gallery/images/fullres/gilded_lotus.png
deleted file mode 100644
index e1d8e6cd..00000000
Binary files a/gallery/images/fullres/gilded_lotus.png and /dev/null differ
diff --git a/gallery/images/fullres/goblin_bombardment.png b/gallery/images/fullres/goblin_bombardment.png
deleted file mode 100644
index 461129fb..00000000
Binary files a/gallery/images/fullres/goblin_bombardment.png and /dev/null differ
diff --git a/gallery/images/fullres/godless_shrine (2).png b/gallery/images/fullres/godless_shrine (2).png
deleted file mode 100644
index f725a90c..00000000
Binary files a/gallery/images/fullres/godless_shrine (2).png and /dev/null differ
diff --git a/gallery/images/fullres/godless_shrine.png b/gallery/images/fullres/godless_shrine.png
deleted file mode 100644
index 56abab22..00000000
Binary files a/gallery/images/fullres/godless_shrine.png and /dev/null differ
diff --git a/gallery/images/fullres/golgari_signet (1).png b/gallery/images/fullres/golgari_signet (1).png
deleted file mode 100644
index fd1250c5..00000000
Binary files a/gallery/images/fullres/golgari_signet (1).png and /dev/null differ
diff --git a/gallery/images/fullres/golgari_signet.png b/gallery/images/fullres/golgari_signet.png
deleted file mode 100644
index a096c328..00000000
Binary files a/gallery/images/fullres/golgari_signet.png and /dev/null differ
diff --git a/gallery/images/fullres/growing_rites_of_itlimoc.png b/gallery/images/fullres/growing_rites_of_itlimoc.png
deleted file mode 100644
index bb8bd661..00000000
Binary files a/gallery/images/fullres/growing_rites_of_itlimoc.png and /dev/null differ
diff --git a/gallery/images/fullres/gruul_signet.png b/gallery/images/fullres/gruul_signet.png
deleted file mode 100644
index d2408951..00000000
Binary files a/gallery/images/fullres/gruul_signet.png and /dev/null differ
diff --git a/gallery/images/fullres/hall_of_heliod's_generosity.png b/gallery/images/fullres/hall_of_heliod's_generosity.png
deleted file mode 100644
index 4a45a552..00000000
Binary files a/gallery/images/fullres/hall_of_heliod's_generosity.png and /dev/null differ
diff --git a/gallery/images/fullres/hallowed_fountain (2).png b/gallery/images/fullres/hallowed_fountain (2).png
deleted file mode 100644
index 378ac71f..00000000
Binary files a/gallery/images/fullres/hallowed_fountain (2).png and /dev/null differ
diff --git a/gallery/images/fullres/hallowed_fountain.png b/gallery/images/fullres/hallowed_fountain.png
deleted file mode 100644
index 1b47118e..00000000
Binary files a/gallery/images/fullres/hallowed_fountain.png and /dev/null differ
diff --git a/gallery/images/fullres/hammer_of_nazahn.png b/gallery/images/fullres/hammer_of_nazahn.png
deleted file mode 100644
index 803aafc6..00000000
Binary files a/gallery/images/fullres/hammer_of_nazahn.png and /dev/null differ
diff --git a/gallery/images/fullres/helm_of_awakening.png b/gallery/images/fullres/helm_of_awakening.png
deleted file mode 100644
index a92f4e6a..00000000
Binary files a/gallery/images/fullres/helm_of_awakening.png and /dev/null differ
diff --git a/gallery/images/fullres/helm_of_the_host.png b/gallery/images/fullres/helm_of_the_host.png
deleted file mode 100644
index f06e52b9..00000000
Binary files a/gallery/images/fullres/helm_of_the_host.png and /dev/null differ
diff --git a/gallery/images/fullres/idyllic_tutor.png b/gallery/images/fullres/idyllic_tutor.png
deleted file mode 100644
index 2f98f53e..00000000
Binary files a/gallery/images/fullres/idyllic_tutor.png and /dev/null differ
diff --git a/gallery/images/fullres/intruder_alarm.png b/gallery/images/fullres/intruder_alarm.png
deleted file mode 100644
index 2314e19a..00000000
Binary files a/gallery/images/fullres/intruder_alarm.png and /dev/null differ
diff --git a/gallery/images/fullres/inventors'_fair.png b/gallery/images/fullres/inventors'_fair.png
deleted file mode 100644
index 8cdc9136..00000000
Binary files a/gallery/images/fullres/inventors'_fair.png and /dev/null differ
diff --git a/gallery/images/fullres/island.png b/gallery/images/fullres/island.png
deleted file mode 100644
index e231a59d..00000000
Binary files a/gallery/images/fullres/island.png and /dev/null differ
diff --git a/gallery/images/fullres/izzet_signet.png b/gallery/images/fullres/izzet_signet.png
deleted file mode 100644
index 8841cac5..00000000
Binary files a/gallery/images/fullres/izzet_signet.png and /dev/null differ
diff --git a/gallery/images/fullres/jace, mirror mage (double_identity).png b/gallery/images/fullres/jace, mirror mage (double_identity).png
deleted file mode 100644
index cc4d5bce..00000000
Binary files a/gallery/images/fullres/jace, mirror mage (double_identity).png and /dev/null differ
diff --git a/gallery/images/fullres/jhoira,_weatherlight_captain.png b/gallery/images/fullres/jhoira,_weatherlight_captain.png
deleted file mode 100644
index 67808086..00000000
Binary files a/gallery/images/fullres/jhoira,_weatherlight_captain.png and /dev/null differ
diff --git a/gallery/images/fullres/kaheera, the orphanguard (katniss, friend to all).png b/gallery/images/fullres/kaheera, the orphanguard (katniss, friend to all).png
deleted file mode 100644
index 8da9be8a..00000000
Binary files a/gallery/images/fullres/kaheera, the orphanguard (katniss, friend to all).png and /dev/null differ
diff --git a/gallery/images/fullres/kalamax,_the_stormsire.png b/gallery/images/fullres/kalamax,_the_stormsire.png
deleted file mode 100644
index 735d2a9d..00000000
Binary files a/gallery/images/fullres/kalamax,_the_stormsire.png and /dev/null differ
diff --git a/gallery/images/fullres/karn's_bastion.png b/gallery/images/fullres/karn's_bastion.png
deleted file mode 100644
index 2eb47beb..00000000
Binary files a/gallery/images/fullres/karn's_bastion.png and /dev/null differ
diff --git a/gallery/images/fullres/keruga, the macrosage (jabba_the_hutt,_crime_lord).png b/gallery/images/fullres/keruga, the macrosage (jabba_the_hutt,_crime_lord).png
deleted file mode 100644
index 0d62acab..00000000
Binary files a/gallery/images/fullres/keruga, the macrosage (jabba_the_hutt,_crime_lord).png and /dev/null differ
diff --git a/gallery/images/fullres/kozilek,_butcher_of_truth (2).png b/gallery/images/fullres/kozilek,_butcher_of_truth (2).png
deleted file mode 100644
index 6e168cf2..00000000
Binary files a/gallery/images/fullres/kozilek,_butcher_of_truth (2).png and /dev/null differ
diff --git a/gallery/images/fullres/kozilek,_butcher_of_truth.png b/gallery/images/fullres/kozilek,_butcher_of_truth.png
deleted file mode 100644
index e41206d7..00000000
Binary files a/gallery/images/fullres/kozilek,_butcher_of_truth.png and /dev/null differ
diff --git a/gallery/images/fullres/kozilek,_the_great_distortion (saitama).png b/gallery/images/fullres/kozilek,_the_great_distortion (saitama).png
deleted file mode 100644
index dd386636..00000000
Binary files a/gallery/images/fullres/kozilek,_the_great_distortion (saitama).png and /dev/null differ
diff --git a/gallery/images/fullres/kozilek,_the_great_distortion.png b/gallery/images/fullres/kozilek,_the_great_distortion.png
deleted file mode 100644
index 71b75db8..00000000
Binary files a/gallery/images/fullres/kozilek,_the_great_distortion.png and /dev/null differ
diff --git a/gallery/images/fullres/life_from_the_loam.png b/gallery/images/fullres/life_from_the_loam.png
deleted file mode 100644
index 86345959..00000000
Binary files a/gallery/images/fullres/life_from_the_loam.png and /dev/null differ
diff --git a/gallery/images/fullres/lightning_greaves.png b/gallery/images/fullres/lightning_greaves.png
deleted file mode 100644
index b7a62dab..00000000
Binary files a/gallery/images/fullres/lightning_greaves.png and /dev/null differ
diff --git a/gallery/images/fullres/liliana's_caress.png b/gallery/images/fullres/liliana's_caress.png
deleted file mode 100644
index c725bf38..00000000
Binary files a/gallery/images/fullres/liliana's_caress.png and /dev/null differ
diff --git a/gallery/images/fullres/lotus_petal (1).png b/gallery/images/fullres/lotus_petal (1).png
deleted file mode 100644
index ac4af3e9..00000000
Binary files a/gallery/images/fullres/lotus_petal (1).png and /dev/null differ
diff --git a/gallery/images/fullres/lotus_petal.png b/gallery/images/fullres/lotus_petal.png
deleted file mode 100644
index c3eda65f..00000000
Binary files a/gallery/images/fullres/lotus_petal.png and /dev/null differ
diff --git a/gallery/images/fullres/mana_confluence (2).png b/gallery/images/fullres/mana_confluence (2).png
deleted file mode 100644
index 6d650c9e..00000000
Binary files a/gallery/images/fullres/mana_confluence (2).png and /dev/null differ
diff --git a/gallery/images/fullres/mana_confluence.png b/gallery/images/fullres/mana_confluence.png
deleted file mode 100644
index 820f0ddc..00000000
Binary files a/gallery/images/fullres/mana_confluence.png and /dev/null differ
diff --git a/gallery/images/fullres/manascape_refractor.png b/gallery/images/fullres/manascape_refractor.png
deleted file mode 100644
index b0e09645..00000000
Binary files a/gallery/images/fullres/manascape_refractor.png and /dev/null differ
diff --git a/gallery/images/fullres/maze_of_ith (the mines of moria).png b/gallery/images/fullres/maze_of_ith (the mines of moria).png
deleted file mode 100644
index b799f15a..00000000
Binary files a/gallery/images/fullres/maze_of_ith (the mines of moria).png and /dev/null differ
diff --git a/gallery/images/fullres/maze_of_ith.png b/gallery/images/fullres/maze_of_ith.png
deleted file mode 100644
index 9a9babbc..00000000
Binary files a/gallery/images/fullres/maze_of_ith.png and /dev/null differ
diff --git a/gallery/images/fullres/merciless eviction (not the impostor...).png b/gallery/images/fullres/merciless eviction (not the impostor...).png
deleted file mode 100644
index feaedae3..00000000
Binary files a/gallery/images/fullres/merciless eviction (not the impostor...).png and /dev/null differ
diff --git a/gallery/images/fullres/metallic_mimic.png b/gallery/images/fullres/metallic_mimic.png
deleted file mode 100644
index 142fc0da..00000000
Binary files a/gallery/images/fullres/metallic_mimic.png and /dev/null differ
diff --git a/gallery/images/fullres/moss_diamond.png b/gallery/images/fullres/moss_diamond.png
deleted file mode 100644
index 17286fc9..00000000
Binary files a/gallery/images/fullres/moss_diamond.png and /dev/null differ
diff --git a/gallery/images/fullres/mountain.png b/gallery/images/fullres/mountain.png
deleted file mode 100644
index 26208db6..00000000
Binary files a/gallery/images/fullres/mountain.png and /dev/null differ
diff --git a/gallery/images/fullres/mox_opal.png b/gallery/images/fullres/mox_opal.png
deleted file mode 100644
index 9030b62d..00000000
Binary files a/gallery/images/fullres/mox_opal.png and /dev/null differ
diff --git a/gallery/images/fullres/murder.png b/gallery/images/fullres/murder.png
deleted file mode 100644
index 5fe543a3..00000000
Binary files a/gallery/images/fullres/murder.png and /dev/null differ
diff --git a/gallery/images/fullres/mystic_remora.png b/gallery/images/fullres/mystic_remora.png
deleted file mode 100644
index 36fffdda..00000000
Binary files a/gallery/images/fullres/mystic_remora.png and /dev/null differ
diff --git a/gallery/images/fullres/negan,_the_cold_blooded (aurra_sing,_bounty_hunter).png b/gallery/images/fullres/negan,_the_cold_blooded (aurra_sing,_bounty_hunter).png
deleted file mode 100644
index c2be83d9..00000000
Binary files a/gallery/images/fullres/negan,_the_cold_blooded (aurra_sing,_bounty_hunter).png and /dev/null differ
diff --git a/gallery/images/fullres/negan,_the_cold_blooded (dryden_vos,_crime_lord).png b/gallery/images/fullres/negan,_the_cold_blooded (dryden_vos,_crime_lord).png
deleted file mode 100644
index b997b3df..00000000
Binary files a/gallery/images/fullres/negan,_the_cold_blooded (dryden_vos,_crime_lord).png and /dev/null differ
diff --git a/gallery/images/fullres/nesting_grounds.png b/gallery/images/fullres/nesting_grounds.png
deleted file mode 100644
index 34fbfdd1..00000000
Binary files a/gallery/images/fullres/nesting_grounds.png and /dev/null differ
diff --git a/gallery/images/fullres/niv-mizzet, parun (nivvy_m).png b/gallery/images/fullres/niv-mizzet, parun (nivvy_m).png
deleted file mode 100644
index ad244a5f..00000000
Binary files a/gallery/images/fullres/niv-mizzet, parun (nivvy_m).png and /dev/null differ
diff --git a/gallery/images/fullres/nykthos,_shrine_to_nyx (1).png b/gallery/images/fullres/nykthos,_shrine_to_nyx (1).png
deleted file mode 100644
index cb8bc2a1..00000000
Binary files a/gallery/images/fullres/nykthos,_shrine_to_nyx (1).png and /dev/null differ
diff --git a/gallery/images/fullres/nykthos,_shrine_to_nyx.png b/gallery/images/fullres/nykthos,_shrine_to_nyx.png
deleted file mode 100644
index 35e973f7..00000000
Binary files a/gallery/images/fullres/nykthos,_shrine_to_nyx.png and /dev/null differ
diff --git a/gallery/images/fullres/oona,_queen_of_the_fae.png b/gallery/images/fullres/oona,_queen_of_the_fae.png
deleted file mode 100644
index b71e9aea..00000000
Binary files a/gallery/images/fullres/oona,_queen_of_the_fae.png and /dev/null differ
diff --git a/gallery/images/fullres/opt.png b/gallery/images/fullres/opt.png
deleted file mode 100644
index 38986680..00000000
Binary files a/gallery/images/fullres/opt.png and /dev/null differ
diff --git a/gallery/images/fullres/orzhov_signet.png b/gallery/images/fullres/orzhov_signet.png
deleted file mode 100644
index 811f0576..00000000
Binary files a/gallery/images/fullres/orzhov_signet.png and /dev/null differ
diff --git a/gallery/images/fullres/overgrown_tomb (2).png b/gallery/images/fullres/overgrown_tomb (2).png
deleted file mode 100644
index 1ebfa912..00000000
Binary files a/gallery/images/fullres/overgrown_tomb (2).png and /dev/null differ
diff --git a/gallery/images/fullres/overgrown_tomb.png b/gallery/images/fullres/overgrown_tomb.png
deleted file mode 100644
index 079f2695..00000000
Binary files a/gallery/images/fullres/overgrown_tomb.png and /dev/null differ
diff --git a/gallery/images/fullres/panharmonicon.png b/gallery/images/fullres/panharmonicon.png
deleted file mode 100644
index 6e291a76..00000000
Binary files a/gallery/images/fullres/panharmonicon.png and /dev/null differ
diff --git a/gallery/images/fullres/phyrexian_altar (1).png b/gallery/images/fullres/phyrexian_altar (1).png
deleted file mode 100644
index 73d2c87e..00000000
Binary files a/gallery/images/fullres/phyrexian_altar (1).png and /dev/null differ
diff --git a/gallery/images/fullres/phyrexian_altar.png b/gallery/images/fullres/phyrexian_altar.png
deleted file mode 100644
index b1d52236..00000000
Binary files a/gallery/images/fullres/phyrexian_altar.png and /dev/null differ
diff --git a/gallery/images/fullres/phyrexian_metamorph.png b/gallery/images/fullres/phyrexian_metamorph.png
deleted file mode 100644
index 865d0334..00000000
Binary files a/gallery/images/fullres/phyrexian_metamorph.png and /dev/null differ
diff --git a/gallery/images/fullres/polluted_delta.png b/gallery/images/fullres/polluted_delta.png
deleted file mode 100644
index a6a73c14..00000000
Binary files a/gallery/images/fullres/polluted_delta.png and /dev/null differ
diff --git a/gallery/images/fullres/predator,_flagship (reaver cutter).png b/gallery/images/fullres/predator,_flagship (reaver cutter).png
deleted file mode 100644
index e5a3b5e9..00000000
Binary files a/gallery/images/fullres/predator,_flagship (reaver cutter).png and /dev/null differ
diff --git a/gallery/images/fullres/propaganda.png b/gallery/images/fullres/propaganda.png
deleted file mode 100644
index dbc246e7..00000000
Binary files a/gallery/images/fullres/propaganda.png and /dev/null differ
diff --git a/gallery/images/fullres/rakdos_signet.png b/gallery/images/fullres/rakdos_signet.png
deleted file mode 100644
index 7c367f6a..00000000
Binary files a/gallery/images/fullres/rakdos_signet.png and /dev/null differ
diff --git a/gallery/images/fullres/ramos, dragon engine (mechagodzilla,_kaiju_engine).png b/gallery/images/fullres/ramos, dragon engine (mechagodzilla,_kaiju_engine).png
deleted file mode 100644
index 07304645..00000000
Binary files a/gallery/images/fullres/ramos, dragon engine (mechagodzilla,_kaiju_engine).png and /dev/null differ
diff --git a/gallery/images/fullres/ramos, dragon engine (super_mechagodzilla,_kaiju_engine).png b/gallery/images/fullres/ramos, dragon engine (super_mechagodzilla,_kaiju_engine).png
deleted file mode 100644
index d0cce67b..00000000
Binary files a/gallery/images/fullres/ramos, dragon engine (super_mechagodzilla,_kaiju_engine).png and /dev/null differ
diff --git a/gallery/images/fullres/reflecting_pool.png b/gallery/images/fullres/reflecting_pool.png
deleted file mode 100644
index e312037d..00000000
Binary files a/gallery/images/fullres/reflecting_pool.png and /dev/null differ
diff --git a/gallery/images/fullres/reliquary_tower (1).png b/gallery/images/fullres/reliquary_tower (1).png
deleted file mode 100644
index 656abdf6..00000000
Binary files a/gallery/images/fullres/reliquary_tower (1).png and /dev/null differ
diff --git a/gallery/images/fullres/reliquary_tower.png b/gallery/images/fullres/reliquary_tower.png
deleted file mode 100644
index a375c5fd..00000000
Binary files a/gallery/images/fullres/reliquary_tower.png and /dev/null differ
diff --git a/gallery/images/fullres/ren and seri, inseperable (catdog,_inseperable).png b/gallery/images/fullres/ren and seri, inseperable (catdog,_inseperable).png
deleted file mode 100644
index a80bec70..00000000
Binary files a/gallery/images/fullres/ren and seri, inseperable (catdog,_inseperable).png and /dev/null differ
diff --git a/gallery/images/fullres/return_of_the_wildspeaker.png b/gallery/images/fullres/return_of_the_wildspeaker.png
deleted file mode 100644
index 88f7a902..00000000
Binary files a/gallery/images/fullres/return_of_the_wildspeaker.png and /dev/null differ
diff --git a/gallery/images/fullres/return_to_dust.png b/gallery/images/fullres/return_to_dust.png
deleted file mode 100644
index 59d695e4..00000000
Binary files a/gallery/images/fullres/return_to_dust.png and /dev/null differ
diff --git a/gallery/images/fullres/revel_in_riches.png b/gallery/images/fullres/revel_in_riches.png
deleted file mode 100644
index edc0204c..00000000
Binary files a/gallery/images/fullres/revel_in_riches.png and /dev/null differ
diff --git a/gallery/images/fullres/rhystic_study (2).png b/gallery/images/fullres/rhystic_study (2).png
deleted file mode 100644
index 4e4c7be8..00000000
Binary files a/gallery/images/fullres/rhystic_study (2).png and /dev/null differ
diff --git a/gallery/images/fullres/rhystic_study.png b/gallery/images/fullres/rhystic_study.png
deleted file mode 100644
index dd240aad..00000000
Binary files a/gallery/images/fullres/rhystic_study.png and /dev/null differ
diff --git a/gallery/images/fullres/rick, steadfast leader (odric, steadfast leader) (1).png b/gallery/images/fullres/rick, steadfast leader (odric, steadfast leader) (1).png
deleted file mode 100644
index 25df717f..00000000
Binary files a/gallery/images/fullres/rick, steadfast leader (odric, steadfast leader) (1).png and /dev/null differ
diff --git a/gallery/images/fullres/rick, steadfast leader (odric, steadfast leader).png b/gallery/images/fullres/rick, steadfast leader (odric, steadfast leader).png
deleted file mode 100644
index c679c97e..00000000
Binary files a/gallery/images/fullres/rick, steadfast leader (odric, steadfast leader).png and /dev/null differ
diff --git a/gallery/images/fullres/rick, steadfast leader (thalia, steadfast leader).png b/gallery/images/fullres/rick, steadfast leader (thalia, steadfast leader).png
deleted file mode 100644
index fb19b159..00000000
Binary files a/gallery/images/fullres/rick, steadfast leader (thalia, steadfast leader).png and /dev/null differ
diff --git a/gallery/images/fullres/rogue's passage (the vent).png b/gallery/images/fullres/rogue's passage (the vent).png
deleted file mode 100644
index c199648d..00000000
Binary files a/gallery/images/fullres/rogue's passage (the vent).png and /dev/null differ
diff --git a/gallery/images/fullres/rogue's_passage.png b/gallery/images/fullres/rogue's_passage.png
deleted file mode 100644
index cc04b3e1..00000000
Binary files a/gallery/images/fullres/rogue's_passage.png and /dev/null differ
diff --git a/gallery/images/fullres/ruby_medallion.png b/gallery/images/fullres/ruby_medallion.png
deleted file mode 100644
index 4ccb3f09..00000000
Binary files a/gallery/images/fullres/ruby_medallion.png and /dev/null differ
diff --git a/gallery/images/fullres/rune-scarred_demon.png b/gallery/images/fullres/rune-scarred_demon.png
deleted file mode 100644
index 5c6d1b09..00000000
Binary files a/gallery/images/fullres/rune-scarred_demon.png and /dev/null differ
diff --git a/gallery/images/fullres/sacred_foundry (2).png b/gallery/images/fullres/sacred_foundry (2).png
deleted file mode 100644
index 4c909605..00000000
Binary files a/gallery/images/fullres/sacred_foundry (2).png and /dev/null differ
diff --git a/gallery/images/fullres/sacred_foundry.png b/gallery/images/fullres/sacred_foundry.png
deleted file mode 100644
index 081bfd9c..00000000
Binary files a/gallery/images/fullres/sacred_foundry.png and /dev/null differ
diff --git a/gallery/images/fullres/sakura_tribe_elder (baby yoda, the innocent).png b/gallery/images/fullres/sakura_tribe_elder (baby yoda, the innocent).png
deleted file mode 100644
index 248cf2a1..00000000
Binary files a/gallery/images/fullres/sakura_tribe_elder (baby yoda, the innocent).png and /dev/null differ
diff --git a/gallery/images/fullres/sea_gate,_reborn.png b/gallery/images/fullres/sea_gate,_reborn.png
deleted file mode 100644
index 9d2e0906..00000000
Binary files a/gallery/images/fullres/sea_gate,_reborn.png and /dev/null differ
diff --git a/gallery/images/fullres/sea_gate_restoration.png b/gallery/images/fullres/sea_gate_restoration.png
deleted file mode 100644
index 5e5c1ae3..00000000
Binary files a/gallery/images/fullres/sea_gate_restoration.png and /dev/null differ
diff --git a/gallery/images/fullres/seedborn_muse.png b/gallery/images/fullres/seedborn_muse.png
deleted file mode 100644
index 63d97cde..00000000
Binary files a/gallery/images/fullres/seedborn_muse.png and /dev/null differ
diff --git a/gallery/images/fullres/sensei's_divining_top.png b/gallery/images/fullres/sensei's_divining_top.png
deleted file mode 100644
index 03acb01e..00000000
Binary files a/gallery/images/fullres/sensei's_divining_top.png and /dev/null differ
diff --git a/gallery/images/fullres/show_and_tell.png b/gallery/images/fullres/show_and_tell.png
deleted file mode 100644
index 604886f3..00000000
Binary files a/gallery/images/fullres/show_and_tell.png and /dev/null differ
diff --git a/gallery/images/fullres/simic_signet.png b/gallery/images/fullres/simic_signet.png
deleted file mode 100644
index e7a43a61..00000000
Binary files a/gallery/images/fullres/simic_signet.png and /dev/null differ
diff --git a/gallery/images/fullres/skullclamp.png b/gallery/images/fullres/skullclamp.png
deleted file mode 100644
index d6923b3d..00000000
Binary files a/gallery/images/fullres/skullclamp.png and /dev/null differ
diff --git a/gallery/images/fullres/smothering_tithe.png b/gallery/images/fullres/smothering_tithe.png
deleted file mode 100644
index e66e927b..00000000
Binary files a/gallery/images/fullres/smothering_tithe.png and /dev/null differ
diff --git a/gallery/images/fullres/sol_ring (2).png b/gallery/images/fullres/sol_ring (2).png
deleted file mode 100644
index 4b0a6ac4..00000000
Binary files a/gallery/images/fullres/sol_ring (2).png and /dev/null differ
diff --git a/gallery/images/fullres/sol_ring.png b/gallery/images/fullres/sol_ring.png
deleted file mode 100644
index 3a1d866a..00000000
Binary files a/gallery/images/fullres/sol_ring.png and /dev/null differ
diff --git a/gallery/images/fullres/solemn simulacrum (c-3po).png b/gallery/images/fullres/solemn simulacrum (c-3po).png
deleted file mode 100644
index d8e467cf..00000000
Binary files a/gallery/images/fullres/solemn simulacrum (c-3po).png and /dev/null differ
diff --git a/gallery/images/fullres/solemn_simulacrum (1).png b/gallery/images/fullres/solemn_simulacrum (1).png
deleted file mode 100644
index b0eae832..00000000
Binary files a/gallery/images/fullres/solemn_simulacrum (1).png and /dev/null differ
diff --git a/gallery/images/fullres/solemn_simulacrum (2).png b/gallery/images/fullres/solemn_simulacrum (2).png
deleted file mode 100644
index 933476d5..00000000
Binary files a/gallery/images/fullres/solemn_simulacrum (2).png and /dev/null differ
diff --git a/gallery/images/fullres/solemn_simulacrum.png b/gallery/images/fullres/solemn_simulacrum.png
deleted file mode 100644
index 1c6cf042..00000000
Binary files a/gallery/images/fullres/solemn_simulacrum.png and /dev/null differ
diff --git a/gallery/images/fullres/songs-of-the-damned.png b/gallery/images/fullres/songs-of-the-damned.png
deleted file mode 100644
index 9910c034..00000000
Binary files a/gallery/images/fullres/songs-of-the-damned.png and /dev/null differ
diff --git a/gallery/images/fullres/spark_double.png b/gallery/images/fullres/spark_double.png
deleted file mode 100644
index 235118b2..00000000
Binary files a/gallery/images/fullres/spark_double.png and /dev/null differ
diff --git a/gallery/images/fullres/squee's_embrace (smeagol's final embrace).png b/gallery/images/fullres/squee's_embrace (smeagol's final embrace).png
deleted file mode 100644
index 6639f439..00000000
Binary files a/gallery/images/fullres/squee's_embrace (smeagol's final embrace).png and /dev/null differ
diff --git a/gallery/images/fullres/squee's_revenge (gollum's betrayal).png b/gallery/images/fullres/squee's_revenge (gollum's betrayal).png
deleted file mode 100644
index 927ba314..00000000
Binary files a/gallery/images/fullres/squee's_revenge (gollum's betrayal).png and /dev/null differ
diff --git a/gallery/images/fullres/squee's_toy (gollum's precious).png b/gallery/images/fullres/squee's_toy (gollum's precious).png
deleted file mode 100644
index 2e59b7fa..00000000
Binary files a/gallery/images/fullres/squee's_toy (gollum's precious).png and /dev/null differ
diff --git a/gallery/images/fullres/squee,_goblin_nabob (smeagol, unlikely ally).png b/gallery/images/fullres/squee,_goblin_nabob (smeagol, unlikely ally).png
deleted file mode 100644
index 45417f41..00000000
Binary files a/gallery/images/fullres/squee,_goblin_nabob (smeagol, unlikely ally).png and /dev/null differ
diff --git a/gallery/images/fullres/sram, senior edificer (sokka,_veteran_combatant).png b/gallery/images/fullres/sram, senior edificer (sokka,_veteran_combatant).png
deleted file mode 100644
index 22deb49d..00000000
Binary files a/gallery/images/fullres/sram, senior edificer (sokka,_veteran_combatant).png and /dev/null differ
diff --git a/gallery/images/fullres/steam_vents (2).png b/gallery/images/fullres/steam_vents (2).png
deleted file mode 100644
index 05dde3c0..00000000
Binary files a/gallery/images/fullres/steam_vents (2).png and /dev/null differ
diff --git a/gallery/images/fullres/steam_vents.png b/gallery/images/fullres/steam_vents.png
deleted file mode 100644
index e8411626..00000000
Binary files a/gallery/images/fullres/steam_vents.png and /dev/null differ
diff --git a/gallery/images/fullres/steelshaper's_gift.png b/gallery/images/fullres/steelshaper's_gift.png
deleted file mode 100644
index e15c17d4..00000000
Binary files a/gallery/images/fullres/steelshaper's_gift.png and /dev/null differ
diff --git a/gallery/images/fullres/stomping_ground (2).png b/gallery/images/fullres/stomping_ground (2).png
deleted file mode 100644
index b1e9352d..00000000
Binary files a/gallery/images/fullres/stomping_ground (2).png and /dev/null differ
diff --git a/gallery/images/fullres/stomping_ground.png b/gallery/images/fullres/stomping_ground.png
deleted file mode 100644
index 8da0074b..00000000
Binary files a/gallery/images/fullres/stomping_ground.png and /dev/null differ
diff --git a/gallery/images/fullres/stoneforge mystic (piandao,_master_swordsman).png b/gallery/images/fullres/stoneforge mystic (piandao,_master_swordsman).png
deleted file mode 100644
index 43a63c74..00000000
Binary files a/gallery/images/fullres/stoneforge mystic (piandao,_master_swordsman).png and /dev/null differ
diff --git a/gallery/images/fullres/swamp.png b/gallery/images/fullres/swamp.png
deleted file mode 100644
index d9fd107c..00000000
Binary files a/gallery/images/fullres/swamp.png and /dev/null differ
diff --git a/gallery/images/fullres/sword_of_feast_and_famine (2).png b/gallery/images/fullres/sword_of_feast_and_famine (2).png
deleted file mode 100644
index 0986f9e3..00000000
Binary files a/gallery/images/fullres/sword_of_feast_and_famine (2).png and /dev/null differ
diff --git a/gallery/images/fullres/sword_of_feast_and_famine.png b/gallery/images/fullres/sword_of_feast_and_famine.png
deleted file mode 100644
index aba8f21e..00000000
Binary files a/gallery/images/fullres/sword_of_feast_and_famine.png and /dev/null differ
diff --git a/gallery/images/fullres/sword_of_fire_and_ice.png b/gallery/images/fullres/sword_of_fire_and_ice.png
deleted file mode 100644
index 1c07f6b0..00000000
Binary files a/gallery/images/fullres/sword_of_fire_and_ice.png and /dev/null differ
diff --git a/gallery/images/fullres/sword_of_light_and_shadow.png b/gallery/images/fullres/sword_of_light_and_shadow.png
deleted file mode 100644
index 33fea050..00000000
Binary files a/gallery/images/fullres/sword_of_light_and_shadow.png and /dev/null differ
diff --git a/gallery/images/fullres/sword_of_sinew_and_steel.png b/gallery/images/fullres/sword_of_sinew_and_steel.png
deleted file mode 100644
index d822606c..00000000
Binary files a/gallery/images/fullres/sword_of_sinew_and_steel.png and /dev/null differ
diff --git a/gallery/images/fullres/sword_of_truth_and_justice.png b/gallery/images/fullres/sword_of_truth_and_justice.png
deleted file mode 100644
index b1592b5b..00000000
Binary files a/gallery/images/fullres/sword_of_truth_and_justice.png and /dev/null differ
diff --git a/gallery/images/fullres/talisman_of_conviction.png b/gallery/images/fullres/talisman_of_conviction.png
deleted file mode 100644
index a345d2b0..00000000
Binary files a/gallery/images/fullres/talisman_of_conviction.png and /dev/null differ
diff --git a/gallery/images/fullres/talisman_of_creativity.png b/gallery/images/fullres/talisman_of_creativity.png
deleted file mode 100644
index 8956b1a5..00000000
Binary files a/gallery/images/fullres/talisman_of_creativity.png and /dev/null differ
diff --git a/gallery/images/fullres/talisman_of_curiosity.png b/gallery/images/fullres/talisman_of_curiosity.png
deleted file mode 100644
index 849a2ce3..00000000
Binary files a/gallery/images/fullres/talisman_of_curiosity.png and /dev/null differ
diff --git a/gallery/images/fullres/talisman_of_hierarchy.png b/gallery/images/fullres/talisman_of_hierarchy.png
deleted file mode 100644
index 1d970c11..00000000
Binary files a/gallery/images/fullres/talisman_of_hierarchy.png and /dev/null differ
diff --git a/gallery/images/fullres/talisman_of_resilience.png b/gallery/images/fullres/talisman_of_resilience.png
deleted file mode 100644
index d6aba0b0..00000000
Binary files a/gallery/images/fullres/talisman_of_resilience.png and /dev/null differ
diff --git a/gallery/images/fullres/teferi's protection (emergency meeting).png b/gallery/images/fullres/teferi's protection (emergency meeting).png
deleted file mode 100644
index 65daf71c..00000000
Binary files a/gallery/images/fullres/teferi's protection (emergency meeting).png and /dev/null differ
diff --git a/gallery/images/fullres/temple_garden (2).png b/gallery/images/fullres/temple_garden (2).png
deleted file mode 100644
index 356e8147..00000000
Binary files a/gallery/images/fullres/temple_garden (2).png and /dev/null differ
diff --git a/gallery/images/fullres/temple_garden.png b/gallery/images/fullres/temple_garden.png
deleted file mode 100644
index 0c9b04a7..00000000
Binary files a/gallery/images/fullres/temple_garden.png and /dev/null differ
diff --git a/gallery/images/fullres/thassa's_oracle.png b/gallery/images/fullres/thassa's_oracle.png
deleted file mode 100644
index 17748a3b..00000000
Binary files a/gallery/images/fullres/thassa's_oracle.png and /dev/null differ
diff --git a/gallery/images/fullres/the-gitrog-monster.png b/gallery/images/fullres/the-gitrog-monster.png
deleted file mode 100644
index 7b58cabd..00000000
Binary files a/gallery/images/fullres/the-gitrog-monster.png and /dev/null differ
diff --git a/gallery/images/fullres/the_ozolith.png b/gallery/images/fullres/the_ozolith.png
deleted file mode 100644
index 252275b0..00000000
Binary files a/gallery/images/fullres/the_ozolith.png and /dev/null differ
diff --git a/gallery/images/fullres/the_storm_crow.png b/gallery/images/fullres/the_storm_crow.png
deleted file mode 100644
index fc763fe0..00000000
Binary files a/gallery/images/fullres/the_storm_crow.png and /dev/null differ
diff --git a/gallery/images/fullres/thran_dynamo.png b/gallery/images/fullres/thran_dynamo.png
deleted file mode 100644
index 39855ed5..00000000
Binary files a/gallery/images/fullres/thran_dynamo.png and /dev/null differ
diff --git a/gallery/images/fullres/thriving_bluff.png b/gallery/images/fullres/thriving_bluff.png
deleted file mode 100644
index 9ca4a8d2..00000000
Binary files a/gallery/images/fullres/thriving_bluff.png and /dev/null differ
diff --git a/gallery/images/fullres/thriving_grove.png b/gallery/images/fullres/thriving_grove.png
deleted file mode 100644
index 707ed9ae..00000000
Binary files a/gallery/images/fullres/thriving_grove.png and /dev/null differ
diff --git a/gallery/images/fullres/thriving_heath.png b/gallery/images/fullres/thriving_heath.png
deleted file mode 100644
index 188f127e..00000000
Binary files a/gallery/images/fullres/thriving_heath.png and /dev/null differ
diff --git a/gallery/images/fullres/thriving_moor.png b/gallery/images/fullres/thriving_moor.png
deleted file mode 100644
index 0e5fd6e2..00000000
Binary files a/gallery/images/fullres/thriving_moor.png and /dev/null differ
diff --git a/gallery/images/fullres/thryx, the sudden storm (aquaman).png b/gallery/images/fullres/thryx, the sudden storm (aquaman).png
deleted file mode 100644
index 579ba906..00000000
Binary files a/gallery/images/fullres/thryx, the sudden storm (aquaman).png and /dev/null differ
diff --git a/gallery/images/fullres/tiana_ship's_caretaker (kaylee frye).png b/gallery/images/fullres/tiana_ship's_caretaker (kaylee frye).png
deleted file mode 100644
index e31c9e6a..00000000
Binary files a/gallery/images/fullres/tiana_ship's_caretaker (kaylee frye).png and /dev/null differ
diff --git a/gallery/images/fullres/true_conviction.png b/gallery/images/fullres/true_conviction.png
deleted file mode 100644
index 79f915c5..00000000
Binary files a/gallery/images/fullres/true_conviction.png and /dev/null differ
diff --git a/gallery/images/fullres/ulamog,_the_ceaseless_hunger.png b/gallery/images/fullres/ulamog,_the_ceaseless_hunger.png
deleted file mode 100644
index fc5c112a..00000000
Binary files a/gallery/images/fullres/ulamog,_the_ceaseless_hunger.png and /dev/null differ
diff --git a/gallery/images/fullres/ulamog,_the_infinite_gyre.png b/gallery/images/fullres/ulamog,_the_infinite_gyre.png
deleted file mode 100644
index 1f4689ce..00000000
Binary files a/gallery/images/fullres/ulamog,_the_infinite_gyre.png and /dev/null differ
diff --git a/gallery/images/fullres/valakut,_the_molten_pinnacle.png b/gallery/images/fullres/valakut,_the_molten_pinnacle.png
deleted file mode 100644
index b7d0e1d0..00000000
Binary files a/gallery/images/fullres/valakut,_the_molten_pinnacle.png and /dev/null differ
diff --git a/gallery/images/fullres/vanquisher's_banner.png b/gallery/images/fullres/vanquisher's_banner.png
deleted file mode 100644
index b4cd443d..00000000
Binary files a/gallery/images/fullres/vanquisher's_banner.png and /dev/null differ
diff --git a/gallery/images/fullres/vilis,_broker_of_blood.png b/gallery/images/fullres/vilis,_broker_of_blood.png
deleted file mode 100644
index 1f93ca42..00000000
Binary files a/gallery/images/fullres/vilis,_broker_of_blood.png and /dev/null differ
diff --git a/gallery/images/fullres/vizier_of_the_menagerie.png b/gallery/images/fullres/vizier_of_the_menagerie.png
deleted file mode 100644
index 98620b26..00000000
Binary files a/gallery/images/fullres/vizier_of_the_menagerie.png and /dev/null differ
diff --git a/gallery/images/fullres/watery_grave (2).png b/gallery/images/fullres/watery_grave (2).png
deleted file mode 100644
index 9d4833d6..00000000
Binary files a/gallery/images/fullres/watery_grave (2).png and /dev/null differ
diff --git a/gallery/images/fullres/watery_grave.png b/gallery/images/fullres/watery_grave.png
deleted file mode 100644
index 64713e7c..00000000
Binary files a/gallery/images/fullres/watery_grave.png and /dev/null differ
diff --git a/gallery/images/fullres/weatherlight (serenity).png b/gallery/images/fullres/weatherlight (serenity).png
deleted file mode 100644
index 71786cdc..00000000
Binary files a/gallery/images/fullres/weatherlight (serenity).png and /dev/null differ
diff --git a/gallery/images/fullres/whispersilk_cloak.png b/gallery/images/fullres/whispersilk_cloak.png
deleted file mode 100644
index ee0ffee3..00000000
Binary files a/gallery/images/fullres/whispersilk_cloak.png and /dev/null differ
diff --git a/gallery/images/fullres/windswept_heath (2).png b/gallery/images/fullres/windswept_heath (2).png
deleted file mode 100644
index 5add0ba3..00000000
Binary files a/gallery/images/fullres/windswept_heath (2).png and /dev/null differ
diff --git a/gallery/images/fullres/windswept_heath.png b/gallery/images/fullres/windswept_heath.png
deleted file mode 100644
index 180f3341..00000000
Binary files a/gallery/images/fullres/windswept_heath.png and /dev/null differ
diff --git a/gallery/images/fullres/wooded_foothills (1).png b/gallery/images/fullres/wooded_foothills (1).png
deleted file mode 100644
index 0a7e01dd..00000000
Binary files a/gallery/images/fullres/wooded_foothills (1).png and /dev/null differ
diff --git a/gallery/images/fullres/wooded_foothills (2).png b/gallery/images/fullres/wooded_foothills (2).png
deleted file mode 100644
index 4c28395d..00000000
Binary files a/gallery/images/fullres/wooded_foothills (2).png and /dev/null differ
diff --git a/gallery/images/fullres/wooded_foothills.png b/gallery/images/fullres/wooded_foothills.png
deleted file mode 100644
index 3a54bbf9..00000000
Binary files a/gallery/images/fullres/wooded_foothills.png and /dev/null differ
diff --git a/gallery/images/fullres/worldly_tutor.png b/gallery/images/fullres/worldly_tutor.png
deleted file mode 100644
index 7ed2aaf7..00000000
Binary files a/gallery/images/fullres/worldly_tutor.png and /dev/null differ
diff --git a/gallery/images/fullres/yarok,_the_desecrated.png b/gallery/images/fullres/yarok,_the_desecrated.png
deleted file mode 100644
index 482e77e0..00000000
Binary files a/gallery/images/fullres/yarok,_the_desecrated.png and /dev/null differ
diff --git a/gallery/images/fullres/zacama,_primal_calamity.png b/gallery/images/fullres/zacama,_primal_calamity.png
deleted file mode 100644
index 7f80089b..00000000
Binary files a/gallery/images/fullres/zacama,_primal_calamity.png and /dev/null differ
diff --git a/gallery/images/fullres/zirda, the dawnwaker (flareon).png b/gallery/images/fullres/zirda, the dawnwaker (flareon).png
deleted file mode 100644
index 3b98b9f2..00000000
Binary files a/gallery/images/fullres/zirda, the dawnwaker (flareon).png and /dev/null differ
diff --git a/gallery/images/fullres/zirda,_the_dawnwaker.png b/gallery/images/fullres/zirda,_the_dawnwaker.png
deleted file mode 100644
index 3417e70c..00000000
Binary files a/gallery/images/fullres/zirda,_the_dawnwaker.png and /dev/null differ
diff --git a/gallery/images/fullres/zurzoth,_chaos_rider.png b/gallery/images/fullres/zurzoth,_chaos_rider.png
deleted file mode 100644
index 98aa460e..00000000
Binary files a/gallery/images/fullres/zurzoth,_chaos_rider.png and /dev/null differ
diff --git a/gallery/images/preview/Agadeem's Awakening.png b/gallery/images/preview/Agadeem's Awakening.png
deleted file mode 100644
index 85287f0a..00000000
Binary files a/gallery/images/preview/Agadeem's Awakening.png and /dev/null differ
diff --git a/gallery/images/preview/Craterhoof Behemoth.png b/gallery/images/preview/Craterhoof Behemoth.png
deleted file mode 100644
index 45e82f30..00000000
Binary files a/gallery/images/preview/Craterhoof Behemoth.png and /dev/null differ
diff --git a/gallery/images/preview/Emeria's Call.png b/gallery/images/preview/Emeria's Call.png
deleted file mode 100644
index 675399c6..00000000
Binary files a/gallery/images/preview/Emeria's Call.png and /dev/null differ
diff --git a/gallery/images/preview/Expedition Map.png b/gallery/images/preview/Expedition Map.png
deleted file mode 100644
index 33bc002c..00000000
Binary files a/gallery/images/preview/Expedition Map.png and /dev/null differ
diff --git a/gallery/images/preview/Omnath, Locus of Mana.png b/gallery/images/preview/Omnath, Locus of Mana.png
deleted file mode 100644
index d0bc700a..00000000
Binary files a/gallery/images/preview/Omnath, Locus of Mana.png and /dev/null differ
diff --git a/gallery/images/preview/Opposition Agent.png b/gallery/images/preview/Opposition Agent.png
deleted file mode 100644
index 732e5371..00000000
Binary files a/gallery/images/preview/Opposition Agent.png and /dev/null differ
diff --git a/gallery/images/preview/Shatterskull Smashing.png b/gallery/images/preview/Shatterskull Smashing.png
deleted file mode 100644
index 8fc7dccd..00000000
Binary files a/gallery/images/preview/Shatterskull Smashing.png and /dev/null differ
diff --git a/gallery/images/preview/Sol Ring.png b/gallery/images/preview/Sol Ring.png
deleted file mode 100644
index ccdeb62b..00000000
Binary files a/gallery/images/preview/Sol Ring.png and /dev/null differ
diff --git a/gallery/images/preview/Turntimber Symbiosis.png b/gallery/images/preview/Turntimber Symbiosis.png
deleted file mode 100644
index 2a0d0a7f..00000000
Binary files a/gallery/images/preview/Turntimber Symbiosis.png and /dev/null differ
diff --git a/gallery/images/preview/Valakut Awakening (Mustufar's Meltdown).png b/gallery/images/preview/Valakut Awakening (Mustufar's Meltdown).png
deleted file mode 100644
index f97655a0..00000000
Binary files a/gallery/images/preview/Valakut Awakening (Mustufar's Meltdown).png and /dev/null differ
diff --git a/gallery/images/preview/Valakut Stoneforge (Mustufar Forges).png b/gallery/images/preview/Valakut Stoneforge (Mustufar Forges).png
deleted file mode 100644
index 7f47cbe9..00000000
Binary files a/gallery/images/preview/Valakut Stoneforge (Mustufar Forges).png and /dev/null differ
diff --git a/gallery/images/preview/Wasteland.png b/gallery/images/preview/Wasteland.png
deleted file mode 100644
index 0356e652..00000000
Binary files a/gallery/images/preview/Wasteland.png and /dev/null differ
diff --git a/gallery/images/preview/academy_ruins (1).png b/gallery/images/preview/academy_ruins (1).png
deleted file mode 100644
index e67502b3..00000000
Binary files a/gallery/images/preview/academy_ruins (1).png and /dev/null differ
diff --git a/gallery/images/preview/academy_ruins (2).png b/gallery/images/preview/academy_ruins (2).png
deleted file mode 100644
index fc5c6b81..00000000
Binary files a/gallery/images/preview/academy_ruins (2).png and /dev/null differ
diff --git a/gallery/images/preview/academy_ruins (3).png b/gallery/images/preview/academy_ruins (3).png
deleted file mode 100644
index b653c822..00000000
Binary files a/gallery/images/preview/academy_ruins (3).png and /dev/null differ
diff --git a/gallery/images/preview/academy_ruins.png b/gallery/images/preview/academy_ruins.png
deleted file mode 100644
index 5617fd44..00000000
Binary files a/gallery/images/preview/academy_ruins.png and /dev/null differ
diff --git a/gallery/images/preview/animar,_soul_of_elements.png b/gallery/images/preview/animar,_soul_of_elements.png
deleted file mode 100644
index 80907482..00000000
Binary files a/gallery/images/preview/animar,_soul_of_elements.png and /dev/null differ
diff --git a/gallery/images/preview/arahbo, roar of the world (griffin, rambunctious boyo).png b/gallery/images/preview/arahbo, roar of the world (griffin, rambunctious boyo).png
deleted file mode 100644
index f3f046a8..00000000
Binary files a/gallery/images/preview/arahbo, roar of the world (griffin, rambunctious boyo).png and /dev/null differ
diff --git a/gallery/images/preview/arcane_signet.png b/gallery/images/preview/arcane_signet.png
deleted file mode 100644
index 85f58a15..00000000
Binary files a/gallery/images/preview/arcane_signet.png and /dev/null differ
diff --git a/gallery/images/preview/ash_barrens (1).png b/gallery/images/preview/ash_barrens (1).png
deleted file mode 100644
index 8b05fe0f..00000000
Binary files a/gallery/images/preview/ash_barrens (1).png and /dev/null differ
diff --git a/gallery/images/preview/ash_barrens.png b/gallery/images/preview/ash_barrens.png
deleted file mode 100644
index 9631bd58..00000000
Binary files a/gallery/images/preview/ash_barrens.png and /dev/null differ
diff --git a/gallery/images/preview/ashnod's_altar.png b/gallery/images/preview/ashnod's_altar.png
deleted file mode 100644
index d645832b..00000000
Binary files a/gallery/images/preview/ashnod's_altar.png and /dev/null differ
diff --git a/gallery/images/preview/aven_mindcensor.png b/gallery/images/preview/aven_mindcensor.png
deleted file mode 100644
index 0f8c6381..00000000
Binary files a/gallery/images/preview/aven_mindcensor.png and /dev/null differ
diff --git a/gallery/images/preview/avenger_of_zendikar.png b/gallery/images/preview/avenger_of_zendikar.png
deleted file mode 100644
index 9eb6eef8..00000000
Binary files a/gallery/images/preview/avenger_of_zendikar.png and /dev/null differ
diff --git a/gallery/images/preview/azorius_signet.png b/gallery/images/preview/azorius_signet.png
deleted file mode 100644
index 1bde9056..00000000
Binary files a/gallery/images/preview/azorius_signet.png and /dev/null differ
diff --git a/gallery/images/preview/band_of_brushwaggs.png b/gallery/images/preview/band_of_brushwaggs.png
deleted file mode 100644
index 74fb5e38..00000000
Binary files a/gallery/images/preview/band_of_brushwaggs.png and /dev/null differ
diff --git a/gallery/images/preview/beastmaster_ascension.png b/gallery/images/preview/beastmaster_ascension.png
deleted file mode 100644
index 6d087a2a..00000000
Binary files a/gallery/images/preview/beastmaster_ascension.png and /dev/null differ
diff --git a/gallery/images/preview/blade_of_selves.png b/gallery/images/preview/blade_of_selves.png
deleted file mode 100644
index 36489abe..00000000
Binary files a/gallery/images/preview/blade_of_selves.png and /dev/null differ
diff --git a/gallery/images/preview/blood_artist.png b/gallery/images/preview/blood_artist.png
deleted file mode 100644
index d129c3a3..00000000
Binary files a/gallery/images/preview/blood_artist.png and /dev/null differ
diff --git a/gallery/images/preview/blood_crypt (2).png b/gallery/images/preview/blood_crypt (2).png
deleted file mode 100644
index 3de669eb..00000000
Binary files a/gallery/images/preview/blood_crypt (2).png and /dev/null differ
diff --git a/gallery/images/preview/blood_crypt.png b/gallery/images/preview/blood_crypt.png
deleted file mode 100644
index c8bb4dfa..00000000
Binary files a/gallery/images/preview/blood_crypt.png and /dev/null differ
diff --git a/gallery/images/preview/blood_moon.png b/gallery/images/preview/blood_moon.png
deleted file mode 100644
index 0323bd2c..00000000
Binary files a/gallery/images/preview/blood_moon.png and /dev/null differ
diff --git a/gallery/images/preview/bloodstained_mire (2).png b/gallery/images/preview/bloodstained_mire (2).png
deleted file mode 100644
index 2fedb700..00000000
Binary files a/gallery/images/preview/bloodstained_mire (2).png and /dev/null differ
diff --git a/gallery/images/preview/bloodstained_mire.png b/gallery/images/preview/bloodstained_mire.png
deleted file mode 100644
index 654de575..00000000
Binary files a/gallery/images/preview/bloodstained_mire.png and /dev/null differ
diff --git a/gallery/images/preview/boros_signet.png b/gallery/images/preview/boros_signet.png
deleted file mode 100644
index ec07b6a6..00000000
Binary files a/gallery/images/preview/boros_signet.png and /dev/null differ
diff --git a/gallery/images/preview/brago,_king_eternal.png b/gallery/images/preview/brago,_king_eternal.png
deleted file mode 100644
index 81d56d46..00000000
Binary files a/gallery/images/preview/brago,_king_eternal.png and /dev/null differ
diff --git a/gallery/images/preview/breeding_pool (2).png b/gallery/images/preview/breeding_pool (2).png
deleted file mode 100644
index 5c4e6af2..00000000
Binary files a/gallery/images/preview/breeding_pool (2).png and /dev/null differ
diff --git a/gallery/images/preview/breeding_pool.png b/gallery/images/preview/breeding_pool.png
deleted file mode 100644
index e988c8e9..00000000
Binary files a/gallery/images/preview/breeding_pool.png and /dev/null differ
diff --git a/gallery/images/preview/buried_ruin.png b/gallery/images/preview/buried_ruin.png
deleted file mode 100644
index 4a067110..00000000
Binary files a/gallery/images/preview/buried_ruin.png and /dev/null differ
diff --git a/gallery/images/preview/chandra's_ignition.png b/gallery/images/preview/chandra's_ignition.png
deleted file mode 100644
index c27bb969..00000000
Binary files a/gallery/images/preview/chandra's_ignition.png and /dev/null differ
diff --git a/gallery/images/preview/child of alara (creeper, child of notch).png b/gallery/images/preview/child of alara (creeper, child of notch).png
deleted file mode 100644
index 5c24a515..00000000
Binary files a/gallery/images/preview/child of alara (creeper, child of notch).png and /dev/null differ
diff --git a/gallery/images/preview/chromatic_lantern.png b/gallery/images/preview/chromatic_lantern.png
deleted file mode 100644
index dd1415c4..00000000
Binary files a/gallery/images/preview/chromatic_lantern.png and /dev/null differ
diff --git a/gallery/images/preview/coalition_relic.png b/gallery/images/preview/coalition_relic.png
deleted file mode 100644
index 8e4549be..00000000
Binary files a/gallery/images/preview/coalition_relic.png and /dev/null differ
diff --git a/gallery/images/preview/command_tower (1).png b/gallery/images/preview/command_tower (1).png
deleted file mode 100644
index 498b6b6a..00000000
Binary files a/gallery/images/preview/command_tower (1).png and /dev/null differ
diff --git a/gallery/images/preview/command_tower (2).png b/gallery/images/preview/command_tower (2).png
deleted file mode 100644
index 8dad71a2..00000000
Binary files a/gallery/images/preview/command_tower (2).png and /dev/null differ
diff --git a/gallery/images/preview/command_tower.png b/gallery/images/preview/command_tower.png
deleted file mode 100644
index 7553f4b3..00000000
Binary files a/gallery/images/preview/command_tower.png and /dev/null differ
diff --git a/gallery/images/preview/council's judgment (who is the impostor).png b/gallery/images/preview/council's judgment (who is the impostor).png
deleted file mode 100644
index 2a09f344..00000000
Binary files a/gallery/images/preview/council's judgment (who is the impostor).png and /dev/null differ
diff --git a/gallery/images/preview/craterhoof_behemoth.png b/gallery/images/preview/craterhoof_behemoth.png
deleted file mode 100644
index 9e792b82..00000000
Binary files a/gallery/images/preview/craterhoof_behemoth.png and /dev/null differ
diff --git a/gallery/images/preview/cryptolith_rite.png b/gallery/images/preview/cryptolith_rite.png
deleted file mode 100644
index 6a8748fe..00000000
Binary files a/gallery/images/preview/cryptolith_rite.png and /dev/null differ
diff --git a/gallery/images/preview/culling_the_weak.png b/gallery/images/preview/culling_the_weak.png
deleted file mode 100644
index 06d7feb0..00000000
Binary files a/gallery/images/preview/culling_the_weak.png and /dev/null differ
diff --git a/gallery/images/preview/cyclonic_rift.png b/gallery/images/preview/cyclonic_rift.png
deleted file mode 100644
index 16052f2d..00000000
Binary files a/gallery/images/preview/cyclonic_rift.png and /dev/null differ
diff --git a/gallery/images/preview/darksteel plate (aang's_epic_armor).png b/gallery/images/preview/darksteel plate (aang's_epic_armor).png
deleted file mode 100644
index c8aa6536..00000000
Binary files a/gallery/images/preview/darksteel plate (aang's_epic_armor).png and /dev/null differ
diff --git a/gallery/images/preview/darksteel reactor (the reactor).png b/gallery/images/preview/darksteel reactor (the reactor).png
deleted file mode 100644
index 0419d910..00000000
Binary files a/gallery/images/preview/darksteel reactor (the reactor).png and /dev/null differ
diff --git a/gallery/images/preview/darksteel_plate.png b/gallery/images/preview/darksteel_plate.png
deleted file mode 100644
index c2188235..00000000
Binary files a/gallery/images/preview/darksteel_plate.png and /dev/null differ
diff --git a/gallery/images/preview/deadeye_navigator .png b/gallery/images/preview/deadeye_navigator .png
deleted file mode 100644
index 419d1ab6..00000000
Binary files a/gallery/images/preview/deadeye_navigator .png and /dev/null differ
diff --git a/gallery/images/preview/demonic_tutor (2).png b/gallery/images/preview/demonic_tutor (2).png
deleted file mode 100644
index 5ecd4ab3..00000000
Binary files a/gallery/images/preview/demonic_tutor (2).png and /dev/null differ
diff --git a/gallery/images/preview/demonic_tutor.png b/gallery/images/preview/demonic_tutor.png
deleted file mode 100644
index 836001ad..00000000
Binary files a/gallery/images/preview/demonic_tutor.png and /dev/null differ
diff --git a/gallery/images/preview/dimir_signet (1).png b/gallery/images/preview/dimir_signet (1).png
deleted file mode 100644
index 22f63f8b..00000000
Binary files a/gallery/images/preview/dimir_signet (1).png and /dev/null differ
diff --git a/gallery/images/preview/dimir_signet.png b/gallery/images/preview/dimir_signet.png
deleted file mode 100644
index 144ce7ed..00000000
Binary files a/gallery/images/preview/dimir_signet.png and /dev/null differ
diff --git a/gallery/images/preview/dolmen_gate.png b/gallery/images/preview/dolmen_gate.png
deleted file mode 100644
index a266ecc7..00000000
Binary files a/gallery/images/preview/dolmen_gate.png and /dev/null differ
diff --git a/gallery/images/preview/doubling_season.png b/gallery/images/preview/doubling_season.png
deleted file mode 100644
index a467c3f0..00000000
Binary files a/gallery/images/preview/doubling_season.png and /dev/null differ
diff --git a/gallery/images/preview/dryad_of_the_ilysian_grove (2).png b/gallery/images/preview/dryad_of_the_ilysian_grove (2).png
deleted file mode 100644
index 24f1793b..00000000
Binary files a/gallery/images/preview/dryad_of_the_ilysian_grove (2).png and /dev/null differ
diff --git a/gallery/images/preview/dryad_of_the_ilysian_grove.png b/gallery/images/preview/dryad_of_the_ilysian_grove.png
deleted file mode 100644
index fa4e07e0..00000000
Binary files a/gallery/images/preview/dryad_of_the_ilysian_grove.png and /dev/null differ
diff --git a/gallery/images/preview/eladamri's_call.png b/gallery/images/preview/eladamri's_call.png
deleted file mode 100644
index da5dc2b7..00000000
Binary files a/gallery/images/preview/eladamri's_call.png and /dev/null differ
diff --git a/gallery/images/preview/emerald_medallion.png b/gallery/images/preview/emerald_medallion.png
deleted file mode 100644
index 5ad1fb09..00000000
Binary files a/gallery/images/preview/emerald_medallion.png and /dev/null differ
diff --git a/gallery/images/preview/emeria_angel.png b/gallery/images/preview/emeria_angel.png
deleted file mode 100644
index 515a4b0c..00000000
Binary files a/gallery/images/preview/emeria_angel.png and /dev/null differ
diff --git a/gallery/images/preview/emrakul,_the_aeons_torn.png b/gallery/images/preview/emrakul,_the_aeons_torn.png
deleted file mode 100644
index 412a51ef..00000000
Binary files a/gallery/images/preview/emrakul,_the_aeons_torn.png and /dev/null differ
diff --git a/gallery/images/preview/emrakul,_the_promised_end (2).png b/gallery/images/preview/emrakul,_the_promised_end (2).png
deleted file mode 100644
index a5b1b6db..00000000
Binary files a/gallery/images/preview/emrakul,_the_promised_end (2).png and /dev/null differ
diff --git a/gallery/images/preview/emrakul,_the_promised_end.png b/gallery/images/preview/emrakul,_the_promised_end.png
deleted file mode 100644
index 9ef16460..00000000
Binary files a/gallery/images/preview/emrakul,_the_promised_end.png and /dev/null differ
diff --git a/gallery/images/preview/enlightened_tutor.png b/gallery/images/preview/enlightened_tutor.png
deleted file mode 100644
index b0d45b39..00000000
Binary files a/gallery/images/preview/enlightened_tutor.png and /dev/null differ
diff --git a/gallery/images/preview/eternal_witness.png b/gallery/images/preview/eternal_witness.png
deleted file mode 100644
index 38d7be08..00000000
Binary files a/gallery/images/preview/eternal_witness.png and /dev/null differ
diff --git a/gallery/images/preview/evacuation.png b/gallery/images/preview/evacuation.png
deleted file mode 100644
index 0d35f2fe..00000000
Binary files a/gallery/images/preview/evacuation.png and /dev/null differ
diff --git a/gallery/images/preview/fabricate (1).png b/gallery/images/preview/fabricate (1).png
deleted file mode 100644
index d922b581..00000000
Binary files a/gallery/images/preview/fabricate (1).png and /dev/null differ
diff --git a/gallery/images/preview/fabricate.png b/gallery/images/preview/fabricate.png
deleted file mode 100644
index 6c370d32..00000000
Binary files a/gallery/images/preview/fabricate.png and /dev/null differ
diff --git a/gallery/images/preview/farseek (1).png b/gallery/images/preview/farseek (1).png
deleted file mode 100644
index 38bc6033..00000000
Binary files a/gallery/images/preview/farseek (1).png and /dev/null differ
diff --git a/gallery/images/preview/farseek.png b/gallery/images/preview/farseek.png
deleted file mode 100644
index a71cf173..00000000
Binary files a/gallery/images/preview/farseek.png and /dev/null differ
diff --git a/gallery/images/preview/fellwar stone.png b/gallery/images/preview/fellwar stone.png
deleted file mode 100644
index 68631cff..00000000
Binary files a/gallery/images/preview/fellwar stone.png and /dev/null differ
diff --git a/gallery/images/preview/fertilid.png b/gallery/images/preview/fertilid.png
deleted file mode 100644
index 5cfa20c4..00000000
Binary files a/gallery/images/preview/fertilid.png and /dev/null differ
diff --git a/gallery/images/preview/fire_diamond.png b/gallery/images/preview/fire_diamond.png
deleted file mode 100644
index 89daf5bf..00000000
Binary files a/gallery/images/preview/fire_diamond.png and /dev/null differ
diff --git a/gallery/images/preview/flooded_strand (2).png b/gallery/images/preview/flooded_strand (2).png
deleted file mode 100644
index a4ea45b3..00000000
Binary files a/gallery/images/preview/flooded_strand (2).png and /dev/null differ
diff --git a/gallery/images/preview/flooded_strand (3).png b/gallery/images/preview/flooded_strand (3).png
deleted file mode 100644
index efc66f16..00000000
Binary files a/gallery/images/preview/flooded_strand (3).png and /dev/null differ
diff --git a/gallery/images/preview/flooded_strand.png b/gallery/images/preview/flooded_strand.png
deleted file mode 100644
index 83f075a8..00000000
Binary files a/gallery/images/preview/flooded_strand.png and /dev/null differ
diff --git a/gallery/images/preview/force_of_vigor.png b/gallery/images/preview/force_of_vigor.png
deleted file mode 100644
index 189e16bb..00000000
Binary files a/gallery/images/preview/force_of_vigor.png and /dev/null differ
diff --git a/gallery/images/preview/forest.png b/gallery/images/preview/forest.png
deleted file mode 100644
index 7733a9f1..00000000
Binary files a/gallery/images/preview/forest.png and /dev/null differ
diff --git a/gallery/images/preview/gaea's_cradle (1).png b/gallery/images/preview/gaea's_cradle (1).png
deleted file mode 100644
index 9ddb69aa..00000000
Binary files a/gallery/images/preview/gaea's_cradle (1).png and /dev/null differ
diff --git a/gallery/images/preview/gaea's_cradle (2).png b/gallery/images/preview/gaea's_cradle (2).png
deleted file mode 100644
index b383b738..00000000
Binary files a/gallery/images/preview/gaea's_cradle (2).png and /dev/null differ
diff --git a/gallery/images/preview/gaea's_cradle (3).png b/gallery/images/preview/gaea's_cradle (3).png
deleted file mode 100644
index 3e0ce292..00000000
Binary files a/gallery/images/preview/gaea's_cradle (3).png and /dev/null differ
diff --git a/gallery/images/preview/gaea's_cradle.png b/gallery/images/preview/gaea's_cradle.png
deleted file mode 100644
index 1074affb..00000000
Binary files a/gallery/images/preview/gaea's_cradle.png and /dev/null differ
diff --git a/gallery/images/preview/gavi_nest_warden (gavin verhey).png b/gallery/images/preview/gavi_nest_warden (gavin verhey).png
deleted file mode 100644
index afff5173..00000000
Binary files a/gallery/images/preview/gavi_nest_warden (gavin verhey).png and /dev/null differ
diff --git a/gallery/images/preview/generous_gift.png b/gallery/images/preview/generous_gift.png
deleted file mode 100644
index 1d7c0f09..00000000
Binary files a/gallery/images/preview/generous_gift.png and /dev/null differ
diff --git a/gallery/images/preview/gerrard,_weatherlight_hero (malcolm reynolds).png b/gallery/images/preview/gerrard,_weatherlight_hero (malcolm reynolds).png
deleted file mode 100644
index beba315e..00000000
Binary files a/gallery/images/preview/gerrard,_weatherlight_hero (malcolm reynolds).png and /dev/null differ
diff --git a/gallery/images/preview/gilded_lotus.png b/gallery/images/preview/gilded_lotus.png
deleted file mode 100644
index b0c09370..00000000
Binary files a/gallery/images/preview/gilded_lotus.png and /dev/null differ
diff --git a/gallery/images/preview/goblin_bombardment.png b/gallery/images/preview/goblin_bombardment.png
deleted file mode 100644
index d4add606..00000000
Binary files a/gallery/images/preview/goblin_bombardment.png and /dev/null differ
diff --git a/gallery/images/preview/godless_shrine (2).png b/gallery/images/preview/godless_shrine (2).png
deleted file mode 100644
index e367b354..00000000
Binary files a/gallery/images/preview/godless_shrine (2).png and /dev/null differ
diff --git a/gallery/images/preview/godless_shrine.png b/gallery/images/preview/godless_shrine.png
deleted file mode 100644
index 15eede1f..00000000
Binary files a/gallery/images/preview/godless_shrine.png and /dev/null differ
diff --git a/gallery/images/preview/golgari_signet (1).png b/gallery/images/preview/golgari_signet (1).png
deleted file mode 100644
index e56634ca..00000000
Binary files a/gallery/images/preview/golgari_signet (1).png and /dev/null differ
diff --git a/gallery/images/preview/golgari_signet.png b/gallery/images/preview/golgari_signet.png
deleted file mode 100644
index 0fa2685c..00000000
Binary files a/gallery/images/preview/golgari_signet.png and /dev/null differ
diff --git a/gallery/images/preview/growing_rites_of_itlimoc.png b/gallery/images/preview/growing_rites_of_itlimoc.png
deleted file mode 100644
index 0d61af51..00000000
Binary files a/gallery/images/preview/growing_rites_of_itlimoc.png and /dev/null differ
diff --git a/gallery/images/preview/gruul_signet.png b/gallery/images/preview/gruul_signet.png
deleted file mode 100644
index 311b09c6..00000000
Binary files a/gallery/images/preview/gruul_signet.png and /dev/null differ
diff --git a/gallery/images/preview/hall_of_heliod's_generosity.png b/gallery/images/preview/hall_of_heliod's_generosity.png
deleted file mode 100644
index d734ff6c..00000000
Binary files a/gallery/images/preview/hall_of_heliod's_generosity.png and /dev/null differ
diff --git a/gallery/images/preview/hallowed_fountain (2).png b/gallery/images/preview/hallowed_fountain (2).png
deleted file mode 100644
index ebc5ae87..00000000
Binary files a/gallery/images/preview/hallowed_fountain (2).png and /dev/null differ
diff --git a/gallery/images/preview/hallowed_fountain.png b/gallery/images/preview/hallowed_fountain.png
deleted file mode 100644
index 49432b8e..00000000
Binary files a/gallery/images/preview/hallowed_fountain.png and /dev/null differ
diff --git a/gallery/images/preview/hammer_of_nazahn.png b/gallery/images/preview/hammer_of_nazahn.png
deleted file mode 100644
index ae72a4d8..00000000
Binary files a/gallery/images/preview/hammer_of_nazahn.png and /dev/null differ
diff --git a/gallery/images/preview/helm_of_awakening.png b/gallery/images/preview/helm_of_awakening.png
deleted file mode 100644
index 893d7f80..00000000
Binary files a/gallery/images/preview/helm_of_awakening.png and /dev/null differ
diff --git a/gallery/images/preview/helm_of_the_host.png b/gallery/images/preview/helm_of_the_host.png
deleted file mode 100644
index 2868868e..00000000
Binary files a/gallery/images/preview/helm_of_the_host.png and /dev/null differ
diff --git a/gallery/images/preview/idyllic_tutor.png b/gallery/images/preview/idyllic_tutor.png
deleted file mode 100644
index 7901d400..00000000
Binary files a/gallery/images/preview/idyllic_tutor.png and /dev/null differ
diff --git a/gallery/images/preview/intruder_alarm.png b/gallery/images/preview/intruder_alarm.png
deleted file mode 100644
index 8e84e4a6..00000000
Binary files a/gallery/images/preview/intruder_alarm.png and /dev/null differ
diff --git a/gallery/images/preview/inventors'_fair.png b/gallery/images/preview/inventors'_fair.png
deleted file mode 100644
index 489d0726..00000000
Binary files a/gallery/images/preview/inventors'_fair.png and /dev/null differ
diff --git a/gallery/images/preview/island.png b/gallery/images/preview/island.png
deleted file mode 100644
index c26b54a9..00000000
Binary files a/gallery/images/preview/island.png and /dev/null differ
diff --git a/gallery/images/preview/izzet_signet.png b/gallery/images/preview/izzet_signet.png
deleted file mode 100644
index 5fd0e38b..00000000
Binary files a/gallery/images/preview/izzet_signet.png and /dev/null differ
diff --git a/gallery/images/preview/jace, mirror mage (double_identity).png b/gallery/images/preview/jace, mirror mage (double_identity).png
deleted file mode 100644
index bf640cb0..00000000
Binary files a/gallery/images/preview/jace, mirror mage (double_identity).png and /dev/null differ
diff --git a/gallery/images/preview/jhoira,_weatherlight_captain.png b/gallery/images/preview/jhoira,_weatherlight_captain.png
deleted file mode 100644
index e3f2dffd..00000000
Binary files a/gallery/images/preview/jhoira,_weatherlight_captain.png and /dev/null differ
diff --git a/gallery/images/preview/kaheera, the orphanguard (katniss, friend to all).png b/gallery/images/preview/kaheera, the orphanguard (katniss, friend to all).png
deleted file mode 100644
index 7547a91d..00000000
Binary files a/gallery/images/preview/kaheera, the orphanguard (katniss, friend to all).png and /dev/null differ
diff --git a/gallery/images/preview/kalamax,_the_stormsire.png b/gallery/images/preview/kalamax,_the_stormsire.png
deleted file mode 100644
index 602d0c51..00000000
Binary files a/gallery/images/preview/kalamax,_the_stormsire.png and /dev/null differ
diff --git a/gallery/images/preview/karn's_bastion.png b/gallery/images/preview/karn's_bastion.png
deleted file mode 100644
index a87bd90c..00000000
Binary files a/gallery/images/preview/karn's_bastion.png and /dev/null differ
diff --git a/gallery/images/preview/keruga, the macrosage (jabba_the_hutt,_crime_lord).png b/gallery/images/preview/keruga, the macrosage (jabba_the_hutt,_crime_lord).png
deleted file mode 100644
index fc089558..00000000
Binary files a/gallery/images/preview/keruga, the macrosage (jabba_the_hutt,_crime_lord).png and /dev/null differ
diff --git a/gallery/images/preview/kozilek,_butcher_of_truth (2).png b/gallery/images/preview/kozilek,_butcher_of_truth (2).png
deleted file mode 100644
index 1f17fc80..00000000
Binary files a/gallery/images/preview/kozilek,_butcher_of_truth (2).png and /dev/null differ
diff --git a/gallery/images/preview/kozilek,_butcher_of_truth.png b/gallery/images/preview/kozilek,_butcher_of_truth.png
deleted file mode 100644
index 7902d308..00000000
Binary files a/gallery/images/preview/kozilek,_butcher_of_truth.png and /dev/null differ
diff --git a/gallery/images/preview/kozilek,_the_great_distortion (saitama).png b/gallery/images/preview/kozilek,_the_great_distortion (saitama).png
deleted file mode 100644
index 1b463e13..00000000
Binary files a/gallery/images/preview/kozilek,_the_great_distortion (saitama).png and /dev/null differ
diff --git a/gallery/images/preview/kozilek,_the_great_distortion.png b/gallery/images/preview/kozilek,_the_great_distortion.png
deleted file mode 100644
index f49050fd..00000000
Binary files a/gallery/images/preview/kozilek,_the_great_distortion.png and /dev/null differ
diff --git a/gallery/images/preview/life_from_the_loam.png b/gallery/images/preview/life_from_the_loam.png
deleted file mode 100644
index 60f1839e..00000000
Binary files a/gallery/images/preview/life_from_the_loam.png and /dev/null differ
diff --git a/gallery/images/preview/lightning_greaves.png b/gallery/images/preview/lightning_greaves.png
deleted file mode 100644
index 90f4f20a..00000000
Binary files a/gallery/images/preview/lightning_greaves.png and /dev/null differ
diff --git a/gallery/images/preview/liliana's_caress.png b/gallery/images/preview/liliana's_caress.png
deleted file mode 100644
index bbc0c6e8..00000000
Binary files a/gallery/images/preview/liliana's_caress.png and /dev/null differ
diff --git a/gallery/images/preview/lotus_petal (1).png b/gallery/images/preview/lotus_petal (1).png
deleted file mode 100644
index 5e0f7d12..00000000
Binary files a/gallery/images/preview/lotus_petal (1).png and /dev/null differ
diff --git a/gallery/images/preview/lotus_petal.png b/gallery/images/preview/lotus_petal.png
deleted file mode 100644
index 1bbaba9b..00000000
Binary files a/gallery/images/preview/lotus_petal.png and /dev/null differ
diff --git a/gallery/images/preview/mana_confluence (2).png b/gallery/images/preview/mana_confluence (2).png
deleted file mode 100644
index 19603e55..00000000
Binary files a/gallery/images/preview/mana_confluence (2).png and /dev/null differ
diff --git a/gallery/images/preview/mana_confluence.png b/gallery/images/preview/mana_confluence.png
deleted file mode 100644
index 8d47bd3c..00000000
Binary files a/gallery/images/preview/mana_confluence.png and /dev/null differ
diff --git a/gallery/images/preview/manascape_refractor.png b/gallery/images/preview/manascape_refractor.png
deleted file mode 100644
index 62c087c7..00000000
Binary files a/gallery/images/preview/manascape_refractor.png and /dev/null differ
diff --git a/gallery/images/preview/maze_of_ith (the mines of moria).png b/gallery/images/preview/maze_of_ith (the mines of moria).png
deleted file mode 100644
index f6314db9..00000000
Binary files a/gallery/images/preview/maze_of_ith (the mines of moria).png and /dev/null differ
diff --git a/gallery/images/preview/maze_of_ith.png b/gallery/images/preview/maze_of_ith.png
deleted file mode 100644
index 9166aeef..00000000
Binary files a/gallery/images/preview/maze_of_ith.png and /dev/null differ
diff --git a/gallery/images/preview/merciless eviction (not the impostor...).png b/gallery/images/preview/merciless eviction (not the impostor...).png
deleted file mode 100644
index 2b21f42e..00000000
Binary files a/gallery/images/preview/merciless eviction (not the impostor...).png and /dev/null differ
diff --git a/gallery/images/preview/metallic_mimic.png b/gallery/images/preview/metallic_mimic.png
deleted file mode 100644
index ed272c72..00000000
Binary files a/gallery/images/preview/metallic_mimic.png and /dev/null differ
diff --git a/gallery/images/preview/moss_diamond.png b/gallery/images/preview/moss_diamond.png
deleted file mode 100644
index 531295a5..00000000
Binary files a/gallery/images/preview/moss_diamond.png and /dev/null differ
diff --git a/gallery/images/preview/mountain.png b/gallery/images/preview/mountain.png
deleted file mode 100644
index 12c6fe3d..00000000
Binary files a/gallery/images/preview/mountain.png and /dev/null differ
diff --git a/gallery/images/preview/mox_opal.png b/gallery/images/preview/mox_opal.png
deleted file mode 100644
index dd116d2d..00000000
Binary files a/gallery/images/preview/mox_opal.png and /dev/null differ
diff --git a/gallery/images/preview/murder.png b/gallery/images/preview/murder.png
deleted file mode 100644
index b4e31172..00000000
Binary files a/gallery/images/preview/murder.png and /dev/null differ
diff --git a/gallery/images/preview/mystic_remora.png b/gallery/images/preview/mystic_remora.png
deleted file mode 100644
index e1a21eac..00000000
Binary files a/gallery/images/preview/mystic_remora.png and /dev/null differ
diff --git a/gallery/images/preview/negan,_the_cold_blooded (aurra_sing,_bounty_hunter).png b/gallery/images/preview/negan,_the_cold_blooded (aurra_sing,_bounty_hunter).png
deleted file mode 100644
index 90230cbc..00000000
Binary files a/gallery/images/preview/negan,_the_cold_blooded (aurra_sing,_bounty_hunter).png and /dev/null differ
diff --git a/gallery/images/preview/negan,_the_cold_blooded (dryden_vos,_crime_lord).png b/gallery/images/preview/negan,_the_cold_blooded (dryden_vos,_crime_lord).png
deleted file mode 100644
index 428f9c33..00000000
Binary files a/gallery/images/preview/negan,_the_cold_blooded (dryden_vos,_crime_lord).png and /dev/null differ
diff --git a/gallery/images/preview/nesting_grounds.png b/gallery/images/preview/nesting_grounds.png
deleted file mode 100644
index f598f6c6..00000000
Binary files a/gallery/images/preview/nesting_grounds.png and /dev/null differ
diff --git a/gallery/images/preview/niv-mizzet, parun (nivvy_m).png b/gallery/images/preview/niv-mizzet, parun (nivvy_m).png
deleted file mode 100644
index 3826d213..00000000
Binary files a/gallery/images/preview/niv-mizzet, parun (nivvy_m).png and /dev/null differ
diff --git a/gallery/images/preview/nykthos,_shrine_to_nyx (1).png b/gallery/images/preview/nykthos,_shrine_to_nyx (1).png
deleted file mode 100644
index 042f9fd0..00000000
Binary files a/gallery/images/preview/nykthos,_shrine_to_nyx (1).png and /dev/null differ
diff --git a/gallery/images/preview/nykthos,_shrine_to_nyx.png b/gallery/images/preview/nykthos,_shrine_to_nyx.png
deleted file mode 100644
index cfff6035..00000000
Binary files a/gallery/images/preview/nykthos,_shrine_to_nyx.png and /dev/null differ
diff --git a/gallery/images/preview/oona,_queen_of_the_fae.png b/gallery/images/preview/oona,_queen_of_the_fae.png
deleted file mode 100644
index 18ffe672..00000000
Binary files a/gallery/images/preview/oona,_queen_of_the_fae.png and /dev/null differ
diff --git a/gallery/images/preview/opt.png b/gallery/images/preview/opt.png
deleted file mode 100644
index 14c37e4a..00000000
Binary files a/gallery/images/preview/opt.png and /dev/null differ
diff --git a/gallery/images/preview/orzhov_signet.png b/gallery/images/preview/orzhov_signet.png
deleted file mode 100644
index d31a465c..00000000
Binary files a/gallery/images/preview/orzhov_signet.png and /dev/null differ
diff --git a/gallery/images/preview/overgrown_tomb (2).png b/gallery/images/preview/overgrown_tomb (2).png
deleted file mode 100644
index 5760e2bf..00000000
Binary files a/gallery/images/preview/overgrown_tomb (2).png and /dev/null differ
diff --git a/gallery/images/preview/overgrown_tomb.png b/gallery/images/preview/overgrown_tomb.png
deleted file mode 100644
index 6acdc506..00000000
Binary files a/gallery/images/preview/overgrown_tomb.png and /dev/null differ
diff --git a/gallery/images/preview/panharmonicon.png b/gallery/images/preview/panharmonicon.png
deleted file mode 100644
index d3664669..00000000
Binary files a/gallery/images/preview/panharmonicon.png and /dev/null differ
diff --git a/gallery/images/preview/phyrexian_altar (1).png b/gallery/images/preview/phyrexian_altar (1).png
deleted file mode 100644
index ca8e6c44..00000000
Binary files a/gallery/images/preview/phyrexian_altar (1).png and /dev/null differ
diff --git a/gallery/images/preview/phyrexian_altar.png b/gallery/images/preview/phyrexian_altar.png
deleted file mode 100644
index 2e431a8d..00000000
Binary files a/gallery/images/preview/phyrexian_altar.png and /dev/null differ
diff --git a/gallery/images/preview/phyrexian_metamorph.png b/gallery/images/preview/phyrexian_metamorph.png
deleted file mode 100644
index 567a7d2a..00000000
Binary files a/gallery/images/preview/phyrexian_metamorph.png and /dev/null differ
diff --git a/gallery/images/preview/polluted_delta.png b/gallery/images/preview/polluted_delta.png
deleted file mode 100644
index 6aae1cff..00000000
Binary files a/gallery/images/preview/polluted_delta.png and /dev/null differ
diff --git a/gallery/images/preview/predator,_flagship (reaver cutter).png b/gallery/images/preview/predator,_flagship (reaver cutter).png
deleted file mode 100644
index b6b90e33..00000000
Binary files a/gallery/images/preview/predator,_flagship (reaver cutter).png and /dev/null differ
diff --git a/gallery/images/preview/propaganda.png b/gallery/images/preview/propaganda.png
deleted file mode 100644
index ff67ef5d..00000000
Binary files a/gallery/images/preview/propaganda.png and /dev/null differ
diff --git a/gallery/images/preview/rakdos_signet.png b/gallery/images/preview/rakdos_signet.png
deleted file mode 100644
index f02869ed..00000000
Binary files a/gallery/images/preview/rakdos_signet.png and /dev/null differ
diff --git a/gallery/images/preview/ramos, dragon engine (mechagodzilla,_kaiju_engine).png b/gallery/images/preview/ramos, dragon engine (mechagodzilla,_kaiju_engine).png
deleted file mode 100644
index cf5016a6..00000000
Binary files a/gallery/images/preview/ramos, dragon engine (mechagodzilla,_kaiju_engine).png and /dev/null differ
diff --git a/gallery/images/preview/ramos, dragon engine (super_mechagodzilla,_kaiju_engine).png b/gallery/images/preview/ramos, dragon engine (super_mechagodzilla,_kaiju_engine).png
deleted file mode 100644
index 3093ace4..00000000
Binary files a/gallery/images/preview/ramos, dragon engine (super_mechagodzilla,_kaiju_engine).png and /dev/null differ
diff --git a/gallery/images/preview/reflecting_pool.png b/gallery/images/preview/reflecting_pool.png
deleted file mode 100644
index 1eac272e..00000000
Binary files a/gallery/images/preview/reflecting_pool.png and /dev/null differ
diff --git a/gallery/images/preview/reliquary_tower (1).png b/gallery/images/preview/reliquary_tower (1).png
deleted file mode 100644
index 615f47a9..00000000
Binary files a/gallery/images/preview/reliquary_tower (1).png and /dev/null differ
diff --git a/gallery/images/preview/reliquary_tower.png b/gallery/images/preview/reliquary_tower.png
deleted file mode 100644
index 57490641..00000000
Binary files a/gallery/images/preview/reliquary_tower.png and /dev/null differ
diff --git a/gallery/images/preview/ren and seri, inseperable (catdog,_inseperable).png b/gallery/images/preview/ren and seri, inseperable (catdog,_inseperable).png
deleted file mode 100644
index 9ed3e518..00000000
Binary files a/gallery/images/preview/ren and seri, inseperable (catdog,_inseperable).png and /dev/null differ
diff --git a/gallery/images/preview/return_of_the_wildspeaker.png b/gallery/images/preview/return_of_the_wildspeaker.png
deleted file mode 100644
index 9e88ef27..00000000
Binary files a/gallery/images/preview/return_of_the_wildspeaker.png and /dev/null differ
diff --git a/gallery/images/preview/return_to_dust.png b/gallery/images/preview/return_to_dust.png
deleted file mode 100644
index b9cb8369..00000000
Binary files a/gallery/images/preview/return_to_dust.png and /dev/null differ
diff --git a/gallery/images/preview/revel_in_riches.png b/gallery/images/preview/revel_in_riches.png
deleted file mode 100644
index f12949bf..00000000
Binary files a/gallery/images/preview/revel_in_riches.png and /dev/null differ
diff --git a/gallery/images/preview/rhystic_study (2).png b/gallery/images/preview/rhystic_study (2).png
deleted file mode 100644
index 75762a88..00000000
Binary files a/gallery/images/preview/rhystic_study (2).png and /dev/null differ
diff --git a/gallery/images/preview/rhystic_study.png b/gallery/images/preview/rhystic_study.png
deleted file mode 100644
index bf1125ad..00000000
Binary files a/gallery/images/preview/rhystic_study.png and /dev/null differ
diff --git a/gallery/images/preview/rick, steadfast leader (odric, steadfast leader) (1).png b/gallery/images/preview/rick, steadfast leader (odric, steadfast leader) (1).png
deleted file mode 100644
index 185f21fb..00000000
Binary files a/gallery/images/preview/rick, steadfast leader (odric, steadfast leader) (1).png and /dev/null differ
diff --git a/gallery/images/preview/rick, steadfast leader (odric, steadfast leader).png b/gallery/images/preview/rick, steadfast leader (odric, steadfast leader).png
deleted file mode 100644
index f50c04d6..00000000
Binary files a/gallery/images/preview/rick, steadfast leader (odric, steadfast leader).png and /dev/null differ
diff --git a/gallery/images/preview/rick, steadfast leader (thalia, steadfast leader).png b/gallery/images/preview/rick, steadfast leader (thalia, steadfast leader).png
deleted file mode 100644
index 81284e2e..00000000
Binary files a/gallery/images/preview/rick, steadfast leader (thalia, steadfast leader).png and /dev/null differ
diff --git a/gallery/images/preview/rogue's passage (the vent).png b/gallery/images/preview/rogue's passage (the vent).png
deleted file mode 100644
index fc482b34..00000000
Binary files a/gallery/images/preview/rogue's passage (the vent).png and /dev/null differ
diff --git a/gallery/images/preview/rogue's_passage.png b/gallery/images/preview/rogue's_passage.png
deleted file mode 100644
index c00883fc..00000000
Binary files a/gallery/images/preview/rogue's_passage.png and /dev/null differ
diff --git a/gallery/images/preview/ruby_medallion.png b/gallery/images/preview/ruby_medallion.png
deleted file mode 100644
index 751b12c5..00000000
Binary files a/gallery/images/preview/ruby_medallion.png and /dev/null differ
diff --git a/gallery/images/preview/rune-scarred_demon.png b/gallery/images/preview/rune-scarred_demon.png
deleted file mode 100644
index df7c40fc..00000000
Binary files a/gallery/images/preview/rune-scarred_demon.png and /dev/null differ
diff --git a/gallery/images/preview/sacred_foundry (2).png b/gallery/images/preview/sacred_foundry (2).png
deleted file mode 100644
index be8d0652..00000000
Binary files a/gallery/images/preview/sacred_foundry (2).png and /dev/null differ
diff --git a/gallery/images/preview/sacred_foundry.png b/gallery/images/preview/sacred_foundry.png
deleted file mode 100644
index 4b974e76..00000000
Binary files a/gallery/images/preview/sacred_foundry.png and /dev/null differ
diff --git a/gallery/images/preview/sakura_tribe_elder (baby yoda, the innocent).png b/gallery/images/preview/sakura_tribe_elder (baby yoda, the innocent).png
deleted file mode 100644
index 315145cd..00000000
Binary files a/gallery/images/preview/sakura_tribe_elder (baby yoda, the innocent).png and /dev/null differ
diff --git a/gallery/images/preview/sea_gate,_reborn.png b/gallery/images/preview/sea_gate,_reborn.png
deleted file mode 100644
index 84e87bb5..00000000
Binary files a/gallery/images/preview/sea_gate,_reborn.png and /dev/null differ
diff --git a/gallery/images/preview/sea_gate_restoration.png b/gallery/images/preview/sea_gate_restoration.png
deleted file mode 100644
index 643e275f..00000000
Binary files a/gallery/images/preview/sea_gate_restoration.png and /dev/null differ
diff --git a/gallery/images/preview/seedborn_muse.png b/gallery/images/preview/seedborn_muse.png
deleted file mode 100644
index 08b38109..00000000
Binary files a/gallery/images/preview/seedborn_muse.png and /dev/null differ
diff --git a/gallery/images/preview/sensei's_divining_top.png b/gallery/images/preview/sensei's_divining_top.png
deleted file mode 100644
index 2af2804b..00000000
Binary files a/gallery/images/preview/sensei's_divining_top.png and /dev/null differ
diff --git a/gallery/images/preview/show_and_tell.png b/gallery/images/preview/show_and_tell.png
deleted file mode 100644
index 72cbd8da..00000000
Binary files a/gallery/images/preview/show_and_tell.png and /dev/null differ
diff --git a/gallery/images/preview/simic_signet.png b/gallery/images/preview/simic_signet.png
deleted file mode 100644
index d5d123e6..00000000
Binary files a/gallery/images/preview/simic_signet.png and /dev/null differ
diff --git a/gallery/images/preview/skullclamp.png b/gallery/images/preview/skullclamp.png
deleted file mode 100644
index 8e0e78c8..00000000
Binary files a/gallery/images/preview/skullclamp.png and /dev/null differ
diff --git a/gallery/images/preview/smothering_tithe.png b/gallery/images/preview/smothering_tithe.png
deleted file mode 100644
index 6805cb1b..00000000
Binary files a/gallery/images/preview/smothering_tithe.png and /dev/null differ
diff --git a/gallery/images/preview/sol_ring (2).png b/gallery/images/preview/sol_ring (2).png
deleted file mode 100644
index 0f309903..00000000
Binary files a/gallery/images/preview/sol_ring (2).png and /dev/null differ
diff --git a/gallery/images/preview/sol_ring.png b/gallery/images/preview/sol_ring.png
deleted file mode 100644
index 885c6eaa..00000000
Binary files a/gallery/images/preview/sol_ring.png and /dev/null differ
diff --git a/gallery/images/preview/solemn simulacrum (c-3po).png b/gallery/images/preview/solemn simulacrum (c-3po).png
deleted file mode 100644
index 1b23efb6..00000000
Binary files a/gallery/images/preview/solemn simulacrum (c-3po).png and /dev/null differ
diff --git a/gallery/images/preview/solemn_simulacrum (1).png b/gallery/images/preview/solemn_simulacrum (1).png
deleted file mode 100644
index d2a80aef..00000000
Binary files a/gallery/images/preview/solemn_simulacrum (1).png and /dev/null differ
diff --git a/gallery/images/preview/solemn_simulacrum (2).png b/gallery/images/preview/solemn_simulacrum (2).png
deleted file mode 100644
index 084698cd..00000000
Binary files a/gallery/images/preview/solemn_simulacrum (2).png and /dev/null differ
diff --git a/gallery/images/preview/solemn_simulacrum.png b/gallery/images/preview/solemn_simulacrum.png
deleted file mode 100644
index ae0edb8e..00000000
Binary files a/gallery/images/preview/solemn_simulacrum.png and /dev/null differ
diff --git a/gallery/images/preview/songs-of-the-damned.png b/gallery/images/preview/songs-of-the-damned.png
deleted file mode 100644
index 84002aec..00000000
Binary files a/gallery/images/preview/songs-of-the-damned.png and /dev/null differ
diff --git a/gallery/images/preview/spark_double.png b/gallery/images/preview/spark_double.png
deleted file mode 100644
index bfd0c61e..00000000
Binary files a/gallery/images/preview/spark_double.png and /dev/null differ
diff --git a/gallery/images/preview/squee's_embrace (smeagol's final embrace).png b/gallery/images/preview/squee's_embrace (smeagol's final embrace).png
deleted file mode 100644
index 6c804b99..00000000
Binary files a/gallery/images/preview/squee's_embrace (smeagol's final embrace).png and /dev/null differ
diff --git a/gallery/images/preview/squee's_revenge (gollum's betrayal).png b/gallery/images/preview/squee's_revenge (gollum's betrayal).png
deleted file mode 100644
index a89516b3..00000000
Binary files a/gallery/images/preview/squee's_revenge (gollum's betrayal).png and /dev/null differ
diff --git a/gallery/images/preview/squee's_toy (gollum's precious).png b/gallery/images/preview/squee's_toy (gollum's precious).png
deleted file mode 100644
index e870f404..00000000
Binary files a/gallery/images/preview/squee's_toy (gollum's precious).png and /dev/null differ
diff --git a/gallery/images/preview/squee,_goblin_nabob (smeagol, unlikely ally).png b/gallery/images/preview/squee,_goblin_nabob (smeagol, unlikely ally).png
deleted file mode 100644
index 4d55cce9..00000000
Binary files a/gallery/images/preview/squee,_goblin_nabob (smeagol, unlikely ally).png and /dev/null differ
diff --git a/gallery/images/preview/sram, senior edificer (sokka,_veteran_combatant).png b/gallery/images/preview/sram, senior edificer (sokka,_veteran_combatant).png
deleted file mode 100644
index a2da4ea7..00000000
Binary files a/gallery/images/preview/sram, senior edificer (sokka,_veteran_combatant).png and /dev/null differ
diff --git a/gallery/images/preview/steam_vents (2).png b/gallery/images/preview/steam_vents (2).png
deleted file mode 100644
index b301f361..00000000
Binary files a/gallery/images/preview/steam_vents (2).png and /dev/null differ
diff --git a/gallery/images/preview/steam_vents.png b/gallery/images/preview/steam_vents.png
deleted file mode 100644
index 43cbe17f..00000000
Binary files a/gallery/images/preview/steam_vents.png and /dev/null differ
diff --git a/gallery/images/preview/steelshaper's_gift.png b/gallery/images/preview/steelshaper's_gift.png
deleted file mode 100644
index e55fe5af..00000000
Binary files a/gallery/images/preview/steelshaper's_gift.png and /dev/null differ
diff --git a/gallery/images/preview/stomping_ground (2).png b/gallery/images/preview/stomping_ground (2).png
deleted file mode 100644
index 4355d998..00000000
Binary files a/gallery/images/preview/stomping_ground (2).png and /dev/null differ
diff --git a/gallery/images/preview/stomping_ground.png b/gallery/images/preview/stomping_ground.png
deleted file mode 100644
index ae6f8497..00000000
Binary files a/gallery/images/preview/stomping_ground.png and /dev/null differ
diff --git a/gallery/images/preview/stoneforge mystic (piandao,_master_swordsman).png b/gallery/images/preview/stoneforge mystic (piandao,_master_swordsman).png
deleted file mode 100644
index 3305cd30..00000000
Binary files a/gallery/images/preview/stoneforge mystic (piandao,_master_swordsman).png and /dev/null differ
diff --git a/gallery/images/preview/swamp.png b/gallery/images/preview/swamp.png
deleted file mode 100644
index 1ad6bb70..00000000
Binary files a/gallery/images/preview/swamp.png and /dev/null differ
diff --git a/gallery/images/preview/sword_of_feast_and_famine (2).png b/gallery/images/preview/sword_of_feast_and_famine (2).png
deleted file mode 100644
index 49dadd3e..00000000
Binary files a/gallery/images/preview/sword_of_feast_and_famine (2).png and /dev/null differ
diff --git a/gallery/images/preview/sword_of_feast_and_famine.png b/gallery/images/preview/sword_of_feast_and_famine.png
deleted file mode 100644
index 55c144cf..00000000
Binary files a/gallery/images/preview/sword_of_feast_and_famine.png and /dev/null differ
diff --git a/gallery/images/preview/sword_of_fire_and_ice.png b/gallery/images/preview/sword_of_fire_and_ice.png
deleted file mode 100644
index c2ea4105..00000000
Binary files a/gallery/images/preview/sword_of_fire_and_ice.png and /dev/null differ
diff --git a/gallery/images/preview/sword_of_light_and_shadow.png b/gallery/images/preview/sword_of_light_and_shadow.png
deleted file mode 100644
index c74d33b8..00000000
Binary files a/gallery/images/preview/sword_of_light_and_shadow.png and /dev/null differ
diff --git a/gallery/images/preview/sword_of_sinew_and_steel.png b/gallery/images/preview/sword_of_sinew_and_steel.png
deleted file mode 100644
index 7ff5f489..00000000
Binary files a/gallery/images/preview/sword_of_sinew_and_steel.png and /dev/null differ
diff --git a/gallery/images/preview/sword_of_truth_and_justice.png b/gallery/images/preview/sword_of_truth_and_justice.png
deleted file mode 100644
index 2c151518..00000000
Binary files a/gallery/images/preview/sword_of_truth_and_justice.png and /dev/null differ
diff --git a/gallery/images/preview/talisman_of_conviction.png b/gallery/images/preview/talisman_of_conviction.png
deleted file mode 100644
index 1e883e24..00000000
Binary files a/gallery/images/preview/talisman_of_conviction.png and /dev/null differ
diff --git a/gallery/images/preview/talisman_of_creativity.png b/gallery/images/preview/talisman_of_creativity.png
deleted file mode 100644
index 31b9a932..00000000
Binary files a/gallery/images/preview/talisman_of_creativity.png and /dev/null differ
diff --git a/gallery/images/preview/talisman_of_curiosity.png b/gallery/images/preview/talisman_of_curiosity.png
deleted file mode 100644
index 5c96c118..00000000
Binary files a/gallery/images/preview/talisman_of_curiosity.png and /dev/null differ
diff --git a/gallery/images/preview/talisman_of_hierarchy.png b/gallery/images/preview/talisman_of_hierarchy.png
deleted file mode 100644
index d93d23cd..00000000
Binary files a/gallery/images/preview/talisman_of_hierarchy.png and /dev/null differ
diff --git a/gallery/images/preview/talisman_of_resilience.png b/gallery/images/preview/talisman_of_resilience.png
deleted file mode 100644
index 9bbe259f..00000000
Binary files a/gallery/images/preview/talisman_of_resilience.png and /dev/null differ
diff --git a/gallery/images/preview/teferi's protection (emergency meeting).png b/gallery/images/preview/teferi's protection (emergency meeting).png
deleted file mode 100644
index f74bfa76..00000000
Binary files a/gallery/images/preview/teferi's protection (emergency meeting).png and /dev/null differ
diff --git a/gallery/images/preview/temple_garden (2).png b/gallery/images/preview/temple_garden (2).png
deleted file mode 100644
index 139f39da..00000000
Binary files a/gallery/images/preview/temple_garden (2).png and /dev/null differ
diff --git a/gallery/images/preview/temple_garden.png b/gallery/images/preview/temple_garden.png
deleted file mode 100644
index 7b2f7d7a..00000000
Binary files a/gallery/images/preview/temple_garden.png and /dev/null differ
diff --git a/gallery/images/preview/thassa's_oracle.png b/gallery/images/preview/thassa's_oracle.png
deleted file mode 100644
index e26e7d6e..00000000
Binary files a/gallery/images/preview/thassa's_oracle.png and /dev/null differ
diff --git a/gallery/images/preview/the-gitrog-monster.png b/gallery/images/preview/the-gitrog-monster.png
deleted file mode 100644
index 9cad2e7f..00000000
Binary files a/gallery/images/preview/the-gitrog-monster.png and /dev/null differ
diff --git a/gallery/images/preview/the_ozolith.png b/gallery/images/preview/the_ozolith.png
deleted file mode 100644
index a83c9cde..00000000
Binary files a/gallery/images/preview/the_ozolith.png and /dev/null differ
diff --git a/gallery/images/preview/the_storm_crow.png b/gallery/images/preview/the_storm_crow.png
deleted file mode 100644
index b770c8a3..00000000
Binary files a/gallery/images/preview/the_storm_crow.png and /dev/null differ
diff --git a/gallery/images/preview/thran_dynamo.png b/gallery/images/preview/thran_dynamo.png
deleted file mode 100644
index 3da9b8b1..00000000
Binary files a/gallery/images/preview/thran_dynamo.png and /dev/null differ
diff --git a/gallery/images/preview/thriving_bluff.png b/gallery/images/preview/thriving_bluff.png
deleted file mode 100644
index 9e13144b..00000000
Binary files a/gallery/images/preview/thriving_bluff.png and /dev/null differ
diff --git a/gallery/images/preview/thriving_grove.png b/gallery/images/preview/thriving_grove.png
deleted file mode 100644
index acaee588..00000000
Binary files a/gallery/images/preview/thriving_grove.png and /dev/null differ
diff --git a/gallery/images/preview/thriving_heath.png b/gallery/images/preview/thriving_heath.png
deleted file mode 100644
index 68a881fa..00000000
Binary files a/gallery/images/preview/thriving_heath.png and /dev/null differ
diff --git a/gallery/images/preview/thriving_moor.png b/gallery/images/preview/thriving_moor.png
deleted file mode 100644
index 05d621a2..00000000
Binary files a/gallery/images/preview/thriving_moor.png and /dev/null differ
diff --git a/gallery/images/preview/thryx, the sudden storm (aquaman).png b/gallery/images/preview/thryx, the sudden storm (aquaman).png
deleted file mode 100644
index 6ea5ad3b..00000000
Binary files a/gallery/images/preview/thryx, the sudden storm (aquaman).png and /dev/null differ
diff --git a/gallery/images/preview/tiana_ship's_caretaker (kaylee frye).png b/gallery/images/preview/tiana_ship's_caretaker (kaylee frye).png
deleted file mode 100644
index bf0e0580..00000000
Binary files a/gallery/images/preview/tiana_ship's_caretaker (kaylee frye).png and /dev/null differ
diff --git a/gallery/images/preview/true_conviction.png b/gallery/images/preview/true_conviction.png
deleted file mode 100644
index 642fc36d..00000000
Binary files a/gallery/images/preview/true_conviction.png and /dev/null differ
diff --git a/gallery/images/preview/ulamog,_the_ceaseless_hunger.png b/gallery/images/preview/ulamog,_the_ceaseless_hunger.png
deleted file mode 100644
index 779de2c3..00000000
Binary files a/gallery/images/preview/ulamog,_the_ceaseless_hunger.png and /dev/null differ
diff --git a/gallery/images/preview/ulamog,_the_infinite_gyre.png b/gallery/images/preview/ulamog,_the_infinite_gyre.png
deleted file mode 100644
index 316d5ed0..00000000
Binary files a/gallery/images/preview/ulamog,_the_infinite_gyre.png and /dev/null differ
diff --git a/gallery/images/preview/valakut,_the_molten_pinnacle.png b/gallery/images/preview/valakut,_the_molten_pinnacle.png
deleted file mode 100644
index 748103a6..00000000
Binary files a/gallery/images/preview/valakut,_the_molten_pinnacle.png and /dev/null differ
diff --git a/gallery/images/preview/vanquisher's_banner.png b/gallery/images/preview/vanquisher's_banner.png
deleted file mode 100644
index 3d050f82..00000000
Binary files a/gallery/images/preview/vanquisher's_banner.png and /dev/null differ
diff --git a/gallery/images/preview/vilis,_broker_of_blood.png b/gallery/images/preview/vilis,_broker_of_blood.png
deleted file mode 100644
index 9bb2ba49..00000000
Binary files a/gallery/images/preview/vilis,_broker_of_blood.png and /dev/null differ
diff --git a/gallery/images/preview/vizier_of_the_menagerie.png b/gallery/images/preview/vizier_of_the_menagerie.png
deleted file mode 100644
index fd6c841b..00000000
Binary files a/gallery/images/preview/vizier_of_the_menagerie.png and /dev/null differ
diff --git a/gallery/images/preview/watery_grave (2).png b/gallery/images/preview/watery_grave (2).png
deleted file mode 100644
index 160507bd..00000000
Binary files a/gallery/images/preview/watery_grave (2).png and /dev/null differ
diff --git a/gallery/images/preview/watery_grave.png b/gallery/images/preview/watery_grave.png
deleted file mode 100644
index 801cb6ed..00000000
Binary files a/gallery/images/preview/watery_grave.png and /dev/null differ
diff --git a/gallery/images/preview/weatherlight (serenity).png b/gallery/images/preview/weatherlight (serenity).png
deleted file mode 100644
index 2b2a9f9c..00000000
Binary files a/gallery/images/preview/weatherlight (serenity).png and /dev/null differ
diff --git a/gallery/images/preview/whispersilk_cloak.png b/gallery/images/preview/whispersilk_cloak.png
deleted file mode 100644
index 72c2331b..00000000
Binary files a/gallery/images/preview/whispersilk_cloak.png and /dev/null differ
diff --git a/gallery/images/preview/windswept_heath (2).png b/gallery/images/preview/windswept_heath (2).png
deleted file mode 100644
index 8c7e08e9..00000000
Binary files a/gallery/images/preview/windswept_heath (2).png and /dev/null differ
diff --git a/gallery/images/preview/windswept_heath.png b/gallery/images/preview/windswept_heath.png
deleted file mode 100644
index 722c831a..00000000
Binary files a/gallery/images/preview/windswept_heath.png and /dev/null differ
diff --git a/gallery/images/preview/wooded_foothills (1).png b/gallery/images/preview/wooded_foothills (1).png
deleted file mode 100644
index 13d9afd9..00000000
Binary files a/gallery/images/preview/wooded_foothills (1).png and /dev/null differ
diff --git a/gallery/images/preview/wooded_foothills (2).png b/gallery/images/preview/wooded_foothills (2).png
deleted file mode 100644
index a53b4e7e..00000000
Binary files a/gallery/images/preview/wooded_foothills (2).png and /dev/null differ
diff --git a/gallery/images/preview/wooded_foothills.png b/gallery/images/preview/wooded_foothills.png
deleted file mode 100644
index 1a07101c..00000000
Binary files a/gallery/images/preview/wooded_foothills.png and /dev/null differ
diff --git a/gallery/images/preview/worldly_tutor.png b/gallery/images/preview/worldly_tutor.png
deleted file mode 100644
index fd081e38..00000000
Binary files a/gallery/images/preview/worldly_tutor.png and /dev/null differ
diff --git a/gallery/images/preview/yarok,_the_desecrated.png b/gallery/images/preview/yarok,_the_desecrated.png
deleted file mode 100644
index f28ebc3e..00000000
Binary files a/gallery/images/preview/yarok,_the_desecrated.png and /dev/null differ
diff --git a/gallery/images/preview/zacama,_primal_calamity.png b/gallery/images/preview/zacama,_primal_calamity.png
deleted file mode 100644
index 5d6a26bd..00000000
Binary files a/gallery/images/preview/zacama,_primal_calamity.png and /dev/null differ
diff --git a/gallery/images/preview/zirda, the dawnwaker (flareon).png b/gallery/images/preview/zirda, the dawnwaker (flareon).png
deleted file mode 100644
index 17bf9f13..00000000
Binary files a/gallery/images/preview/zirda, the dawnwaker (flareon).png and /dev/null differ
diff --git a/gallery/images/preview/zirda,_the_dawnwaker.png b/gallery/images/preview/zirda,_the_dawnwaker.png
deleted file mode 100644
index f5ef6995..00000000
Binary files a/gallery/images/preview/zirda,_the_dawnwaker.png and /dev/null differ
diff --git a/gallery/images/preview/zurzoth,_chaos_rider.png b/gallery/images/preview/zurzoth,_chaos_rider.png
deleted file mode 100644
index 8fbe3bb4..00000000
Binary files a/gallery/images/preview/zurzoth,_chaos_rider.png and /dev/null differ
diff --git a/gallery/index.html b/gallery/index.html
deleted file mode 100644
index 143db564..00000000
--- a/gallery/index.html
+++ /dev/null
@@ -1,32 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- CC - Gallery
-
Kyle's Proxy Gallery
-
-
-
-
-
-
-
-
-
-
-
diff --git a/globalHTML/footer.html b/globalHTML/footer.html
new file mode 100644
index 00000000..5e448673
--- /dev/null
+++ b/globalHTML/footer.html
@@ -0,0 +1,16 @@
+
\ No newline at end of file
diff --git a/globalHTML/header.html b/globalHTML/header.html
new file mode 100644
index 00000000..77599fb5
--- /dev/null
+++ b/globalHTML/header.html
@@ -0,0 +1 @@
+
CARD CONJURER
\ No newline at end of file
diff --git a/globalHTML/menu.html b/globalHTML/menu.html
new file mode 100644
index 00000000..9d198755
--- /dev/null
+++ b/globalHTML/menu.html
@@ -0,0 +1,20 @@
+
+
+
Adjust the height (first input) and loyalty chapter count (second input) of each Saga ability
+
First Ability:
+
+
+
+
+
Second Ability:
+
+
+
+
+
Third Ability:
+
+
+
+
+
Fourth Ability:
+
+
+
+
+
`;
+ if (!card.saga) {
+ card.saga = {abilities:[1, 1, 1, 0], count:3, x:0.1, width:0.3947};
+ }
+ document.querySelector('#creator-menu-sections').appendChild(newHTML);
+ var sagaChapter = new Image();
+ sagaChapter.src = '/img/frames/saga/sagaChapter.png';
+ var sagaDivider = new Image();
+ sagaDivider.src = '/img/frames/saga/sagaDivider.png';
+ sagaChapter.onload = sagaDivider.onload = sagaEdited;
+ fixSagaInputs(sagaEdited);
+}
+
+function sagaEdited() {
+ //gather data
+ card.saga.abilities[0] = document.querySelector('#saga-chapters-0').value;
+ card.saga.abilities[1] = document.querySelector('#saga-chapters-1').value;
+ card.saga.abilities[2] = document.querySelector('#saga-chapters-2').value;
+ card.saga.abilities[3] = document.querySelector('#saga-chapters-3').value;
+ card.saga.count = 0;
+ var lastY = card.text.ability0.y;
+ for (var i = 0; i < 4; i ++) {
+ card.text['ability' + i].y = lastY;
+ var height = parseFloat((parseInt(document.querySelector('#saga-height-' + i).value) / card.height).toFixed(4));
+ if (height > 0) {
+ card.saga.count ++;
+ }
+ card.text['ability' + i].height = height;
+ lastY += height;
+ }
+ fixSagaInputs();
+ //draw to saga canvas
+ sagaContext.clearRect(0, 0, sagaCanvas.width, sagaCanvas.height);
+ sagaContext.font = 'normal normal 550 ' + scaleHeight(0.0324) + 'px plantinsemibold';
+ sagaContext.textAlign = 'center';
+ var sagaCount = 1;
+ for (var i = 0; i < card.saga.count; i ++) {
+ var x = scaleX(card.saga.x);
+ var y = scaleY(card.text['ability' + i].y);
+ var width = scaleWidth(card.saga.width);
+ var height = scaleHeight(card.text['ability' + i].height);
+ if (sagaDivider.complete) {
+ sagaContext.drawImage(sagaDivider, x, y - scaleHeight(0.0029) / 2, width, scaleHeight(0.0029));
+ }
+ if (sagaChapter.complete) {
+ var numeralX = x - scaleWidth(0.0614);
+ var numeralWidth = scaleWidth(0.0787);
+ var numeralHeight = scaleHeight(0.0629);
+ var numeralY = y + (height - numeralHeight) / 2;
+ var numeralTextX = numeralX + scaleWidth(0.0394);
+ var numeralTextY = numeralY + scaleHeight(0.0429);
+ if (card.saga.abilities[i] == 1) {
+ sagaContext.drawImage(sagaChapter, numeralX, numeralY, numeralWidth, numeralHeight);
+ sagaContext.fillText(romanNumeral(sagaCount), numeralTextX, numeralTextY);
+ sagaCount ++;
+ } else {
+ var numeralSpread = scaleHeight(0.0358);
+ var numeralTextSpread = scaleHeight(0.0358);
+ sagaContext.drawImage(sagaChapter, numeralX, numeralY - numeralSpread, numeralWidth, numeralHeight);
+ sagaContext.drawImage(sagaChapter, numeralX, numeralY + numeralSpread, numeralWidth, numeralHeight);
+ sagaContext.fillText(romanNumeral(sagaCount), numeralTextX, numeralTextY - numeralTextSpread);
+ sagaContext.fillText(romanNumeral(sagaCount + 1), numeralTextX, numeralTextY + numeralTextSpread);
+ sagaCount += 2;
+ }
+ }
+ }
+ drawTextBuffer();
+ drawCard();
+}
+
+function fixSagaInputs(callback) {
+ document.querySelector('#saga-height-0').value = scaleHeight(card.text.ability0.height);
+ document.querySelector('#saga-chapters-0').value = card.saga.abilities[0];
+ document.querySelector('#saga-height-1').value = scaleHeight(card.text.ability1.height);
+ document.querySelector('#saga-chapters-1').value = card.saga.abilities[1];
+ document.querySelector('#saga-height-2').value = scaleHeight(card.text.ability2.height);
+ document.querySelector('#saga-chapters-2').value = card.saga.abilities[2];
+ document.querySelector('#saga-height-3').value = scaleHeight(card.text.ability3.height);
+ document.querySelector('#saga-chapters-3').value = card.saga.abilities[3];
+ if (callback) {
+ callback();
+ }
+}
+
+function romanNumeral(input) {
+ switch(input) {
+ case 1: return 'I';
+ case 2: return 'II';
+ case 3: return 'III';
+ case 4: return 'IV';
+ case 5: return 'V';
+ case 6: return 'VI';
+ default: return input;
+ }
+}
\ No newline at end of file
diff --git a/js/includeHTML.js b/js/includeHTML.js
new file mode 100644
index 00000000..cf83e3f8
--- /dev/null
+++ b/js/includeHTML.js
@@ -0,0 +1,24 @@
+function includeHTML() {
+ var elementList = document.getElementsByTagName('*');
+ for (var i = 0; i < elementList.length; i ++) {
+ element = elementList[i];
+ var file = element.getAttribute('html-include');
+ if (file) {
+ var xhttp = new XMLHttpRequest();
+ xhttp.onreadystatechange = function() {
+ if (this.readyState == 4) {
+ if (this.status == 200) {
+ element.innerHTML = this.responseText;
+ } else if (this.status == 404) {
+ element.innerHTML = 'HTML inclusion not found';
+ }
+ element.removeAttribute('html-include');
+ includeHTML();
+ }
+ }
+ xhttp.open('GET', file, true);
+ xhttp.send();
+ return;
+ }
+ }
+}
\ No newline at end of file
diff --git a/js/main.js b/js/main.js
new file mode 100644
index 00000000..335ee94b
--- /dev/null
+++ b/js/main.js
@@ -0,0 +1,10 @@
+function toggleMenu() {
+ if (document.querySelector('.hamburger').classList.contains('opened')) {
+ document.querySelector('.hamburger').classList.remove('opened');
+ Array.from(document.querySelectorAll('.menu-visible')).forEach(element => element.classList.remove('menu-visible'));
+ } else {
+ document.documentElement.style.setProperty('--window-diagonal-size', (Math.floor(Math.sqrt(window.innerWidth ** 2 + window.innerHeight ** 2)) + 2) + 'px');
+ document.querySelector('.hamburger').classList.add('opened');
+ document.querySelector('.menu').classList.add('menu-visible');
+ }
+}
\ No newline at end of file
diff --git a/legal/index.html b/legal/index.html
deleted file mode 100644
index 229a5673..00000000
--- a/legal/index.html
+++ /dev/null
@@ -1,79 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- CC - Terms and Conditions
-
Introduction
-
-
- Welcome, and thank you for using Card Conjurer!
-
- In these Terms and Conditions ("Terms") CardConjurer.com will refer to itself as "Card Conjurer", "we", "us", or "our".
-
- By using our website ("Services"), you confirm that you have read, understand, and agree to be bound by these Terms.
-
-
-
Disclaimer
-
-
- We are in no way affiliated with, sponsored by, or endorsed by Wizards of the Coast. Fonts, Mana symbols, and other related images are trademarks and copyrights of Wizards of the Coast, LLC, a subsidiary of Hasbro, Inc.
-
- Some card frames, or elements used in various card frames, were sourced from Chilli_Axe, Kentu, thevodkaboy, and Timmy XD69.
-
- Any user-uploaded artwork is property of the original artist, and it is up to the users to ensure that these images are properly credited.
-
-
-
Terms of Use
-
-
- Our services are intented for personal use only, not commercial.
-
- You will not upload artwork that you do not have permission to use, or is in any way illegal.
-
-
-
Cookies/Storage
-
-
- By using our services, you are consenting to the use of localStorage and cookies on your device. The data only serves to store settings you have previously input to improve your experience.
-
-
-
Advertising
-
-
- We may present advertisements for or links to third party websites, products, and/or services ("Third Party Ads"). We are not responsible for the availability of these Third Party Ads, the materials they contain, nor any damages or losses they ensue.
-
-
-
Liability
-
-
- We are not responsible for any damages to your device related to the use of our Services.
-
-
-
Changes
-
-
- We may revise these Terms at any time. We are not responsible for notifying users of any changes to these Terms, and by continuing to use our Services you are agreeing to be bound by the most recent revision.
-
-
-
Contact
-
-
- If you have any questions regarding this Agreement, you may contact us at CardConjurerMTG@gmail.com.
-
- Input the text you would like to be "translated"
-
-
-
- Then copy the "translated" text from here
-
-
-
-
-
-
- This is not a real translator. It simply detects paragraphs and sentences, then randomly converts characters to phyrexian. Once you have the copied text, drop it into the Card Creator following {fontphyrexian} wherever you'd like!
-