7
10/27/2016 1_annual_total_amount http://127.0.0.1:9000/notebooks/ICA/1_annual_total_amount.snb 1/7 1_annual_total_amount Athenian tribute lists: what records are preserved? Caculating total preserved payment amounts by year This notebook gives a step-by-step description of how to work with records of the Athenian Tribute Quota Lists to cacluate the total amount of payment recorded for each year. Cell blocks in this notebook are organized so that most end with a simple object you can visualize or explore with built-in Spark notebook widgets. 1. Download data First, download the course's data set in .csv format, and turn it into a list. It should include a header line with seven comma-delimited columns, and 783 data records. The following cell creates a list of Strings.

1 annual total amount - College of the Holy Crossshot.holycross.edu/courses/ICA/F16/notebooks/tribute/1_annual_tot… · Athenian tribute lists: what records are preserved? Caculating

  • Upload
    others

  • View
    0

  • Download
    0

Embed Size (px)

Citation preview

Page 1: 1 annual total amount - College of the Holy Crossshot.holycross.edu/courses/ICA/F16/notebooks/tribute/1_annual_tot… · Athenian tribute lists: what records are preserved? Caculating

10/27/2016 1_annual_total_amount

http://127.0.0.1:9000/notebooks/ICA/1_annual_total_amount.snb 1/7

1_annual_total_amount

Athenian tribute lists: what records are preserved?Caculating total preserved payment amounts by yearThis notebook gives a step-by-step description of how to work with records of the Athenian Tribute Quota Lists tocacluate the total amount of payment recorded for each year.

Cell blocks in this notebook are organized so that most end with a simple object you can visualize or explore withbuilt-in Spark notebook widgets.

1. Download dataFirst, download the course's data set in .csv format, and turn it into a list. It should include a header line withseven comma-delimited columns, and 783 data records.

The following cell creates a list of Strings.

Page 2: 1 annual total amount - College of the Holy Crossshot.holycross.edu/courses/ICA/F16/notebooks/tribute/1_annual_tot… · Athenian tribute lists: what records are preserved? Caculating

10/27/2016 1_annual_total_amount

http://127.0.0.1:9000/notebooks/ICA/1_annual_total_amount.snb 2/7

Pages: Previous 1 Next

Took: 5 seconds 553 milliseconds, at 2016-10-27 7:27

784 entries total

string value

Payment,TextPassage,TextContent,Sequence,Year,Place,Obols

urn:cite:phoros:payrec.1,urn:cts:phoros:stele1.year1:front.1.14,ΣΤΑΓΙΡΙΤΑΙ,1,1,urn:cite:phoros:places.1,100

urn:cite:phoros:payrec.2,urn:cts:phoros:stele1.year1:front.1.15, ΦΑΡΒΕΛΙ

ΟΙ,2,1,urn:cite:phoros:places.2,100

urn:cite:phoros:payrec.3,urn:cts:phoros:stele1.year1:front.1.16,ΕΛΑΥΤΑΙ,3,1,urn:cite:phoros:places.3,100

urn:cite:phoros:payrec.4,urn:cts:phoros:stele1.year1:front.1.22,ΕΦΕΣΙΟΙΙ,4,1,urn:cite:phoros:places.4,4500

urn:cite:phoros:payrec.5,urn:cts:phoros:stele1.year1:front.1.23,ΑΙΝΙΟΙ,5,1,urn:cite:phoros:places.5,7200

urn:cite:phoros:payrec.6,urn:cts:phoros:stele1.year1:front.1.25,ΝΑΧΣΙΑΤΑΙ,6,1,urn:cite:phoros:places.6,100

urn:cite:phoros:payrec.7,urn:cts:phoros:stele1.year1:front.1.26,

ΜΑΔΝΑΣΕΣ,7,1,urn:cite:phoros:places.7,1200

urn:cite:phoros:payrec.8,urn:cts:phoros:stele1.year1:front.2.7,ΘΕΡΜΑΙΟΙ,8,1,urn:cite:phoros:places.8,

urn:cite:phoros:payrec.9,urn:cts:phoros:stele1.year1:front.2.8,ΕΝ ΙΚΑΡΟΙ ,9,1,urn:cite:phoros:places.8,

Showing 7 of 7 records

Ò ƨ

Search:Show:

10

2. Clean out incomplete or badly formed records

import scala.io.Source

val phorosUrl = "http://shot.holycross.edu/courses/ICA/F16/phorosdata.csv"val phorosLines = scala.io.Source.fromURL(phorosUrl).getLines.toList

// verifty that contents are as expected:val headerLine = "Payment,TextPassage,TextContent,Sequence,Year,Place,Obols"require(phorosLines.head == headerLine)require(phorosLines.tail.size == 783)

// a list of strings:phorosLines

Page 3: 1 annual total amount - College of the Holy Crossshot.holycross.edu/courses/ICA/F16/notebooks/tribute/1_annual_tot… · Athenian tribute lists: what records are preserved? Caculating

10/27/2016 1_annual_total_amount

http://127.0.0.1:9000/notebooks/ICA/1_annual_total_amount.snb 3/7

2. Clean out incomplete or badly formed recordsThe fragmentary records may be incomplete. First, we will transform each comma-separated line into an array.Then we will filter out any arrays that do not contain exactly 7 elements. This should leave us with 707 data

records, still formatted simply as a list of Strings.

Took: 2 seconds 755 milliseconds, at 2016-10-27 7:27

3. Structure data in a user-defined typeIn this step, we'll move from working with text data to working with a structured type of our own definition.

We can do that in two steps.

1. First, we define a Payment type. Each Payment object hill have a label, a sequence number with its year,

its year number, an identifier for the city, and the number of Obols (Athenian currency) paid.

2. Then we transform each array of Strings we previously created into a corresponding single Paymentinstance.

We'll ignore the record ID and text passage citation given in the first two columns of the .csv data, and work only

with columns 3-7 of the data set.

The result is a list of structured Payment records.

val records = phorosLines.tail.map( line => line.split(",") )val fullRecords = records.filter(_.size == 7)

require(fullRecords.size == 707)

Page 4: 1 annual total amount - College of the Holy Crossshot.holycross.edu/courses/ICA/F16/notebooks/tribute/1_annual_tot… · Athenian tribute lists: what records are preserved? Caculating

10/27/2016 1_annual_total_amount

http://127.0.0.1:9000/notebooks/ICA/1_annual_total_amount.snb 4/7

Pages: Previous 1 2 3 … 71 Next

Took: 2 seconds 631 milliseconds, at 2016-10-27 7:27

707 entries total

label sequence year place obols

ΣΤΑΓΙΡΙΤΑΙ 1 1 urn:cite:phoros:places.1 100

ΦΑΡΒΕΛΙ ΟΙ 2 1 urn:cite:phoros:places.2 100

ΕΛΑΥΤΑΙ 3 1 urn:cite:phoros:places.3 100

ΕΦΕΣΙΟΙΙ 4 1 urn:cite:phoros:places.4 4500

ΑΙΝΙΟΙ 5 1 urn:cite:phoros:places.5 7200

ΝΑΧΣΙΑΤΑΙ 6 1 urn:cite:phoros:places.6 100

ΜΑΔΝΑΣΕΣ 7 1 urn:cite:phoros:places.7 1200

ΠΙΤΑΝΑΙΟΙ 12 1 urn:cite:phoros:places.11 100

ΘΥΣΣΙΟΙ 13 1 urn:cite:phoros:places.12 400

ΤΟΡΟΝΑΙΟΙ 14 1 urn:cite:phoros:places.13 7200

Showing 707 of 707 records

Ò ƨ

Search:Show:

10

4. Group payments by yearWith the groupBy function, we can cluster records together. Here, we cluster them by the year of each record, so

we want up with an association of a year number with a list of every Payment record for that year.

// Header from csv == "Payment,TextPassage,TextContent,Sequence,Year,Place,Obols"case class Payment(label: String,sequence: Int,year: Int,place: String ,obols: Float)val payments = fullRecords.map ( arr => Payment(arr(2), arr(3).toInt, arr(4).toInt, arr

// a list of Payment instancespayments

Page 5: 1 annual total amount - College of the Holy Crossshot.holycross.edu/courses/ICA/F16/notebooks/tribute/1_annual_tot… · Athenian tribute lists: what records are preserved? Caculating

10/27/2016 1_annual_total_amount

http://127.0.0.1:9000/notebooks/ICA/1_annual_total_amount.snb 5/7

7 entries total

_1 _2

