Merged branch master to move_counter

This commit is contained in:
Magdalena Wilczyńska 2019-05-12 19:33:54 +02:00
commit 0652da713d
32 changed files with 1439 additions and 30 deletions

View File

@ -21,6 +21,10 @@ class Container():
def status(self):
return [self.yellow, self.green, self.blue]
def is_full(self):
if self.yellow>0 or self.green>0 or self.blue>0:
return 1
return 0
def add(self, trash):
my_trash = [self.yellow, self.green, self.blue]

View File

@ -2,37 +2,28 @@ from DataModels.Cell import Cell
from DataModels.Road import Road
from DataModels.House import House
from DataModels.Dump import Dump
from config import GRID_WIDTH, GRID_HEIGHT
# PODAC TUTAJ X I Y DO MOVEMENT (ZAIMPORTOWAC TO NAJPIERW)
from config import GRID_WIDTH, GRID_HEIGHT, DELAY
from utilities import movement, check_moves
from Traversal.DFS import DFS
import pygame
class GC(Cell):
moves_made = 0
def __init__(self, x, y, max_rubbish, yellow=0, green=0, blue=0):
Cell.__init__(self, x, y, max_rubbish, yellow, green, blue)
def check_moves(self, direction, environment, x = None, y = None):
if((x,y) == (None, None)):
x = self.x
y = self.y
print(environment)
return ([dir for dir in self.movement(environment)[0] if self.movement(environment)[0][dir] != (x,y) and dir != self.movement(environment)[1][direction]])
self.moves = []
self.old_time = pygame.time.get_ticks()
def move(self, direction, environment):
self.x, self.y = self.movement(environment)[0][direction]
self.x, self.y = movement(environment, self.x, self.y)[0][direction]
self.update_rect(self.x, self.y)
self.moves_made = self.moves_made + 1
print(self.check_moves(direction, environment))
print(check_moves(environment, self.x, self.y,direction))
def collect(self, enviromnent):
x, y = [self.x, self.y]
coordinates = [(x, y - 1), (x, y + 1), (x - 1, y), (x + 1, y)]
for coordinate in coordinates:
if coordinate[0]<0 or coordinate[1]<0:
continue
@ -43,8 +34,29 @@ class GC(Cell):
if(type(item) == House or type(item) == Dump):
item.return_trash(self)
self.update_image()
def get_moves_made(self):
return self.moves_made
return self.moves_made
def find_houses(self,enviromnent, house_count):
x = self.x
y = self.y
result = []
for home in range(house_count):
avalible_moves = check_moves(enviromnent, x,y)
[x,y],result = DFS(enviromnent,avalible_moves,[[x,y]])
self.moves.extend(result)
self.moves.reverse()
def make_actions_from_list(self,environment):
now = pygame.time.get_ticks()
if len(self.moves)==0 or now - self.old_time <= DELAY:
return
self.old_time = pygame.time.get_ticks()
if self.moves[-1] == "pick_garbage":
self.collect(environment)
self.moves.pop()
return
self.x, self.y = self.moves.pop()
self.update_rect(self.x,self.y)

View File

