diff --git a/bin/main.py b/bin/main.py index 5f9f79b..7d62a52 100644 --- a/bin/main.py +++ b/bin/main.py @@ -1,10 +1,12 @@ from doctest import master from tkinter import * +import os + from PIL import Image, ImageTk -WINDOW_X = 1100 -WINDOW_Y = 540 +WINDOW_X = 533 + 1200 +WINDOW_Y = 950 FRAME_WIDTH = 533 FRAME_HEIGHT = 533 @@ -19,39 +21,75 @@ class Player(object): self.current_x = self.x_start self.current_y = self.y_start self.step = IMAGE_SIZE + self.x_start - self.arrayPosition = [[0] * field.cows] * field.cows + self.current_array_x = 0 + self.current_array_y = 0 def Moving(self, event): # Moving if event.keysym == "Right": if self.current_x + self.step < FRAME_WIDTH: self.current_x += self.step - canvas.delete('all') + field_canvas.delete('all') + large_image_canvas.delete('all') + self.current_array_x += 1 + field.Fill() + self.Rectangle() + elif self.current_y + self.step < FRAME_HEIGHT: + self.current_x = self.x_start + field_canvas.delete('all') + large_image_canvas.delete('all') + self.current_array_x = 0 + self.current_array_y += 1 + self.current_y += self.step field.Fill() self.Rectangle() elif event.keysym == "Left": if self.current_x - self.step >= self.x_start: self.current_x -= self.step - canvas.delete('all') + field_canvas.delete('all') + large_image_canvas.delete('all') + self.current_array_x -= 1 + field.Fill() + self.Rectangle() + elif self.current_y - self.step >= self.y_start: + self.current_x = FRAME_WIDTH - self.step + field_canvas.delete('all') + large_image_canvas.delete('all') + self.current_array_x = 9 + self.current_array_y -= 1 + self.current_y -= self.step field.Fill() self.Rectangle() elif event.keysym == "Up": if self.current_y - self.step >= self.y_start: self.current_y -= self.step - canvas.delete('all') + field_canvas.delete('all') + large_image_canvas.delete('all') + self.current_array_y -= 1 field.Fill() self.Rectangle() elif event.keysym == "Down": if self.current_y + self.step < FRAME_HEIGHT: self.current_y += self.step - canvas.delete('all') + field_canvas.delete('all') + large_image_canvas.delete('all') + self.current_array_y += 1 field.Fill() self.Rectangle() # Drawing rectangle def Rectangle(self): - canvas.create_rectangle(self.current_x, self.current_y, self.current_x + self.step - 2, - self.current_y + self.step - 2, width=3, outline='red') + field_canvas.create_rectangle(self.current_x, self.current_y, self.current_x + self.step - 2, + self.current_y + self.step - 2, width=3, outline='red') + + +def DrawingLargeImage(): + large_img_name = large_image_array[player.current_array_y][player.current_array_x] + # large_img_path = f"{large_directory}/{large_img_name}" + # large_img = PhotoImage(file=large_img_path) + + large_image_canvas.image = large_img_name + large_image_canvas.create_image(0, 0, anchor=NW, image=large_img_name) class Field(object): @@ -60,7 +98,7 @@ class Field(object): self.height = 533 self.image_size = 50 self.rows = 10 - self.cows = 10 + self.columns = 10 self.x_start = 3 self.y_start = 3 @@ -68,12 +106,38 @@ class Field(object): def Fill(self): x = self.x_start y = self.y_start - for i in range(self.cows): + row = 0 + column = 0 + for i in range(self.columns): for j in range(self.rows): - canvas.create_image(x, y, anchor=NW, image=img) + small_image_name = small_image_array[column][row] + # small_image_path = f"{small_directory}/{small_image_name}" + # small_img = PhotoImage(file=small_image_path) + + field_canvas.image = small_image_name + field_canvas.create_image(x, y, anchor=NW, image=small_image_name) x += self.image_size + self.x_start + row += 1 y += self.image_size + self.y_start x = self.x_start + column += 1 + row = 0 + DrawingLargeImage() + + +def ImagesInArray(directory, array): + # Filling array from directory + row = column = 0 + for file in os.listdir(directory): + image_name = file + image_path = f"{directory}/{image_name}" + image = PhotoImage(file=image_path) + + array[row][column] = image + column += 1 + if column == 10: + column = 0 + row += 1 def main(): @@ -84,25 +148,44 @@ def main(): window.title("Sapper") window.geometry(window_size) - # Creating the frame - frame = Frame(master, width=FRAME_WIDTH, height=FRAME_HEIGHT, bd=1) - frame.pack(anchor=NW) - - # Creating the canvas - global canvas - canvas = Canvas(frame, width=FRAME_WIDTH, height=FRAME_HEIGHT, bg='white') - canvas.pack() - - # Loading image - global img - img = PhotoImage(file="../files/imgs/image.png") - # Creating objects global player global field field = Field() player = Player() + # Creating arrays with names of images + global large_image_array + global small_image_array + small_image_array = [[0 for i in range(field.rows)] for j in range(field.columns)] + large_image_array = [[0 for i in range(field.rows)] for j in range(field.columns)] + + # Filling image arrays + global large_directory + global small_directory + large_directory = "../files/large_images" + ImagesInArray(large_directory, large_image_array) + small_directory = "../files/small_images" + ImagesInArray(small_directory, small_image_array) + + # Creating the frames + main_frame = Frame(master, width=FRAME_WIDTH, height=FRAME_HEIGHT, bd=1) + main_frame.pack(anchor=NW) + + # Creating the canvas + global field_canvas + field_canvas = Canvas(main_frame, width=FRAME_WIDTH, height=FRAME_HEIGHT, bg='white') + field_canvas.pack() + + # Creating the canvas for large image + global large_image_canvas + large_image_canvas = Canvas(window, width=WINDOW_X - 533 - 20, height=900, bg='white') + large_image_canvas.place(x=FRAME_WIDTH + 5, y=player.y_start) + + # Loading image + global img + img = PhotoImage(file="../files/small_images/image.png") + # Filling window with images Field.Fill(field) # Drawing rectangle (player) diff --git a/bin/test.py b/bin/test.py deleted file mode 100644 index 5f9f79b..0000000 --- a/bin/test.py +++ /dev/null @@ -1,117 +0,0 @@ -from doctest import master -from tkinter import * - -from PIL import Image, ImageTk - -WINDOW_X = 1100 -WINDOW_Y = 540 -FRAME_WIDTH = 533 -FRAME_HEIGHT = 533 - -# Size of small image -IMAGE_SIZE = 50 - - -class Player(object): - def __init__(self): - self.x_start = 3 - self.y_start = 3 - self.current_x = self.x_start - self.current_y = self.y_start - self.step = IMAGE_SIZE + self.x_start - self.arrayPosition = [[0] * field.cows] * field.cows - - def Moving(self, event): - # Moving - if event.keysym == "Right": - if self.current_x + self.step < FRAME_WIDTH: - self.current_x += self.step - canvas.delete('all') - field.Fill() - self.Rectangle() - elif event.keysym == "Left": - if self.current_x - self.step >= self.x_start: - self.current_x -= self.step - canvas.delete('all') - field.Fill() - self.Rectangle() - elif event.keysym == "Up": - if self.current_y - self.step >= self.y_start: - self.current_y -= self.step - canvas.delete('all') - field.Fill() - self.Rectangle() - elif event.keysym == "Down": - if self.current_y + self.step < FRAME_HEIGHT: - self.current_y += self.step - canvas.delete('all') - field.Fill() - self.Rectangle() - - # Drawing rectangle - def Rectangle(self): - canvas.create_rectangle(self.current_x, self.current_y, self.current_x + self.step - 2, - self.current_y + self.step - 2, width=3, outline='red') - - -class Field(object): - def __init__(self): - self.width = 533 - self.height = 533 - self.image_size = 50 - self.rows = 10 - self.cows = 10 - self.x_start = 3 - self.y_start = 3 - - # Putting images - def Fill(self): - x = self.x_start - y = self.y_start - for i in range(self.cows): - for j in range(self.rows): - canvas.create_image(x, y, anchor=NW, image=img) - x += self.image_size + self.x_start - y += self.image_size + self.y_start - x = self.x_start - - -def main(): - # Creating the main window of an application - window_size = f'{WINDOW_X}x{WINDOW_Y}' - global window - window = Tk() - window.title("Sapper") - window.geometry(window_size) - - # Creating the frame - frame = Frame(master, width=FRAME_WIDTH, height=FRAME_HEIGHT, bd=1) - frame.pack(anchor=NW) - - # Creating the canvas - global canvas - canvas = Canvas(frame, width=FRAME_WIDTH, height=FRAME_HEIGHT, bg='white') - canvas.pack() - - # Loading image - global img - img = PhotoImage(file="../files/imgs/image.png") - - # Creating objects - global player - global field - field = Field() - player = Player() - - # Filling window with images - Field.Fill(field) - # Drawing rectangle (player) - Player.Rectangle(player) - # Binding keyboard press to function - window.bind("", player.Moving) - # Starting mainloop for window - window.mainloop() - - -if __name__ == '__main__': - main() diff --git a/files/imgs/image.png b/files/imgs/image.png deleted file mode 100644 index baa14b5..0000000 Binary files a/files/imgs/image.png and /dev/null differ diff --git a/files/large_images/1.jpg b/files/large_images/1.jpg new file mode 100644 index 0000000..9bee7f4 Binary files /dev/null and b/files/large_images/1.jpg differ diff --git a/files/large_images/10.png b/files/large_images/10.png new file mode 100644 index 0000000..933dd9c Binary files /dev/null and b/files/large_images/10.png differ diff --git a/files/large_images/11.png b/files/large_images/11.png new file mode 100644 index 0000000..bef4f96 Binary files /dev/null and b/files/large_images/11.png differ diff --git a/files/large_images/12.png b/files/large_images/12.png new file mode 100644 index 0000000..08ee5e0 Binary files /dev/null and b/files/large_images/12.png differ diff --git a/files/large_images/2.png b/files/large_images/2.png new file mode 100644 index 0000000..d2f374e Binary files /dev/null and b/files/large_images/2.png differ diff --git a/files/large_images/3.png b/files/large_images/3.png new file mode 100644 index 0000000..dfd4084 Binary files /dev/null and b/files/large_images/3.png differ diff --git a/files/large_images/4.png b/files/large_images/4.png new file mode 100644 index 0000000..4107cf5 Binary files /dev/null and b/files/large_images/4.png differ diff --git a/files/large_images/5.png b/files/large_images/5.png new file mode 100644 index 0000000..c02608e Binary files /dev/null and b/files/large_images/5.png differ diff --git a/files/large_images/6.png b/files/large_images/6.png new file mode 100644 index 0000000..f79ced9 Binary files /dev/null and b/files/large_images/6.png differ diff --git a/files/large_images/7.png b/files/large_images/7.png new file mode 100644 index 0000000..4c918d0 Binary files /dev/null and b/files/large_images/7.png differ diff --git a/files/large_images/8.png b/files/large_images/8.png new file mode 100644 index 0000000..ccc71f5 Binary files /dev/null and b/files/large_images/8.png differ diff --git a/files/large_images/9.png b/files/large_images/9.png new file mode 100644 index 0000000..8cc1cd2 Binary files /dev/null and b/files/large_images/9.png differ diff --git a/files/large_images/depositphotos_101003978-stock-photo-landscape-plowed-field - Copy (2).png b/files/large_images/depositphotos_101003978-stock-photo-landscape-plowed-field - Copy (2).png new file mode 100644 index 0000000..9acd364 Binary files /dev/null and b/files/large_images/depositphotos_101003978-stock-photo-landscape-plowed-field - Copy (2).png differ diff --git a/files/large_images/depositphotos_101003978-stock-photo-landscape-plowed-field - Copy.png b/files/large_images/depositphotos_101003978-stock-photo-landscape-plowed-field - Copy.png new file mode 100644 index 0000000..9acd364 Binary files /dev/null and b/files/large_images/depositphotos_101003978-stock-photo-landscape-plowed-field - Copy.png differ diff --git a/files/large_images/depositphotos_101003978-stock-photo-landscape-plowed-field.png b/files/large_images/depositphotos_101003978-stock-photo-landscape-plowed-field.png new file mode 100644 index 0000000..9acd364 Binary files /dev/null and b/files/large_images/depositphotos_101003978-stock-photo-landscape-plowed-field.png differ diff --git a/files/large_images/depositphotos_108592346-stock-photo-landscape-plowed-field - Copy (2) - Copy.png b/files/large_images/depositphotos_108592346-stock-photo-landscape-plowed-field - Copy (2) - Copy.png new file mode 100644 index 0000000..c6cfc31 Binary files /dev/null and b/files/large_images/depositphotos_108592346-stock-photo-landscape-plowed-field - Copy (2) - Copy.png differ diff --git a/files/large_images/depositphotos_108592346-stock-photo-landscape-plowed-field - Copy (2).png b/files/large_images/depositphotos_108592346-stock-photo-landscape-plowed-field - Copy (2).png new file mode 100644 index 0000000..c6cfc31 Binary files /dev/null and b/files/large_images/depositphotos_108592346-stock-photo-landscape-plowed-field - Copy (2).png differ diff --git a/files/large_images/depositphotos_108592346-stock-photo-landscape-plowed-field - Copy (3).png b/files/large_images/depositphotos_108592346-stock-photo-landscape-plowed-field - Copy (3).png new file mode 100644 index 0000000..c6cfc31 Binary files /dev/null and b/files/large_images/depositphotos_108592346-stock-photo-landscape-plowed-field - Copy (3).png differ diff --git a/files/large_images/depositphotos_108592346-stock-photo-landscape-plowed-field - Copy.png b/files/large_images/depositphotos_108592346-stock-photo-landscape-plowed-field - Copy.png new file mode 100644 index 0000000..c6cfc31 Binary files /dev/null and b/files/large_images/depositphotos_108592346-stock-photo-landscape-plowed-field - Copy.png differ diff --git a/files/large_images/depositphotos_108592346-stock-photo-landscape-plowed-field.png b/files/large_images/depositphotos_108592346-stock-photo-landscape-plowed-field.png new file mode 100644 index 0000000..c6cfc31 Binary files /dev/null and b/files/large_images/depositphotos_108592346-stock-photo-landscape-plowed-field.png differ diff --git a/files/large_images/depositphotos_115612186-stock-photo-planting-potatoes-potato-field - Copy (2).png b/files/large_images/depositphotos_115612186-stock-photo-planting-potatoes-potato-field - Copy (2).png new file mode 100644 index 0000000..400f7b1 Binary files /dev/null and b/files/large_images/depositphotos_115612186-stock-photo-planting-potatoes-potato-field - Copy (2).png differ diff --git a/files/large_images/depositphotos_115612186-stock-photo-planting-potatoes-potato-field - Copy.png b/files/large_images/depositphotos_115612186-stock-photo-planting-potatoes-potato-field - Copy.png new file mode 100644 index 0000000..400f7b1 Binary files /dev/null and b/files/large_images/depositphotos_115612186-stock-photo-planting-potatoes-potato-field - Copy.png differ diff --git a/files/large_images/depositphotos_115612186-stock-photo-planting-potatoes-potato-field.png b/files/large_images/depositphotos_115612186-stock-photo-planting-potatoes-potato-field.png new file mode 100644 index 0000000..400f7b1 Binary files /dev/null and b/files/large_images/depositphotos_115612186-stock-photo-planting-potatoes-potato-field.png differ diff --git a/files/large_images/depositphotos_18523645-stock-photo-january-plow-soil (1) - Copy - Copy.png b/files/large_images/depositphotos_18523645-stock-photo-january-plow-soil (1) - Copy - Copy.png new file mode 100644 index 0000000..1914b52 Binary files /dev/null and b/files/large_images/depositphotos_18523645-stock-photo-january-plow-soil (1) - Copy - Copy.png differ diff --git a/files/large_images/depositphotos_18523645-stock-photo-january-plow-soil (1) - Copy.png b/files/large_images/depositphotos_18523645-stock-photo-january-plow-soil (1) - Copy.png new file mode 100644 index 0000000..1914b52 Binary files /dev/null and b/files/large_images/depositphotos_18523645-stock-photo-january-plow-soil (1) - Copy.png differ diff --git a/files/large_images/depositphotos_18523645-stock-photo-january-plow-soil (1).png b/files/large_images/depositphotos_18523645-stock-photo-january-plow-soil (1).png new file mode 100644 index 0000000..1914b52 Binary files /dev/null and b/files/large_images/depositphotos_18523645-stock-photo-january-plow-soil (1).png differ diff --git a/files/large_images/depositphotos_18523645-stock-photo-january-plow-soil (2) - Copy.png b/files/large_images/depositphotos_18523645-stock-photo-january-plow-soil (2) - Copy.png new file mode 100644 index 0000000..1914b52 Binary files /dev/null and b/files/large_images/depositphotos_18523645-stock-photo-january-plow-soil (2) - Copy.png differ diff --git a/files/large_images/depositphotos_18523645-stock-photo-january-plow-soil - Copy (2).png b/files/large_images/depositphotos_18523645-stock-photo-january-plow-soil - Copy (2).png new file mode 100644 index 0000000..1914b52 Binary files /dev/null and b/files/large_images/depositphotos_18523645-stock-photo-january-plow-soil - Copy (2).png differ diff --git a/files/large_images/depositphotos_18523645-stock-photo-january-plow-soil - Copy.png b/files/large_images/depositphotos_18523645-stock-photo-january-plow-soil - Copy.png new file mode 100644 index 0000000..1914b52 Binary files /dev/null and b/files/large_images/depositphotos_18523645-stock-photo-january-plow-soil - Copy.png differ diff --git a/files/large_images/depositphotos_18523645-stock-photo-january-plow-soil.png b/files/large_images/depositphotos_18523645-stock-photo-january-plow-soil.png new file mode 100644 index 0000000..1914b52 Binary files /dev/null and b/files/large_images/depositphotos_18523645-stock-photo-january-plow-soil.png differ diff --git a/files/large_images/depositphotos_18523745-stock-photo-winter-plow-soil - Copy (2).png b/files/large_images/depositphotos_18523745-stock-photo-winter-plow-soil - Copy (2).png new file mode 100644 index 0000000..e458e08 Binary files /dev/null and b/files/large_images/depositphotos_18523745-stock-photo-winter-plow-soil - Copy (2).png differ diff --git a/files/large_images/depositphotos_18523745-stock-photo-winter-plow-soil - Copy.png b/files/large_images/depositphotos_18523745-stock-photo-winter-plow-soil - Copy.png new file mode 100644 index 0000000..e458e08 Binary files /dev/null and b/files/large_images/depositphotos_18523745-stock-photo-winter-plow-soil - Copy.png differ diff --git a/files/large_images/depositphotos_18523745-stock-photo-winter-plow-soil.png b/files/large_images/depositphotos_18523745-stock-photo-winter-plow-soil.png new file mode 100644 index 0000000..e458e08 Binary files /dev/null and b/files/large_images/depositphotos_18523745-stock-photo-winter-plow-soil.png differ diff --git a/files/large_images/depositphotos_2960109-stock-photo-plowed-field - Copy (2).png b/files/large_images/depositphotos_2960109-stock-photo-plowed-field - Copy (2).png new file mode 100644 index 0000000..7c5f2cb Binary files /dev/null and b/files/large_images/depositphotos_2960109-stock-photo-plowed-field - Copy (2).png differ diff --git a/files/large_images/depositphotos_2960109-stock-photo-plowed-field - Copy.png b/files/large_images/depositphotos_2960109-stock-photo-plowed-field - Copy.png new file mode 100644 index 0000000..7c5f2cb Binary files /dev/null and b/files/large_images/depositphotos_2960109-stock-photo-plowed-field - Copy.png differ diff --git a/files/large_images/depositphotos_2960109-stock-photo-plowed-field.png b/files/large_images/depositphotos_2960109-stock-photo-plowed-field.png new file mode 100644 index 0000000..7c5f2cb Binary files /dev/null and b/files/large_images/depositphotos_2960109-stock-photo-plowed-field.png differ diff --git a/files/large_images/depositphotos_30143821-stock-photo-soil - Copy (2).png b/files/large_images/depositphotos_30143821-stock-photo-soil - Copy (2).png new file mode 100644 index 0000000..c74bc16 Binary files /dev/null and b/files/large_images/depositphotos_30143821-stock-photo-soil - Copy (2).png differ diff --git a/files/large_images/depositphotos_30143821-stock-photo-soil - Copy.png b/files/large_images/depositphotos_30143821-stock-photo-soil - Copy.png new file mode 100644 index 0000000..c74bc16 Binary files /dev/null and b/files/large_images/depositphotos_30143821-stock-photo-soil - Copy.png differ diff --git a/files/large_images/depositphotos_30143821-stock-photo-soil.png b/files/large_images/depositphotos_30143821-stock-photo-soil.png new file mode 100644 index 0000000..c74bc16 Binary files /dev/null and b/files/large_images/depositphotos_30143821-stock-photo-soil.png differ diff --git a/files/large_images/depositphotos_32905049-stock-photo-beautiful-view-of-the-field - Copy (2) - Copy.png b/files/large_images/depositphotos_32905049-stock-photo-beautiful-view-of-the-field - Copy (2) - Copy.png new file mode 100644 index 0000000..a0baeaa Binary files /dev/null and b/files/large_images/depositphotos_32905049-stock-photo-beautiful-view-of-the-field - Copy (2) - Copy.png differ diff --git a/files/large_images/depositphotos_32905049-stock-photo-beautiful-view-of-the-field - Copy (2).png b/files/large_images/depositphotos_32905049-stock-photo-beautiful-view-of-the-field - Copy (2).png new file mode 100644 index 0000000..a0baeaa Binary files /dev/null and b/files/large_images/depositphotos_32905049-stock-photo-beautiful-view-of-the-field - Copy (2).png differ diff --git a/files/large_images/depositphotos_32905049-stock-photo-beautiful-view-of-the-field - Copy.png b/files/large_images/depositphotos_32905049-stock-photo-beautiful-view-of-the-field - Copy.png new file mode 100644 index 0000000..a0baeaa Binary files /dev/null and b/files/large_images/depositphotos_32905049-stock-photo-beautiful-view-of-the-field - Copy.png differ diff --git a/files/large_images/depositphotos_32905049-stock-photo-beautiful-view-of-the-field.png b/files/large_images/depositphotos_32905049-stock-photo-beautiful-view-of-the-field.png new file mode 100644 index 0000000..a0baeaa Binary files /dev/null and b/files/large_images/depositphotos_32905049-stock-photo-beautiful-view-of-the-field.png differ diff --git a/files/large_images/depositphotos_3697355-stock-photo-fertile-plowed-soil-of-an - Copy (2).png b/files/large_images/depositphotos_3697355-stock-photo-fertile-plowed-soil-of-an - Copy (2).png new file mode 100644 index 0000000..bea3ea7 Binary files /dev/null and b/files/large_images/depositphotos_3697355-stock-photo-fertile-plowed-soil-of-an - Copy (2).png differ diff --git a/files/large_images/depositphotos_3697355-stock-photo-fertile-plowed-soil-of-an - Copy.png b/files/large_images/depositphotos_3697355-stock-photo-fertile-plowed-soil-of-an - Copy.png new file mode 100644 index 0000000..bea3ea7 Binary files /dev/null and b/files/large_images/depositphotos_3697355-stock-photo-fertile-plowed-soil-of-an - Copy.png differ diff --git a/files/large_images/depositphotos_3697355-stock-photo-fertile-plowed-soil-of-an.png b/files/large_images/depositphotos_3697355-stock-photo-fertile-plowed-soil-of-an.png new file mode 100644 index 0000000..bea3ea7 Binary files /dev/null and b/files/large_images/depositphotos_3697355-stock-photo-fertile-plowed-soil-of-an.png differ diff --git a/files/large_images/depositphotos_40340261-stock-photo-concept-of-spring-freshness-new (1) - Copy.png b/files/large_images/depositphotos_40340261-stock-photo-concept-of-spring-freshness-new (1) - Copy.png new file mode 100644 index 0000000..998b1b1 Binary files /dev/null and b/files/large_images/depositphotos_40340261-stock-photo-concept-of-spring-freshness-new (1) - Copy.png differ diff --git a/files/large_images/depositphotos_40340261-stock-photo-concept-of-spring-freshness-new (1).png b/files/large_images/depositphotos_40340261-stock-photo-concept-of-spring-freshness-new (1).png new file mode 100644 index 0000000..998b1b1 Binary files /dev/null and b/files/large_images/depositphotos_40340261-stock-photo-concept-of-spring-freshness-new (1).png differ diff --git a/files/large_images/depositphotos_40340261-stock-photo-concept-of-spring-freshness-new (2) - Copy.png b/files/large_images/depositphotos_40340261-stock-photo-concept-of-spring-freshness-new (2) - Copy.png new file mode 100644 index 0000000..998b1b1 Binary files /dev/null and b/files/large_images/depositphotos_40340261-stock-photo-concept-of-spring-freshness-new (2) - Copy.png differ diff --git a/files/large_images/depositphotos_40340261-stock-photo-concept-of-spring-freshness-new - Copy (2).png b/files/large_images/depositphotos_40340261-stock-photo-concept-of-spring-freshness-new - Copy (2).png new file mode 100644 index 0000000..998b1b1 Binary files /dev/null and b/files/large_images/depositphotos_40340261-stock-photo-concept-of-spring-freshness-new - Copy (2).png differ diff --git a/files/large_images/depositphotos_40340261-stock-photo-concept-of-spring-freshness-new - Copy (3).png b/files/large_images/depositphotos_40340261-stock-photo-concept-of-spring-freshness-new - Copy (3).png new file mode 100644 index 0000000..998b1b1 Binary files /dev/null and b/files/large_images/depositphotos_40340261-stock-photo-concept-of-spring-freshness-new - Copy (3).png differ diff --git a/files/large_images/depositphotos_40340261-stock-photo-concept-of-spring-freshness-new - Copy.png b/files/large_images/depositphotos_40340261-stock-photo-concept-of-spring-freshness-new - Copy.png new file mode 100644 index 0000000..998b1b1 Binary files /dev/null and b/files/large_images/depositphotos_40340261-stock-photo-concept-of-spring-freshness-new - Copy.png differ diff --git a/files/large_images/depositphotos_40340261-stock-photo-concept-of-spring-freshness-new.png b/files/large_images/depositphotos_40340261-stock-photo-concept-of-spring-freshness-new.png new file mode 100644 index 0000000..998b1b1 Binary files /dev/null and b/files/large_images/depositphotos_40340261-stock-photo-concept-of-spring-freshness-new.png differ diff --git a/files/large_images/depositphotos_43406455-stock-photo-acre-prepared-for-sowing - Copy (2).png b/files/large_images/depositphotos_43406455-stock-photo-acre-prepared-for-sowing - Copy (2).png new file mode 100644 index 0000000..1e024a7 Binary files /dev/null and b/files/large_images/depositphotos_43406455-stock-photo-acre-prepared-for-sowing - Copy (2).png differ diff --git a/files/large_images/depositphotos_43406455-stock-photo-acre-prepared-for-sowing - Copy - Copy.png b/files/large_images/depositphotos_43406455-stock-photo-acre-prepared-for-sowing - Copy - Copy.png new file mode 100644 index 0000000..1e024a7 Binary files /dev/null and b/files/large_images/depositphotos_43406455-stock-photo-acre-prepared-for-sowing - Copy - Copy.png differ diff --git a/files/large_images/depositphotos_43406455-stock-photo-acre-prepared-for-sowing - Copy.png b/files/large_images/depositphotos_43406455-stock-photo-acre-prepared-for-sowing - Copy.png new file mode 100644 index 0000000..1e024a7 Binary files /dev/null and b/files/large_images/depositphotos_43406455-stock-photo-acre-prepared-for-sowing - Copy.png differ diff --git a/files/large_images/depositphotos_43406455-stock-photo-acre-prepared-for-sowing.png b/files/large_images/depositphotos_43406455-stock-photo-acre-prepared-for-sowing.png new file mode 100644 index 0000000..1e024a7 Binary files /dev/null and b/files/large_images/depositphotos_43406455-stock-photo-acre-prepared-for-sowing.png differ diff --git a/files/large_images/depositphotos_4361804-stock-photo-dry-vegetable-plot - Copy (2).png b/files/large_images/depositphotos_4361804-stock-photo-dry-vegetable-plot - Copy (2).png new file mode 100644 index 0000000..cdfd8c2 Binary files /dev/null and b/files/large_images/depositphotos_4361804-stock-photo-dry-vegetable-plot - Copy (2).png differ diff --git a/files/large_images/depositphotos_4361804-stock-photo-dry-vegetable-plot - Copy.png b/files/large_images/depositphotos_4361804-stock-photo-dry-vegetable-plot - Copy.png new file mode 100644 index 0000000..cdfd8c2 Binary files /dev/null and b/files/large_images/depositphotos_4361804-stock-photo-dry-vegetable-plot - Copy.png differ diff --git a/files/large_images/depositphotos_4361804-stock-photo-dry-vegetable-plot.png b/files/large_images/depositphotos_4361804-stock-photo-dry-vegetable-plot.png new file mode 100644 index 0000000..cdfd8c2 Binary files /dev/null and b/files/large_images/depositphotos_4361804-stock-photo-dry-vegetable-plot.png differ diff --git a/files/large_images/depositphotos_5386265-stock-photo-plowed-field-in-spring - Copy (2) - Copy.png b/files/large_images/depositphotos_5386265-stock-photo-plowed-field-in-spring - Copy (2) - Copy.png new file mode 100644 index 0000000..81d20c8 Binary files /dev/null and b/files/large_images/depositphotos_5386265-stock-photo-plowed-field-in-spring - Copy (2) - Copy.png differ diff --git a/files/large_images/depositphotos_5386265-stock-photo-plowed-field-in-spring - Copy (2).png b/files/large_images/depositphotos_5386265-stock-photo-plowed-field-in-spring - Copy (2).png new file mode 100644 index 0000000..81d20c8 Binary files /dev/null and b/files/large_images/depositphotos_5386265-stock-photo-plowed-field-in-spring - Copy (2).png differ diff --git a/files/large_images/depositphotos_5386265-stock-photo-plowed-field-in-spring - Copy.png b/files/large_images/depositphotos_5386265-stock-photo-plowed-field-in-spring - Copy.png new file mode 100644 index 0000000..81d20c8 Binary files /dev/null and b/files/large_images/depositphotos_5386265-stock-photo-plowed-field-in-spring - Copy.png differ diff --git a/files/large_images/depositphotos_5386265-stock-photo-plowed-field-in-spring.png b/files/large_images/depositphotos_5386265-stock-photo-plowed-field-in-spring.png new file mode 100644 index 0000000..81d20c8 Binary files /dev/null and b/files/large_images/depositphotos_5386265-stock-photo-plowed-field-in-spring.png differ diff --git a/files/large_images/depositphotos_5462355-stock-photo-rejected-excavation - Copy (2).png b/files/large_images/depositphotos_5462355-stock-photo-rejected-excavation - Copy (2).png new file mode 100644 index 0000000..a593a77 Binary files /dev/null and b/files/large_images/depositphotos_5462355-stock-photo-rejected-excavation - Copy (2).png differ diff --git a/files/large_images/depositphotos_5462355-stock-photo-rejected-excavation - Copy.png b/files/large_images/depositphotos_5462355-stock-photo-rejected-excavation - Copy.png new file mode 100644 index 0000000..a593a77 Binary files /dev/null and b/files/large_images/depositphotos_5462355-stock-photo-rejected-excavation - Copy.png differ diff --git a/files/large_images/depositphotos_5462355-stock-photo-rejected-excavation.png b/files/large_images/depositphotos_5462355-stock-photo-rejected-excavation.png new file mode 100644 index 0000000..a593a77 Binary files /dev/null and b/files/large_images/depositphotos_5462355-stock-photo-rejected-excavation.png differ diff --git a/files/large_images/depositphotos_63921641-stock-photo-path-through-lava-great-trekking - Copy (2).png b/files/large_images/depositphotos_63921641-stock-photo-path-through-lava-great-trekking - Copy (2).png new file mode 100644 index 0000000..bb38d03 Binary files /dev/null and b/files/large_images/depositphotos_63921641-stock-photo-path-through-lava-great-trekking - Copy (2).png differ diff --git a/files/large_images/depositphotos_63921641-stock-photo-path-through-lava-great-trekking - Copy.png b/files/large_images/depositphotos_63921641-stock-photo-path-through-lava-great-trekking - Copy.png new file mode 100644 index 0000000..bb38d03 Binary files /dev/null and b/files/large_images/depositphotos_63921641-stock-photo-path-through-lava-great-trekking - Copy.png differ diff --git a/files/large_images/depositphotos_63921641-stock-photo-path-through-lava-great-trekking.png b/files/large_images/depositphotos_63921641-stock-photo-path-through-lava-great-trekking.png new file mode 100644 index 0000000..bb38d03 Binary files /dev/null and b/files/large_images/depositphotos_63921641-stock-photo-path-through-lava-great-trekking.png differ diff --git a/files/large_images/depositphotos_64507589-stock-photo-paddy-field-ridge - Copy (2).png b/files/large_images/depositphotos_64507589-stock-photo-paddy-field-ridge - Copy (2).png new file mode 100644 index 0000000..8f508f7 Binary files /dev/null and b/files/large_images/depositphotos_64507589-stock-photo-paddy-field-ridge - Copy (2).png differ diff --git a/files/large_images/depositphotos_64507589-stock-photo-paddy-field-ridge - Copy (3).png b/files/large_images/depositphotos_64507589-stock-photo-paddy-field-ridge - Copy (3).png new file mode 100644 index 0000000..8f508f7 Binary files /dev/null and b/files/large_images/depositphotos_64507589-stock-photo-paddy-field-ridge - Copy (3).png differ diff --git a/files/large_images/depositphotos_64507589-stock-photo-paddy-field-ridge - Copy.png b/files/large_images/depositphotos_64507589-stock-photo-paddy-field-ridge - Copy.png new file mode 100644 index 0000000..8f508f7 Binary files /dev/null and b/files/large_images/depositphotos_64507589-stock-photo-paddy-field-ridge - Copy.png differ diff --git a/files/large_images/depositphotos_64507589-stock-photo-paddy-field-ridge.png b/files/large_images/depositphotos_64507589-stock-photo-paddy-field-ridge.png new file mode 100644 index 0000000..8f508f7 Binary files /dev/null and b/files/large_images/depositphotos_64507589-stock-photo-paddy-field-ridge.png differ diff --git a/files/large_images/depositphotos_65625435-stock-photo-plowed-field - Copy (2).png b/files/large_images/depositphotos_65625435-stock-photo-plowed-field - Copy (2).png new file mode 100644 index 0000000..1c9c5f4 Binary files /dev/null and b/files/large_images/depositphotos_65625435-stock-photo-plowed-field - Copy (2).png differ diff --git a/files/large_images/depositphotos_65625435-stock-photo-plowed-field - Copy.png b/files/large_images/depositphotos_65625435-stock-photo-plowed-field - Copy.png new file mode 100644 index 0000000..1c9c5f4 Binary files /dev/null and b/files/large_images/depositphotos_65625435-stock-photo-plowed-field - Copy.png differ diff --git a/files/large_images/depositphotos_65625435-stock-photo-plowed-field.png b/files/large_images/depositphotos_65625435-stock-photo-plowed-field.png new file mode 100644 index 0000000..1c9c5f4 Binary files /dev/null and b/files/large_images/depositphotos_65625435-stock-photo-plowed-field.png differ diff --git a/files/large_images/depositphotos_76668061-stock-photo-plow (1) - Copy.png b/files/large_images/depositphotos_76668061-stock-photo-plow (1) - Copy.png new file mode 100644 index 0000000..2885ba8 Binary files /dev/null and b/files/large_images/depositphotos_76668061-stock-photo-plow (1) - Copy.png differ diff --git a/files/large_images/depositphotos_76668061-stock-photo-plow (1).png b/files/large_images/depositphotos_76668061-stock-photo-plow (1).png new file mode 100644 index 0000000..2885ba8 Binary files /dev/null and b/files/large_images/depositphotos_76668061-stock-photo-plow (1).png differ diff --git a/files/large_images/depositphotos_76668061-stock-photo-plow (2) - Copy.png b/files/large_images/depositphotos_76668061-stock-photo-plow (2) - Copy.png new file mode 100644 index 0000000..2885ba8 Binary files /dev/null and b/files/large_images/depositphotos_76668061-stock-photo-plow (2) - Copy.png differ diff --git a/files/large_images/depositphotos_76668061-stock-photo-plow - Copy (2).png b/files/large_images/depositphotos_76668061-stock-photo-plow - Copy (2).png new file mode 100644 index 0000000..2885ba8 Binary files /dev/null and b/files/large_images/depositphotos_76668061-stock-photo-plow - Copy (2).png differ diff --git a/files/large_images/depositphotos_76668061-stock-photo-plow - Copy.png b/files/large_images/depositphotos_76668061-stock-photo-plow - Copy.png new file mode 100644 index 0000000..2885ba8 Binary files /dev/null and b/files/large_images/depositphotos_76668061-stock-photo-plow - Copy.png differ diff --git a/files/large_images/depositphotos_76668061-stock-photo-plow.png b/files/large_images/depositphotos_76668061-stock-photo-plow.png new file mode 100644 index 0000000..2885ba8 Binary files /dev/null and b/files/large_images/depositphotos_76668061-stock-photo-plow.png differ diff --git a/files/large_images/depositphotos_7916504-stock-photo-agricultural-view-on-plowed-field (1) - Copy.png b/files/large_images/depositphotos_7916504-stock-photo-agricultural-view-on-plowed-field (1) - Copy.png new file mode 100644 index 0000000..fea0b9b Binary files /dev/null and b/files/large_images/depositphotos_7916504-stock-photo-agricultural-view-on-plowed-field (1) - Copy.png differ diff --git a/files/large_images/depositphotos_7916504-stock-photo-agricultural-view-on-plowed-field (1).png b/files/large_images/depositphotos_7916504-stock-photo-agricultural-view-on-plowed-field (1).png new file mode 100644 index 0000000..fea0b9b Binary files /dev/null and b/files/large_images/depositphotos_7916504-stock-photo-agricultural-view-on-plowed-field (1).png differ diff --git a/files/large_images/depositphotos_7916504-stock-photo-agricultural-view-on-plowed-field (2) - Copy.png b/files/large_images/depositphotos_7916504-stock-photo-agricultural-view-on-plowed-field (2) - Copy.png new file mode 100644 index 0000000..fea0b9b Binary files /dev/null and b/files/large_images/depositphotos_7916504-stock-photo-agricultural-view-on-plowed-field (2) - Copy.png differ diff --git a/files/large_images/depositphotos_7916504-stock-photo-agricultural-view-on-plowed-field - Copy (2).png b/files/large_images/depositphotos_7916504-stock-photo-agricultural-view-on-plowed-field - Copy (2).png new file mode 100644 index 0000000..fea0b9b Binary files /dev/null and b/files/large_images/depositphotos_7916504-stock-photo-agricultural-view-on-plowed-field - Copy (2).png differ diff --git a/files/large_images/depositphotos_7916504-stock-photo-agricultural-view-on-plowed-field - Copy.png b/files/large_images/depositphotos_7916504-stock-photo-agricultural-view-on-plowed-field - Copy.png new file mode 100644 index 0000000..fea0b9b Binary files /dev/null and b/files/large_images/depositphotos_7916504-stock-photo-agricultural-view-on-plowed-field - Copy.png differ diff --git a/files/large_images/depositphotos_7916504-stock-photo-agricultural-view-on-plowed-field.png b/files/large_images/depositphotos_7916504-stock-photo-agricultural-view-on-plowed-field.png new file mode 100644 index 0000000..fea0b9b Binary files /dev/null and b/files/large_images/depositphotos_7916504-stock-photo-agricultural-view-on-plowed-field.png differ diff --git a/files/large_images/depositphotos_89547714-stock-photo-landscape-plowed-field - Copy (2).png b/files/large_images/depositphotos_89547714-stock-photo-landscape-plowed-field - Copy (2).png new file mode 100644 index 0000000..720463c Binary files /dev/null and b/files/large_images/depositphotos_89547714-stock-photo-landscape-plowed-field - Copy (2).png differ diff --git a/files/large_images/depositphotos_89547714-stock-photo-landscape-plowed-field - Copy.png b/files/large_images/depositphotos_89547714-stock-photo-landscape-plowed-field - Copy.png new file mode 100644 index 0000000..720463c Binary files /dev/null and b/files/large_images/depositphotos_89547714-stock-photo-landscape-plowed-field - Copy.png differ diff --git a/files/large_images/depositphotos_89547714-stock-photo-landscape-plowed-field.png b/files/large_images/depositphotos_89547714-stock-photo-landscape-plowed-field.png new file mode 100644 index 0000000..720463c Binary files /dev/null and b/files/large_images/depositphotos_89547714-stock-photo-landscape-plowed-field.png differ diff --git a/files/large_images/depositphotos_9152332-stock-photo-ploughland (1) - Copy.png b/files/large_images/depositphotos_9152332-stock-photo-ploughland (1) - Copy.png new file mode 100644 index 0000000..cb6c76e Binary files /dev/null and b/files/large_images/depositphotos_9152332-stock-photo-ploughland (1) - Copy.png differ diff --git a/files/large_images/depositphotos_9152332-stock-photo-ploughland (1).png b/files/large_images/depositphotos_9152332-stock-photo-ploughland (1).png new file mode 100644 index 0000000..cb6c76e Binary files /dev/null and b/files/large_images/depositphotos_9152332-stock-photo-ploughland (1).png differ diff --git a/files/large_images/depositphotos_9152332-stock-photo-ploughland (2) - Copy.png b/files/large_images/depositphotos_9152332-stock-photo-ploughland (2) - Copy.png new file mode 100644 index 0000000..cb6c76e Binary files /dev/null and b/files/large_images/depositphotos_9152332-stock-photo-ploughland (2) - Copy.png differ diff --git a/files/large_images/depositphotos_9152332-stock-photo-ploughland - Copy (2).png b/files/large_images/depositphotos_9152332-stock-photo-ploughland - Copy (2).png new file mode 100644 index 0000000..cb6c76e Binary files /dev/null and b/files/large_images/depositphotos_9152332-stock-photo-ploughland - Copy (2).png differ diff --git a/files/large_images/depositphotos_9152332-stock-photo-ploughland - Copy - Copy.png b/files/large_images/depositphotos_9152332-stock-photo-ploughland - Copy - Copy.png new file mode 100644 index 0000000..cb6c76e Binary files /dev/null and b/files/large_images/depositphotos_9152332-stock-photo-ploughland - Copy - Copy.png differ diff --git a/files/large_images/depositphotos_9152332-stock-photo-ploughland - Copy.png b/files/large_images/depositphotos_9152332-stock-photo-ploughland - Copy.png new file mode 100644 index 0000000..cb6c76e Binary files /dev/null and b/files/large_images/depositphotos_9152332-stock-photo-ploughland - Copy.png differ diff --git a/files/large_images/depositphotos_9152332-stock-photo-ploughland.png b/files/large_images/depositphotos_9152332-stock-photo-ploughland.png new file mode 100644 index 0000000..cb6c76e Binary files /dev/null and b/files/large_images/depositphotos_9152332-stock-photo-ploughland.png differ diff --git a/files/large_images/image.png b/files/large_images/image.png new file mode 100644 index 0000000..6f5a0a8 Binary files /dev/null and b/files/large_images/image.png differ diff --git a/files/small_images/1.png b/files/small_images/1.png new file mode 100644 index 0000000..304da45 Binary files /dev/null and b/files/small_images/1.png differ diff --git a/files/small_images/10.png b/files/small_images/10.png new file mode 100644 index 0000000..8fb33f1 Binary files /dev/null and b/files/small_images/10.png differ diff --git a/files/small_images/11.png b/files/small_images/11.png new file mode 100644 index 0000000..13e1800 Binary files /dev/null and b/files/small_images/11.png differ diff --git a/files/small_images/12.png b/files/small_images/12.png new file mode 100644 index 0000000..147cf96 Binary files /dev/null and b/files/small_images/12.png differ diff --git a/files/small_images/2.png b/files/small_images/2.png new file mode 100644 index 0000000..bcdd0d7 Binary files /dev/null and b/files/small_images/2.png differ diff --git a/files/small_images/3.png b/files/small_images/3.png new file mode 100644 index 0000000..d6a4667 Binary files /dev/null and b/files/small_images/3.png differ diff --git a/files/small_images/4.png b/files/small_images/4.png new file mode 100644 index 0000000..6a53843 Binary files /dev/null and b/files/small_images/4.png differ diff --git a/files/small_images/5.png b/files/small_images/5.png new file mode 100644 index 0000000..9f8d46e Binary files /dev/null and b/files/small_images/5.png differ diff --git a/files/small_images/6.png b/files/small_images/6.png new file mode 100644 index 0000000..563d34a Binary files /dev/null and b/files/small_images/6.png differ diff --git a/files/small_images/7.png b/files/small_images/7.png new file mode 100644 index 0000000..23b133a Binary files /dev/null and b/files/small_images/7.png differ diff --git a/files/small_images/8.png b/files/small_images/8.png new file mode 100644 index 0000000..836c3a9 Binary files /dev/null and b/files/small_images/8.png differ diff --git a/files/small_images/9.png b/files/small_images/9.png new file mode 100644 index 0000000..ee5da4e Binary files /dev/null and b/files/small_images/9.png differ diff --git a/files/small_images/depositphotos_101003978-stock-photo-landscape-plowed-field - Copy (2).png b/files/small_images/depositphotos_101003978-stock-photo-landscape-plowed-field - Copy (2).png new file mode 100644 index 0000000..84440cb Binary files /dev/null and b/files/small_images/depositphotos_101003978-stock-photo-landscape-plowed-field - Copy (2).png differ diff --git a/files/small_images/depositphotos_101003978-stock-photo-landscape-plowed-field - Copy.png b/files/small_images/depositphotos_101003978-stock-photo-landscape-plowed-field - Copy.png new file mode 100644 index 0000000..84440cb Binary files /dev/null and b/files/small_images/depositphotos_101003978-stock-photo-landscape-plowed-field - Copy.png differ diff --git a/files/small_images/depositphotos_101003978-stock-photo-landscape-plowed-field.png b/files/small_images/depositphotos_101003978-stock-photo-landscape-plowed-field.png new file mode 100644 index 0000000..5c319cd Binary files /dev/null and b/files/small_images/depositphotos_101003978-stock-photo-landscape-plowed-field.png differ diff --git a/files/small_images/depositphotos_108592346-stock-photo-landscape-plowed-field - Copy (2) - Copy.png b/files/small_images/depositphotos_108592346-stock-photo-landscape-plowed-field - Copy (2) - Copy.png new file mode 100644 index 0000000..226f7b9 Binary files /dev/null and b/files/small_images/depositphotos_108592346-stock-photo-landscape-plowed-field - Copy (2) - Copy.png differ diff --git a/files/small_images/depositphotos_108592346-stock-photo-landscape-plowed-field - Copy (2).png b/files/small_images/depositphotos_108592346-stock-photo-landscape-plowed-field - Copy (2).png new file mode 100644 index 0000000..226f7b9 Binary files /dev/null and b/files/small_images/depositphotos_108592346-stock-photo-landscape-plowed-field - Copy (2).png differ diff --git a/files/small_images/depositphotos_108592346-stock-photo-landscape-plowed-field - Copy (3).png b/files/small_images/depositphotos_108592346-stock-photo-landscape-plowed-field - Copy (3).png new file mode 100644 index 0000000..226f7b9 Binary files /dev/null and b/files/small_images/depositphotos_108592346-stock-photo-landscape-plowed-field - Copy (3).png differ diff --git a/files/small_images/depositphotos_108592346-stock-photo-landscape-plowed-field - Copy.png b/files/small_images/depositphotos_108592346-stock-photo-landscape-plowed-field - Copy.png new file mode 100644 index 0000000..226f7b9 Binary files /dev/null and b/files/small_images/depositphotos_108592346-stock-photo-landscape-plowed-field - Copy.png differ diff --git a/files/small_images/depositphotos_108592346-stock-photo-landscape-plowed-field.png b/files/small_images/depositphotos_108592346-stock-photo-landscape-plowed-field.png new file mode 100644 index 0000000..226f7b9 Binary files /dev/null and b/files/small_images/depositphotos_108592346-stock-photo-landscape-plowed-field.png differ diff --git a/files/small_images/depositphotos_115612186-stock-photo-planting-potatoes-potato-field - Copy (2).png b/files/small_images/depositphotos_115612186-stock-photo-planting-potatoes-potato-field - Copy (2).png new file mode 100644 index 0000000..86715c7 Binary files /dev/null and b/files/small_images/depositphotos_115612186-stock-photo-planting-potatoes-potato-field - Copy (2).png differ diff --git a/files/small_images/depositphotos_115612186-stock-photo-planting-potatoes-potato-field - Copy.png b/files/small_images/depositphotos_115612186-stock-photo-planting-potatoes-potato-field - Copy.png new file mode 100644 index 0000000..86715c7 Binary files /dev/null and b/files/small_images/depositphotos_115612186-stock-photo-planting-potatoes-potato-field - Copy.png differ diff --git a/files/small_images/depositphotos_115612186-stock-photo-planting-potatoes-potato-field.png b/files/small_images/depositphotos_115612186-stock-photo-planting-potatoes-potato-field.png new file mode 100644 index 0000000..86715c7 Binary files /dev/null and b/files/small_images/depositphotos_115612186-stock-photo-planting-potatoes-potato-field.png differ diff --git a/files/small_images/depositphotos_18523645-stock-photo-january-plow-soil (1) - Copy - Copy.png b/files/small_images/depositphotos_18523645-stock-photo-january-plow-soil (1) - Copy - Copy.png new file mode 100644 index 0000000..0ca3976 Binary files /dev/null and b/files/small_images/depositphotos_18523645-stock-photo-january-plow-soil (1) - Copy - Copy.png differ diff --git a/files/small_images/depositphotos_18523645-stock-photo-january-plow-soil (1) - Copy.png b/files/small_images/depositphotos_18523645-stock-photo-january-plow-soil (1) - Copy.png new file mode 100644 index 0000000..0ca3976 Binary files /dev/null and b/files/small_images/depositphotos_18523645-stock-photo-january-plow-soil (1) - Copy.png differ diff --git a/files/small_images/depositphotos_18523645-stock-photo-january-plow-soil (1).png b/files/small_images/depositphotos_18523645-stock-photo-january-plow-soil (1).png new file mode 100644 index 0000000..0ca3976 Binary files /dev/null and b/files/small_images/depositphotos_18523645-stock-photo-january-plow-soil (1).png differ diff --git a/files/small_images/depositphotos_18523645-stock-photo-january-plow-soil (2) - Copy.png b/files/small_images/depositphotos_18523645-stock-photo-january-plow-soil (2) - Copy.png new file mode 100644 index 0000000..0ca3976 Binary files /dev/null and b/files/small_images/depositphotos_18523645-stock-photo-january-plow-soil (2) - Copy.png differ diff --git a/files/small_images/depositphotos_18523645-stock-photo-january-plow-soil - Copy (2).png b/files/small_images/depositphotos_18523645-stock-photo-january-plow-soil - Copy (2).png new file mode 100644 index 0000000..0ca3976 Binary files /dev/null and b/files/small_images/depositphotos_18523645-stock-photo-january-plow-soil - Copy (2).png differ diff --git a/files/small_images/depositphotos_18523645-stock-photo-january-plow-soil - Copy.png b/files/small_images/depositphotos_18523645-stock-photo-january-plow-soil - Copy.png new file mode 100644 index 0000000..0ca3976 Binary files /dev/null and b/files/small_images/depositphotos_18523645-stock-photo-january-plow-soil - Copy.png differ diff --git a/files/small_images/depositphotos_18523645-stock-photo-january-plow-soil.png b/files/small_images/depositphotos_18523645-stock-photo-january-plow-soil.png new file mode 100644 index 0000000..0ca3976 Binary files /dev/null and b/files/small_images/depositphotos_18523645-stock-photo-january-plow-soil.png differ diff --git a/files/small_images/depositphotos_18523745-stock-photo-winter-plow-soil - Copy (2).png b/files/small_images/depositphotos_18523745-stock-photo-winter-plow-soil - Copy (2).png new file mode 100644 index 0000000..76f3985 Binary files /dev/null and b/files/small_images/depositphotos_18523745-stock-photo-winter-plow-soil - Copy (2).png differ diff --git a/files/small_images/depositphotos_18523745-stock-photo-winter-plow-soil - Copy.png b/files/small_images/depositphotos_18523745-stock-photo-winter-plow-soil - Copy.png new file mode 100644 index 0000000..76f3985 Binary files /dev/null and b/files/small_images/depositphotos_18523745-stock-photo-winter-plow-soil - Copy.png differ diff --git a/files/small_images/depositphotos_18523745-stock-photo-winter-plow-soil.png b/files/small_images/depositphotos_18523745-stock-photo-winter-plow-soil.png new file mode 100644 index 0000000..76f3985 Binary files /dev/null and b/files/small_images/depositphotos_18523745-stock-photo-winter-plow-soil.png differ diff --git a/files/small_images/depositphotos_2960109-stock-photo-plowed-field - Copy (2).png b/files/small_images/depositphotos_2960109-stock-photo-plowed-field - Copy (2).png new file mode 100644 index 0000000..c958339 Binary files /dev/null and b/files/small_images/depositphotos_2960109-stock-photo-plowed-field - Copy (2).png differ diff --git a/files/small_images/depositphotos_2960109-stock-photo-plowed-field - Copy.png b/files/small_images/depositphotos_2960109-stock-photo-plowed-field - Copy.png new file mode 100644 index 0000000..c958339 Binary files /dev/null and b/files/small_images/depositphotos_2960109-stock-photo-plowed-field - Copy.png differ diff --git a/files/small_images/depositphotos_2960109-stock-photo-plowed-field.png b/files/small_images/depositphotos_2960109-stock-photo-plowed-field.png new file mode 100644 index 0000000..c958339 Binary files /dev/null and b/files/small_images/depositphotos_2960109-stock-photo-plowed-field.png differ diff --git a/files/small_images/depositphotos_30143821-stock-photo-soil - Copy (2).png b/files/small_images/depositphotos_30143821-stock-photo-soil - Copy (2).png new file mode 100644 index 0000000..3a07424 Binary files /dev/null and b/files/small_images/depositphotos_30143821-stock-photo-soil - Copy (2).png differ diff --git a/files/small_images/depositphotos_30143821-stock-photo-soil - Copy.png b/files/small_images/depositphotos_30143821-stock-photo-soil - Copy.png new file mode 100644 index 0000000..3a07424 Binary files /dev/null and b/files/small_images/depositphotos_30143821-stock-photo-soil - Copy.png differ diff --git a/files/small_images/depositphotos_30143821-stock-photo-soil.png b/files/small_images/depositphotos_30143821-stock-photo-soil.png new file mode 100644 index 0000000..3a07424 Binary files /dev/null and b/files/small_images/depositphotos_30143821-stock-photo-soil.png differ diff --git a/files/small_images/depositphotos_32905049-stock-photo-beautiful-view-of-the-field - Copy (2) - Copy.png b/files/small_images/depositphotos_32905049-stock-photo-beautiful-view-of-the-field - Copy (2) - Copy.png new file mode 100644 index 0000000..b1807e0 Binary files /dev/null and b/files/small_images/depositphotos_32905049-stock-photo-beautiful-view-of-the-field - Copy (2) - Copy.png differ diff --git a/files/small_images/depositphotos_32905049-stock-photo-beautiful-view-of-the-field - Copy (2).png b/files/small_images/depositphotos_32905049-stock-photo-beautiful-view-of-the-field - Copy (2).png new file mode 100644 index 0000000..b1807e0 Binary files /dev/null and b/files/small_images/depositphotos_32905049-stock-photo-beautiful-view-of-the-field - Copy (2).png differ diff --git a/files/small_images/depositphotos_32905049-stock-photo-beautiful-view-of-the-field - Copy.png b/files/small_images/depositphotos_32905049-stock-photo-beautiful-view-of-the-field - Copy.png new file mode 100644 index 0000000..b1807e0 Binary files /dev/null and b/files/small_images/depositphotos_32905049-stock-photo-beautiful-view-of-the-field - Copy.png differ diff --git a/files/small_images/depositphotos_32905049-stock-photo-beautiful-view-of-the-field.png b/files/small_images/depositphotos_32905049-stock-photo-beautiful-view-of-the-field.png new file mode 100644 index 0000000..b1807e0 Binary files /dev/null and b/files/small_images/depositphotos_32905049-stock-photo-beautiful-view-of-the-field.png differ diff --git a/files/small_images/depositphotos_3697355-stock-photo-fertile-plowed-soil-of-an - Copy (2).png b/files/small_images/depositphotos_3697355-stock-photo-fertile-plowed-soil-of-an - Copy (2).png new file mode 100644 index 0000000..9a6735c Binary files /dev/null and b/files/small_images/depositphotos_3697355-stock-photo-fertile-plowed-soil-of-an - Copy (2).png differ diff --git a/files/small_images/depositphotos_3697355-stock-photo-fertile-plowed-soil-of-an - Copy.png b/files/small_images/depositphotos_3697355-stock-photo-fertile-plowed-soil-of-an - Copy.png new file mode 100644 index 0000000..9a6735c Binary files /dev/null and b/files/small_images/depositphotos_3697355-stock-photo-fertile-plowed-soil-of-an - Copy.png differ diff --git a/files/small_images/depositphotos_3697355-stock-photo-fertile-plowed-soil-of-an.png b/files/small_images/depositphotos_3697355-stock-photo-fertile-plowed-soil-of-an.png new file mode 100644 index 0000000..9a6735c Binary files /dev/null and b/files/small_images/depositphotos_3697355-stock-photo-fertile-plowed-soil-of-an.png differ diff --git a/files/small_images/depositphotos_40340261-stock-photo-concept-of-spring-freshness-new (1) - Copy.png b/files/small_images/depositphotos_40340261-stock-photo-concept-of-spring-freshness-new (1) - Copy.png new file mode 100644 index 0000000..d5c0e13 Binary files /dev/null and b/files/small_images/depositphotos_40340261-stock-photo-concept-of-spring-freshness-new (1) - Copy.png differ diff --git a/files/small_images/depositphotos_40340261-stock-photo-concept-of-spring-freshness-new (1).png b/files/small_images/depositphotos_40340261-stock-photo-concept-of-spring-freshness-new (1).png new file mode 100644 index 0000000..d5c0e13 Binary files /dev/null and b/files/small_images/depositphotos_40340261-stock-photo-concept-of-spring-freshness-new (1).png differ diff --git a/files/small_images/depositphotos_40340261-stock-photo-concept-of-spring-freshness-new (2) - Copy.png b/files/small_images/depositphotos_40340261-stock-photo-concept-of-spring-freshness-new (2) - Copy.png new file mode 100644 index 0000000..d5c0e13 Binary files /dev/null and b/files/small_images/depositphotos_40340261-stock-photo-concept-of-spring-freshness-new (2) - Copy.png differ diff --git a/files/small_images/depositphotos_40340261-stock-photo-concept-of-spring-freshness-new - Copy (2).png b/files/small_images/depositphotos_40340261-stock-photo-concept-of-spring-freshness-new - Copy (2).png new file mode 100644 index 0000000..b06e92d Binary files /dev/null and b/files/small_images/depositphotos_40340261-stock-photo-concept-of-spring-freshness-new - Copy (2).png differ diff --git a/files/small_images/depositphotos_40340261-stock-photo-concept-of-spring-freshness-new - Copy (3).png b/files/small_images/depositphotos_40340261-stock-photo-concept-of-spring-freshness-new - Copy (3).png new file mode 100644 index 0000000..b06e92d Binary files /dev/null and b/files/small_images/depositphotos_40340261-stock-photo-concept-of-spring-freshness-new - Copy (3).png differ diff --git a/files/small_images/depositphotos_40340261-stock-photo-concept-of-spring-freshness-new - Copy.png b/files/small_images/depositphotos_40340261-stock-photo-concept-of-spring-freshness-new - Copy.png new file mode 100644 index 0000000..d5c0e13 Binary files /dev/null and b/files/small_images/depositphotos_40340261-stock-photo-concept-of-spring-freshness-new - Copy.png differ diff --git a/files/small_images/depositphotos_40340261-stock-photo-concept-of-spring-freshness-new.png b/files/small_images/depositphotos_40340261-stock-photo-concept-of-spring-freshness-new.png new file mode 100644 index 0000000..d5c0e13 Binary files /dev/null and b/files/small_images/depositphotos_40340261-stock-photo-concept-of-spring-freshness-new.png differ diff --git a/files/small_images/depositphotos_43406455-stock-photo-acre-prepared-for-sowing - Copy (2).png b/files/small_images/depositphotos_43406455-stock-photo-acre-prepared-for-sowing - Copy (2).png new file mode 100644 index 0000000..2b7a5b0 Binary files /dev/null and b/files/small_images/depositphotos_43406455-stock-photo-acre-prepared-for-sowing - Copy (2).png differ diff --git a/files/small_images/depositphotos_43406455-stock-photo-acre-prepared-for-sowing - Copy - Copy.png b/files/small_images/depositphotos_43406455-stock-photo-acre-prepared-for-sowing - Copy - Copy.png new file mode 100644 index 0000000..2b7a5b0 Binary files /dev/null and b/files/small_images/depositphotos_43406455-stock-photo-acre-prepared-for-sowing - Copy - Copy.png differ diff --git a/files/small_images/depositphotos_43406455-stock-photo-acre-prepared-for-sowing - Copy.png b/files/small_images/depositphotos_43406455-stock-photo-acre-prepared-for-sowing - Copy.png new file mode 100644 index 0000000..2b7a5b0 Binary files /dev/null and b/files/small_images/depositphotos_43406455-stock-photo-acre-prepared-for-sowing - Copy.png differ diff --git a/files/small_images/depositphotos_43406455-stock-photo-acre-prepared-for-sowing.png b/files/small_images/depositphotos_43406455-stock-photo-acre-prepared-for-sowing.png new file mode 100644 index 0000000..2b7a5b0 Binary files /dev/null and b/files/small_images/depositphotos_43406455-stock-photo-acre-prepared-for-sowing.png differ diff --git a/files/small_images/depositphotos_4361804-stock-photo-dry-vegetable-plot - Copy (2).png b/files/small_images/depositphotos_4361804-stock-photo-dry-vegetable-plot - Copy (2).png new file mode 100644 index 0000000..cf87762 Binary files /dev/null and b/files/small_images/depositphotos_4361804-stock-photo-dry-vegetable-plot - Copy (2).png differ diff --git a/files/small_images/depositphotos_4361804-stock-photo-dry-vegetable-plot - Copy.png b/files/small_images/depositphotos_4361804-stock-photo-dry-vegetable-plot - Copy.png new file mode 100644 index 0000000..cf87762 Binary files /dev/null and b/files/small_images/depositphotos_4361804-stock-photo-dry-vegetable-plot - Copy.png differ diff --git a/files/small_images/depositphotos_4361804-stock-photo-dry-vegetable-plot.png b/files/small_images/depositphotos_4361804-stock-photo-dry-vegetable-plot.png new file mode 100644 index 0000000..cf87762 Binary files /dev/null and b/files/small_images/depositphotos_4361804-stock-photo-dry-vegetable-plot.png differ diff --git a/files/small_images/depositphotos_5386265-stock-photo-plowed-field-in-spring - Copy (2) - Copy.png b/files/small_images/depositphotos_5386265-stock-photo-plowed-field-in-spring - Copy (2) - Copy.png new file mode 100644 index 0000000..519f082 Binary files /dev/null and b/files/small_images/depositphotos_5386265-stock-photo-plowed-field-in-spring - Copy (2) - Copy.png differ diff --git a/files/small_images/depositphotos_5386265-stock-photo-plowed-field-in-spring - Copy (2).png b/files/small_images/depositphotos_5386265-stock-photo-plowed-field-in-spring - Copy (2).png new file mode 100644 index 0000000..519f082 Binary files /dev/null and b/files/small_images/depositphotos_5386265-stock-photo-plowed-field-in-spring - Copy (2).png differ diff --git a/files/small_images/depositphotos_5386265-stock-photo-plowed-field-in-spring - Copy.png b/files/small_images/depositphotos_5386265-stock-photo-plowed-field-in-spring - Copy.png new file mode 100644 index 0000000..519f082 Binary files /dev/null and b/files/small_images/depositphotos_5386265-stock-photo-plowed-field-in-spring - Copy.png differ diff --git a/files/small_images/depositphotos_5386265-stock-photo-plowed-field-in-spring.png b/files/small_images/depositphotos_5386265-stock-photo-plowed-field-in-spring.png new file mode 100644 index 0000000..519f082 Binary files /dev/null and b/files/small_images/depositphotos_5386265-stock-photo-plowed-field-in-spring.png differ diff --git a/files/small_images/depositphotos_5462355-stock-photo-rejected-excavation - Copy (2).png b/files/small_images/depositphotos_5462355-stock-photo-rejected-excavation - Copy (2).png new file mode 100644 index 0000000..0458c10 Binary files /dev/null and b/files/small_images/depositphotos_5462355-stock-photo-rejected-excavation - Copy (2).png differ diff --git a/files/small_images/depositphotos_5462355-stock-photo-rejected-excavation - Copy.png b/files/small_images/depositphotos_5462355-stock-photo-rejected-excavation - Copy.png new file mode 100644 index 0000000..0458c10 Binary files /dev/null and b/files/small_images/depositphotos_5462355-stock-photo-rejected-excavation - Copy.png differ diff --git a/files/small_images/depositphotos_5462355-stock-photo-rejected-excavation.png b/files/small_images/depositphotos_5462355-stock-photo-rejected-excavation.png new file mode 100644 index 0000000..0458c10 Binary files /dev/null and b/files/small_images/depositphotos_5462355-stock-photo-rejected-excavation.png differ diff --git a/files/small_images/depositphotos_63921641-stock-photo-path-through-lava-great-trekking - Copy (2).png b/files/small_images/depositphotos_63921641-stock-photo-path-through-lava-great-trekking - Copy (2).png new file mode 100644 index 0000000..478d9f5 Binary files /dev/null and b/files/small_images/depositphotos_63921641-stock-photo-path-through-lava-great-trekking - Copy (2).png differ diff --git a/files/small_images/depositphotos_63921641-stock-photo-path-through-lava-great-trekking - Copy.png b/files/small_images/depositphotos_63921641-stock-photo-path-through-lava-great-trekking - Copy.png new file mode 100644 index 0000000..478d9f5 Binary files /dev/null and b/files/small_images/depositphotos_63921641-stock-photo-path-through-lava-great-trekking - Copy.png differ diff --git a/files/small_images/depositphotos_63921641-stock-photo-path-through-lava-great-trekking.png b/files/small_images/depositphotos_63921641-stock-photo-path-through-lava-great-trekking.png new file mode 100644 index 0000000..478d9f5 Binary files /dev/null and b/files/small_images/depositphotos_63921641-stock-photo-path-through-lava-great-trekking.png differ diff --git a/files/small_images/depositphotos_64507589-stock-photo-paddy-field-ridge - Copy (2).png b/files/small_images/depositphotos_64507589-stock-photo-paddy-field-ridge - Copy (2).png new file mode 100644 index 0000000..88ece92 Binary files /dev/null and b/files/small_images/depositphotos_64507589-stock-photo-paddy-field-ridge - Copy (2).png differ diff --git a/files/small_images/depositphotos_64507589-stock-photo-paddy-field-ridge - Copy (3).png b/files/small_images/depositphotos_64507589-stock-photo-paddy-field-ridge - Copy (3).png new file mode 100644 index 0000000..88ece92 Binary files /dev/null and b/files/small_images/depositphotos_64507589-stock-photo-paddy-field-ridge - Copy (3).png differ diff --git a/files/small_images/depositphotos_64507589-stock-photo-paddy-field-ridge - Copy.png b/files/small_images/depositphotos_64507589-stock-photo-paddy-field-ridge - Copy.png new file mode 100644 index 0000000..88ece92 Binary files /dev/null and b/files/small_images/depositphotos_64507589-stock-photo-paddy-field-ridge - Copy.png differ diff --git a/files/small_images/depositphotos_64507589-stock-photo-paddy-field-ridge.png b/files/small_images/depositphotos_64507589-stock-photo-paddy-field-ridge.png new file mode 100644 index 0000000..88ece92 Binary files /dev/null and b/files/small_images/depositphotos_64507589-stock-photo-paddy-field-ridge.png differ diff --git a/files/small_images/depositphotos_65625435-stock-photo-plowed-field - Copy (2).png b/files/small_images/depositphotos_65625435-stock-photo-plowed-field - Copy (2).png new file mode 100644 index 0000000..b6690f8 Binary files /dev/null and b/files/small_images/depositphotos_65625435-stock-photo-plowed-field - Copy (2).png differ diff --git a/files/small_images/depositphotos_65625435-stock-photo-plowed-field - Copy.png b/files/small_images/depositphotos_65625435-stock-photo-plowed-field - Copy.png new file mode 100644 index 0000000..b6690f8 Binary files /dev/null and b/files/small_images/depositphotos_65625435-stock-photo-plowed-field - Copy.png differ diff --git a/files/small_images/depositphotos_65625435-stock-photo-plowed-field.png b/files/small_images/depositphotos_65625435-stock-photo-plowed-field.png new file mode 100644 index 0000000..b6690f8 Binary files /dev/null and b/files/small_images/depositphotos_65625435-stock-photo-plowed-field.png differ diff --git a/files/small_images/depositphotos_76668061-stock-photo-plow (1) - Copy.png b/files/small_images/depositphotos_76668061-stock-photo-plow (1) - Copy.png new file mode 100644 index 0000000..b3e5cab Binary files /dev/null and b/files/small_images/depositphotos_76668061-stock-photo-plow (1) - Copy.png differ diff --git a/files/small_images/depositphotos_76668061-stock-photo-plow (1).png b/files/small_images/depositphotos_76668061-stock-photo-plow (1).png new file mode 100644 index 0000000..b3e5cab Binary files /dev/null and b/files/small_images/depositphotos_76668061-stock-photo-plow (1).png differ diff --git a/files/small_images/depositphotos_76668061-stock-photo-plow (2) - Copy.png b/files/small_images/depositphotos_76668061-stock-photo-plow (2) - Copy.png new file mode 100644 index 0000000..b3e5cab Binary files /dev/null and b/files/small_images/depositphotos_76668061-stock-photo-plow (2) - Copy.png differ diff --git a/files/small_images/depositphotos_76668061-stock-photo-plow - Copy (2).png b/files/small_images/depositphotos_76668061-stock-photo-plow - Copy (2).png new file mode 100644 index 0000000..b3e5cab Binary files /dev/null and b/files/small_images/depositphotos_76668061-stock-photo-plow - Copy (2).png differ diff --git a/files/small_images/depositphotos_76668061-stock-photo-plow - Copy.png b/files/small_images/depositphotos_76668061-stock-photo-plow - Copy.png new file mode 100644 index 0000000..b3e5cab Binary files /dev/null and b/files/small_images/depositphotos_76668061-stock-photo-plow - Copy.png differ diff --git a/files/small_images/depositphotos_76668061-stock-photo-plow.png b/files/small_images/depositphotos_76668061-stock-photo-plow.png new file mode 100644 index 0000000..b3e5cab Binary files /dev/null and b/files/small_images/depositphotos_76668061-stock-photo-plow.png differ diff --git a/files/small_images/depositphotos_7916504-stock-photo-agricultural-view-on-plowed-field (1) - Copy.png b/files/small_images/depositphotos_7916504-stock-photo-agricultural-view-on-plowed-field (1) - Copy.png new file mode 100644 index 0000000..02cabc9 Binary files /dev/null and b/files/small_images/depositphotos_7916504-stock-photo-agricultural-view-on-plowed-field (1) - Copy.png differ diff --git a/files/small_images/depositphotos_7916504-stock-photo-agricultural-view-on-plowed-field (1).png b/files/small_images/depositphotos_7916504-stock-photo-agricultural-view-on-plowed-field (1).png new file mode 100644 index 0000000..02cabc9 Binary files /dev/null and b/files/small_images/depositphotos_7916504-stock-photo-agricultural-view-on-plowed-field (1).png differ diff --git a/files/small_images/depositphotos_7916504-stock-photo-agricultural-view-on-plowed-field (2) - Copy.png b/files/small_images/depositphotos_7916504-stock-photo-agricultural-view-on-plowed-field (2) - Copy.png new file mode 100644 index 0000000..02cabc9 Binary files /dev/null and b/files/small_images/depositphotos_7916504-stock-photo-agricultural-view-on-plowed-field (2) - Copy.png differ diff --git a/files/small_images/depositphotos_7916504-stock-photo-agricultural-view-on-plowed-field - Copy (2).png b/files/small_images/depositphotos_7916504-stock-photo-agricultural-view-on-plowed-field - Copy (2).png new file mode 100644 index 0000000..02cabc9 Binary files /dev/null and b/files/small_images/depositphotos_7916504-stock-photo-agricultural-view-on-plowed-field - Copy (2).png differ diff --git a/files/small_images/depositphotos_7916504-stock-photo-agricultural-view-on-plowed-field - Copy.png b/files/small_images/depositphotos_7916504-stock-photo-agricultural-view-on-plowed-field - Copy.png new file mode 100644 index 0000000..02cabc9 Binary files /dev/null and b/files/small_images/depositphotos_7916504-stock-photo-agricultural-view-on-plowed-field - Copy.png differ diff --git a/files/small_images/depositphotos_7916504-stock-photo-agricultural-view-on-plowed-field.png b/files/small_images/depositphotos_7916504-stock-photo-agricultural-view-on-plowed-field.png new file mode 100644 index 0000000..02cabc9 Binary files /dev/null and b/files/small_images/depositphotos_7916504-stock-photo-agricultural-view-on-plowed-field.png differ diff --git a/files/small_images/depositphotos_89547714-stock-photo-landscape-plowed-field - Copy (2).png b/files/small_images/depositphotos_89547714-stock-photo-landscape-plowed-field - Copy (2).png new file mode 100644 index 0000000..943dea9 Binary files /dev/null and b/files/small_images/depositphotos_89547714-stock-photo-landscape-plowed-field - Copy (2).png differ diff --git a/files/small_images/depositphotos_89547714-stock-photo-landscape-plowed-field - Copy.png b/files/small_images/depositphotos_89547714-stock-photo-landscape-plowed-field - Copy.png new file mode 100644 index 0000000..943dea9 Binary files /dev/null and b/files/small_images/depositphotos_89547714-stock-photo-landscape-plowed-field - Copy.png differ diff --git a/files/small_images/depositphotos_89547714-stock-photo-landscape-plowed-field.png b/files/small_images/depositphotos_89547714-stock-photo-landscape-plowed-field.png new file mode 100644 index 0000000..943dea9 Binary files /dev/null and b/files/small_images/depositphotos_89547714-stock-photo-landscape-plowed-field.png differ diff --git a/files/small_images/depositphotos_9152332-stock-photo-ploughland (1) - Copy.png b/files/small_images/depositphotos_9152332-stock-photo-ploughland (1) - Copy.png new file mode 100644 index 0000000..cb46fa1 Binary files /dev/null and b/files/small_images/depositphotos_9152332-stock-photo-ploughland (1) - Copy.png differ diff --git a/files/small_images/depositphotos_9152332-stock-photo-ploughland (1).png b/files/small_images/depositphotos_9152332-stock-photo-ploughland (1).png new file mode 100644 index 0000000..cb46fa1 Binary files /dev/null and b/files/small_images/depositphotos_9152332-stock-photo-ploughland (1).png differ diff --git a/files/small_images/depositphotos_9152332-stock-photo-ploughland (2) - Copy.png b/files/small_images/depositphotos_9152332-stock-photo-ploughland (2) - Copy.png new file mode 100644 index 0000000..cb46fa1 Binary files /dev/null and b/files/small_images/depositphotos_9152332-stock-photo-ploughland (2) - Copy.png differ diff --git a/files/small_images/depositphotos_9152332-stock-photo-ploughland - Copy (2).png b/files/small_images/depositphotos_9152332-stock-photo-ploughland - Copy (2).png new file mode 100644 index 0000000..cb46fa1 Binary files /dev/null and b/files/small_images/depositphotos_9152332-stock-photo-ploughland - Copy (2).png differ diff --git a/files/small_images/depositphotos_9152332-stock-photo-ploughland - Copy - Copy.png b/files/small_images/depositphotos_9152332-stock-photo-ploughland - Copy - Copy.png new file mode 100644 index 0000000..cb46fa1 Binary files /dev/null and b/files/small_images/depositphotos_9152332-stock-photo-ploughland - Copy - Copy.png differ diff --git a/files/small_images/depositphotos_9152332-stock-photo-ploughland - Copy.png b/files/small_images/depositphotos_9152332-stock-photo-ploughland - Copy.png new file mode 100644 index 0000000..cb46fa1 Binary files /dev/null and b/files/small_images/depositphotos_9152332-stock-photo-ploughland - Copy.png differ diff --git a/files/small_images/depositphotos_9152332-stock-photo-ploughland.png b/files/small_images/depositphotos_9152332-stock-photo-ploughland.png new file mode 100644 index 0000000..cb46fa1 Binary files /dev/null and b/files/small_images/depositphotos_9152332-stock-photo-ploughland.png differ diff --git a/files/small_images/image.png b/files/small_images/image.png new file mode 100644 index 0000000..cf54cb9 Binary files /dev/null and b/files/small_images/image.png differ