5 Payment(ΧΕΡΡΟΝΕΣΙΟ Ι,358,5,urn:cite:phoros:places.164,1800.0),Payment(ΠΥΡΝΙΟΙ,359,5,urn:cite:phoros:places.126,100.0),Payment(ΚΝΙΔΙΟΙ,360,5,urn:cite:phoros:places.125,3000.0),Payment(ΚΑΡΒΑΣΥΑΝΔΕΣ,361,5,urn:cite:phoros:places.46,100.0),Payment(ΚΡΥΕΣ,362,5,urn:cite:phoros:places.21,200.0),Payment(ΚΟΙΟΙ,363,5,urn:cite:phoros:places.160,2136.0),Payment(ΠΑΣΑΝΔΕΣ,364,5,urn:cite:phoros:places.155,300.0),Payment(ΑΥΛΙΕΤΑΙ,365,5,urn:cite:phoros:places.76,50.0),Payment(ΧΑΛΚΕΑΤΑΙ,366,5,urn:cite:phoros:places.175,300.0),Payment(ΙΕΛΥΣΙΟΙ,367,5,urn:cite:phoros:places.128,6000.0),Payment(ΜΥΛΑΣΕΣ,368,5,urn:cite:phoros:places.176,600.0),Payment(ΚΑΜΙΡΕΣ,369,5,urn:cite:phoros:places.20,5400.0),Payment(ΣΥΑΓΓΕΛΕΣ,370,5,urn:cite:phoros:places.63,600.0),Payment(ΟΙΝΑΙΟΙ,372,5,urn:cite:phoros:places.34,600.0),Payment(ΚΛΑΖΖΟΜΕΝΙΟ Ι,374,5,urn:cite:phoros:places.44,900.0),Payment(ΗΑΙΡΑΙΟΙ,375,5,urn:cite:phoros:places.27,1800.0),Payment(ΛΕΒΕΔΙΟΙ,376,5,urn:cite:phoros:places.174,1800.0),Payment(ΚΑΛΥΔΝΙΟΙ,377,5,urn:cite:phoros:places.109,900.0),Payment(ΠΑΡΠΑΡΙΟΤΑΙ,378,5,urn:cite:phoros:places.151,100.0),Payment(ΚΥΡΒΙΣΣΕΣ,379,5,urn:cite:phoros:places.44,200.0),Payment(ΤΕΙΟΙ,380,5,urn:cite:phoros:places.152,3600.0),Payment(ΜΥΝΔΙΟΙ,381,5,urn:cite:phoros:places.96,50.0),Payment(ΚΑΡΠΑΘΟ,387,5,urn:cite:phoros:places.179,100.0),Payment(ΜΥΡΙΝΑΙΟΙ,389,5,urn:cite:phoros:places.120,600.0),Payment(ΗΕΣΣΙΟΙ,390,5,urn:cite:phoros:places.35,600.0),Payment(ΔΙΟΣΙΡΙΤΑΙ,391,5,urn:cite:phoros:places.25,100.0),Payment(ΝΟΤΙΕΣ,392,5,urn:cite:phoros:places.24,200.0),Payment(ΚΑΣΟΛΑΒΕΣ,393,5,urn:cite:phoros:places.50,250.0),Payment(ΚΕΒΡΕΝΙΟΙ,394,5,urn:cite:phoros:places.49,870.0),Payment(ΝΕΑΝΔΡΕΙΑ,395,5,urn:cite:phoros:places.36,200.0),Payment(ΦΑΣΕΛΙΤΑΙ,396,5,urn:cite:phoros:places.47,1800.0),Payment(ΘΕΡΜΑΙΟΙ,397,5,urn:cite:phoros:places.8,300.0),Payment(ΧΑΛΚΕΤΟΡΕΣ,399,5,urn:cite:phoros:places.167,210.0),Payment(ΚΥΔΑΙΕΣ,401,5,urn:cite:phoros:places.168,40.0),Payment(ΗΑΛΙΚΑΡΝΑΣΣΙΟΙ,402,5,urn:cite:phoros:places.38,1200.0),Payment(ΑΙΝΕΑΤΑΙ,403,5,urn:cite:phoros:places.182,1800.0),Payment(ΠΑΛΕΦΣΙΟΙ,404,5,urn:cite:phoros:places.40,900.0),Payment(ΔΙΚΑΙΟΠΟΛΙΤΑΙ,405,5,urn:cite:phoros:places.43,600.0),Payment(ΣΑΝΑΙΟΙ,407,5,urn:cite:phoros:places.14,600.0),Payment(ΝΕΑΠΟΛΙΣ,408,5,urn:cite:phoros:places.183,100.0),Payment(ΜΕΚΥΠΕΡΝΑΙΟΙ,410,5,urn:cite:phoros:places.57,600.0),Payment(ΣΚΑΒΛΑΙΟΙ,411,5,urn:cite:phoros:places.54,300.0),Payment(ΑΣΣΕΡΙΤΑΙ,412,5,urn:cite:phoros:places.55,2400.0),Payment(ΦΕΓΕΤΙΟΙ,413,5,urn:cite:phoros:places.156,160.0),Payment(ΔΙΚΑΙΑ,414,5,urn:cite:phoros:places.51,300.0),Payment(ΗΑΒΔΕΡΙΤΑΙ,416,5,urn:cite:phoros:places.52,9000.0),Payment(ΜΑΡΟΝΕΣ,417,5,urn:cite:phoros:places.32,900.0),Payment(ΘΥΣΣΙΟΙ,418,5,urn:cite:phoros:places.12,900.0),Payment(ΑΙΝΙΟΙ,419,5,urn:cite:phoros:places.5,7200.0),Payment(ΣΑΜΟΘΡΑΙΚΕΣ,420,5,urn:cite:phoros:places.93,3600.0),Payment(ΒΕΡΥΣΙΟΙ,421,5,urn:cite:phoros:places.75,100.0),Payment(ΟΛΥΝΘΙΟΙ,423,5,urn:cite:phoros:places.53,1200.0),Payment(ΣΤΡΕΦΣΑΙΟΙ,424,5,urn:cite:phoros:places.39,600.0),Payment(ΗΑΙΣΟΝΙΟΙ,425,5,urn:cite:phoros:places.162,150.0),Payment(ΔΑΡΔΑΝΕΣ,426,5,urn:cite:phoros:places.158,276.0),Payment(ΑΚΑΝΘΙΟΙ,427,5,urn:cite:phoros:places.184,3000.0),Payment(ΤΕΡΜΕΡΕΣ,428,5,urn:cite:phoros:places.48,1500.0),Payment(ΠΑΡΓΑΣΕΣ,429,5,urn:cite:phoros:places.185,100.0),Payment(ΠΕΡΙΝΘΙΟΙ,430,5,urn:cite:phoros:places.137,2293.0),Payment(ΓΕΝΤΙΝΙΟ Ι,431,5,urn:cite:phoros:places.186,50.0),Payment(ΤΕΝΕΔΙΟΙ,432,5,urn:cite:phoros:places.107,1728.0),Payment(ΣΚΙΑΘΙΟΙ,433,5,urn:cite:phoros:places.187,100.0),Payment(ΣΚΑΦΣΑΙΟΙ,434,5,urn:cite:phoros:places.131,100.0),Payment(ΠΡΟΚΟΝΝΕΣΙΟΙ,436,5,urn:cite:phoros:places.129,1800.0),Payment(ΑΡΤΑΚΕΝΟΙ,437,5,urn:cite:phoros:places.73,100.0),Payment(ΣΕΛΥΜΒΡΙΑΝΟΙ,438,5,urn:cite:phoros:places.159,600.0),Payment(ΦΑΡΒΕΛΙΟΙ,439,5,urn:cite:phoros:places.2,100.0),Payment(ΛΑΝΦΣΑΚΕΝΟΙ,440,5,urn:cite:phoros:places.95,7200.0),Payment(ΣΙΓΓΙΟΙ,441,5,urn:cite:phoros:places.60,1100.0),Payment(ΔΑΣΚΥΛΕΙΟΝ,442,5,urn:cite:phoros:places.79,50.0),Payment(ΣΕΡΜΑΙΟΙ,444,5,urn:cite:phoros:places.188,50.0),Payment(ΣΤΑΓΙΡΙΤΑΙ,445,5,urn:cite:phoros:places.1,100.0),Payment(ΑΣΤΑΚΕΝΟΙ,446,5,urn:cite:phoros:places.29,100.0),Payment(ΣΤΟΛΙΟΙ,447,5,urn:cite:phoros:places.58,400.0),Payment(ΕΡΟΔΙΟΙ,448,5,urn:cite:phoros:places.189,50.0),Payment(ΤΕΝΙΟΙ,449,5,urn:cite:phoros:places.190,1800.0),Payment(ΣΙΦΝΙΟΙ,450,5,urn:cite:phoros:places.191,1800.0),Payment(ΚΕΙΟΙ,451,5,urn:cite:phoros:places.166,2400.0),Payment(ΑΝΔΡΙΟΙ,452,5,urn:cite:phoros:places.145,3600.0),Payment(ΙΕΤΑΙ,453,5,urn:cite:phoros:places.77,84.0),Payment(ΠΑΡΙΟΙ,454,5,urn:cite:phoros:places.192,9720.0),Payment(ΣΙΓΕΙΕΣ,455,5,urn:cite:phoros:places.193,100.0),Payment(ΚΑΡΥΣΤΙΟΙ,456,5,urn:cite:phoros:places.149,3000.0),Payment(ΚΥΘΝΙΟΙ,457,5,urn:cite:phoros:places.194,1800.0),Payment(ΣΤΥΡΕΣ,458,5,urn:cite:phoros:places.195,600.0),Payment(ΡΕΝΑΙΕΣ,459,5,urn:cite:phoros:places.148,30.0),Payment(ΣΕΡΙΦΙΟΙ,460,5,urn:cite:phoros:places.146,600.0),Payment(ΔΙΕΣ,461,5,urn:cite:phoros:places.16,200.0),Payment(ΑΘΕΝΑΙΔΙΑΔΕΣ,462,5,urn:cite:phoros:places.121,200.0),Payment(ΓΡΥΝΧΕΣ,463,5,urn:cite:phoros:places.150,100.0),Payment(ΗΕΣΣΤΙΑΙΕΣ,464,5,urn:cite:phoros:places.196,100.0),Payment(ΝΑΧΣΙΟΙ,465,5,urn:cite:phoros:places.197,4000.0),Payment(ΑΙΓΙΝΕΤΑΙ,466,5,urn:cite:phoros:places.80,15720.0),Payment(ΕΦΑΙΣΣΤΙΕΣ,467,5,urn:cite:phoros:places.94,1800.0),Payment(ΜΥΡΙΝΑΙΟΙ,468,5,urn:cite:phoros:places.120,600.0),Payment(ΠΙΤΑΝΑΙΟΙ,469,5,urn:cite:phoros:places.11,100.0),Payment(ΠΕΡΙΝΘΙΟΙ,471,5,urn:cite:phoros:places.137,3707.0),Payment(ΕΡΙΝΕΣ,472,5,urn:cite:phoros:places.84,324.0),Payment(ΧΕΡΡΟΝΕΣΙΤΑΙ,473,5,urn:cite:phoros:places.18,8284.0),Payment(ΕΡΥΘΡΑΙΟΙ,474,5,urn:cite:phoros:places.198,5130.0),Payment(ΑΛΟΠΕΚΟΝΝΕΣΙΟΙ,475,5,urn:cite:phoros:places.122,324.0),Payment(ΤΕΝΕΔΙΟΙ,476,5,urn:cite:phoros:places.107,972.0),Payment(ΒΥΖΖΑΝΤΙΟΙ,477,5,urn:cite:phoros:places.139,9000.0),Payment(ΧΑΛΧΕΔΟΝΙΟΙ,478,5,urn:cite:phoros:places.115,1800.0),Payment(ΜΙΛΕΣΙΟΙ,479,5,urn:cite:phoros:places.117,6000.0),Payment(ΙΑΤΜΙΟΙ,480,5,urn:cite:phoros:places.99,600.0),Payment(ΜΥΕΒΙΟΙ,481,5,urn:cite:phoros:places.119,600.0),Payment(ΙΑΣΕΣ,482,5,urn:cite:phoros:places.199,600.0),Payment(ΠΡΙΑΝΕΣ,483,5,urn:cite:phoros:places.101,600.0),Payment(ΚΥΝΔΥΕ,484,5,urn:cite:phoros:places.102,600.0),Payment(ΒΑΡΓΥΛΙΕΣ,485,5,urn:cite:phoros:places.103,100.0),Payment(ΚΑΡΥΑΝΔΕΣ,486,5,urn:cite:phoros:places.111,56.0),Payment(ΠΑΣΑΝΔΕΣ,487,5,urn:cite:phoros:places.155,300.0),Payment(ΜΑΓΝΑΣΕΣ,488,5,urn:cite:phoros:places.7,600.0),Payment(ΠΕΛΕΑΤΑΙ,489,5,urn:cite:phoros:places.98,300.0),Payment(ΕΦΕΣΙΟΙ,490,5,urn:cite:phoros:places.4,4500.0),Payment(ΗΥΡΟΜΕΣ,491,5,urn:cite:phoros:places.200,100.0),Payment(ΚΟΙΟΙ,492,5,urn:cite:phoros:places.160,864.0)