@ -4,6 +4,7 @@ from DataModels.Cell import Cell
class House(Cell):
def __init__(self, x, y, max_rubbish, yellow=0, green=0, blue=0):
Cell.__init__(self, x, y, max_rubbish, yellow, green, blue)
self.unvisited = True
def return_trash(self, collector):
self.container.yellow, self.container.green, self.container.blue = collector.container.add(

74
Raports/SI_Raport_2.md Normal file
View File

@ -0,0 +1,74 @@
# Sztuczna inteligencja 2019 - Raport 2
**Czas trwania opisywanych prac:** 06.03.2018 - 26.03.2018
**Członkowie zespołu:** Anna Nowak, Magdalena Wilczyńska, Konrad Pierzyński, Michał Starski
**Wybrany temat:** Inteligentna śmieciarka
**Link do repozytorium projektu:** https://git.wmi.amu.edu.pl/s440556/SZI2019SmieciarzWmi
## Pierwszy algorytm przeszukiwania mapy - DFS
#### Implementacja
Pierwszym podejściem naszej grupy do rozwiązania problemu była implementacja
algorytmu przeszukiwania drzewa w głąb - DFS (Wersja iteracyjna).
Aby zaimplementować ten algorytm, niezbędne było przygotowanie dla niego kilku
struktur pomocniczych dzięki którym będziemy mogli jasno zdefiniować warunki stopu i uzyskać satysfakcjonujące nas rozwiązanie.
Do użytych struktur należą:
- **Lista dwuwymiarowa przedstawiająca mapę w formie siatki po której można łatwo iterować** - Jeden stan takiej listy traktowaliśmy jako wierzchołek grafu
- **Stos wykonanych przez algorytm ruchów** - Używany do przechodzenia do kolejnych możliwych stanów jak i zapamiętania rozwiązania problemu.
- **Lista możliwych ruchów do wykonania przez agenta przy konkretnym stanie mapy**
- **Licznik głębokości na którą zszedł algorytm** - Zapobiega zajściu za głęboko w przypadku braku rozwiązania
**Przebieg algorytmu**:
- Dodaj do stosu pierwszy krok
- Dopóki stos nie jest pusty:
1. Weź stan mapy ze stosu (operacja stack.pop())
2. Sprawdź warunek końca (Czy problem został rozwiązany ?)
- Jeżeli tak, zakończ algorytm
- Jeżeli nie, sprawdź czy głębokość przekroczyła 30
1. Jeżeli tak, zakończ algorytm informacją o braku rozwiązania
2. Jeżeli nie, kontynuuj algorytm
Rozwiązanie następuje wtedy, gdy wszystkie śmieci zostaną zebrane przez agenta.
#### Obserwacje
Przede wszystkim, algorytm przeszukiwania w głąb działa dla tego problemu
**zdecydowanie wolniej niż powinien**, przy jego działaniu łatwo wchodzić w głąb złej ścieżki, która nie doprowadzi nas do rozwiązania. Co prawda przy małej mapie algorytm radzi sobie z problemem, jednak z każdą kolejną większą
jest co raz gorzej.
Problem można pokazać na przykładzie:
Załóżmy, że hipotetyczne drzewo T wygląda w taki sposób:
```
a -- e
|
b
|
c
|
d
.
. - 100 wierzchołków
.
x
```
Naszym rozwiązaniem będzie doprowadzenie agenta z wierzchołka startowego **a** do wierzchołka końcowego **b**. DFS odwiedzi najpierw wierzchołki po kolei od a aż do x i dopiero później przyjdzie do e. Naturalnie można stwierdzić, że to nie jest sposób którego szukamy. Oczywiście 100 wierzchołków to mała liczba dla komputera, ale co jak będzie ich 1000, 10 000, lub 1 000 000 ?
#### Podsumowanie
Szukanie w głąb miałoby sens w innych przypadkach, na przykład gdybyśmy chcieli znaleźć możliwe wyniki w grze gdzie każda akcja pociąga za sobą kolejną, tworząc dość głęboki graf.
Do szukania ścieżki po której ma poruszać się agent lepiej byłoby jednak przeszukiwać graf wszerz.
#### Uruchamianie
Aby uruchomić DFS na mapie Śmieciarza WMI, należy kliknąć **0**.

View File

@ -1,9 +1,38 @@
def DFS(grid, avaliable_movement, gc_moveset):
if(moveset[-1] == (1,4) or len(avaliable_movement) == 0):
return gc_moveset
from utilities import movement,check_moves
from DataModels.House import House
from DataModels.Container import Container
def DFS(grid, available_movement, gc_moveset, depth=0):
possible_goals = []
a = gc_moveset[-1][0]
b = gc_moveset[-1][1]
possible_goals.append([a+1,b])
possible_goals.append([a-1,b])
possible_goals.append([a,b+1])
possible_goals.append([a,b-1])
house_in_area = False
for location in possible_goals:
try:
cell = grid[location[0]][location[1]]
if(type(cell) == House and cell.container.is_full and cell.unvisited):
cell.unvisited = False
house_in_area = True
break
except:
continue
if(house_in_area):
xy = gc_moveset[-1]
gc_moveset.append("pick_garbage")
return (xy, gc_moveset)
if len(available_movement) == 0 or depth>30:
return
x,y = gc_moveset[-1]
move = avaliable_movement.pop()
## TUTAJ ZAIMPORTOWAC MOVEMENT
for direction in available_movement:
x_next, y_next = movement(grid,x,y)[0][direction]
available_movement_next = check_moves(grid, x_next,y_next,direction)
gc_moveset_next = gc_moveset.copy()
gc_moveset_next.append([x_next,y_next])
result = DFS(grid, available_movement_next, gc_moveset_next, depth+1)
if result!= None:
return result

View File

@ -2,6 +2,7 @@ import sys, random
CELL_SIZE = 64
FPS = 60
DELAY = 500
map = open( sys.argv[1], 'r' )
@ -11,4 +12,4 @@ GC_X, GC_Y = [int(x) for x in map.readline().split()]
WINDOW_HEIGHT = GRID_HEIGHT * CELL_SIZE
WINDOW_WIDTH = GRID_WIDTH * CELL_SIZE
HOUSE_CAPACITY = random.randint(1, 11)
HOUSE_CAPACITY = random.randint(1, 11)

View File

@ -0,0 +1,63 @@
House 1 plastic,House 1 glass,House 1 metal,House 2 plastic,House 2 glass,House 2 metal,House 3 plastic,House 3 glass,House 3 metal,House 4 plastic,House 4 glass,House 4 metal,House 5 plastic,House 5 glass,House 5 metal,House 6 plastic,House 6 glass,House 6 metal
8,4,10,0,0,1,8,9,10,1,7,7,8,5,7,8,2,1
10,4,10,0,2,1,8,10,10,1,8,7,8,6,7,8,2,2
10,4,10,0,3,2,10,10,10,1,9,8,10,6,7,9,3,4
10,5,10,0,4,2,10,10,10,2,9,8,10,7,7,9,3,4
10,5,10,0,4,3,10,10,10,2,10,8,10,7,9,9,3,4
10,5,10,0,4,3,10,10,10,2,10,9,10,7,9,9,3,4
10,5,10,0,4,4,10,10,10,2,10,9,10,7,10,9,4,5
10,5,10,0,4,4,10,10,10,2,10,9,10,7,10,10,5,5
10,5,10,2,5,4,10,10,10,3,10,9,10,7,10,10,5,6
10,5,10,3,5,4,10,10,10,4,10,9,10,7,10,10,5,7
10,5,10,3,6,4,10,10,10,6,10,9,10,10,10,10,6,7
10,6,10,3,6,4,10,10,10,7,10,9,10,10,10,10,8,8
10,7,10,3,8,5,10,10,10,8,10,10,10,10,10,10,8,9
10,7,10,5,9,6,10,10,10,8,10,10,10,10,10,10,8,10
10,7,10,6,9,6,10,10,10,9,10,10,10,10,10,10,8,10
10,8,10,7,9,8,10,10,10,10,10,10,10,10,10,10,8,10
10,9,10,8,9,10,10,10,10,10,10,10,10,10,10,10,8,10
10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,8,10
10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,8,10
10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,9,10
10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10
10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10
10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10
10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10
10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10
10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10
10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10
10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10
10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10
10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10
10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10
10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10
10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10
10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10
10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10
10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10
10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10
10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10
10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10
10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10
10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10
10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10
10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10
10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10
10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10
10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10
10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10
10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10
10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10
10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10
10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10
10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10
10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10
10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10
10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10
10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10
10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10
10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10
10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10
10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10
10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10
10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10
1 House 1 plastic House 1 glass House 1 metal House 2 plastic House 2 glass House 2 metal House 3 plastic House 3 glass House 3 metal House 4 plastic House 4 glass House 4 metal House 5 plastic House 5 glass House 5 metal House 6 plastic House 6 glass House 6 metal
2 8 4 10 0 0 1 8 9 10 1 7 7 8 5 7 8 2 1
3 10 4 10 0 2 1 8 10 10 1 8 7 8 6 7 8 2 2
4 10 4 10 0 3 2 10 10 10 1 9 8 10 6 7 9 3 4
5 10 5 10 0 4 2 10 10 10 2 9 8 10 7 7 9 3 4
6 10 5 10 0 4 3 10 10 10 2 10 8 10 7 9 9 3 4
7 10 5 10 0 4 3 10 10 10 2 10 9 10 7 9 9 3 4
8 10 5 10 0 4 4 10 10 10 2 10 9 10 7 10 9 4 5
9 10 5 10 0 4 4 10 10 10 2 10 9 10 7 10 10 5 5
10 10 5 10 2 5 4 10 10 10 3 10 9 10 7 10 10 5 6
11 10 5 10 3 5 4 10 10 10 4 10 9 10 7 10 10 5 7
12 10 5 10 3 6 4 10 10 10 6 10 9 10 10 10 10 6 7
13 10 6 10 3 6 4 10 10 10 7 10 9 10 10 10 10 8 8
14 10 7 10 3 8 5 10 10 10 8 10 10 10 10 10 10 8 9
15 10 7 10 5 9 6 10 10 10 8 10 10 10 10 10 10 8 10
16 10 7 10 6 9 6 10 10 10 9 10 10 10 10 10 10 8 10
17 10 8 10 7 9 8 10 10 10 10 10 10 10 10 10 10 8 10
18 10 9 10 8 9 10 10 10 10 10 10 10 10 10 10 10 8 10
19 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 8 10
20 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 8 10
21 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 9 10
22 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10
23 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10
24 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10
25 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10
26 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10
27 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10
28 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10
29 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10
30 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10
31 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10
32 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10
33 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10
34 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10
35 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10
36 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10
37 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10
38 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10
39 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10
40 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10
41 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10
42 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10
43 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10
44 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10
45 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10
46 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10
47 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10
48 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10
49 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10
50 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10
51 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10
52 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10
53 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10
54 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10
55 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10
56 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10
57 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10
58 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10
59 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10
60 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10
61 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10
62 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10
63 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10

View File

@ -0,0 +1,28 @@
Plastic left,Glass left,Metal left,GC plastic,GC glass,GC metal,Total collected
18,27,26,0/10,0/10,0/10,0
22,28,29,0/10,0/10,0/10,0
23,33,33,0/10,0/10,0/10,0
25,36,36,0/10,0/10,0/10,0
27,39,37,0/10,0/10,0/10,0
31,41,41,0/10,0/10,0/10,0
36,43,41,0/10,0/10,0/10,0
40,47,45,0/10,0/10,0/10,0
41,51,45,0/10,0/10,0/10,0
41,52,46,0/10,0/10,0/10,0
43,54,48,0/10,0/10,0/10,0
45,54,49,0/10,0/10,0/10,0
48,57,50,0/10,0/10,0/10,0
49,58,54,0/10,0/10,0/10,0
51,59,54,0/10,0/10,0/10,0
52,59,54,0/10,0/10,0/10,0
54,59,55,0/10,0/10,0/10,0
56,60,57,0/10,0/10,0/10,0
57,60,58,0/10,0/10,0/10,0
57,60,58,0/10,0/10,0/10,0
57,60,58,0/10,0/10,0/10,0
57,60,58,0/10,0/10,0/10,0
57,60,59,0/10,0/10,0/10,0
59,60,59,0/10,0/10,0/10,0
59,60,60,0/10,0/10,0/10,0
60,60,60,0/10,0/10,0/10,0
60,60,60,0/10,0/10,0/10,0
1 Plastic left Glass left Metal left GC plastic GC glass GC metal Total collected
2 18 27 26 0/10 0/10 0/10 0
3 22 28 29 0/10 0/10 0/10 0
4 23 33 33 0/10 0/10 0/10 0
5 25 36 36 0/10 0/10 0/10 0
6 27 39 37 0/10 0/10 0/10 0
7 31 41 41 0/10 0/10 0/10 0
8 36 43 41 0/10 0/10 0/10 0
9 40 47 45 0/10 0/10 0/10 0
10 41 51 45 0/10 0/10 0/10 0
11 41 52 46 0/10 0/10 0/10 0
12 43 54 48 0/10 0/10 0/10 0
13 45 54 49 0/10 0/10 0/10 0
14 48 57 50 0/10 0/10 0/10 0
15 49 58 54 0/10 0/10 0/10 0
16 51 59 54 0/10 0/10 0/10 0
17 52 59 54 0/10 0/10 0/10 0
18 54 59 55 0/10 0/10 0/10 0
19 56 60 57 0/10 0/10 0/10 0
20 57 60 58 0/10 0/10 0/10 0
21 57 60 58 0/10 0/10 0/10 0
22 57 60 58 0/10 0/10 0/10 0
23 57 60 58 0/10 0/10 0/10 0
24 57 60 59 0/10 0/10 0/10 0
25 59 60 59 0/10 0/10 0/10 0
26 59 60 60 0/10 0/10 0/10 0
27 60 60 60 0/10 0/10 0/10 0
28 60 60 60 0/10 0/10 0/10 0

View File

@ -0,0 +1,13 @@
Plastic left,Glass left,Metal left,GC plastic,GC glass,GC metal,Total collected
20,33,20,0/10,0/10,0/10,0
26,34,22,0/10,0/10,0/10,0
27,37,27,0/10,0/10,0/10,0
28,37,30,0/10,0/10,0/10,0
30,40,33,0/10,0/10,0/10,0
32,41,36,0/10,0/10,0/10,0
35,42,38,0/10,0/10,0/10,0
37,44,40,0/10,0/10,0/10,0
39,45,41,0/10,0/10,0/10,0
40,47,43,0/10,0/10,0/10,0
42,47,45,0/10,0/10,0/10,0
48,48,47,0/10,0/10,0/10,0
1 Plastic left Glass left Metal left GC plastic GC glass GC metal Total collected
2 20 33 20 0/10 0/10 0/10 0
3 26 34 22 0/10 0/10 0/10 0
4 27 37 27 0/10 0/10 0/10 0
5 28 37 30 0/10 0/10 0/10 0
6 30 40 33 0/10 0/10 0/10 0
7 32 41 36 0/10 0/10 0/10 0
8 35 42 38 0/10 0/10 0/10 0
9 37 44 40 0/10 0/10 0/10 0
10 39 45 41 0/10 0/10 0/10 0
11 40 47 43 0/10 0/10 0/10 0
12 42 47 45 0/10 0/10 0/10 0
13 48 48 47 0/10 0/10 0/10 0

View File

@ -0,0 +1,9 @@
Plastic left,Glass left,Metal left,GC plastic,GC glass,GC metal,Total collected
30,37,26,0/10,0/10,0/10,0
34,39,27,0/10,0/10,0/10,0
36,41,27,0/10,0/10,0/10,0
40,43,29,0/10,0/10,0/10,0
40,44,33,0/10,0/10,0/10,0
40,45,34,0/10,0/10,0/10,0
42,45,36,0/10,0/10,0/10,0
43,46,38,0/10,0/10,0/10,0
1 Plastic left Glass left Metal left GC plastic GC glass GC metal Total collected
2 30 37 26 0/10 0/10 0/10 0
3 34 39 27 0/10 0/10 0/10 0
4 36 41 27 0/10 0/10 0/10 0
5 40 43 29 0/10 0/10 0/10 0
6 40 44 33 0/10 0/10 0/10 0
7 40 45 34 0/10 0/10 0/10 0
8 42 45 36 0/10 0/10 0/10 0
9 43 46 38 0/10 0/10 0/10 0

View File

@ -0,0 +1,4 @@
Plastic left,Glass left,Metal left,GC plastic,GC glass,GC metal,Total collected
21,37,28,0/10,0/10,0/10,0
23,39,30,0/10,0/10,0/10,0
25,40,30,0/10,0/10,0/10,0
1 Plastic left Glass left Metal left GC plastic GC glass GC metal Total collected
2 21 37 28 0/10 0/10 0/10 0
3 23 39 30 0/10 0/10 0/10 0
4 25 40 30 0/10 0/10 0/10 0

View File

@ -0,0 +1,5 @@
Plastic left,Glass left,Metal left,GC plastic,GC glass,GC metal,Total collected
32,32,30,0/10,0/10,0/10,0
33,34,33,0/10,0/10,0/10,0
34,36,34,0/10,0/10,0/10,0
37,39,35,0/10,0/10,0/10,0
1 Plastic left Glass left Metal left GC plastic GC glass GC metal Total collected
2 32 32 30 0/10 0/10 0/10 0
3 33 34 33 0/10 0/10 0/10 0
4 34 36 34 0/10 0/10 0/10 0
5 37 39 35 0/10 0/10 0/10 0

View File

@ -0,0 +1,144 @@
Plastic left,Glass left,Metal left,GC plastic,GC glass,GC metal,Total collected
30,22,27,0/10,0/10,0/10,0
33,27,29,0/10,0/10,0/10,0
35,29,30,0/10,0/10,0/10,0
35,34,32,0/10,0/10,0/10,0
38,38,33,0/10,0/10,0/10,0
40,41,33,0/10,0/10,0/10,0
41,41,34,0/10,0/10,0/10,0
43,43,36,0/10,0/10,0/10,0
44,44,39,0/10,0/10,0/10,0
47,45,41,0/10,0/10,0/10,0
47,48,42,0/10,0/10,0/10,0
47,48,45,0/10,0/10,0/10,0
48,49,46,0/10,0/10,0/10,0
49,49,46,0/10,0/10,0/10,0
50,49,47,0/10,0/10,0/10,0
50,49,47,0/10,0/10,0/10,0
50,49,47,0/10,0/10,0/10,0
50,50,48,0/10,0/10,0/10,0
50,50,49,0/10,0/10,0/10,0
50,50,49,0/10,0/10,0/10,0
50,50,49,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
1 Plastic left Glass left Metal left GC plastic GC glass GC metal Total collected
2 30 22 27 0/10 0/10 0/10 0
3 33 27 29 0/10 0/10 0/10 0
4 35 29 30 0/10 0/10 0/10 0
5 35 34 32 0/10 0/10 0/10 0
6 38 38 33 0/10 0/10 0/10 0
7 40 41 33 0/10 0/10 0/10 0
8 41 41 34 0/10 0/10 0/10 0
9 43 43 36 0/10 0/10 0/10 0
10 44 44 39 0/10 0/10 0/10 0
11 47 45 41 0/10 0/10 0/10 0
12 47 48 42 0/10 0/10 0/10 0
13 47 48 45 0/10 0/10 0/10 0
14 48 49 46 0/10 0/10 0/10 0
15 49 49 46 0/10 0/10 0/10 0
16 50 49 47 0/10 0/10 0/10 0
17 50 49 47 0/10 0/10 0/10 0
18 50 49 47 0/10 0/10 0/10 0
19 50 50 48 0/10 0/10 0/10 0
20 50 50 49 0/10 0/10 0/10 0
21 50 50 49 0/10 0/10 0/10 0
22 50 50 49 0/10 0/10 0/10 0
23 50 50 50 0/10 0/10 0/10 0
24 50 50 50 0/10 0/10 0/10 0
25 50 50 50 0/10 0/10 0/10 0
26 50 50 50 0/10 0/10 0/10 0
27 50 50 50 0/10 0/10 0/10 0
28 50 50 50 0/10 0/10 0/10 0
29 50 50 50 0/10 0/10 0/10 0
30 50 50 50 0/10 0/10 0/10 0
31 50 50 50 0/10 0/10 0/10 0
32 50 50 50 0/10 0/10 0/10 0
33 50 50 50 0/10 0/10 0/10 0
34 50 50 50 0/10 0/10 0/10 0
35 50 50 50 0/10 0/10 0/10 0
36 50 50 50 0/10 0/10 0/10 0
37 50 50 50 0/10 0/10 0/10 0
38 50 50 50 0/10 0/10 0/10 0
39 50 50 50 0/10 0/10 0/10 0
40 50 50 50 0/10 0/10 0/10 0
41 50 50 50 0/10 0/10 0/10 0
42 50 50 50 0/10 0/10 0/10 0
43 50 50 50 0/10 0/10 0/10 0
44 50 50 50 0/10 0/10 0/10 0
45 50 50 50 0/10 0/10 0/10 0
46 50 50 50 0/10 0/10 0/10 0
47 50 50 50 0/10 0/10 0/10 0
48 50 50 50 0/10 0/10 0/10 0
49 50 50 50 0/10 0/10 0/10 0
50 50 50 50 0/10 0/10 0/10 0
51 50 50 50 0/10 0/10 0/10 0
52 50 50 50 0/10 0/10 0/10 0
53 50 50 50 0/10 0/10 0/10 0
54 50 50 50 0/10 0/10 0/10 0
55 50 50 50 0/10 0/10 0/10 0
56 50 50 50 0/10 0/10 0/10 0
57 50 50 50 0/10 0/10 0/10 0
58 50 50 50 0/10 0/10 0/10 0
59 50 50 50 0/10 0/10 0/10 0
60 50 50 50 0/10 0/10 0/10 0
61 50 50 50 0/10 0/10 0/10 0
62 50 50 50 0/10 0/10 0/10 0
63 50 50 50 0/10 0/10 0/10 0
64 50 50 50 0/10 0/10 0/10 0
65 50 50 50 0/10 0/10 0/10 0
66 50 50 50 0/10 0/10 0/10 0
67 50 50 50 0/10 0/10 0/10 0
68 50 50 50 0/10 0/10 0/10 0
69 50 50 50 0/10 0/10 0/10 0
70 50 50 50 0/10 0/10 0/10 0
71 50 50 50 0/10 0/10 0/10 0
72 50 50 50 0/10 0/10 0/10 0
73 50 50 50 0/10 0/10 0/10 0
74 50 50 50 0/10 0/10 0/10 0
75 50 50 50 0/10 0/10 0/10 0
76 50 50 50 0/10 0/10 0/10 0
77 50 50 50 0/10 0/10 0/10 0
78 50 50 50 0/10 0/10 0/10 0
79 50 50 50 0/10 0/10 0/10 0
80 50 50 50 0/10 0/10 0/10 0
81 50 50 50 0/10 0/10 0/10 0
82 50 50 50 0/10 0/10 0/10 0
83 50 50 50 0/10 0/10 0/10 0
84 50 50 50 0/10 0/10 0/10 0
85 50 50 50 0/10 0/10 0/10 0
86 50 50 50 0/10 0/10 0/10 0
87 50 50 50 0/10 0/10 0/10 0
88 50 50 50 0/10 0/10 0/10 0
89 50 50 50 0/10 0/10 0/10 0
90 50 50 50 0/10 0/10 0/10 0
91 50 50 50 0/10 0/10 0/10 0
92 50 50 50 0/10 0/10 0/10 0
93 50 50 50 0/10 0/10 0/10 0
94 50 50 50 0/10 0/10 0/10 0
95 50 50 50 0/10 0/10 0/10 0
96 50 50 50 0/10 0/10 0/10 0
97 50 50 50 0/10 0/10 0/10 0
98 50 50 50 0/10 0/10 0/10 0
99 50 50 50 0/10 0/10 0/10 0
100 50 50 50 0/10 0/10 0/10 0
101 50 50 50 0/10 0/10 0/10 0
102 50 50 50 0/10 0/10 0/10 0
103 50 50 50 0/10 0/10 0/10 0
104 50 50 50 0/10 0/10 0/10 0
105 50 50 50 0/10 0/10 0/10 0
106 50 50 50 0/10 0/10 0/10 0
107 50 50 50 0/10 0/10 0/10 0
108 50 50 50 0/10 0/10 0/10 0
109 50 50 50 0/10 0/10 0/10 0
110 50 50 50 0/10 0/10 0/10 0
111 50 50 50 0/10 0/10 0/10 0
112 50 50 50 0/10 0/10 0/10 0
113 50 50 50 0/10 0/10 0/10 0
114 50 50 50 0/10 0/10 0/10 0
115 50 50 50 0/10 0/10 0/10 0
116 50 50 50 0/10 0/10 0/10 0
117 50 50 50 0/10 0/10 0/10 0
118 50 50 50 0/10 0/10 0/10 0
119 50 50 50 0/10 0/10 0/10 0
120 50 50 50 0/10 0/10 0/10 0
121 50 50 50 0/10 0/10 0/10 0
122 50 50 50 0/10 0/10 0/10 0
123 50 50 50 0/10 0/10 0/10 0
124 50 50 50 0/10 0/10 0/10 0
125 50 50 50 0/10 0/10 0/10 0
126 50 50 50 0/10 0/10 0/10 0
127 50 50 50 0/10 0/10 0/10 0
128 50 50 50 0/10 0/10 0/10 0
129 50 50 50 0/10 0/10 0/10 0
130 50 50 50 0/10 0/10 0/10 0
131 50 50 50 0/10 0/10 0/10 0
132 50 50 50 0/10 0/10 0/10 0
133 50 50 50 0/10 0/10 0/10 0
134 50 50 50 0/10 0/10 0/10 0
135 50 50 50 0/10 0/10 0/10 0
136 50 50 50 0/10 0/10 0/10 0
137 50 50 50 0/10 0/10 0/10 0
138 50 50 50 0/10 0/10 0/10 0
139 50 50 50 0/10 0/10 0/10 0
140 50 50 50 0/10 0/10 0/10 0
141 50 50 50 0/10 0/10 0/10 0
142 50 50 50 0/10 0/10 0/10 0
143 50 50 50 0/10 0/10 0/10 0
144 50 50 50 0/10 0/10 0/10 0

View File

@ -0,0 +1,51 @@
Plastic left,Glass left,Metal left,GC plastic,GC glass,GC metal,Total collected
34,35,27,0/10,0/10,0/10,0
36,37,27,0/10,0/10,0/10,0
36,39,31,0/10,0/10,0/10,0
38,41,31,0/10,0/10,0/10,0
41,42,33,0/10,0/10,0/10,0
44,42,33,0/10,0/10,0/10,0
46,45,34,0/10,0/10,0/10,0
46,47,36,0/10,0/10,0/10,0
49,47,36,0/10,0/10,0/10,0
49,47,38,0/10,0/10,0/10,0
49,48,40,0/10,0/10,0/10,0
50,49,40,0/10,0/10,0/10,0
50,49,41,0/10,0/10,0/10,0
50,49,41,0/10,0/10,0/10,0
50,49,41,0/10,0/10,0/10,0
50,50,41,0/10,0/10,0/10,0
50,50,41,0/10,0/10,0/10,0
50,50,44,0/10,0/10,0/10,0
50,50,46,0/10,0/10,0/10,0
50,50,46,0/10,0/10,0/10,0
50,50,46,0/10,0/10,0/10,0
50,50,47,0/10,0/10,0/10,0
50,50,49,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
1 Plastic left Glass left Metal left GC plastic GC glass GC metal Total collected
2 34 35 27 0/10 0/10 0/10 0
3 36 37 27 0/10 0/10 0/10 0
4 36 39 31 0/10 0/10 0/10 0
5 38 41 31 0/10 0/10 0/10 0
6 41 42 33 0/10 0/10 0/10 0
7 44 42 33 0/10 0/10 0/10 0
8 46 45 34 0/10 0/10 0/10 0
9 46 47 36 0/10 0/10 0/10 0
10 49 47 36 0/10 0/10 0/10 0
11 49 47 38 0/10 0/10 0/10 0
12 49 48 40 0/10 0/10 0/10 0
13 50 49 40 0/10 0/10 0/10 0
14 50 49 41 0/10 0/10 0/10 0
15 50 49 41 0/10 0/10 0/10 0
16 50 49 41 0/10 0/10 0/10 0
17 50 50 41 0/10 0/10 0/10 0
18 50 50 41 0/10 0/10 0/10 0
19 50 50 44 0/10 0/10 0/10 0
20 50 50 46 0/10 0/10 0/10 0
21 50 50 46 0/10 0/10 0/10 0
22 50 50 46 0/10 0/10 0/10 0
23 50 50 47 0/10 0/10 0/10 0
24 50 50 49 0/10 0/10 0/10 0
25 50 50 50 0/10 0/10 0/10 0
26 50 50 50 0/10 0/10 0/10 0
27 50 50 50 0/10 0/10 0/10 0
28 50 50 50 0/10 0/10 0/10 0
29 50 50 50 0/10 0/10 0/10 0
30 50 50 50 0/10 0/10 0/10 0
31 50 50 50 0/10 0/10 0/10 0
32 50 50 50 0/10 0/10 0/10 0
33 50 50 50 0/10 0/10 0/10 0
34 50 50 50 0/10 0/10 0/10 0
35 50 50 50 0/10 0/10 0/10 0
36 50 50 50 0/10 0/10 0/10 0
37 50 50 50 0/10 0/10 0/10 0
38 50 50 50 0/10 0/10 0/10 0
39 50 50 50 0/10 0/10 0/10 0
40 50 50 50 0/10 0/10 0/10 0
41 50 50 50 0/10 0/10 0/10 0
42 50 50 50 0/10 0/10 0/10 0
43 50 50 50 0/10 0/10 0/10 0
44 50 50 50 0/10 0/10 0/10 0
45 50 50 50 0/10 0/10 0/10 0
46 50 50 50 0/10 0/10 0/10 0
47 50 50 50 0/10 0/10 0/10 0
48 50 50 50 0/10 0/10 0/10 0
49 50 50 50 0/10 0/10 0/10 0
50 50 50 50 0/10 0/10 0/10 0
51 50 50 50 0/10 0/10 0/10 0

View File

@ -0,0 +1,26 @@
Plastic left,Glass left,Metal left,GC plastic,GC glass,GC metal,Total collected
15,31,36,0/10,0/10,0/10,0
19,36,39,0/10,0/10,0/10,0
20,36,40,0/10,0/10,0/10,0
24,38,40,0/10,0/10,0/10,0
29,38,42,0/10,0/10,0/10,0
32,38,45,0/10,0/10,0/10,0
33,38,45,0/10,0/10,0/10,0
33,39,46,0/10,0/10,0/10,0
36,40,46,0/10,0/10,0/10,0
38,40,46,0/10,0/10,0/10,0
38,42,47,0/10,0/10,0/10,0
39,44,49,0/10,0/10,0/10,0
42,44,50,0/10,0/10,0/10,0
42,45,50,0/10,0/10,0/10,0
43,45,50,0/10,0/10,0/10,0
43,46,50,0/10,0/10,0/10,0
44,46,50,0/10,0/10,0/10,0
44,46,50,0/10,0/10,0/10,0
45,47,50,0/10,0/10,0/10,0
45,49,50,0/10,0/10,0/10,0
46,49,50,0/10,0/10,0/10,0
47,50,50,0/10,0/10,0/10,0
47,50,50,0/10,0/10,0/10,0
48,50,50,0/10,0/10,0/10,0
48,50,50,0/10,0/10,0/10,0
1 Plastic left Glass left Metal left GC plastic GC glass GC metal Total collected
2 15 31 36 0/10 0/10 0/10 0
3 19 36 39 0/10 0/10 0/10 0
4 20 36 40 0/10 0/10 0/10 0
5 24 38 40 0/10 0/10 0/10 0
6 29 38 42 0/10 0/10 0/10 0
7 32 38 45 0/10 0/10 0/10 0
8 33 38 45 0/10 0/10 0/10 0
9 33 39 46 0/10 0/10 0/10 0
10 36 40 46 0/10 0/10 0/10 0
11 38 40 46 0/10 0/10 0/10 0
12 38 42 47 0/10 0/10 0/10 0
13 39 44 49 0/10 0/10 0/10 0
14 42 44 50 0/10 0/10 0/10 0
15 42 45 50 0/10 0/10 0/10 0
16 43 45 50 0/10 0/10 0/10 0
17 43 46 50 0/10 0/10 0/10 0
18 44 46 50 0/10 0/10 0/10 0
19 44 46 50 0/10 0/10 0/10 0
20 45 47 50 0/10 0/10 0/10 0
21 45 49 50 0/10 0/10 0/10 0
22 46 49 50 0/10 0/10 0/10 0
23 47 50 50 0/10 0/10 0/10 0
24 47 50 50 0/10 0/10 0/10 0
25 48 50 50 0/10 0/10 0/10 0
26 48 50 50 0/10 0/10 0/10 0

View File

@ -0,0 +1,9 @@
Plastic left,Glass left,Metal left,GC plastic,GC glass,GC metal,Total collected
35,27,43,0/10,0/10,0/10,0
37,28,45,0/10,0/10,0/10,0
37,32,45,0/10,0/10,0/10,0
39,35,46,0/10,0/10,0/10,0
39,37,46,0/10,0/10,0/10,0
40,37,46,0/10,0/10,0/10,0
42,39,46,0/10,0/10,0/10,0
44,39,46,0/10,0/10,0/10,0
1 Plastic left Glass left Metal left GC plastic GC glass GC metal Total collected
2 35 27 43 0/10 0/10 0/10 0
3 37 28 45 0/10 0/10 0/10 0
4 37 32 45 0/10 0/10 0/10 0
5 39 35 46 0/10 0/10 0/10 0
6 39 37 46 0/10 0/10 0/10 0
7 40 37 46 0/10 0/10 0/10 0
8 42 39 46 0/10 0/10 0/10 0
9 44 39 46 0/10 0/10 0/10 0

View File

@ -0,0 +1,35 @@
Plastic left,Glass left,Metal left,GC plastic,GC glass,GC metal,Total collected
25,15,21,0/10,0/10,0/10,0
27,19,23,0/10,0/10,0/10,0
29,22,28,0/10,0/10,0/10,0
29,25,28,0/10,0/10,0/10,0
36,29,30,0/10,0/10,0/10,0
37,35,31,0/10,0/10,0/10,0
38,38,33,0/10,0/10,0/10,0
38,38,34,0/10,0/10,0/10,0
38,39,36,0/10,0/10,0/10,0
41,43,36,0/10,0/10,0/10,0
43,44,37,0/10,0/10,0/10,0
45,46,39,0/10,0/10,0/10,0
45,48,39,0/10,0/10,0/10,0
46,49,42,0/10,0/10,0/10,0
47,49,45,0/10,0/10,0/10,0
48,49,45,0/10,0/10,0/10,0
49,50,46,0/10,0/10,0/10,0
50,50,46,0/10,0/10,0/10,0
50,50,46,0/10,0/10,0/10,0
50,50,46,0/10,0/10,0/10,0
50,50,47,0/10,0/10,0/10,0
50,50,49,0/10,0/10,0/10,0
50,50,49,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
1 Plastic left Glass left Metal left GC plastic GC glass GC metal Total collected
2 25 15 21 0/10 0/10 0/10 0
3 27 19 23 0/10 0/10 0/10 0
4 29 22 28 0/10 0/10 0/10 0
5 29 25 28 0/10 0/10 0/10 0
6 36 29 30 0/10 0/10 0/10 0
7 37 35 31 0/10 0/10 0/10 0
8 38 38 33 0/10 0/10 0/10 0
9 38 38 34 0/10 0/10 0/10 0
10 38 39 36 0/10 0/10 0/10 0
11 41 43 36 0/10 0/10 0/10 0
12 43 44 37 0/10 0/10 0/10 0
13 45 46 39 0/10 0/10 0/10 0
14 45 48 39 0/10 0/10 0/10 0
15 46 49 42 0/10 0/10 0/10 0
16 47 49 45 0/10 0/10 0/10 0
17 48 49 45 0/10 0/10 0/10 0
18 49 50 46 0/10 0/10 0/10 0
19 50 50 46 0/10 0/10 0/10 0
20 50 50 46 0/10 0/10 0/10 0
21 50 50 46 0/10 0/10 0/10 0
22 50 50 47 0/10 0/10 0/10 0
23 50 50 49 0/10 0/10 0/10 0
24 50 50 49 0/10 0/10 0/10 0
25 50 50 50 0/10 0/10 0/10 0
26 50 50 50 0/10 0/10 0/10 0
27 50 50 50 0/10 0/10 0/10 0
28 50 50 50 0/10 0/10 0/10 0
29 50 50 50 0/10 0/10 0/10 0
30 50 50 50 0/10 0/10 0/10 0
31 50 50 50 0/10 0/10 0/10 0
32 50 50 50 0/10 0/10 0/10 0
33 50 50 50 0/10 0/10 0/10 0
34 50 50 50 0/10 0/10 0/10 0
35 50 50 50 0/10 0/10 0/10 0

View File

@ -0,0 +1,17 @@
Plastic left,Glass left,Metal left,GC plastic,GC glass,GC metal,Total collected
35,23,40,0/10,0/10,0/10,0
36,28,40,0/10,0/10,0/10,0
41,30,40,0/10,0/10,0/10,0
43,31,42,0/10,0/10,0/10,0
44,34,42,0/10,0/10,0/10,0
45,36,46,0/10,0/10,0/10,0
48,36,47,0/10,0/10,0/10,0
48,38,47,0/10,0/10,0/10,0
48,39,49,0/10,0/10,0/10,0
48,42,49,0/10,0/10,0/10,0
49,44,49,0/10,0/10,0/10,0
50,46,49,0/10,0/10,0/10,0
50,47,49,0/10,0/10,0/10,0
50,48,50,0/10,0/10,0/10,0
50,49,50,0/10,0/10,0/10,0
50,49,50,0/10,0/10,0/10,0
1 Plastic left Glass left Metal left GC plastic GC glass GC metal Total collected
2 35 23 40 0/10 0/10 0/10 0
3 36 28 40 0/10 0/10 0/10 0
4 41 30 40 0/10 0/10 0/10 0
5 43 31 42 0/10 0/10 0/10 0
6 44 34 42 0/10 0/10 0/10 0
7 45 36 46 0/10 0/10 0/10 0
8 48 36 47 0/10 0/10 0/10 0
9 48 38 47 0/10 0/10 0/10 0
10 48 39 49 0/10 0/10 0/10 0
11 48 42 49 0/10 0/10 0/10 0
12 49 44 49 0/10 0/10 0/10 0
13 50 46 49 0/10 0/10 0/10 0
14 50 47 49 0/10 0/10 0/10 0
15 50 48 50 0/10 0/10 0/10 0
16 50 49 50 0/10 0/10 0/10 0
17 50 49 50 0/10 0/10 0/10 0

View File

@ -0,0 +1,10 @@
Plastic left,Glass left,Metal left,GC plastic,GC glass,GC metal,Total collected
27,34,21,0/10,0/10,0/10,0
29,35,21,0/10,0/10,0/10,0
31,36,22,0/10,0/10,0/10,0
33,39,22,0/10,0/10,0/10,0
34,44,23,0/10,0/10,0/10,0
37,45,26,0/10,0/10,0/10,0
38,45,27,0/10,0/10,0/10,0
42,46,30,0/10,0/10,0/10,0
42,47,33,0/10,0/10,0/10,0
1 Plastic left Glass left Metal left GC plastic GC glass GC metal Total collected
2 27 34 21 0/10 0/10 0/10 0
3 29 35 21 0/10 0/10 0/10 0
4 31 36 22 0/10 0/10 0/10 0
5 33 39 22 0/10 0/10 0/10 0
6 34 44 23 0/10 0/10 0/10 0
7 37 45 26 0/10 0/10 0/10 0
8 38 45 27 0/10 0/10 0/10 0
9 42 46 30 0/10 0/10 0/10 0
10 42 47 33 0/10 0/10 0/10 0

View File

@ -0,0 +1,8 @@
Plastic left,Glass left,Metal left,GC plastic,GC glass,GC metal,Total collected
13,25,23,0/10,0/10,0/10,0
17,28,27,0/10,0/10,0/10,0
20,33,30,0/10,0/10,0/10,0
23,37,32,0/10,0/10,0/10,0
25,38,35,0/10,0/10,0/10,0
27,41,35,0/10,0/10,0/10,0
28,42,37,0/10,0/10,0/10,0
1 Plastic left Glass left Metal left GC plastic GC glass GC metal Total collected
2 13 25 23 0/10 0/10 0/10 0
3 17 28 27 0/10 0/10 0/10 0
4 20 33 30 0/10 0/10 0/10 0
5 23 37 32 0/10 0/10 0/10 0
6 25 38 35 0/10 0/10 0/10 0
7 27 41 35 0/10 0/10 0/10 0
8 28 42 37 0/10 0/10 0/10 0

View File

@ -0,0 +1,8 @@
Plastic left,Glass left,Metal left,GC plastic,GC glass,GC metal,Total collected
25,8,17,0/10,0/10,0/10,0
28,9,18,0/10,0/10,0/10,0
32,10,18,0/10,0/10,0/10,0
35,12,21,0/10,0/10,0/10,0
37,13,23,0/10,0/10,0/10,0
39,16,24,0/10,0/10,0/10,0
40,20,26,0/10,0/10,0/10,0
1 Plastic left Glass left Metal left GC plastic GC glass GC metal Total collected
2 25 8 17 0/10 0/10 0/10 0
3 28 9 18 0/10 0/10 0/10 0
4 32 10 18 0/10 0/10 0/10 0
5 35 12 21 0/10 0/10 0/10 0
6 37 13 23 0/10 0/10 0/10 0
7 39 16 24 0/10 0/10 0/10 0
8 40 20 26 0/10 0/10 0/10 0

View File

@ -0,0 +1,7 @@
Plastic left,Glass left,Metal left,GC plastic,GC glass,GC metal,Total collected
21,18,22,0/10,0/10,0/10,0
22,20,25,0/10,0/10,0/10,0
25,22,31,0/10,0/10,0/10,0
25,27,35,0/10,0/10,0/10,0
28,29,36,0/10,0/10,0/10,0
31,32,39,0/10,0/10,0/10,0
1 Plastic left Glass left Metal left GC plastic GC glass GC metal Total collected
2 21 18 22 0/10 0/10 0/10 0
3 22 20 25 0/10 0/10 0/10 0
4 25 22 31 0/10 0/10 0/10 0
5 25 27 35 0/10 0/10 0/10 0
6 28 29 36 0/10 0/10 0/10 0
7 31 32 39 0/10 0/10 0/10 0

View File

@ -0,0 +1,6 @@
Plastic left,Glass left,Metal left,GC plastic,GC glass,GC metal,Total collected
39,20,30,0/10,0/10,0/10,0
41,21,30,0/10,0/10,0/10,0
42,22,32,0/10,0/10,0/10,0
43,23,35,0/10,0/10,0/10,0
45,25,37,0/10,0/10,0/10,0
1 Plastic left Glass left Metal left GC plastic GC glass GC metal Total collected
2 39 20 30 0/10 0/10 0/10 0
3 41 21 30 0/10 0/10 0/10 0
4 42 22 32 0/10 0/10 0/10 0
5 43 23 35 0/10 0/10 0/10 0
6 45 25 37 0/10 0/10 0/10 0

View File

@ -0,0 +1,3 @@
Plastic left,Glass left,Metal left,GC plastic,GC glass,GC metal,Total collected
21,23,5,0/10,0/10,0/10,0
21,24,5,0/10,0/10,0/10,0
1 Plastic left Glass left Metal left GC plastic GC glass GC metal Total collected
2 21 23 5 0/10 0/10 0/10 0
3 21 24 5 0/10 0/10 0/10 0

View File

@ -0,0 +1,31 @@
Plastic left,Glass left,Metal left,GC plastic,GC glass,GC metal,Total collected
33,26,21,0/10,0/10,0/10,0
35,28,23,0/10,0/10,0/10,0
39,28,27,0/10,0/10,0/10,0
40,28,32,0/10,0/10,0/10,0
41,31,34,0/10,0/10,0/10,0
42,32,35,0/10,0/10,0/10,0
45,32,35,0/10,0/10,0/10,0
47,34,36,0/10,0/10,0/10,0
47,34,37,0/10,0/10,0/10,0
47,34,40,0/10,0/10,0/10,0
48,36,41,0/10,0/10,0/10,0
48,37,43,0/10,0/10,0/10,0
49,39,46,0/10,0/10,0/10,0
49,40,47,0/10,0/10,0/10,0
49,40,48,0/10,0/10,0/10,0
50,40,49,0/10,0/10,0/10,0
50,42,50,0/10,0/10,0/10,0
50,42,50,0/10,0/10,0/10,0
50,44,50,0/10,0/10,0/10,0
50,45,50,0/10,0/10,0/10,0
50,45,50,0/10,0/10,0/10,0
50,45,50,0/10,0/10,0/10,0
50,45,50,0/10,0/10,0/10,0
50,46,50,0/10,0/10,0/10,0
50,46,50,0/10,0/10,0/10,0
50,46,50,0/10,0/10,0/10,0
50,46,50,0/10,0/10,0/10,0
50,46,50,0/10,0/10,0/10,0
50,46,50,0/10,0/10,0/10,0
50,46,50,0/10,0/10,0/10,0
1 Plastic left Glass left Metal left GC plastic GC glass GC metal Total collected
2 33 26 21 0/10 0/10 0/10 0
3 35 28 23 0/10 0/10 0/10 0
4 39 28 27 0/10 0/10 0/10 0
5 40 28 32 0/10 0/10 0/10 0
6 41 31 34 0/10 0/10 0/10 0
7 42 32 35 0/10 0/10 0/10 0
8 45 32 35 0/10 0/10 0/10 0
9 47 34 36 0/10 0/10 0/10 0
10 47 34 37 0/10 0/10 0/10 0
11 47 34 40 0/10 0/10 0/10 0
12 48 36 41 0/10 0/10 0/10 0
13 48 37 43 0/10 0/10 0/10 0
14 49 39 46 0/10 0/10 0/10 0
15 49 40 47 0/10 0/10 0/10 0
16 49 40 48 0/10 0/10 0/10 0
17 50 40 49 0/10 0/10 0/10 0
18 50 42 50 0/10 0/10 0/10 0
19 50 42 50 0/10 0/10 0/10 0
20 50 44 50 0/10 0/10 0/10 0
21 50 45 50 0/10 0/10 0/10 0
22 50 45 50 0/10 0/10 0/10 0
23 50 45 50 0/10 0/10 0/10 0
24 50 45 50 0/10 0/10 0/10 0
25 50 46 50 0/10 0/10 0/10 0
26 50 46 50 0/10 0/10 0/10 0
27 50 46 50 0/10 0/10 0/10 0
28 50 46 50 0/10 0/10 0/10 0
29 50 46 50 0/10 0/10 0/10 0
30 50 46 50 0/10 0/10 0/10 0
31 50 46 50 0/10 0/10 0/10 0

View File

@ -0,0 +1,14 @@
Plastic left,Glass left,Metal left,GC plastic,GC glass,GC metal,Total collected
29,15,46,0/10,0/10,0/10,0
31,20,46,0/10,0/10,0/10,0
33,20,46,0/10,0/10,0/10,0
35,23,47,0/10,0/10,0/10,0
37,25,47,0/10,0/10,0/10,0
38,27,47,0/10,0/10,0/10,0
39,31,47,0/10,0/10,0/10,0
40,31,47,0/10,0/10,0/10,0
41,32,47,0/10,0/10,0/10,0
42,34,47,0/10,0/10,0/10,0
45,38,48,0/10,0/10,0/10,0
48,41,48,0/10,0/10,0/10,0
48,42,49,0/10,0/10,0/10,0
1 Plastic left Glass left Metal left GC plastic GC glass GC metal Total collected
2 29 15 46 0/10 0/10 0/10 0
3 31 20 46 0/10 0/10 0/10 0
4 33 20 46 0/10 0/10 0/10 0
5 35 23 47 0/10 0/10 0/10 0
6 37 25 47 0/10 0/10 0/10 0
7 38 27 47 0/10 0/10 0/10 0
8 39 31 47 0/10 0/10 0/10 0
9 40 31 47 0/10 0/10 0/10 0
10 41 32 47 0/10 0/10 0/10 0
11 42 34 47 0/10 0/10 0/10 0
12 45 38 48 0/10 0/10 0/10 0
13 48 41 48 0/10 0/10 0/10 0
14 48 42 49 0/10 0/10 0/10 0

View File

@ -0,0 +1,692 @@
Plastic left,Glass left,Metal left,GC plastic,GC glass,GC metal,Total collected
26,15,30,0/10,0/10,0/10,0
28,19,31,0/10,0/10,0/10,0
31,24,37,0/10,0/10,0/10,0
33,27,41,0/10,0/10,0/10,0
34,29,41,0/10,0/10,0/10,0
35,31,42,0/10,0/10,0/10,0
37,34,44,0/10,0/10,0/10,0
38,36,44,0/10,0/10,0/10,0
38,38,46,0/10,0/10,0/10,0
38,38,46,0/10,0/10,0/10,0
39,40,47,0/10,0/10,0/10,0
41,41,48,0/10,0/10,0/10,0
41,45,48,0/10,0/10,0/10,0
42,46,49,0/10,0/10,0/10,0
44,49,49,0/10,0/10,0/10,0
45,49,49,0/10,0/10,0/10,0
47,49,49,0/10,0/10,0/10,0
48,49,49,0/10,0/10,0/10,0
49,49,50,0/10,0/10,0/10,0
50,49,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
50,50,50,0/10,0/10,0/10,0
1 Plastic left Glass left Metal left GC plastic GC glass GC metal Total collected
2 26 15 30 0/10 0/10 0/10 0
3 28 19 31 0/10 0/10 0/10 0
4 31 24 37 0/10 0/10 0/10 0
5 33 27 41 0/10 0/10 0/10 0
6 34 29 41 0/10 0/10 0/10 0
7 35 31 42 0/10 0/10 0/10 0
8 37 34 44 0/10 0/10 0/10 0
9 38 36 44 0/10 0/10 0/10 0
10 38 38 46 0/10 0/10 0/10 0
11 38 38 46 0/10 0/10 0/10 0
12 39 40 47 0/10 0/10 0/10 0
13 41 41 48 0/10 0/10 0/10 0
14 41 45 48 0/10 0/10 0/10 0
15 42 46 49 0/10 0/10 0/10 0
16 44 49 49 0/10 0/10 0/10 0
17 45 49 49 0/10 0/10 0/10 0
18 47 49 49 0/10 0/10 0/10 0
19 48 49 49 0/10 0/10 0/10 0
20 49 49 50 0/10 0/10 0/10 0
21 50 49 50 0/10 0/10 0/10 0
22 50 50 50 0/10 0/10 0/10 0
23 50 50 50 0/10 0/10 0/10 0
24 50 50 50 0/10 0/10 0/10 0
25 50 50 50 0/10 0/10 0/10 0
26 50 50 50 0/10 0/10 0/10 0
27 50 50 50 0/10 0/10 0/10 0
28 50 50 50 0/10 0/10 0/10 0
29 50 50 50 0/10 0/10 0/10 0
30 50 50 50 0/10 0/10 0/10 0
31 50 50 50 0/10 0/10 0/10 0
32 50 50 50 0/10 0/10 0/10 0
33 50 50 50 0/10 0/10 0/10 0
34 50 50 50 0/10 0/10 0/10 0
35 50 50 50 0/10 0/10 0/10 0
36 50 50 50 0/10 0/10 0/10 0
37 50 50 50 0/10 0/10 0/10 0
38 50 50 50 0/10 0/10 0/10 0
39 50 50 50 0/10 0/10 0/10 0
40 50 50 50 0/10 0/10 0/10 0
41 50 50 50 0/10 0/10 0/10 0
42 50 50 50 0/10 0/10 0/10 0
43 50 50 50 0/10 0/10 0/10 0
44 50 50 50 0/10 0/10 0/10 0
45 50 50 50 0/10 0/10 0/10 0
46 50 50 50 0/10 0/10 0/10 0
47 50 50 50 0/10 0/10 0/10 0
48 50 50 50 0/10 0/10 0/10 0
49 50 50 50 0/10 0/10 0/10 0
50 50 50 50 0/10 0/10 0/10 0
51 50 50 50 0/10 0/10 0/10 0
52 50 50 50 0/10 0/10 0/10 0
53 50 50 50 0/10 0/10 0/10 0
54 50 50 50 0/10 0/10 0/10 0
55 50 50 50 0/10 0/10 0/10 0
56 50 50 50 0/10 0/10 0/10 0
57 50 50 50 0/10 0/10 0/10 0
58 50 50 50 0/10 0/10 0/10 0
59 50 50 50 0/10 0/10 0/10 0
60 50 50 50 0/10 0/10 0/10 0
61 50 50 50 0/10 0/10 0/10 0
62 50 50 50 0/10 0/10 0/10 0
63 50 50 50 0/10 0/10 0/10 0
64 50 50 50 0/10 0/10 0/10 0
65 50 50 50 0/10 0/10 0/10 0
66 50 50 50 0/10 0/10 0/10 0
67 50 50 50 0/10 0/10 0/10 0
68 50 50 50 0/10 0/10 0/10 0
69 50 50 50 0/10 0/10 0/10 0
70 50 50 50 0/10 0/10 0/10 0
71 50 50 50 0/10 0/10 0/10 0
72 50 50 50 0/10 0/10 0/10 0
73 50 50 50 0/10 0/10 0/10 0
74 50 50 50 0/10 0/10 0/10 0
75 50 50 50 0/10 0/10 0/10 0
76 50 50 50 0/10 0/10 0/10 0
77 50 50 50 0/10 0/10 0/10 0
78 50 50 50 0/10 0/10 0/10 0
79 50 50 50 0/10 0/10 0/10 0
80 50 50 50 0/10 0/10 0/10 0
81 50 50 50 0/10 0/10 0/10 0
82 50 50 50 0/10 0/10 0/10 0
83 50 50 50 0/10 0/10 0/10 0
84 50 50 50 0/10 0/10 0/10 0
85 50 50 50 0/10 0/10 0/10 0
86 50 50 50 0/10 0/10 0/10 0
87 50 50 50 0/10 0/10 0/10 0
88 50 50 50 0/10 0/10 0/10 0
89 50 50 50 0/10 0/10 0/10 0
90 50 50 50 0/10 0/10 0/10 0
91 50 50 50 0/10 0/10 0/10 0
92 50 50 50 0/10 0/10 0/10 0
93 50 50 50 0/10 0/10 0/10 0
94 50 50 50 0/10 0/10 0/10 0
95 50 50 50 0/10 0/10 0/10 0
96 50 50 50 0/10 0/10 0/10 0
97 50 50 50 0/10 0/10 0/10 0
98 50 50 50 0/10 0/10 0/10 0
99 50 50 50 0/10 0/10 0/10 0
100 50 50 50 0/10 0/10 0/10 0
101 50 50 50 0/10 0/10 0/10 0
102 50 50 50 0/10 0/10 0/10 0
103 50 50 50 0/10 0/10 0/10 0
104 50 50 50 0/10 0/10 0/10 0
105 50 50 50 0/10 0/10 0/10 0
106 50 50 50 0/10 0/10 0/10 0
107 50 50 50 0/10 0/10 0/10 0
108 50 50 50 0/10 0/10 0/10 0
109 50 50 50 0/10 0/10 0/10 0
110 50 50 50 0/10 0/10 0/10 0
111 50 50 50 0/10 0/10 0/10 0
112 50 50 50 0/10 0/10 0/10 0
113 50 50 50 0/10 0/10 0/10 0
114 50 50 50 0/10 0/10 0/10 0
115 50 50 50 0/10 0/10 0/10 0
116 50 50 50 0/10 0/10 0/10 0
117 50 50 50 0/10 0/10 0/10 0
118 50 50 50 0/10 0/10 0/10 0
119 50 50 50 0/10 0/10 0/10 0
120 50 50 50 0/10 0/10 0/10 0
121 50 50 50 0/10 0/10 0/10 0
122 50 50 50 0/10 0/10 0/10 0
123 50 50 50 0/10 0/10 0/10 0
124 50 50 50 0/10 0/10 0/10 0
125 50 50 50 0/10 0/10 0/10 0
126 50 50 50 0/10 0/10 0/10 0
127 50 50 50 0/10 0/10 0/10 0
128 50 50 50 0/10 0/10 0/10 0
129 50 50 50 0/10 0/10 0/10 0
130 50 50 50 0/10 0/10 0/10 0
131 50 50 50 0/10 0/10 0/10 0
132 50 50 50 0/10 0/10 0/10 0
133 50 50 50 0/10 0/10 0/10 0
134 50 50 50 0/10 0/10 0/10 0
135 50 50 50 0/10 0/10 0/10 0
136 50 50 50 0/10 0/10 0/10 0
137 50 50 50 0/10 0/10 0/10 0
138 50 50 50 0/10 0/10 0/10 0
139 50 50 50 0/10 0/10 0/10 0
140 50 50 50 0/10 0/10 0/10 0
141 50 50 50 0/10 0/10 0/10 0
142 50 50 50 0/10 0/10 0/10 0
143 50 50 50 0/10 0/10 0/10 0
144 50 50 50 0/10 0/10 0/10 0
145 50 50 50 0/10 0/10 0/10 0
146 50 50 50 0/10 0/10 0/10 0
147 50 50 50 0/10 0/10 0/10 0
148 50 50 50 0/10 0/10 0/10 0
149 50 50 50 0/10 0/10 0/10 0
150 50 50 50 0/10 0/10 0/10 0
151 50 50 50 0/10 0/10 0/10 0
152 50 50 50 0/10 0/10 0/10 0
153 50 50 50 0/10 0/10 0/10 0
154 50 50 50 0/10 0/10 0/10 0
155 50 50 50 0/10 0/10 0/10 0
156 50 50 50 0/10 0/10 0/10 0
157 50 50 50 0/10 0/10 0/10 0
158 50 50 50 0/10 0/10 0/10 0
159 50 50 50 0/10 0/10 0/10 0
160 50 50 50 0/10 0/10 0/10 0
161 50 50 50 0/10 0/10 0/10 0
162 50 50 50 0/10 0/10 0/10 0
163 50 50 50 0/10 0/10 0/10 0
164 50 50 50 0/10 0/10 0/10 0
165 50 50 50 0/10 0/10 0/10 0
166 50 50 50 0/10 0/10 0/10 0
167 50 50 50 0/10 0/10 0/10 0
168 50 50 50 0/10 0/10 0/10 0
169 50 50 50 0/10 0/10 0/10 0
170 50 50 50 0/10 0/10 0/10 0
171 50 50 50 0/10 0/10 0/10 0
172 50 50 50 0/10 0/10 0/10 0
173 50 50 50 0/10 0/10 0/10 0
174 50 50 50 0/10 0/10 0/10 0
175 50 50 50 0/10 0/10 0/10 0
176 50 50 50 0/10 0/10 0/10 0
177 50 50 50 0/10 0/10 0/10 0
178 50 50 50 0/10 0/10 0/10 0
179 50 50 50 0/10 0/10 0/10 0
180 50 50 50 0/10 0/10 0/10 0
181 50 50 50 0/10 0/10 0/10 0
182 50 50 50 0/10 0/10 0/10 0
183 50 50 50 0/10 0/10 0/10 0
184 50 50 50 0/10 0/10 0/10 0
185 50 50 50 0/10 0/10 0/10 0
186 50 50 50 0/10 0/10 0/10 0
187 50 50 50 0/10 0/10 0/10 0
188 50 50 50 0/10 0/10 0/10 0
189 50 50 50 0/10 0/10 0/10 0
190 50 50 50 0/10 0/10 0/10 0
191 50 50 50 0/10 0/10 0/10 0
192 50 50 50 0/10 0/10 0/10 0
193 50 50 50 0/10 0/10 0/10 0
194 50 50 50 0/10 0/10 0/10 0
195 50 50 50 0/10 0/10 0/10 0
196 50 50 50 0/10 0/10 0/10 0
197 50 50 50 0/10 0/10 0/10 0
198 50 50 50 0/10 0/10 0/10 0
199 50 50 50 0/10 0/10 0/10 0
200 50 50 50 0/10 0/10 0/10 0
201 50 50 50 0/10 0/10 0/10 0
202 50 50 50 0/10 0/10 0/10 0
203 50 50 50 0/10 0/10 0/10 0
204 50 50 50 0/10 0/10 0/10 0
205 50 50 50 0/10 0/10 0/10 0
206 50 50 50 0/10 0/10 0/10 0
207 50 50 50 0/10 0/10 0/10 0
208 50 50 50 0/10 0/10 0/10 0
209 50 50 50 0/10 0/10 0/10 0
210 50 50 50 0/10 0/10 0/10 0
211 50 50 50 0/10 0/10 0/10 0
212 50 50 50 0/10 0/10 0/10 0
213 50 50 50 0/10 0/10 0/10 0
214 50 50 50 0/10 0/10 0/10 0
215 50 50 50 0/10 0/10 0/10 0
216 50 50 50 0/10 0/10 0/10 0
217 50 50 50 0/10 0/10 0/10 0
218 50 50 50 0/10 0/10 0/10 0
219 50 50 50 0/10 0/10 0/10 0
220 50 50 50 0/10 0/10 0/10 0
221 50 50 50 0/10 0/10 0/10 0
222 50 50 50 0/10 0/10 0/10 0
223 50 50 50 0/10 0/10 0/10 0
224 50 50 50 0/10 0/10 0/10 0
225 50 50 50 0/10 0/10 0/10 0
226 50 50 50 0/10 0/10 0/10 0
227 50 50 50 0/10 0/10 0/10 0
228 50 50 50 0/10 0/10 0/10 0
229 50 50 50 0/10 0/10 0/10 0
230 50 50 50 0/10 0/10 0/10 0
231 50 50 50 0/10 0/10 0/10 0
232 50 50 50 0/10 0/10 0/10 0
233 50 50 50 0/10 0/10 0/10 0
234 50 50 50 0/10 0/10 0/10 0
235 50 50 50 0/10 0/10 0/10 0
236 50 50 50 0/10 0/10 0/10 0
237 50 50 50 0/10 0/10 0/10 0
238 50 50 50 0/10 0/10 0/10 0
239 50 50 50 0/10 0/10 0/10 0
240 50 50 50 0/10 0/10 0/10 0
241 50 50 50 0/10 0/10 0/10 0
242 50 50 50 0/10 0/10 0/10 0
243 50 50 50 0/10 0/10 0/10 0
244 50 50 50 0/10 0/10 0/10 0
245 50 50 50 0/10 0/10 0/10 0
246 50 50 50 0/10 0/10 0/10 0
247 50 50 50 0/10 0/10 0/10 0
248 50 50 50 0/10 0/10 0/10 0
249 50 50 50 0/10 0/10 0/10 0
250 50 50 50 0/10 0/10 0/10 0
251 50 50 50 0/10 0/10 0/10 0
252 50 50 50 0/10 0/10 0/10 0
253 50 50 50 0/10 0/10 0/10 0
254 50 50 50 0/10 0/10 0/10 0
255 50 50 50 0/10 0/10 0/10 0
256 50 50 50 0/10 0/10 0/10 0
257 50 50 50 0/10 0/10 0/10 0
258 50 50 50 0/10 0/10 0/10 0
259 50 50 50 0/10 0/10 0/10 0
260 50 50 50 0/10 0/10 0/10 0
261 50 50 50 0/10 0/10 0/10 0
262 50 50 50 0/10 0/10 0/10 0
263 50 50 50 0/10 0/10 0/10 0
264 50 50 50 0/10 0/10 0/10 0
265 50 50 50 0/10 0/10 0/10 0
266 50 50 50 0/10 0/10 0/10 0
267 50 50 50 0/10 0/10 0/10 0
268 50 50 50 0/10 0/10 0/10 0
269 50 50 50 0/10 0/10 0/10 0
270 50 50 50 0/10 0/10 0/10 0
271 50 50 50 0/10 0/10 0/10 0
272 50 50 50 0/10 0/10 0/10 0
273 50 50 50 0/10 0/10 0/10 0
274 50 50 50 0/10 0/10 0/10 0
275 50 50 50 0/10 0/10 0/10 0
276 50 50 50 0/10 0/10 0/10 0
277 50 50 50 0/10 0/10 0/10 0
278 50 50 50 0/10 0/10 0/10 0
279 50 50 50 0/10 0/10 0/10 0
280 50 50 50 0/10 0/10 0/10 0
281 50 50 50 0/10 0/10 0/10 0
282 50 50 50 0/10 0/10 0/10 0
283 50 50 50 0/10 0/10 0/10 0
284 50 50 50 0/10 0/10 0/10 0
285 50 50 50 0/10 0/10 0/10 0
286 50 50 50 0/10 0/10 0/10 0
287 50 50 50 0/10 0/10 0/10 0
288 50 50 50 0/10 0/10 0/10 0
289 50 50 50 0/10 0/10 0/10 0
290 50 50 50 0/10 0/10 0/10 0
291 50 50 50 0/10 0/10 0/10 0
292 50 50 50 0/10 0/10 0/10 0
293 50 50 50 0/10 0/10 0/10 0
294 50 50 50 0/10 0/10 0/10 0
295 50 50 50 0/10 0/10 0/10 0
296 50 50 50 0/10 0/10 0/10 0
297 50 50 50 0/10 0/10 0/10 0
298 50 50 50 0/10 0/10 0/10 0
299 50 50 50 0/10 0/10 0/10 0
300 50 50 50 0/10 0/10 0/10 0
301 50 50 50 0/10 0/10 0/10 0
302 50 50 50 0/10 0/10 0/10 0
303 50 50 50 0/10 0/10 0/10 0
304 50 50 50 0/10 0/10 0/10 0
305 50 50 50 0/10 0/10 0/10 0
306 50 50 50 0/10 0/10 0/10 0
307 50 50 50 0/10 0/10 0/10 0
308 50 50 50 0/10 0/10 0/10 0
309 50 50 50 0/10 0/10 0/10 0
310 50 50 50 0/10 0/10 0/10 0
311 50 50 50 0/10 0/10 0/10 0
312 50 50 50 0/10 0/10 0/10 0
313 50 50 50 0/10 0/10 0/10 0
314 50 50 50 0/10 0/10 0/10 0
315 50 50 50 0/10 0/10 0/10 0
316 50 50 50 0/10 0/10 0/10 0
317 50 50 50 0/10 0/10 0/10 0
318 50 50 50 0/10 0/10 0/10 0
319 50 50 50 0/10 0/10 0/10 0
320 50 50 50 0/10 0/10 0/10 0
321 50 50 50 0/10 0/10 0/10 0
322 50 50 50 0/10 0/10 0/10 0
323 50 50 50 0/10 0/10 0/10 0
324 50 50 50 0/10 0/10 0/10 0
325 50 50 50 0/10 0/10 0/10 0
326 50 50 50 0/10 0/10 0/10 0
327 50 50 50 0/10 0/10 0/10 0
328 50 50 50 0/10 0/10 0/10 0
329 50 50 50 0/10 0/10 0/10 0
330 50 50 50 0/10 0/10 0/10 0
331 50 50 50 0/10 0/10 0/10 0
332 50 50 50 0/10 0/10 0/10 0
333 50 50 50 0/10 0/10 0/10 0
334 50 50 50 0/10 0/10 0/10 0
335 50 50 50 0/10 0/10 0/10 0
336 50 50 50 0/10 0/10 0/10 0
337 50 50 50 0/10 0/10 0/10 0
338 50 50 50 0/10 0/10 0/10 0
339 50 50 50 0/10 0/10 0/10 0
340 50 50 50 0/10 0/10 0/10 0
341 50 50 50 0/10 0/10 0/10 0
342 50 50 50 0/10 0/10 0/10 0
343 50 50 50 0/10 0/10 0/10 0
344 50 50 50 0/10 0/10 0/10 0
345 50 50 50 0/10 0/10 0/10 0
346 50 50 50 0/10 0/10 0/10 0
347 50 50 50 0/10 0/10 0/10 0
348 50 50 50 0/10 0/10 0/10 0
349 50 50 50 0/10 0/10 0/10 0
350 50 50 50 0/10 0/10 0/10 0
351 50 50 50 0/10 0/10 0/10 0
352 50 50 50 0/10 0/10 0/10 0
353 50 50 50 0/10 0/10 0/10 0
354 50 50 50 0/10 0/10 0/10 0
355 50 50 50 0/10 0/10 0/10 0
356 50 50 50 0/10 0/10 0/10 0
357 50 50 50 0/10 0/10 0/10 0
358 50 50 50 0/10 0/10 0/10 0
359 50 50 50 0/10 0/10 0/10 0
360 50 50 50 0/10 0/10 0/10 0
361 50 50 50 0/10 0/10 0/10 0
362 50 50 50 0/10 0/10 0/10 0
363 50 50 50 0/10 0/10 0/10 0
364 50 50 50 0/10 0/10 0/10 0
365 50 50 50 0/10 0/10 0/10 0
366 50 50 50 0/10 0/10 0/10 0
367 50 50 50 0/10 0/10 0/10 0
368 50 50 50 0/10 0/10 0/10 0
369 50 50 50 0/10 0/10 0/10 0
370 50 50 50 0/10 0/10 0/10 0
371 50 50 50 0/10 0/10 0/10 0
372 50 50 50 0/10 0/10 0/10 0
373 50 50 50 0/10 0/10 0/10 0
374 50 50 50 0/10 0/10 0/10 0
375 50 50 50 0/10 0/10 0/10 0
376 50 50 50 0/10 0/10 0/10 0
377 50 50 50 0/10 0/10 0/10 0
378 50 50 50 0/10 0/10 0/10 0
379 50 50 50 0/10 0/10 0/10 0
380 50 50 50 0/10 0/10 0/10 0
381 50 50 50 0/10 0/10 0/10 0
382 50 50 50 0/10 0/10 0/10 0
383 50 50 50 0/10 0/10 0/10 0
384 50 50 50 0/10 0/10 0/10 0
385 50 50 50 0/10 0/10 0/10 0
386 50 50 50 0/10 0/10 0/10 0
387 50 50 50 0/10 0/10 0/10 0
388 50 50 50 0/10 0/10 0/10 0
389 50 50 50 0/10 0/10 0/10 0
390 50 50 50 0/10 0/10 0/10 0
391 50 50 50 0/10 0/10 0/10 0
392 50 50 50 0/10 0/10 0/10 0
393 50 50 50 0/10 0/10 0/10 0
394 50 50 50 0/10 0/10 0/10 0
395 50 50 50 0/10 0/10 0/10 0
396 50 50 50 0/10 0/10 0/10 0
397 50 50 50 0/10 0/10 0/10 0
398 50 50 50 0/10 0/10 0/10 0
399 50 50 50 0/10 0/10 0/10 0
400 50 50 50 0/10 0/10 0/10 0
401 50 50 50 0/10 0/10 0/10 0
402 50 50 50 0/10 0/10 0/10 0
403 50 50 50 0/10 0/10 0/10 0
404 50 50 50 0/10 0/10 0/10 0
405 50 50 50 0/10 0/10 0/10 0
406 50 50 50 0/10 0/10 0/10 0
407 50 50 50 0/10 0/10 0/10 0
408 50 50 50 0/10 0/10 0/10 0
409 50 50 50 0/10 0/10 0/10 0
410 50 50 50 0/10 0/10 0/10 0
411 50 50 50 0/10 0/10 0/10 0
412 50 50 50 0/10 0/10 0/10 0
413 50 50 50 0/10 0/10 0/10 0
414 50 50 50 0/10 0/10 0/10 0
415 50 50 50 0/10 0/10 0/10 0
416 50 50 50 0/10 0/10 0/10 0
417 50 50 50 0/10 0/10 0/10 0
418 50 50 50 0/10 0/10 0/10 0
419 50 50 50 0/10 0/10 0/10 0
420 50 50 50 0/10 0/10 0/10 0
421 50 50 50 0/10 0/10 0/10 0
422 50 50 50 0/10 0/10 0/10 0
423 50 50 50 0/10 0/10 0/10 0
424 50 50 50 0/10 0/10 0/10 0
425 50 50 50 0/10 0/10 0/10 0
426 50 50 50 0/10 0/10 0/10 0
427 50 50 50 0/10 0/10 0/10 0
428 50 50 50 0/10 0/10 0/10 0
429 50 50 50 0/10 0/10 0/10 0
430 50 50 50 0/10 0/10 0/10 0
431 50 50 50 0/10 0/10 0/10 0
432 50 50 50 0/10 0/10 0/10 0
433 50 50 50 0/10 0/10 0/10 0
434 50 50 50 0/10 0/10 0/10 0
435 50 50 50 0/10 0/10 0/10 0
436 50 50 50 0/10 0/10 0/10 0
437 50 50 50 0/10 0/10 0/10 0
438 50 50 50 0/10 0/10 0/10 0
439 50 50 50 0/10 0/10 0/10 0
440 50 50 50 0/10 0/10 0/10 0
441 50 50 50 0/10 0/10 0/10 0
442 50 50 50 0/10 0/10 0/10 0
443 50 50 50 0/10 0/10 0/10 0
444 50 50 50 0/10 0/10 0/10 0
445 50 50 50 0/10 0/10 0/10 0
446 50 50 50 0/10 0/10 0/10 0
447 50 50 50 0/10 0/10 0/10 0
448 50 50 50 0/10 0/10 0/10 0
449 50 50 50 0/10 0/10 0/10 0
450 50 50 50 0/10 0/10 0/10 0
451 50 50 50 0/10 0/10 0/10 0
452 50 50 50 0/10 0/10 0/10 0
453 50 50 50 0/10 0/10 0/10 0
454 50 50 50 0/10 0/10 0/10 0
455 50 50 50 0/10 0/10 0/10 0
456 50 50 50 0/10 0/10 0/10 0
457 50 50 50 0/10 0/10 0/10 0
458 50 50 50 0/10 0/10 0/10 0
459 50 50 50 0/10 0/10 0/10 0
460 50 50 50 0/10 0/10 0/10 0
461 50 50 50 0/10 0/10 0/10 0
462 50 50 50 0/10 0/10 0/10 0
463 50 50 50 0/10 0/10 0/10 0
464 50 50 50 0/10 0/10 0/10 0
465 50 50 50 0/10 0/10 0/10 0
466 50 50 50 0/10 0/10 0/10 0
467 50 50 50 0/10 0/10 0/10 0
468 50 50 50 0/10 0/10 0/10 0
469 50 50 50 0/10 0/10 0/10 0
470 50 50 50 0/10 0/10 0/10 0
471 50 50 50 0/10 0/10 0/10 0
472 50 50 50 0/10 0/10 0/10 0
473 50 50 50 0/10 0/10 0/10 0
474 50 50 50 0/10 0/10 0/10 0
475 50 50 50 0/10 0/10 0/10 0
476 50 50 50 0/10 0/10 0/10 0
477 50 50 50 0/10 0/10 0/10 0
478 50 50 50 0/10 0/10 0/10 0
479 50 50 50 0/10 0/10 0/10 0
480 50 50 50 0/10 0/10 0/10 0
481 50 50 50 0/10 0/10 0/10 0
482 50 50 50 0/10 0/10 0/10 0
483 50 50 50 0/10 0/10 0/10 0
484 50 50 50 0/10 0/10 0/10 0
485 50 50 50 0/10 0/10 0/10 0
486 50 50 50 0/10 0/10 0/10 0
487 50 50 50 0/10 0/10 0/10 0
488 50 50 50 0/10 0/10 0/10 0
489 50 50 50 0/10 0/10 0/10 0
490 50 50 50 0/10 0/10 0/10 0
491 50 50 50 0/10 0/10 0/10 0
492 50 50 50 0/10 0/10 0/10 0
493 50 50 50 0/10 0/10 0/10 0
494 50 50 50 0/10 0/10 0/10 0
495 50 50 50 0/10 0/10 0/10 0
496 50 50 50 0/10 0/10 0/10 0
497 50 50 50 0/10 0/10 0/10 0
498 50 50 50 0/10 0/10 0/10 0
499 50 50 50 0/10 0/10 0/10 0
500 50 50 50 0/10 0/10 0/10 0
501 50 50 50 0/10 0/10 0/10 0
502 50 50 50 0/10 0/10 0/10 0
503 50 50 50 0/10 0/10 0/10 0
504 50 50 50 0/10 0/10 0/10 0
505 50 50 50 0/10 0/10 0/10 0
506 50 50 50 0/10 0/10 0/10 0
507 50 50 50 0/10 0/10 0/10 0
508 50 50 50 0/10 0/10 0/10 0
509 50 50 50 0/10 0/10 0/10 0
510 50 50 50 0/10 0/10 0/10 0
511 50 50 50 0/10 0/10 0/10 0
512 50 50 50 0/10 0/10 0/10 0
513 50 50 50 0/10 0/10 0/10 0
514 50 50 50 0/10 0/10 0/10 0
515 50 50 50 0/10 0/10 0/10 0
516 50 50 50 0/10 0/10 0/10 0
517 50 50 50 0/10 0/10 0/10 0
518 50 50 50 0/10 0/10 0/10 0
519 50 50 50 0/10 0/10 0/10 0
520 50 50 50 0/10 0/10 0/10 0
521 50 50 50 0/10 0/10 0/10 0
522 50 50 50 0/10 0/10 0/10 0
523 50 50 50 0/10 0/10 0/10 0
524 50 50 50 0/10 0/10 0/10 0
525 50 50 50 0/10 0/10 0/10 0
526 50 50 50 0/10 0/10 0/10 0
527 50 50 50 0/10 0/10 0/10 0
528 50 50 50 0/10 0/10 0/10 0
529 50 50 50 0/10 0/10 0/10 0
530 50 50 50 0/10 0/10 0/10 0
531 50 50 50 0/10 0/10 0/10 0
532 50 50 50 0/10 0/10 0/10 0
533 50 50 50 0/10 0/10 0/10 0
534 50 50 50 0/10 0/10 0/10 0
535 50 50 50 0/10 0/10 0/10 0
536 50 50 50 0/10 0/10 0/10 0
537 50 50 50 0/10 0/10 0/10 0
538 50 50 50 0/10 0/10 0/10 0
539 50 50 50 0/10 0/10 0/10 0
540 50 50 50 0/10 0/10 0/10 0
541 50 50 50 0/10 0/10 0/10 0
542 50 50 50 0/10 0/10 0/10 0
543 50 50 50 0/10 0/10 0/10 0
544 50 50 50 0/10 0/10 0/10 0
545 50 50 50 0/10 0/10 0/10 0
546 50 50 50 0/10 0/10 0/10 0
547 50 50 50 0/10 0/10 0/10 0
548 50 50 50 0/10 0/10 0/10 0
549 50 50 50 0/10 0/10 0/10 0
550 50 50 50 0/10 0/10 0/10 0
551 50 50 50 0/10 0/10 0/10 0
552 50 50 50 0/10 0/10 0/10 0
553 50 50 50 0/10 0/10 0/10 0
554 50 50 50 0/10 0/10 0/10 0
555 50 50 50 0/10 0/10 0/10 0
556 50 50 50 0/10 0/10 0/10 0
557 50 50 50 0/10 0/10 0/10 0
558 50 50 50 0/10 0/10 0/10 0
559 50 50 50 0/10 0/10 0/10 0
560 50 50 50 0/10 0/10 0/10 0
561 50 50 50 0/10 0/10 0/10 0
562 50 50 50 0/10 0/10 0/10 0
563 50 50 50 0/10 0/10 0/10 0
564 50 50 50 0/10 0/10 0/10 0
565 50 50 50 0/10 0/10 0/10 0
566 50 50 50 0/10 0/10 0/10 0
567 50 50 50 0/10 0/10 0/10 0
568 50 50 50 0/10 0/10 0/10 0
569 50 50 50 0/10 0/10 0/10 0
570 50 50 50 0/10 0/10 0/10 0
571 50 50 50 0/10 0/10 0/10 0
572 50 50 50 0/10 0/10 0/10 0
573 50 50 50 0/10 0/10 0/10 0
574 50 50 50 0/10 0/10 0/10 0
575 50 50 50 0/10 0/10 0/10 0
576 50 50 50 0/10 0/10 0/10 0
577 50 50 50 0/10 0/10 0/10 0
578 50 50 50 0/10 0/10 0/10 0
579 50 50 50 0/10 0/10 0/10 0
580 50 50 50 0/10 0/10 0/10 0
581 50 50 50 0/10 0/10 0/10 0
582 50 50 50 0/10 0/10 0/10 0
583 50 50 50 0/10 0/10 0/10 0
584 50 50 50 0/10 0/10 0/10 0
585 50 50 50 0/10 0/10 0/10 0
586 50 50 50 0/10 0/10 0/10 0
587 50 50 50 0/10 0/10 0/10 0
588 50 50 50 0/10 0/10 0/10 0
589 50 50 50 0/10 0/10 0/10 0
590 50 50 50 0/10 0/10 0/10 0
591 50 50 50 0/10 0/10 0/10 0
592 50 50 50 0/10 0/10 0/10 0
593 50 50 50 0/10 0/10 0/10 0
594 50 50 50 0/10 0/10 0/10 0
595 50 50 50 0/10 0/10 0/10 0
596 50 50 50 0/10 0/10 0/10 0
597 50 50 50 0/10 0/10 0/10 0
598 50 50 50 0/10 0/10 0/10 0
599 50 50 50 0/10 0/10 0/10 0
600 50 50 50 0/10 0/10 0/10 0
601 50 50 50 0/10 0/10 0/10 0
602 50 50 50 0/10 0/10 0/10 0
603 50 50 50 0/10 0/10 0/10 0
604 50 50 50 0/10 0/10 0/10 0
605 50 50 50 0/10 0/10 0/10 0
606 50 50 50 0/10 0/10 0/10 0
607 50 50 50 0/10 0/10 0/10 0
608 50 50 50 0/10 0/10 0/10 0
609 50 50 50 0/10 0/10 0/10 0
610 50 50 50 0/10 0/10 0/10 0
611 50 50 50 0/10 0/10 0/10 0
612 50 50 50 0/10 0/10 0/10 0
613 50 50 50 0/10 0/10 0/10 0
614 50 50 50 0/10 0/10 0/10 0
615 50 50 50 0/10 0/10 0/10 0
616 50 50 50 0/10 0/10 0/10 0
617 50 50 50 0/10 0/10 0/10 0
618 50 50 50 0/10 0/10 0/10 0
619 50 50 50 0/10 0/10 0/10 0
620 50 50 50 0/10 0/10 0/10 0
621 50 50 50 0/10 0/10 0/10 0
622 50 50 50 0/10 0/10 0/10 0
623 50 50 50 0/10 0/10 0/10 0
624 50 50 50 0/10 0/10 0/10 0
625 50 50 50 0/10 0/10 0/10 0
626 50 50 50 0/10 0/10 0/10 0
627 50 50 50 0/10 0/10 0/10 0
628 50 50 50 0/10 0/10 0/10 0
629 50 50 50 0/10 0/10 0/10 0
630 50 50 50 0/10 0/10 0/10 0
631 50 50 50 0/10 0/10 0/10 0
632 50 50 50 0/10 0/10 0/10 0
633 50 50 50 0/10 0/10 0/10 0
634 50 50 50 0/10 0/10 0/10 0
635 50 50 50 0/10 0/10 0/10 0
636 50 50 50 0/10 0/10 0/10 0
637 50 50 50 0/10 0/10 0/10 0
638 50 50 50 0/10 0/10 0/10 0
639 50 50 50 0/10 0/10 0/10 0
640 50 50 50 0/10 0/10 0/10 0
641 50 50 50 0/10 0/10 0/10 0
642 50 50 50 0/10 0/10 0/10 0
643 50 50 50 0/10 0/10 0/10 0
644 50 50 50 0/10 0/10 0/10 0
645 50 50 50 0/10 0/10 0/10 0
646 50 50 50 0/10 0/10 0/10 0
647 50 50 50 0/10 0/10 0/10 0
648 50 50 50 0/10 0/10 0/10 0
649 50 50 50 0/10 0/10 0/10 0
650 50 50 50 0/10 0/10 0/10 0
651 50 50 50 0/10 0/10 0/10 0
652 50 50 50 0/10 0/10 0/10 0
653 50 50 50 0/10 0/10 0/10 0
654 50 50 50 0/10 0/10 0/10 0
655 50 50 50 0/10 0/10 0/10 0
656 50 50 50 0/10 0/10 0/10 0
657 50 50 50 0/10 0/10 0/10 0
658 50 50 50 0/10 0/10 0/10 0
659 50 50 50 0/10 0/10 0/10 0
660 50 50 50 0/10 0/10 0/10 0
661 50 50 50 0/10 0/10 0/10 0
662 50 50 50 0/10 0/10 0/10 0
663 50 50 50 0/10 0/10 0/10 0
664 50 50 50 0/10 0/10 0/10 0
665 50 50 50 0/10 0/10 0/10 0
666 50 50 50 0/10 0/10 0/10 0
667 50 50 50 0/10 0/10 0/10 0
668 50 50 50 0/10 0/10 0/10 0
669 50 50 50 0/10 0/10 0/10 0
670 50 50 50 0/10 0/10 0/10 0
671 50 50 50 0/10 0/10 0/10 0
672 50 50 50 0/10 0/10 0/10 0
673 50 50 50 0/10 0/10 0/10 0
674 50 50 50 0/10 0/10 0/10 0
675 50 50 50 0/10 0/10 0/10 0
676 50 50 50 0/10 0/10 0/10 0
677 50 50 50 0/10 0/10 0/10 0
678 50 50 50 0/10 0/10 0/10 0
679 50 50 50 0/10 0/10 0/10 0
680 50 50 50 0/10 0/10 0/10 0
681 50 50 50 0/10 0/10 0/10 0
682 50 50 50 0/10 0/10 0/10 0
683 50 50 50 0/10 0/10 0/10 0
684 50 50 50 0/10 0/10 0/10 0
685 50 50 50 0/10 0/10 0/10 0
686 50 50 50 0/10 0/10 0/10 0
687 50 50 50 0/10 0/10 0/10 0
688 50 50 50 0/10 0/10 0/10 0
689 50 50 50 0/10 0/10 0/10 0
690 50 50 50 0/10 0/10 0/10 0
691 50 50 50 0/10 0/10 0/10 0
692 50 50 50 0/10 0/10 0/10 0

View File

@ -0,0 +1,63 @@
Plastic left,Glass left,Metal left,GC plastic,GC glass,GC metal,Total collected
33,27,36,0/10,0/10,0/10,0
35,32,37,0/10,0/10,0/10,0
40,35,41,0/10,0/10,0/10,0
41,38,41,0/10,0/10,0/10,0
41,39,44,0/10,0/10,0/10,0
41,39,45,0/10,0/10,0/10,0
41,40,48,0/10,0/10,0/10,0
42,41,48,0/10,0/10,0/10,0
45,42,49,0/10,0/10,0/10,0
47,42,50,0/10,0/10,0/10,0
49,47,50,0/10,0/10,0/10,0
50,50,51,0/10,0/10,0/10,0
51,53,54,0/10,0/10,0/10,0
53,54,56,0/10,0/10,0/10,0
55,54,56,0/10,0/10,0/10,0
57,55,58,0/10,0/10,0/10,0
58,56,60,0/10,0/10,0/10,0
60,58,60,0/10,0/10,0/10,0
60,58,60,0/10,0/10,0/10,0
60,59,60,0/10,0/10,0/10,0
60,60,60,0/10,0/10,0/10,0
60,60,60,0/10,0/10,0/10,0
60,60,60,0/10,0/10,0/10,0
60,60,60,0/10,0/10,0/10,0
60,60,60,0/10,0/10,0/10,0
60,60,60,0/10,0/10,0/10,0
60,60,60,0/10,0/10,0/10,0
60,60,60,0/10,0/10,0/10,0
60,60,60,0/10,0/10,0/10,0
60,60,60,0/10,0/10,0/10,0
60,60,60,0/10,0/10,0/10,0
60,60,60,0/10,0/10,0/10,0
60,60,60,0/10,0/10,0/10,0
60,60,60,0/10,0/10,0/10,0
60,60,60,0/10,0/10,0/10,0
60,60,60,0/10,0/10,0/10,0
60,60,60,0/10,0/10,0/10,0
60,60,60,0/10,0/10,0/10,0
60,60,60,0/10,0/10,0/10,0
60,60,60,0/10,0/10,0/10,0
60,60,60,0/10,0/10,0/10,0
60,60,60,0/10,0/10,0/10,0
60,60,60,0/10,0/10,0/10,0
60,60,60,0/10,0/10,0/10,0
60,60,60,0/10,0/10,0/10,0
60,60,60,0/10,0/10,0/10,0
60,60,60,0/10,0/10,0/10,0
60,60,60,0/10,0/10,0/10,0
60,60,60,0/10,0/10,0/10,0
60,60,60,0/10,0/10,0/10,0
60,60,60,0/10,0/10,0/10,0
60,60,60,0/10,0/10,0/10,0
60,60,60,0/10,0/10,0/10,0
60,60,60,0/10,0/10,0/10,0
60,60,60,0/10,0/10,0/10,0
60,60,60,0/10,0/10,0/10,0
60,60,60,0/10,0/10,0/10,0
60,60,60,0/10,0/10,0/10,0
60,60,60,0/10,0/10,0/10,0
60,60,60,0/10,0/10,0/10,0
60,60,60,0/10,0/10,0/10,0
60,60,60,0/10,0/10,0/10,0
1 Plastic left Glass left Metal left GC plastic GC glass GC metal Total collected
2 33 27 36 0/10 0/10 0/10 0
3 35 32 37 0/10 0/10 0/10 0
4 40 35 41 0/10 0/10 0/10 0
5 41 38 41 0/10 0/10 0/10 0
6 41 39 44 0/10 0/10 0/10 0
7 41 39 45 0/10 0/10 0/10 0
8 41 40 48 0/10 0/10 0/10 0
9 42 41 48 0/10 0/10 0/10 0
10 45 42 49 0/10 0/10 0/10 0
11 47 42 50 0/10 0/10 0/10 0
12 49 47 50 0/10 0/10 0/10 0
13 50 50 51 0/10 0/10 0/10 0
14 51 53 54 0/10 0/10 0/10 0
15 53 54 56 0/10 0/10 0/10 0
16 55 54 56 0/10 0/10 0/10 0
17 57 55 58 0/10 0/10 0/10 0
18 58 56 60 0/10 0/10 0/10 0
19 60 58 60 0/10 0/10 0/10 0
20 60 58 60 0/10 0/10 0/10 0
21 60 59 60 0/10 0/10 0/10 0
22 60 60 60 0/10 0/10 0/10 0
23 60 60 60 0/10 0/10 0/10 0
24 60 60 60 0/10 0/10 0/10 0
25 60 60 60 0/10 0/10 0/10 0
26 60 60 60 0/10 0/10 0/10 0
27 60 60 60 0/10 0/10 0/10 0
28 60 60 60 0/10 0/10 0/10 0
29 60 60 60 0/10 0/10 0/10 0
30 60 60 60 0/10 0/10 0/10 0
31 60 60 60 0/10 0/10 0/10 0
32 60 60 60 0/10 0/10 0/10 0
33 60 60 60 0/10 0/10 0/10 0
34 60 60 60 0/10 0/10 0/10 0
35 60 60 60 0/10 0/10 0/10 0
36 60 60 60 0/10 0/10 0/10 0
37 60 60 60 0/10 0/10 0/10 0
38 60 60 60 0/10 0/10 0/10 0
39 60 60 60 0/10 0/10 0/10 0
40 60 60 60 0/10 0/10 0/10 0
41 60 60 60 0/10 0/10 0/10 0
42 60 60 60 0/10 0/10 0/10 0
43 60 60 60 0/10 0/10 0/10 0
44 60 60 60 0/10 0/10 0/10 0
45 60 60 60 0/10 0/10 0/10 0
46 60 60 60 0/10 0/10 0/10 0
47 60 60 60 0/10 0/10 0/10 0
48 60 60 60 0/10 0/10 0/10 0
49 60 60 60 0/10 0/10 0/10 0
50 60 60 60 0/10 0/10 0/10 0
51 60 60 60 0/10 0/10 0/10 0
52 60 60 60 0/10 0/10 0/10 0
53 60 60 60 0/10 0/10 0/10 0
54 60 60 60 0/10 0/10 0/10 0
55 60 60 60 0/10 0/10 0/10 0
56 60 60 60 0/10 0/10 0/10 0
57 60 60 60 0/10 0/10 0/10 0
58 60 60 60 0/10 0/10 0/10 0
59 60 60 60 0/10 0/10 0/10 0
60 60 60 60 0/10 0/10 0/10 0
61 60 60 60 0/10 0/10 0/10 0
62 60 60 60 0/10 0/10 0/10 0
63 60 60 60 0/10 0/10 0/10 0

View File

@ -16,7 +16,7 @@ from DataModels.GC import GC
pygame.init()
pygame_sprites = pygame.sprite.Group()
house_count=0
FPS_CLOCK = pygame.time.Clock()
GAME_WINDOW = pygame.display.set_mode((WINDOW_WIDTH, WINDOW_HEIGHT), 0, 32)
@ -54,6 +54,7 @@ for y in map.readlines():
elif x is 'H':
map_objects[x_coord][y_coord] = generate(x)(
x_coord, y_coord, HOUSE_CAPACITY, yellow, green, blue)
house_count+=1
elif x is 'B':
map_objects[x_coord][y_coord] = generate(
x)(x_coord, y_coord, 100, "Dump_Blue")
@ -72,7 +73,7 @@ for line in map_objects:
for item in line:
pygame_sprites.add(item)
gc = GC(GC_X, GC_Y, 2)
gc = GC(GC_X, GC_Y, 200)
print("GC: " + str(GC_X) + str(GC_Y))
pygame_sprites.add(gc)
@ -93,7 +94,10 @@ while True:
gc.move("right", map_objects)
elif event.key == pygame.K_SPACE:
gc.collect(map_objects)
elif event.key == pygame.K_0:
gc.find_houses(map_objects,house_count)
gc.make_actions_from_list(map_objects)
pygame_sprites.update()
pygame_sprites.draw(GAME_WINDOW)

22
prolog/basic_rules.pl Normal file
View File

@ -0,0 +1,22 @@
:- [house_positions].
check_position(X, Y):-
collectable_object(Z,X,Y),
write(Z),nl.
full(Collectable_object, Material) :-
contains(Collectable_object, Material,10).
contains(Collectable_object, Material):-
contains(Collectable_object,Material,Y),
Y>0.
contains(Collectable_object) :-
contains(Collectable_object, paper);
contains(Collectable_object, glass);
contains(Collectable_object, metal).
full(Collectable_object) :-
full(Collectable_object, paper),
full(Collectable_object, metal),
full(Collectable_object, glass).

View File

@ -0,0 +1,9 @@
collectable_object(landfill, 0, 0).
collectable_object(landfill, 1, 0).
collectable_object(landfill, 2, 0).
collectable_object(house, 8, 6).
collectable_object(house, 6, 8).
collectable_object(house, 2, 6).
collectable_object(house, 8, 8).
collectable_object(house, 9, 2).
collectable_object(house, 5, 3).

View File

@ -1,3 +1,5 @@
from config import GRID_WIDTH, GRID_HEIGHT
from DataModels.Road import Road
def movement(environment, x ,y):
movement = {
"right": (x + 1, y) if x + 1 < GRID_WIDTH and type(environment[x + 1][y]) == Road else (x, y),
@ -13,4 +15,9 @@ def movement(environment, x ,y):
"down": "up"
}
return (movement, forbidden_movement)
return (movement, forbidden_movement)
def check_moves(environment, x,y,direction=None):
if direction == None:
return ([dir for dir in movement(environment, x, y)[0] if movement(environment, x,y)[0][dir] != (x,y)])
return ([dir for dir in movement(environment, x, y)[0] if movement(environment, x,y)[0][dir] != (x,y) and dir != movement(environment,x,y)[1][direction]])