1 Payment(ΣΤΑΓΙΡΙΤΑΙ,1,1,urn:cite:phoros:places.1,100.0),Payment( ΦΑΡΒΕΛΙ ΟΙ,2,1,urn:cite:phoros:places.2,100.0),Payment(ΕΛΑΥΤΑΙ,3,1,urn:cite:phoros:places.3,100.0),Payment(ΕΦΕΣΙΟΙΙ,4,1,urn:cite:phoros:places.4,4500.0),Payment(ΑΙΝΙΟΙ,5,1,urn:cite:phoros:places.5,7200.0),Payment(ΝΑΧΣΙΑΤΑΙ,6,1,urn:cite:phoros:places.6,100.0),Payment( ΜΑΔΝΑΣΕΣ,7,1,urn:cite:phoros:places.7,1200.0),Payment(ΠΙΤΑΝΑΙΟΙ,12,1,urn:cite:phoros:places.11,100.0),Payment( ΘΥΣΣΙΟΙ,13,1,urn:cite:phoros:places.12,400.0),Payment(ΤΟΡΟΝΑΙΟΙ,14,1,urn:cite:phoros:places.13,7200.0),Payment(ΣΑΜΒΑΚΤΥΣ,19,1,urn:cite:phoros:places.17,640.0),Payment( ΧΕΡΡΟΝΕΣΙΤΑΙ,20,1,urn:cite:phoros:places.18,10800.0),Payment(ΑΒΥΔΕΝΟΙ,21,1,urn:cite:phoros:places.19,2626.0),Payment(ΚΑΜΕΡΕΣ,22,1,urn:cite:phoros:places.20,5400.0),Payment(ΚΡΥΕΣ,23,1,urn:cite:phoros:places.21,200.0),Payment(ΠΕΠΑΡΕΘΙΟΙ,24,1,urn:cite:phoros:places.22,1800.0),Payment( ΚΟΛΟΦΟΝΙΟΙ,25,1,urn:cite:phoros:places.23,1800.0),Payment(ΝΟΤΙΕΣ,26,1,urn:cite:phoros:places.24,200.0),Payment(ΔΙΟΣΕΡΙΤΑΙ,27,1,urn:cite:phoros:places.25,100.0),Payment(ΣΠΑΡΤΟΛΙΟΙ,28,1,urn:cite:phoros:places.26,1200.0),Payment(ΑΙΡΑΙΟΙ,29,1,urn:cite:phoros:places.27,1800.0),Payment(ΛΙΝΔΙΟΝ ΟΙΙΑΤΑΙ,30,1,urn:cite:phoros:places.28,330.0),Payment(ΑΣΤΑΚΕΝΟΙ,31,1,urn:cite:phoros:places.29,900.0),Payment(ΝΕΟΠΟΛΙΤΑΙ,32,1,urn:cite:phoros:places.30,350.0),Payment(ΜΑΙΑΝΔΡΟΙ,33,1,urn:cite:phoros:places.31,400.0),Payment(ΜΑΡΟΝΙΤΑΙ,34,1,urn:cite:phoros:places.32,900.0),Payment(ΛΙΝΔΙΟΙ,35,1,urn:cite:phoros:places.33,5070.0),Payment(ΚΑΡΟΙ,37,1,urn:cite:phoros:places.34,800.0),Payment(ΕΣΣΙΟΙ,38,1,urn:cite:phoros:places.35,600.0),Payment(ΝΕΑΝΔΡΕΙΑ,39,1,urn:cite:phoros:places.36,200.0),Payment(ΛΑΜΠΟΝΕΙΑ,40,1,urn:cite:phoros:places.37,100.0),Payment(ΝΑΣΣΕΣ,42,1,urn:cite:phoros:places.38,1000.0),Payment(ΣΤΡΕΦΣΑΙΟΙ,43,1,urn:cite:phoros:places.39,600.0),Payment(ΠΑΛΕΦΣΙΟΙ,44,1,urn:cite:phoros:places.40,900.0),Payment(ΚΥΡΒΙΣΣΟΣ,45,1,urn:cite:phoros:places.41,200.0),Payment(ΧΙΤΑΙ,47,1,urn:cite:phoros:places.42,100.0),Payment(ΛΙΤΑΙ,49,1,urn:cite:phoros:places.43,2400.0),Payment(ΚΛΑΖΟΜΕΝΙΟΙ,50,1,urn:cite:phoros:places.44,900.0),Payment( ΑΡΓΙΛΙΟΙ,51,1,urn:cite:phoros:places.45,900.0),Payment(ΚΑΡΒΑΣΥΑΝΔΕΣ,52,1,urn:cite:phoros:places.46,100.0),Payment(ΦΑΣΕΛΙΤΑΙ,53,1,urn:cite:phoros:places.47,3600.0),Payment(ΤΕΡΜΕΡΕΣ,54,1,urn:cite:phoros:places.48,1500.0),Payment(ΚΕΒΡΕΝΙΟΙ,55,1,urn:cite:phoros:places.49,1800.0),Payment(ΚΑΣΟΛΑΒΕΣ,56,1,urn:cite:phoros:places.50,250.0),Payment(ΠΑΡ ΑΒΔΕΡΑ,58,1,urn:cite:phoros:places.51,300.0),Payment(ΗΑΒΔΕΡΙ ΤΑΙ,59,1,urn:cite:phoros:places.52,7712.0),Payment(ΣΕΡΜΥΛΙΕΣ,65,1,urn:cite:phoros:places.56,4632.0),Payment(ΘΑΣΙΟΙ,71,1,urn:cite:phoros:places.61,1800.0),Payment(ΜΥΣΙΟΙ,72,1,urn:cite:phoros:places.62,200.0),Payment(ΠΙΚΡΕΣ ΣΥΑΝ ΓΕΛΕΥΣ,73,1,urn:cite:phoros:places.63,300.0),Payment(ΚΕΔΡΙΕΤΑΙ,74,1,urn:cite:phoros:places.64,300.0),Payment(ΚΕΡΑΜΙΟΙ,75,1,urn:cite:phoros:places.65,900.0),Payment(ΚΥΛΛΑΝΔΙΟΙ,77,1,urn:cite:phoros:places.67,1200.0),Payment(ΧΙΟΙΚΑΡΕΣ,78,1,urn:cite:phoros:places.68,200.0),Payment(ΝΑΡΙΣΒΑΡΕΣ,79,1,urn:cite:phoros:places.70,100.0),Payment( ΜΥΔΟΝΕΣ,80,1,urn:cite:phoros:places.71,150.0),Payment(ΚΙΑΝΟΙ,81,1,urn:cite:phoros:places.72,100.0),Payment(ΑΡΤΑΚΕΝΟΙ,82,1,urn:cite:phoros:places.73,200.0),Payment(ΕΝΘΡΑΙΚΕΙ,84,1,urn:cite:phoros:places.74,100.0),Payment(ΤΕΙ ΙΔΕΙ,86,1,urn:cite:phoros:places.75,100.0),Payment(ΑΥΛΙΑΤΑΙ ΚΑΡΕΣ,87,1,urn:cite:phoros:places.76,50.0),Payment(ΙΑΤΑΙ,88,1,urn:cite:phoros:places.77,600.0),Payment(ΠΑΡΙΑΝΟΙ,89,1,urn:cite:phoros:places.78,600.0),Payment(ΕΝΠΡΟΠΟΝΤΙΔΙ,91,1,urn:cite:phoros:places.79,50.0),Payment(ΑΙΓΙΝΕΤΑΙ,92,1,urn:cite:phoros:places.80,3000.0),Payment(ΕΧΣ ΛΕΡΟ,94,1,urn:cite:phoros:places.81,1800.0)

2 Payment(ΒΟΛΒΑΙΕΣ,96,2,urn:cite:phoros:places.69,103.0),Payment(ΛΕΦΣΙΜΑΝΙΟΙ,97,2,urn:cite:phoros:places.83,103.0),Payment(ΕΡΙΝΕΣ,98,2,urn:cite:phoros:places.84,413.0),Payment(ΑΜΥΝΑΝΔΕΣ,99,2,urn:cite:phoros:places.85,305.0),Payment(ΠΑΚΤΥΕΣΙΔΥΜΕΥΣ,100,2,urn:cite:phoros:places.86,689.0),Payment(ΟΡΑΝΙΕΤΑΙ,101,2,urn:cite:phoros:places.87,103.0),Payment(ΟΛΑΙΕΣ,102,2,urn:cite:phoros:places.88,103.0),Payment(ΤΑΡΒΑΝΕΣ,103,2,urn:cite:phoros:places.89,103.0),Payment(ΚΟΔΑΠΕΣ,104,2,urn:cite:phoros:places.90,100.0),Payment(ΑΡΙΣΒΑΙΟΙ,106,2,urn:cite:phoros:places.91,1200.0),Payment(ΑΙΓΙΝΕΤΑΙ,107,2,urn:cite:phoros:places.80,18000.0),Payment(ΑΣΤΥΠΑΛΑΙΕΣ,110,2,urn:cite:phoros:places.92,1200.0),Payment(ΣΑΜΟΘΡΑΙΚΕΣ,111,2,urn:cite:phoros:places.93,1800.0),Payment(ΛΑΜΦΣΑΚΕΝΟΙ,113,2,urn:cite:phoros:places.95,7200.0),Payment(ΟΙΝΑΙΟΙ,114,2,urn:cite:phoros:places.34,800.0),Payment(ΚΟΛΟΦΟΝΙΟΙ,116,2,urn:cite:phoros:places.23,1800.0),Payment(ΝΟΤΙΕΣ,117,2,urn:cite:phoros:places.24,200.0),Payment(ΔΙΟΣΙΡΙΤΑΙ,118,2,urn:cite:phoros:places.25,100.0),Payment(ΕΦΕΣΙΟΙ,119,2,urn:cite:phoros:places.4,4500.0),Payment(ΙΑΤΑΙ,120,2,urn:cite:phoros:places.77,600.0),Payment(ΑΙΝΙΟΙ,121,2,urn:cite:phoros:places.5,7200.0),Payment(ΜΥΝΔΙΟΙ,122,2,urn:cite:phoros:places.96,50.0),Payment(ΑΥΛΙΑΤΑΙ,123,2,urn:cite:phoros:places.76,50.0),Payment(ΚΑΡΒΑΣΥΑΝΔΕΣ,124,2,urn:cite:phoros:places.46,100.0),Payment(ΜΑΡΟΝΙΤΑΙ,125,2,urn:cite:phoros:places.32,900.0),Payment(ΓΡΥΝΕΙΕΣ,126,2,urn:cite:phoros:places.97,100.0),Payment(ΠΙΤΑΝΑΙΟΙ,127,2,urn:cite:phoros:places.11,100.0),Payment(ΑΣΤΑΚΕΝΟΙ,128,2,urn:cite:phoros:places.29,900.0),Payment(ΣΠΑΡΤΟΛΙΟΙ,129,2,urn:cite:phoros:places.26,1200.0),Payment(ΚΑΣΟΛΑΒΕ Σ,131,2,urn:cite:phoros:places.50,250.0),Payment(ΣΑΝΑΙΟΙ,135,2,urn:cite:phoros:places.14,600.0),Payment(ΗΑΙΡΑΙΟΙ,136,2,urn:cite:phoros:places.27,1800.0),Payment(ΝΕΟΠΟΛΙΤΑΙ,137,2,urn:cite:phoros:places.30,300.0),Payment(ΟΛΥΝΘΙΟΙ,138,2,urn:cite:phoros:places.53,1200.0),Payment(ΜΕΚΥΒΕΡΝΑΙΟΙ,139,2,urn:cite:phoros:places.57,600.0),Payment(ΠΑΛΕΦΣΙΟΙ,141,2,urn:cite:phoros:places.40,900.0),Payment(ΚΛΑΖΟΜΕΝΙΟΙ,143,2,urn:cite:phoros:places.44,900.0),Payment(ΠΕΛΕΙΑΤΑΙ,144,2,urn:cite:phoros:places.98,400.0),Payment(ΛΑΤΜΙΟΙ,145,2,urn:cite:phoros:places.99,600.0),Payment(ΠΑΡΙΑΝΟΙ,146,2,urn:cite:phoros:places.78,600.0),Payment(ΒΟΥΘΕΙΕΒΟΥΘΕΙΕΣ,147,2,urn:cite:phoros:places.66,1800.0),Payment(ΧΕΡΡΟΝΕΣΙΤΑΙ,148,2,urn:cite:phoros:places.18,10800.0),Payment(ΠΕΔΑΣΕΣ,149,2,urn:cite:phoros:places.100,1200.0),Payment(ΠΡΙΑΝΕΣ,150,2,urn:cite:phoros:places.101,600.0),Payment(ΚΙΝΔΥΕΣ,151,2,urn:cite:phoros:places.102,600.0),Payment(ΒΑΡΓΥΛΙΕΣ,152,2,urn:cite:phoros:places.103,100.0),Payment(ΔΙΔΥΜΟΤΕΙΔΙΔΥΜΟΤΕΙΧΙΤΑΙ,153,2,urn:cite:phoros:places.42,100.0)

7 Payment(ΝΑΡΙΣΒΑΡΕΣ,493,7,urn:cite:phoros:places.70,100.0),Payment(ΓΕΝΤΙΝΙΟΙ,495,7,urn:cite:phoros:places.186,50.0),Payment(ΣΤΑΓΙΡΙΤΑΙ,496,7,urn:cite:phoros:places.1,100.0),Payment(ΚΕΡΑΜΕΣ,497,7,urn:cite:phoros:places.65,900.0),Payment(ΚΑΜΙΡΕΣ,498,7,urn:cite:phoros:places.20,4500.0),Payment(ΗΑΛΙΚΑΡΝ ΑΣΣΙΟΙ,499,7,urn:cite:phoros:places.38,1200.0),Payment(ΜΥΡΙΝΑΙΟΙ,500,7,urn:cite:phoros:places.120,600.0),Payment(ΜΕΚΥΠΕΡΝΑΙΟΙ,501,7,urn:cite:phoros:places.57,600.0),Payment(ΠΛΑΔΑΣΕΣ,502,7,urn:cite:phoros:places.202,200.0),Payment(ΠΕΔΑΣΕΣ,503,7,urn:cite:phoros:places.100,600.0),Payment(ΚΥΜΑΙΟΙ,504,7,urn:cite:phoros:places.136,5400.0),Payment(ΠΙΤΑΝΙΟΙ,505,7,urn:cite:phoros:places.11,100.0),Payment(ΓΡΥΝΕΙΕΣ,506,7,urn:cite:phoros:places.97,100.0),Payment(ΧΕΡΡΟΝΕΣΙΟΙ,507,7,urn:cite:phoros:places.164,1800.0),Payment(ΠΥΡΝΙΟΙ,508,7,urn:cite:phoros:places.126,100.0),Payment(ΝΕΑΠΟΛΙΣ,509,7,urn:cite:phoros:places.30,100.0),Payment(ΚΥΛΛΑΝΤΙΟΙ,510,7,urn:cite:phoros:places.67,1200.0),Payment(ΚΥΡΒΙΣΣΕΣ,511,7,urn:cite:phoros:places.41,100.0),Payment(ΧΙΟΙ,512,7,urn:cite:phoros:places.68,100.0),Payment(ΑΦΥΤΑΙΟΙ,513,7,urn:cite:phoros:places.105,1800.0),Payment(ΣΥΑΓΓΕΛΕΣ,514,7,urn:cite:phoros:places.203,600.0),Payment(ΤΕΡΜΕΡΕΣ,515,7,urn:cite:phoros:places.48,1500.0),Payment(ΙΔΥΜΕΣ,516,7,urn:cite:phoros:places.204,520.0),Payment(ΜΑΡΟΝΙΤΑΙ,517,7,urn:cite:phoros:places.32,900.0),Payment(ΘΕΡΜΑΙΟΙ,518,7,urn:cite:phoros:places.8,300.0),Payment(ΟΙΝΑΙΟΙ,519,7,urn:cite:phoros:places.34,600.0),Payment(ΧΑΛΚΕΑΤΑΙ,520,7,urn:cite:phoros:places.175,300.0),Payment(ΛΕΒΕΔΙΟΙ,521,7,urn:cite:phoros:places.174,1800.0),Payment(ΑΙΝΕΑΤΑΙ,522,7,urn:cite:phoros:places.182,1800.0),Payment(ΗΑΙΣΟΝΙΟΙ,523,7,urn:cite:phoros:places.162,150.0),Payment(ΔΙΚΑΙΟΠΟΛΙΤΑΙ,524,7,urn:cite:phoros:places.43,600.0),Payment(ΑΙΝΙΟΙ,526,7,urn:cite:phoros:places.5,7200.0),Payment(ΚΑΥΝΙΟΙ,527,7,urn:cite:phoros:places.110,300.0),Payment(ΝΑΧΣΙΑΤΑΙ,528,7,urn:cite:phoros:places.6,50.0),Payment(ΘΑΣΘΑΡΕΣ,529,7,urn:cite:phoros:places.163,50.0),Payment(ΜΥΔΟΝΕΣ,530,7,urn:cite:phoros:places.71,150.0),Payment(ΤΕΛΑΝΔΡΙΟΙ,531,7,urn:cite:phoros:places.173,300.0),Payment(ΚΑΡΒΑΣΥΑΝΔΕΣ,532,7,urn:cite:phoros:places.46,100.0),Payment(ΟΥΛΙΑΤΑΙ,533,7,urn:cite:phoros:places.76,50.0),Payment(ΚΡΥΕΣ,534,7,urn:cite:phoros:places.21,200.0),Payment(ΦΑΡΒΕΛΙΟΙ,535,7,urn:cite:phoros:places.2,100.0),Payment(ΜΥΝΔΙΟΙ,536,7,urn:cite:phoros:places.96,50.0),Payment( ΛΙΝΔΙΟΙ,537,7,urn:cite:phoros:places.33,6000.0),Payment(ΠΕΔΙΕΣ,538,7,urn:cite:phoros:places.205,200.0),Payment(ΘΥΣΣΙΟΙ,539,7,urn:cite:phoros:places.12,900.0),Payment(ΣΑΝΑΙΟΙ,540,7,urn:cite:phoros:places.14,200.0),Payment(ΣΥΡΙΟΙ,541,7,urn:cite:phoros:places.135,100.0),Payment(ΟΘΟΡΙΟΙ,542,7,urn:cite:phoros:places.206,100.0),Payment(ΚΕΒΡΕΝΙΟΙ,543,7,urn:cite:phoros:places.49,1800.0),Payment(ΚΟΔΑΠΕΣ,544,7,urn:cite:phoros:places.90,100.0),Payment(ΚΥΔΑΙΕΣ,545,7,urn:cite:phoros:places.168,40.0),Payment(ΔΙΟΣΙΡΙΤΑΙ,546,7,urn:cite:phoros:places.25,100.0),Payment(ΧΑΛΚΕΤΟΡΕΣ,547,7,urn:cite:phoros:places.167,210.0),Payment(ΟΛΟΦΥΧΣΙΟΙ,548,7,urn:cite:phoros:places.15,150.0),Payment(ΚΛΑΖΟΜΕΝΙΟΙ,549,7,urn:cite:phoros:places.44,900.0),Payment(ΗΑΒΔΕΡΙΤΑΙ,550,7,urn:cite:phoros:places.52,8400.0),Payment(ΚΑΛΥΔΝΙΟΙ,551,7,urn:cite:phoros:places.109,900.0),Payment(ΝΟΤΙΕΣ,552,7,urn:cite:phoros:places.24,200.0),Payment(ΓΑΡΓΑΡΕΣ,553,7,urn:cite:phoros:places.118,450.0),Payment(ΦΑΣΕΛΙΤΑΙ,554,7,urn:cite:phoros:places.47,1800.0),Payment(ΔΙΕΣ,555,7,urn:cite:phoros:places.16,600.0),Payment(ΚΝΙΔΙΟΙ,556,7,urn:cite:phoros:places.125,3000.0),Payment(ΣΠΑΡΤΟΛΙΟΙ,557,7,urn:cite:phoros:places.26,1200.0),Payment(ΣΤΡΕΦΣΑΙΟΙ,558,7,urn:cite:phoros:places.39,600.0),Payment(ΚΕΔΡΙΑΤΑΙ,559,7,urn:cite:phoros:places.64,50.0),Payment(ΙΕΛΥΣΙΟΙ,560,7,urn:cite:phoros:places.128,6000.0),Payment(ΑΣΤΥΠΑΛΑΙΕΣ,561,7,urn:cite:phoros:places.92,1200.0),Payment(ΣΤΟΛΙΟΙ,562,7,urn:cite:phoros:places.58,500.0),Payment(ΗΕΔΡΟΛΙΟΙ,563,7,urn:cite:phoros:places.207,50.0),Payment(ΡΕΝΑΙΕΣ,564,7,urn:cite:phoros:places.148,30.0),Payment(ΠΡΙΑΠΕΣ,565,7,urn:cite:phoros:places.127,50.0),Payment(ΗΕΣΤΙΑΙΕΣ,566,7,urn:cite:phoros:places.196,100.0),Payment(ΠΑΛΑΙΠΕΡΚ ΟΣΙΟΙ,567,7,urn:cite:phoros:places.153,50.0),Payment(ΓΑΛΕΦΣΙΟΙ,568,7,urn:cite:phoros:places.208,900.0),Payment(ΦΟΚΑΙΕΣ,569,7,urn:cite:phoros:places.138,1800.0),Payment(ΚΟΙΟΙ,570,7,urn:cite:phoros:places.160,2136.0),Payment(ΒΑΡΓΥΛΙΕΣ,571,7,urn:cite:phoros:places.103,100.0),Payment(ΣΑΜΟΘΡΑΙΚΕΣ,572,7,urn:cite:phoros:places.93,3600.0),Payment(ΑΣΣΕΡΙΤΑΙ,573,7,urn:cite:phoros:places.55,2400.0),Payment(ΔΙΚΑΙΑΠΑΡΑΒΔΕΡΑ,574,7,urn:cite:phoros:places.51,300.0),Payment(ΔΙΕΣ,575,7,urn:cite:phoros:places.16,200.0),Payment(ΕΥΡΥΜΑΧΙΤΑΙ,576,7,urn:cite:phoros:places.209,100.0),Payment(ΒΡΥΚΟΝΤΙΟΙ,577,7,urn:cite:phoros:places.210,50.0),Payment(ΚΙΑΝΟΙ,578,7,urn:cite:phoros:places.72,100.0),Payment(ΑΡΚΕΣΣΕΙΑ,579,7,urn:cite:phoros:places.180,100.0),Payment(ΗΥΜΙΣΣΕΣ,580,7,urn:cite:phoros:places.161,120.0),Payment(ΥΔΙΣΣΕΣ,581,7,urn:cite:phoros:places.211,600.0),Payment(ΗΑΙΡΑΙΟΙ,582,7,urn:cite:phoros:places.27,1800.0),Payment(ΠΑΡΙΟΙ,583,7,urn:cite:phoros:places.192,9720.0),Payment(ΔΑΜΝΙΟΤΕΙΧΙΤΑΙ,584,7,urn:cite:phoros:places.130,100.0),Payment(ΝΑΧΣΙΟΙ,585,7,urn:cite:phoros:places.197,4000.0),Payment(ΧΑΛΧΕΔΟΝΙΟΙ,586,7,urn:cite:phoros:places.115,5400.0),Payment(ΣΕΛΥΜΒΡΙΑΝΟΙ,587,7,urn:cite:phoros:places.159,3600.0),Payment(ΣΙΓΓΙΟΙ,594,7,urn:cite:phoros:places.60,1200.0),Payment(ΠΑΡΠΑΡΙΟΙ,595,7,urn:cite:phoros:places.151,100.0),Payment(ΣΚΑΦΣΑΙΟΙ,596,7,urn:cite:phoros:places.131,100.0),Payment(ΣΕΡΜΕΣ,597,7,urn:cite:phoros:places.188,50.0),Payment(ΙΚΙΟΙ,598,7,urn:cite:phoros:places.157,150.0),Payment(ΣΙΓΕΙΕΣ,599,7,urn:cite:phoros:places.193,76.0),Payment(ΗΑΡΠΑΓΙΟΙ,600,7,urn:cite:phoros:places.213,30.0),Payment(ΠΕΠΑΡΕΘΙΟΙ,601,7,urn:cite:phoros:places.22,1800.0),Payment(ΣΕΡΙΦΙΟΙ,602,7,urn:cite:phoros:places.146,600.0),Payment(ΛΑΜΦΣΑΚΕΝΟΙ,603,7,urn:cite:phoros:places.95,520.0),Payment(ΑΙΓΑΝΤΙΟΙ,604,7,urn:cite:phoros:places.143,300.0),Payment(ΤΕΝΙΟΙ,605,7,urn:cite:phoros:places.190,1800.0),Payment(ΤΕΙΟΙ,606,7,urn:cite:phoros:places.152,3600.0),Payment(ΑΝΔΡΙΟΙ,607,7,urn:cite:phoros:places.145,3600.0),Payment(ΜΥΚΟΝΙΟΙ,608,7,urn:cite:phoros:places.114,900.0),Payment(ΘΑΣΙΟΙ,609,7,urn:cite:phoros:places.61,1470.0),Payment(ΕΡΕΤΡΙΕΣ,611,7,urn:cite:phoros:places.214,3600.0),Payment(ΒΡΥΝΧΕΙΕΣ,612,7,urn:cite:phoros:places.150,100.0),Payment(ΣΙΦΝΙΟΙ,613,7,urn:cite:phoros:places.191,1800.0),Payment(ΔΙΔΥΜΟΤΕΧΙΤΑΙ,614,7,urn:cite:phoros:places.42,100.0),Payment(ΙΑΤΑΙ,615,7,urn:cite:phoros:places.77,100.0),Payment(ΤΟΡΟΝΑΙΟΙ,616,7,urn:cite:phoros:places.13,4744.0),Payment(ΔΑΡΔΑΝΕΣ,617,7,urn:cite:phoros:places.158,100.0),Payment(ΠΡΙΑΝΕΣ,618,7,urn:cite:phoros:places.101,600.0),Payment(ΣΤΥΡΕΣ,619,7,urn:cite:phoros:places.195,600.0),Payment(ΑΘΕΝΑΙΟΙ,620,7,urn:cite:phoros:places.121,100.0),Payment(ΒΕΡΥΣΙΟΙ,621,7,urn:cite:phoros:places.75,100.0),Payment(ΧΑΛΚΙΔΕΣ,623,7,urn:cite:phoros:places.215,3000.0),Payment(ΝΕΟΠΟΛΙΤΑΙ,624,7,urn:cite:phoros:places.30,300.0),Payment(ΛΑΜΠΟΝΕΙΑ,625,7,urn:cite:phoros:places.37,100.0),Payment(ΠΑΙΣΕΝΟΙ,626,7,urn:cite:phoros:places.116,100.0),Payment(ΠΕΡΚΟΤΕ,627,7,urn:cite:phoros:places.123,100.0),Payment(ΗΕΣΣΙΟΙ,628,7,urn:cite:phoros:places.35,600.0),Payment(ΛΕΦΣΙΜΑΝΔΙΟΙ,631,7,urn:cite:phoros:places.83,150.0),Payment(ΚΑΣΟΛΑΒΕΣ,632,7,urn:cite:phoros:places.50,250.0),Payment(ΦΕΓΕΤΙΟΙ,633,7,urn:cite:phoros:places.156,160.0),Payment(ΣΕΡΒΥΛΙΕΣ,634,7,urn:cite:phoros:places.56,1800.0),Payment(ΣΚΑΒΛΑΙΟΙ,635,7,urn:cite:phoros:places.54,300.0),Payment(ΜΕΔΑΙΟΙ,636,7,urn:cite:phoros:places.112,9000.0),Payment(ΚΥΘΝΙΟΙ,637,7,urn:cite:phoros:places.194,1800.0),Payment(ΚΑΡΥΣΤΙΟΙ,638,7,urn:cite:phoros:places.149,3000.0),Payment(ΚΕΙΟΙ,639,7,urn:cite:phoros:places.166,2400.0)

3 Payment(ΑΦΥΤΑΙΟΙ,154,3,urn:cite:phoros:places.105,1800.0),Payment(ΛΕΜΝΙΟΙ,155,3,urn:cite:phoros:places.106,5400.0),Payment(ΚΕΡΑΜΙΟΙ,156,3,urn:cite:phoros:places.65,900.0),Payment(ΜΥΔΟΝΕΣ,157,3,urn:cite:phoros:places.71,150.0),Payment(ΤΕΝΕΔΙΟΙ,158,3,urn:cite:phoros:places.107,2700.0),Payment(ΠΑΛΕΦΣΙΟΙ,159,3,urn:cite:phoros:places.40,900.0),Payment(ΠΕΝΤΙΝΙΟΙ,160,3,urn:cite:phoros:places.108,50.0),Payment(ΦΑΣΕΛΙΤΑΙ,161,3,urn:cite:phoros:places.47,3600.0),Payment(ΚΑΛΥΔΝΙΟΙ,162,3,urn:cite:phoros:places.109,900.0),Payment(ΚΛΑΖΟΜΕΝΙΟΙ,163,3,urn:cite:phoros:places.44,900.0),Payment(ΚΕΔΡΙΕΤΑΙ,164,3,urn:cite:phoros:places.64,300.0),Payment(ΙΑΤΑΙ,165,3,urn:cite:phoros:places.77,600.0),Payment(ΑΡΤΑΚΕΝΟΙ,166,3,urn:cite:phoros:places.73,200.0),Payment(ΔΙΚΑΙΑ,167,3,urn:cite:phoros:places.51,300.0),Payment(ΑΣΤΥΠΑΛΑΙΕΣ,169,3,urn:cite:phoros:places.92,1200.0),Payment(ΚΑΡΥΑΝΔΕΣ,172,3,urn:cite:phoros:places.111,100.0),Payment(ΜΑΔΝΑΣΕΣ>,173,3,urn:cite:phoros:places.7,1200.0),Payment(ΜΕΝΔΑΙΟΙ,174,3,urn:cite:phoros:places.112,4800.0),Payment(ΣΚΑΦΣΑΙΟΙ,175,3,urn:cite:phoros:places.113,100.0),Payment(ΜΥΚΟΝΙΟΙ,176,3,urn:cite:phoros:places.114,900.0),Payment(ΜΑΡΟΝΙΤΑΙ,179,3,urn:cite:phoros:places.32,900.0),Payment(ΣΑΜΟΘΡΑΙΚΕΣ,180,3,urn:cite:phoros:places.93,4800.0),Payment(ΛΑΤΜΙΟΙ,182,3,urn:cite:phoros:places.99,600.0),Payment(ΜΥΕΣΣΙΟΙ,183,3,urn:cite:phoros:places.119,900.0),Payment(ΧΕΡΣΟΝΕΣΙΤΑΙ,184,3,urn:cite:phoros:places.164,1080.0),Payment(ΒΕΡΥΣΙΟΙ,185,3,urn:cite:phoros:places.75,100.0),Payment(ΗΥΠΟΤΕΙΙΔΕΙ,186,3,urn:cite:phoros:places.75,100.0),Payment(ΕΛΑΥΤΑΙ,187,3,urn:cite:phoros:places.3,100.0),Payment(ΠΕΠΑΡΕΘΙΟΙ,188,3,urn:cite:phoros:places.22,1800.0),Payment(ΝΕΑΝΔΡΕΙΑ,189,3,urn:cite:phoros:places.36,200.0),Payment(ΜΥΡΙΝΑΙΟΙ,190,3,urn:cite:phoros:places.120,600.0),Payment(ΑΛΙΚΑΡΝΑΣΣΕΣ,191,3,urn:cite:phoros:places.38,1000.0),Payment(ΚΥΛΛΑΝΔΙΟΙ,192,3,urn:cite:phoros:places.67,1200.0),Payment(ΚΥΡΒΙΣΣΟΣ,193,3,urn:cite:phoros:places.41,200.0),Payment(ΔΑΣΚΥΛΕΙΟΝ,194,3,urn:cite:phoros:places.79,50.0),Payment(ΑΘΕΝΑΙΔΙΑΔΕΣ,196,3,urn:cite:phoros:places.121,200.0),Payment(ΛΙΝΔΙΟΝΟΙΙΑΤΑΙ,197,3,urn:cite:phoros:places.28,330.0),Payment(ΑΥΛΙΑΤΑΙΚΑΡΕΣ,199,3,urn:cite:phoros:places.76,50.0),Payment(ΠΕΡΚΟΣΙΟΙ,200,3,urn:cite:phoros:places.123,100.0),Payment(ΑΙΝΙΟΙ,201,3,urn:cite:phoros:places.5,7200.0),Payment(ΝΙΣΥΡΙΟΙ,202,3,urn:cite:phoros:places.124,900.0),Payment(ΜΑΙΑΝΔΡΙΟΙ,203,3,urn:cite:phoros:places.31,400.0),Payment(ΘΥΣΣΙΟΙ,204,3,urn:cite:phoros:places.12,400.0),Payment(ΚΝΙΔΙΟΙ,205,3,urn:cite:phoros:places.125,1800.0),Payment(ΧΕΡΣΟΝΕΣΙΟΙ,206,3,urn:cite:phoros:places.18,1800.0),Payment(ΠΥΡΝΙΟΙ,207,3,urn:cite:phoros:places.126,100.0),Payment(ΠΡΙΑΠΕΣ,208,3,urn:cite:phoros:places.127,50.0),Payment(ΚΑΜΕΡΕΣ,209,3,urn:cite:phoros:places.20,5400.0),Payment(ΙΕΛΥΣΙΟΙ,210,3,urn:cite:phoros:places.128,6000.0),Payment(ΛΙΝΔΙΟΙ,211,3,urn:cite:phoros:places.133,5070.0),Payment(ΚΑΣΟΛΑΒΕΣ,214,3,urn:cite:phoros:places.50,250.0),Payment(ΛΕΦΣΙΜΑΝΙΟΙ,215,3,urn:cite:phoros:places.83,150.0),Payment(ΣΠΑΡΤΟΛΙΟΙ,216,3,urn:cite:phoros:places.26,1200.0),Payment(ΣΚΑΦΣΙΟΙ,217,3,urn:cite:phoros:places.131,600.0),Payment(ΑΖΕΙΟΙ,218,3,urn:cite:phoros:places.132,40.0),Payment(ΒΕΡΓΑΙΟΙ,219,3,urn:cite:phoros:places.133,288.0),Payment(ΤΥΡΟΔΙΖΑΙ,220,3,urn:cite:phoros:places.134,100.0),Payment(ΣΥΡΙΟΙ,221,3,urn:cite:phoros:places.135,150.0),Payment(ΚΥΜΑΙΟΙ,222,3,urn:cite:phoros:places.136,7200.0),Payment(ΠΕΡΙΝΘΙΟΙ,223,3,urn:cite:phoros:places.137,100.0),Payment(ΦΟΚΑΙΕΣ,224,3,urn:cite:phoros:places.138,1800.0),Payment(ΑΙΓΙΝΕΤΑΙ,225,3,urn:cite:phoros:places.80,18000.0),Payment(ΘΕΡΜΑΙΟΙ,226,3,urn:cite:phoros:places.8,50.0),Payment(ΝΑΧΣΙΑΤΑΙ,228,3,urn:cite:phoros:places.6,100.0),Payment(ΤΕΡΜΕΡΕΣ,229,3,urn:cite:phoros:places.48,1500.0),Payment(ΚΟΛΟΦΟΝΙΤΑΙ,230,3,urn:cite:phoros:places.23,1800.0),Payment(ΝΟΤΙΕΣ,231,3,urn:cite:phoros:places.24,200.0),Payment(ΣΑΜΒΑΚΤΥΣ,232,3,urn:cite:phoros:places.17,600.0),Payment(ΕΦΕΣΙΟΙ,233,3,urn:cite:phoros:places.4,4500.0),Payment(ΚΑΡΒΑΣΥΑΝΔΕΣ,234,3,urn:cite:phoros:places.46,100.0),Payment(ΚΑΥΝΙΟΙ,235,3,urn:cite:phoros:places.110,300.0),Payment(ΚΡΥΕΣ,236,3,urn:cite:phoros:places.21,200.0),Payment(ΗΑΒΔΕΡΙΤΑΙ,237,3,urn:cite:phoros:places.52,9000.0),Payment(ΜΥΝΔΙΟΙ,238,3,urn:cite:phoros:places.96,50.0),Payment(ΧΑΛΧΕΔΟ ΝΙΟΙ,239,3,urn:cite:phoros:places.115,4501.0),Payment(ΘΑΣΙΟΙ,240,3,urn:cite:phoros:places.61,1800.0),Payment(ΠΑΙΣΕΝΟΙ,241,3,urn:cite:phoros:places.116,100.0),Payment(ΓΑΡΓΑΡΕΣ,242,3,urn:cite:phoros:places.118,450.0),Payment(ΣΙΝΓΙΟΙ,243,3,urn:cite:phoros:places.60,2400.0),Payment(ΑΙΝΙΑΤΑΙ,244,3,urn:cite:phoros:places.5,1800.0),Payment(ΠΙΤΑΝΑΙΟΙ,245,3,urn:cite:phoros:places.11,100.0),Payment(ΓΡΥΝΕΙΕΣ,246,3,urn:cite:phoros:places.97,100.0),Payment(ΔΑΥΝΙΟΤΕΙΧΙΤΑΙ,247,3,urn:cite:phoros:places.130,100.0),Payment(ΒΥΖΑΝΤΙΟΙ,248,3,urn:cite:phoros:places.139,9000.0)

8 Payment(ΝΑΡΙΣΒΑΡΕΣ,640,8,urn:cite:phoros:places.70,100.0),Payment(ΤΕΝΕΔΙΟΙ,641,8,urn:cite:phoros:places.107,1728.0),Payment(ΣΤΑΓΙΡΙΤΑΙ,642,8,urn:cite:phoros:places.1,100.0),Payment(ΓΕΝΤΙΝΙΟΙ,643,8,urn:cite:phoros:places.186,50.0),Payment(ΚΕΡΑΜΕΣ,644,8,urn:cite:phoros:places.65,900.0),Payment(ΚΑΜΙΡΕΣ,645,8,urn:cite:phoros:places.20,5400.0),Payment(ΗΑΛΙΚΑΡΝΑΣΣΙΟΙ,646,8,urn:cite:phoros:places.38,1200.0),Payment(ΜΥΡΙΝΑΙΟΙ,647,8,urn:cite:phoros:places.120,600.0),Payment(ΜΕΚΥΠΕΡΝΑΙΟΙ,648,8,urn:cite:phoros:places.57,600.0),Payment(ΠΛΑΔΑΣΕΣ,649,8,urn:cite:phoros:places.202,200.0),Payment(ΠΕΔΑΣΕΣ,650,8,urn:cite:phoros:places.100,600.0),Payment(ΚΥΜΑΙΟΙ,651,8,urn:cite:phoros:places.136,2400.0),Payment(ΠΙΤΑΝΑΙΟΙ,652,8,urn:cite:phoros:places.11,100.0),Payment(ΓΡΥΝΕΙΕΣ,653,8,urn:cite:phoros:places.97,100.0),Payment(ΧΕΡΡΟΝΕΣΙΟΙ,654,8,urn:cite:phoros:places.164,1800.0),Payment(ΠΥΡΝΙΟΙ,655,8,urn:cite:phoros:places.126,100.0),Payment(ΝΕΑΠΟΛΙΣ,656,8,urn:cite:phoros:places.30,100.0),Payment(ΚΥΛΑΝΤΙΟΙ,657,8,urn:cite:phoros:places.67,1200.0),Payment(ΚΥΡΒΙΣΕΣ,658,8,urn:cite:phoros:places.41,200.0),Payment(ΧΙΟΙ,659,8,urn:cite:phoros:places.68,200.0),Payment(ΑΦΥΤΑΙΟΙ,660,8,urn:cite:phoros:places.105,1800.0),Payment(ΣΥΑΓΓΕΛΕΣ,661,8,urn:cite:phoros:places.203,600.0),Payment(ΤΕΡΜΕΡΕΣ,662,8,urn:cite:phoros:places.48,1500.0),Payment(ΜΑΡΟΝΙΤΑΙ,664,8,urn:cite:phoros:places.32,900.0),Payment(ΘΕΡΜΑΙΟΙ,665,8,urn:cite:phoros:places.8,300.0),Payment(ΟΙΝΑΙΟΙ,666,8,urn:cite:phoros:places.34,600.0),Payment(ΧΑΛΚΕΑΤΑΙ,667,8,urn:cite:phoros:places.175,300.0),Payment(ΛΕΒΕΔΙΟΙ,668,8,urn:cite:phoros:places.174,1800.0),Payment(ΑΙΝΕΑΤΑΙ,669,8,urn:cite:phoros:places.182,1800.0),Payment(ΗΑΙΣΟΝΙΟΙ,670,8,urn:cite:phoros:places.162,150.0),Payment(ΔΙΚΑΙΟΠΟΛΙΤΑΙ,671,8,urn:cite:phoros:places.43,600.0),Payment(ΚΑΥΝΙΟΙ,674,8,urn:cite:phoros:places.110,300.0),Payment(ΘΑΣΘΑΡΕΣ,675,8,urn:cite:phoros:places.163,50.0),Payment(ΛΕΦΣΙΜΑΝΔΟΙ,676,8,urn:cite:phoros:places.83,150.0),Payment(ΝΑΧΣΙΑΤΑΙ,677,8,urn:cite:phoros:places.6,50.0),Payment(ΚΑΣΟΛΑΒΕΣ,678,8,urn:cite:phoros:places.50,250.0),Payment(ΜΥΔΟΝΕΣ,679,8,urn:cite:phoros:places.71,150.0),Payment(ΤΕΛΑΝΔΡΙΟΙ,680,8,urn:cite:phoros:places.173,150.0),Payment(ΦΕΓΕΤΙΟΙ,681,8,urn:cite:phoros:places.156,160.0),Payment(ΚΑΡΒΑΣΥΑΝΔΕΣ,682,8,urn:cite:phoros:places.46,100.0),Payment(ΑΥΛΙΑΤΑΙ,683,8,urn:cite:phoros:places.76,50.0),Payment(ΚΡΥΕΣ,684,8,urn:cite:phoros:places.21,200.0),Payment(ΦΑΡΒΕΛΙΟΙ,685,8,urn:cite:phoros:places.2,100.0),Payment(ΜΥΝΔΙΟΙ,686,8,urn:cite:phoros:places.96,50.0),Payment(ΛΙΝΔΙΟΙ,687,8,urn:cite:phoros:places.33,6000.0),Payment(ΠΕΔΙΕΣ,688,8,urn:cite:phoros:places.205,200.0),Payment(ΘΥΣΣΙΟΙ,689,8,urn:cite:phoros:places.12,900.0),Payment(ΧΑΛΧΕΔΟΝΙΟΙ,690,8,urn:cite:phoros:places.115,5400.0),Payment(ΣΕΛΥΜΒΡΙΑΝΟΙ,691,8,urn:cite:phoros:places.159,3600.0),Payment(ΣΙΝΓΙΟΙ,698,8,urn:cite:phoros:places.60,1200.0),Payment(ΠΑΡΠΑΡΙΟΙ,699,8,urn:cite:phoros:places.151,100.0),Payment(ΣΚΑΦΣΑΙΟΙ,700,8,urn:cite:phoros:places.131,100.0),Payment(ΣΕΡΜΕΣ,701,8,urn:cite:phoros:places.188,50.0),Payment(ΙΚΙΟΙ,702,8,urn:cite:phoros:places.157,150.0),Payment(ΣΙΓΕΙΕΣ,703,8,urn:cite:phoros:places.193,100.0),Payment(ΗΑΡΠΑΓΙΟΙ,704,8,urn:cite:phoros:places.213,30.0),Payment(ΠΕΠΑΡΕΘΙΟΙ,705,8,urn:cite:phoros:places.22,1800.0),Payment(ΚΥΘΝΙΟΙ,706,8,urn:cite:phoros:places.194,1800.0),Payment(ΔΑΡΔΑΝΕΣ,707,8,urn:cite:phoros:places.158,600.0),Payment(ΠΡΙΑΝΕΣ,708,8,urn:cite:phoros:places.101,600.0),Payment(ΣΤΥΡΕΣ,709,8,urn:cite:phoros:places.195,600.0),Payment(ΑΘΕΝΑΙΟΙ,710,8,urn:cite:phoros:places.121,200.0),Payment(ΒΕΡΥΣΙΟΙ,711,8,urn:cite:phoros:places.75,100.0),Payment(ΧΑΛΚΙΔΕΣ,713,8,urn:cite:phoros:places.215,3000.0),Payment(ΝΕΟΠΟΛΙΤΑΙ,714,8,urn:cite:phoros:places.30,300.0),Payment(ΛΑΜΠΟΝΕΙΑ,715,8,urn:cite:phoros:places.37,100.0),Payment(ΠΑΙΣΕΝΟΙ,716,8,urn:cite:phoros:places.116,100.0),Payment(ΠΕΡΚΟΤΕ,717,8,urn:cite:phoros:places.123,100.0),Payment(ΗΕΣΣΙΟΙ,718,8,urn:cite:phoros:places.35,600.0),Payment(ΒΕΡΓΑΙΟΙ,723,8,urn:cite:phoros:places.133,324.0),Payment(ΘΑΣΙΟΙ,724,8,urn:cite:phoros:places.61,324.0),Payment(ΚΥΖΙΚΕΝΟΙ,725,8,urn:cite:phoros:places.140,432.0),Payment(ΕΦΑΙΣΣΤΙΕΣ,726,8,urn:cite:phoros:places.94,216.0),Payment(ΛΙΜΝΙΟΙ,727,8,urn:cite:phoros:places.216,200.0),Payment(ΔΑΡΔΑΝΕΣ,729,8,urn:cite:phoros:places.158,324.0),Payment(ΕΛΑΙΟΣΙΟΙ,730,8,urn:cite:phoros:places.212,300.0),Payment(ΣΙΓΕΙΕΣ,731,8,urn:cite:phoros:places.193,24.0),Payment(ΤΕΝΕΔΙΟΙ,732,8,urn:cite:phoros:places.107,324.0),Payment(ΒΥΖΑΝΤΙΟΙ,733,8,urn:cite:phoros:places.139,2880.0),Payment(ΒΥΖΑΝΤΙΟΙ,734,8,urn:cite:phoros:places.139,2384.0),Payment(ΕΣΕΙΟΝΑΗΑΒΔΕΡΙ,735,8,urn:cite:phoros:places.52,600.0),Payment(ΑΙΝΙΟΙ,736,8,urn:cite:phoros:places.5,855.5),Payment(ΜΙΛΕΣΙΟΙ,738,8,urn:cite:phoros:places.117,6000.0),Payment(ΛΑΤΜΙΟΙ,739,8,urn:cite:phoros:places.99,600.0),Payment(ΜΥΕΣΣΙΟΙ,740,8,urn:cite:phoros:places.119,600.0),Payment(ΕΦΕΣΙΟΙ,741,8,urn:cite:phoros:places.4,4500.0),Payment(ΙΑΣΕΣ,742,8,urn:cite:phoros:places.199,600.0),Payment(ΚΙΝΔΥΕΣ,743,8,urn:cite:phoros:places.102,600.0),Payment(ΣΑΝΑΙΟΙ,744,8,urn:cite:phoros:places.14,600.0),Payment(ΣΥΡΙΟΙ,745,8,urn:cite:phoros:places.135,100.0),Payment(ΟΘΟΡΙΟΙ,746,8,urn:cite:phoros:places.206,50.0),Payment(ΚΕΒΡΕΝΙΟΙ,747,8,urn:cite:phoros:places.49,1800.0),Payment(ΚΟΔΑΠΕΣ,748,8,urn:cite:phoros:places.90,100.0),Payment(ΚΥΔΑΙΕΣ,749,8,urn:cite:phoros:places.168,40.0),Payment(ΔΙΟΣΙΡΙΤΑΙ,750,8,urn:cite:phoros:places.25,100.0),Payment(ΧΑΛΚΕΤΟΡΕΣ,751,8,urn:cite:phoros:places.167,210.0),Payment(ΚΛΑΖΟΜΕΝΙΟΙ,753,8,urn:cite:phoros:places.44,900.0),Payment(ΗΑΒΔΕΡΙΤΑΙ,754,8,urn:cite:phoros:places.52,9000.0),Payment(ΚΑΛΥΔΝΙΟΙ,755,8,urn:cite:phoros:places.109,900.0),Payment(ΝΟΤΙΕΣ,756,8,urn:cite:phoros:places.24,200.0),Payment(ΓΑΡΓΑΡΕΣ,757,8,urn:cite:phoros:places.118,450.0),Payment(ΦΑΣΕΛΙΤΑΙ,758,8,urn:cite:phoros:places.47,1800.0),Payment(ΔΙΕΣ,759,8,urn:cite:phoros:places.16,600.0),Payment(ΚΝΙΔΙΟΙ,760,8,urn:cite:phoros:places.125,300.0),Payment(ΣΠΑΡΤΟΛΙΟΙ,761,8,urn:cite:phoros:places.26,1200.0),Payment(ΣΤΡΕΦΣΑΙΟΙ,762,8,urn:cite:phoros:places.39,600.0),Payment(ΚΕΔΡΙΑΤΑΙ,763,8,urn:cite:phoros:places.64,300.0),Payment(ΙΕΛΥΣΙΟΙ,764,8,urn:cite:phoros:places.128,6000.0),Payment(ΑΣΣΤΥΠΑΛΑΙΕΣ,765,8,urn:cite:phoros:places.92,1200.0),Payment(ΣΕΡΒΥΛΙΕΣ,766,8,urn:cite:phoros:places.56,1800.0),Payment(ΣΚΑΒΛΑΙΟΙ,767,8,urn:cite:phoros:places.54,300.0),Payment(ΜΕΝΔΑΙΟΙ,768,8,urn:cite:phoros:places.112,9000.0),Payment(ΣΤΟΛΙΟΙ,769,8,urn:cite:phoros:places.58,500.0),Payment(ΗΕΔΡΟΛΙΟΙ,770,8,urn:cite:phoros:places.207,100.0),Payment(ΡΕΝΑΙΕΣ,771,8,urn:cite:phoros:places.148,30.0),Payment(ΠΡΙΑΠΕΣ,772,8,urn:cite:phoros:places.127,50.0),Payment(ΗΕΣΣΤΙΑΙΕΣ,773,8,urn:cite:phoros:places.196,98.0),Payment(ΚΟΙΟΙ,774,8,urn:cite:phoros:places.160,2196.0),Payment(ΦΟΚΑΙΕΣ,775,8,urn:cite:phoros:places.38,1800.0),Payment(ΠΑΛΑΙΠΕΡΚΟΣΙΟΙ,776,8,urn:cite:phoros:places.153,100.0),Payment(ΓΑΛΕΦΣΙΟΙ,777,8,urn:cite:phoros:places.208,720.0),Payment(ΒΑΡΓΥΛΙΕΣ,778,8,urn:cite:phoros:places.103,400.0),Payment(ΣΑΜΟΘΡΑΙΚΕΣ,779,8,urn:cite:phoros:places.93,3600.0),Payment(ΑΣΣΕΡΙΤΑΙ,780,8,urn:cite:phoros:places.55,2400.0),Payment(ΔΙΚΑΙΑ,781,8,urn:cite:phoros:places.51,300.0),Payment(ΔΙΕΣ,782,8,urn:cite:phoros:places.16,200.0),Payment(ΕΥΡΥΜΑΧΙΤΑΙ,783,8,urn:cite:phoros:places.209,100.0),Payment(ΒΡΥΚΟΝΤΙΟΙ,784,8,urn:cite:phoros:places.210,50.0),Payment(ΚΙΑΝΟΙ,785,8,urn:cite:phoros:places.72,100.0),Payment(ΑΡΚΕΣΣΕΙΑ,786,8,urn:cite:phoros:places.180,100.0),Payment(ΗΥΜΙΣΣΕΣ,787,8,urn:cite:phoros:places.161,120.0),Payment(ΥΔΙΣΣΕΣ,788,8,urn:cite:phoros:places.211,600.0),Payment(ΗΑΙΡΑΙΟΙ,789,8,urn:cite:phoros:places.27,1800.0),Payment(ΔΑΜΝΙΟΤΕΙΧΙΤΑΙ,790,8,urn:cite:phoros:places.130,100.0),Payment(ΠΑΡΙΟΙ,791,8,urn:cite:phoros:places.192,9720.0),Payment(ΝΑΧΣΙΟΙ,792,8,urn:cite:phoros:places.197,4000.0),Payment(ΚΑΡΥΣΤΙΟΙ,793,8,urn:cite:phoros:places.149,3000.0),Payment(ΚΕΙΟΙ,794,8,urn:cite:phoros:places.166,2400.0),Payment(ΣΕΡΙΦΙΟΙ,795,8,urn:cite:phoros:places.146,600.0),Payment(ΛΑΜΦΣΑΚΕΝΟΙ,796,8,urn:cite:phoros:places.95,360.0),Payment(ΑΙΓΑΝΤΙΟΙ,797,8,urn:cite:phoros:places.143,300.0),Payment(ΤΕΝΙΟΙ,798,8,urn:cite:phoros:places.190,1800.0),Payment(ΤΕΙΟΙ,799,8,urn:cite:phoros:places.152,3600.0),Payment(ΑΝΔΡΙΟΙ,800,8,urn:cite:phoros:places.145,3600.0),Payment(ΜΥΚΟΝΙΟΙ,801,8,urn:cite:phoros:places.114,900.0),Payment(ΕΡΕΤΡΙΕΣ,804,8,urn:cite:phoros:places.214,3600.0),Payment(ΒΡΥΓΧΕΙΕΣ,805,8,urn:cite:phoros:places.150,100.0),Payment(ΣΙΦΝΙΟΙ,806,8,urn:cite:phoros:places.191,1800.0),Payment(ΤΟΡΟΝΑΙΟΙ,807,8,urn:cite:phoros:places.13,7200.0),Payment(ΔΙΔΥΜΟΤΕΙΧΙΤΑΙ,809,8,urn:cite:phoros:places.42,100.0),Payment(ΣΑΝΑΙΟΙ,810,8,urn:cite:phoros:places.14,100.0),Payment(ΤΟΡΟΝΑΙΟΙ,811,8,urn:cite:phoros:places.13,2456.0),Payment(ΚΟΙΟΙ,812,8,urn:cite:phoros:places.160,216.0),Payment(ΜΑΔΝΑΣΕΣ,813,8,urn:cite:phoros:places.7,600.0),Payment(ΠΕΛΕΙΑΤΑΙ,814,8,urn:cite:phoros:places.98,300.0),Payment(ΜΥΛΑΣΕΣ,815,8,urn:cite:phoros:places.176,600.0),Payment(ΗΥΡΟΜΕΣ,816,8,urn:cite:phoros:places.217,250.0),Payment(ΚΑΡΥΑΝΓΕΣ,817,8,urn:cite:phoros:places.111,50.0),Payment(ΕΣΣΤΕΝΕΔΟΝ,818,8,urn:cite:phoros:places.107,216.0),Payment(ΕΚΣΤΕΝΕΔΟΝ,819,8,urn:cite:phoros:places.107,216.0),Payment(ΕΡΥΘΡΑΙΟΙ,820,8,urn:cite:phoros:places.198,200.0),Payment(ΙΜΒΡΙΟΙ,822,8,urn:cite:phoros:places.218,1626.0),Payment(ΕΦΑΙΣΣΤΙΕΣ,823,8,urn:cite:phoros:places.94,1064.0)

4 Payment(ΦΑΣΕΛΙΤΑΙ,251,4,urn:cite:phoros:places.47,3600.0),Payment(ΑΦΥΤΑΙΟΙ,254,4,urn:cite:phoros:places.105,1800.0),Payment(ΑΙΓΑΝΤΙΟΙ,255,4,urn:cite:phoros:places.143,300.0),Payment(ΜΕΝΔΑΙΟΙ,256,4,urn:cite:phoros:places.112,4800.0),Payment(ΣΚΑΦΣΑΙΟΙ,257,4,urn:cite:phoros:places.131,100.0),Payment(ΝΕΟΠΟΛΙΤΑΙ,258,4,urn:cite:phoros:places.144,300.0),Payment(ΜΥΚΟΝΙΟΙ,260,4,urn:cite:phoros:places.114,900.0),Payment(ΚΑΣΟΛΑΒΕΣ,261,4,urn:cite:phoros:places.50,250.0),Payment(ΛΕΦΣΙΜΑΝ ΙΟΙ,262,4,urn:cite:phoros:places.83,150.0),Payment(ΚΕΔΡΙΕΤΑΙ,263,4,urn:cite:phoros:places.64,300.0),Payment(ΚΝΙΔΙΟΙ,264,4,urn:cite:phoros:places.125,1800.0),Payment(ΧΕΡΡΟΝΕΣΙΤΑΙ,265,4,urn:cite:phoros:places.18,1800.0),Payment(ΠΥΡΝΙΟΙ,266,4,urn:cite:phoros:places.126,100.0),Payment(ΚΑΥΝΙΟΙ,267,4,urn:cite:phoros:places.110,300.0),Payment(ΑΝΔΡΙΟΙ,268,4,urn:cite:phoros:places.145,7200.0),Payment(ΣΕΡΙΦΙΟΙ,269,4,urn:cite:phoros:places.146,1200.0),Payment(ΚΟΡΕΣΙΟΙ,270,4,urn:cite:phoros:places.147,1350.0),Payment(ΡΕΝΑΙΕΣ,271,4,urn:cite:phoros:places.148,100.0),Payment(ΚΑΡΥΣΤΙΟΙ,272,4,urn:cite:phoros:places.149,4500.0),Payment(ΓΡΥΝΧΕΣ,273,4,urn:cite:phoros:places.150,100.0),Payment(ΔΙΚΑΙΑ,274,4,urn:cite:phoros:places.51,300.0),Payment(ΟΛΟΦΥΧΣΙΟΙ,275,4,urn:cite:phoros:places.15,200.0),Payment(ΔΙΕΣ,276,4,urn:cite:phoros:places.16,600.0),Payment(ΔΙΕΣ,277,4,urn:cite:phoros:places.16,100.0),Payment(ΚΟ ΔΑΠΕΣ,278,4,urn:cite:phoros:places.90,100.0),Payment(ΠΕΔΑΣΕΣ,279,4,urn:cite:phoros:places.100,1200.0),Payment(ΗΑΛΙΚΑΡΝΑΣΙΟΙ,280,4,urn:cite:phoros:places.38,1000.0),Payment(ΚΥΛΛΑΝΤΙΟΙ,281,4,urn:cite:phoros:places.67,1200.0),Payment(ΚΥΡΒΙΣΣΕΣ,282,4,urn:cite:phoros:places.41,200.0),Payment(ΘΕΡΜΑΙΟΙ,283,4,urn:cite:phoros:places.8,300.0),Payment(ΚΑΡΒΑΣΥΑΝΔΕΣ,285,4,urn:cite:phoros:places.46,100.0),Payment(ΚΡΥΕΣ,286,4,urn:cite:phoros:places.21,200.0),Payment(ΑΥΛΕΑΤΑΙ,287,4,urn:cite:phoros:places.76,50.0),Payment(ΚΛΑΖΟΜΕΝΙΟ Ι,288,4,urn:cite:phoros:places.44,900.0),Payment(ΠΑΡΠΑΡΙΟΤΑΙ,289,4,urn:cite:phoros:places.151,100.0),Payment(ΟΙΝΑΙΟΙ,290,4,urn:cite:phoros:places.34,800.0),Payment(ΤΕΡΜΕΡΕΣ,292,4,urn:cite:phoros:places.48,1500.0),Payment(ΤΕΙΟΙ,293,4,urn:cite:phoros:places.152,3600.0),Payment(ΦΟΚΑΙΕΣ,294,4,urn:cite:phoros:places.148,1800.0),Payment(ΠΑΛΑΙΠΕΡΚΟΣΙΟΙ,295,4,urn:cite:phoros:places.153,100.0),Payment(ΚΑΜΕΡΕΣ,296,4,urn:cite:phoros:places.20,5400.0),Payment(ΛΑΤΜΙΟΙ,297,4,urn:cite:phoros:places.99,600.0),Payment(ΣΙΝΓΙΟΙ,298,4,urn:cite:phoros:places.60,2400.0),Payment(ΜΑΡΟΝΙΤΑΙ,299,4,urn:cite:phoros:places.32,300.0),Payment(ΣΕΡΜΥΛΙΕΣ,300,4,urn:cite:phoros:places.56,3550.0),Payment(ΘΥΣΙΟΙ,301,4,urn:cite:phoros:places.12,400.0),Payment(ΚΥΜΑΙΟΙ,302,4,urn:cite:phoros:places.136,7200.0),Payment(ΚΑΛΥΔ ΝΙΟΙ,303,4,urn:cite:phoros:places.109,900.0),Payment(ΛΕΒΕ ΔΙΟΙ,304,4,3,1800.0),Payment(ΠΟΛΙΧΝΑΙΟΙ ΚΑΡΕΣ,305,4,urn:cite:phoros:places.154,100.0),Payment(ΑΣΣΕΡΙΤΑΙ,306,4,urn:cite:phoros:places.55,2400.0),Payment(ΠΑΣΑΝΔΕΣ,307,4,urn:cite:phoros:places.155,300.0),Payment(ΠΙΤΑΝΑΙΟΙ,308,4,urn:cite:phoros:places.11,100.0),Payment(ΒΑΡΓΥΛΙΕΣ,309,4,urn:cite:phoros:places.103,100.0),Payment(ΜΥΝΔΙΟΙ,310,4,urn:cite:phoros:places.96,50.0),Payment(ΣΑΜΟΘΡΑΙΚΕΣ,311,4,urn:cite:phoros:places.93,3600.0),Payment(ΦΕΓΕΤΙΟΙ,313,4,urn:cite:phoros:places.156,160.0),Payment(ΙΚΙΟΙ,314,4,urn:cite:phoros:places.157,150.0),Payment(ΠΕΠΑΡΕΘΙΟΙ,315,4,urn:cite:phoros:places.22,1800.0),Payment(ΘΑΣΙΟΙ,316,4,urn:cite:phoros:places.61,1800.0),Payment(ΛΑΜΦΣΑΚΕΝΟΙ,317,4,urn:cite:phoros:places.95,7200.0),Payment(ΝΟΤΙΕΣ,318,4,urn:cite:phoros:places.24,200.0),Payment(ΕΛΑΥΤΑΙ,319,4,urn:cite:phoros:places.3,100.0),Payment(ΠΑΙΣΕΝΟΙ,320,4,urn:cite:phoros:places.116,100.0),Payment(ΠΕΡΚΟΣΙΟΙ,321,4,urn:cite:phoros:places.123,100.0),Payment(ΔΑΡΔΑΝΕΣ,322,4,urn:cite:phoros:places.158,900.0),Payment(ΚΟΛΟΦΟΝΙΟΙ,323,4,urn:cite:phoros:places.23,1800.0),Payment(ΑΙΝΙΑΤΑΙ,324,4,urn:cite:phoros:places.5,1800.0),Payment(ΝΑΧΣΙΑΤΑΙ,325,4,urn:cite:phoros:places.6,100.0),Payment(ΣΕΛΥΝ ΒΡΙΑΝΙΟΙ,326,4,urn:cite:phoros:places.159,3600.0),Payment(ΚΟΙΟΙ,327,4,urn:cite:phoros:places.160,3000.0),Payment(ΟΛΥΝΘΙΟΙ,328,4,urn:cite:phoros:places.53,1200.0),Payment(ΣΚΑΒΛΑΙΟΙ,329,4,urn:cite:phoros:places.54,300.0),Payment(ΣΤΡΕΦΣΑΙΟΙ,330,4,urn:cite:phoros:places.39,600.0),Payment(ΗΥΜΙΣΣΕΣ,331,4,urn:cite:phoros:places.161,120.0),Payment(ΕΣΣΙΟΙ,333,4,urn:cite:phoros:places.35,600.0),Payment(ΝΕΑΝΔΡΕΙΑ,334,4,urn:cite:phoros:places.36,200.0),Payment(ΛΑΜΠΟΝΕΣ,335,4,urn:cite:phoros:places.37,100.0),Payment(ΚΕΡΑΜΕΣ,338,4,urn:cite:phoros:places.65,900.0),Payment(ΑΙΣΟΝ,339,4,urn:cite:phoros:places.162,150.0),Payment(ΝΑΡΙΣΒΑΡΕΣ,340,4,urn:cite:phoros:places.70,100.0),Payment(ΘΑΣΘΑΡΕΣ,341,4,urn:cite:phoros:places.163,50.0),Payment(ΜΥΡΙΝΑΙΟΙ,342,4,urn:cite:phoros:places.120,600.0),Payment(ΑΖΕΙΟΙ,343,4,urn:cite:phoros:places.132,40.0),Payment(ΙΕΛΥΣΙΟΙ,344,4,urn:cite:phoros:places.128,6000.0),Payment(ΣΠΑΡΤΟΛΙΟΙ,345,4,urn:cite:phoros:places.26,1200.0),Payment(ΧΑΛΚΕΤΟΡΕΣ,348,4,urn:cite:phoros:places.167,200.0),Payment(ΚΥΔΑΙΕΣ,349,4,urn:cite:phoros:places.168,40.0),Payment(ΗΥΒΛΙΣΕΣ,350,4,urn:cite:phoros:places.169,106.0),Payment(ΟΡΑΝΙΕΤΑΙ,351,4,urn:cite:phoros:places.87,50.0),Payment(ΚΙΛΛΑΡΕΣ,352,4,urn:cite:phoros:places.170,100.0),Payment(ΘΥΔΟΝΟΣ,353,4,urn:cite:phoros:places.171,100.0),Payment(ΣΙΛΟΙ,354,4,urn:cite:phoros:places.172,150.0),Payment(ΤΕΛΑΝΔΡΙΟΙ,355,4,urn:cite:phoros:places.173,600.0)

Showing 7 of 7 records

Ò ƨ

Show:

10

5. Sum up obols in map of records by yearNow that we've grouped payments together by year, we want to focus on the number of obols in each payment

record.

Recall from the introductory video that transforming a key->value cluster with the map function works just a little

differently from transforming a simple list: we use the case construction to match items that have a key->value

pairing. Here, the values are the clusters of payments we grouped together: lists of payment records. We want to

replace each full payment record with just the number of obols. (That's what v.map(rec => rec.obols) does

below.) That leaves a list of numbers, that we can then total up with the sum function.

All of that happens in the first line below! The result is a new key->value pairing, but now years are associated with

the total number of obols recorded for that year.

In the second line, we sort the pairing by its first item, the year, so we can graph and view this in year order.

val byYear = payments.groupBy(_.year)

// Map of year numbers to Payment instancesbyYear

Page 6: 1 annual total amount - College of the Holy Crossshot.holycross.edu/courses/ICA/F16/notebooks/tribute/1_annual_tot… · Athenian tribute lists: what records are preserved? Caculating

10/27/2016 1_annual_total_amount

http://127.0.0.1:9000/notebooks/ICA/1_annual_total_amount.snb 6/7

Build: |  buildTime-Thu Sep 22 14:37:57 UTC 2016 | formattedShaVersion-0.7.0-SNAPSHOT-f6cd60a95cfc19cbae80285f187da9baec04e436 | sbtVersion-0.13.8 | scalaVersion-2.11.8 | sparkNotebookVersion-0.7.0-SNAPSHOT | hadoopVersion-2.7.2 | jets3tVersion-0.7.1 | jlineDef-(jline,2.12) | sparkVersion-2.0.0 | withHive-false |.

Took: 2 seconds 785 milliseconds, at 2016-10-27 7:27

7 entries total

Ò Ɖ DZ � ƨ

1 2 3 4 5

_2

0

20000

40000

60000

80000

100000

120000

140000

160000

180000

200000

_2

What does this graph tell us about the preservation of the Tribute List records?

val annualObols = byYear.map { case (k,v) => (k, v.map(rec => rec.obols).sum ) }

// Map of years to total obols per year, sorted by key:annualObols.toSeq.sortBy(_._1)

Page 7: 1 annual total amount - College of the Holy Crossshot.holycross.edu/courses/ICA/F16/notebooks/tribute/1_annual_tot… · Athenian tribute lists: what records are preserved? Caculating

10/27/2016 1_annual_total_amount

http://127.0.0.1:9000/notebooks/ICA/1_annual_total_amount.snb 7/7