Compare commits

..

No commits in common. "master" and "upgrades-and-filament" have entirely different histories.

22 changed files with 5360 additions and 435 deletions

View File

@ -102,7 +102,7 @@ class TabulateWinners extends Command
return $peoplesChoice2ndWinnerQuery->vehicle; return $peoplesChoice2ndWinnerQuery->vehicle;
} }
function zeroTo42Winner() function zeroTo43Winner()
{ {
$zeroTo43Query = VehicleScores::join('vehicles', 'vehicle_scores.vehicle', '=', 'vehicles.id') $zeroTo43Query = VehicleScores::join('vehicles', 'vehicle_scores.vehicle', '=', 'vehicles.id')
->groupBy('vehicles.id') ->groupBy('vehicles.id')
@ -111,59 +111,91 @@ class TabulateWinners extends Command
$query->select('vehicle')->from('car_show_winners'); $query->select('vehicle')->from('car_show_winners');
}) })
->where('vehicles.year', '>=', 0) ->where('vehicles.year', '>=', 0)
->where('vehicles.year', '<=', 1942) ->where('vehicles.year', '<=', 1943)
->where('vehicles.doNotJudge', '=', 0) ->where('vehicles.doNotJudge', '=', 0)
->orderBy('totalscore','desc') ->orderBy('totalscore','desc')
->first(); ->first();
return $zeroTo43Query->vehicle; return $zeroTo43Query->vehicle;
} }
function fortyThreeToSixtySevenWinner() function zeroTo432ndWinner()
{ {
$fortyThreeToSixtySevenQuery = VehicleScores::join('vehicles', 'vehicle_scores.vehicle', '=', 'vehicles.id') $zeroTo432ndQuery = VehicleScores::join('vehicles', 'vehicle_scores.vehicle', '=', 'vehicles.id')
->groupBy('vehicles.id') ->groupBy('vehicles.id')
->selectRaw('*, sum(vehicle_scores.overall_score) as totalscore') ->selectRaw('*, sum(vehicle_scores.overall_score) as totalscore')
->whereNotIn('vehicle_scores.vehicle', function($query){ ->whereNotIn('vehicle_scores.vehicle', function($query){
$query->select('vehicle')->from('car_show_winners'); $query->select('vehicle')->from('car_show_winners');
}) })
->where('vehicles.year', '>=', 1943) ->where('vehicles.year', '>=', 0)
->where('vehicles.year', '<=', 1967) ->where('vehicles.year', '<=', 1943)
->where('vehicles.doNotJudge', '=', 0) ->where('vehicles.doNotJudge', '=', 0)
->orderBy('totalscore','desc') ->orderBy('totalscore','desc')
->first(); ->first();
return $fortyThreeToSixtySevenQuery->vehicle; return $zeroTo432ndQuery->vehicle;
} }
function sixtyEightToNinetyEightWinner() function fortyFourToNinetySevenWinner()
{ {
$sixtyEightToNinetyEightQuery = VehicleScores::join('vehicles', 'vehicle_scores.vehicle', '=', 'vehicles.id') $fortyFourToNinetySevenQuery = VehicleScores::join('vehicles', 'vehicle_scores.vehicle', '=', 'vehicles.id')
->groupBy('vehicles.id') ->groupBy('vehicles.id')
->selectRaw('*, sum(vehicle_scores.overall_score) as totalscore') ->selectRaw('*, sum(vehicle_scores.overall_score) as totalscore')
->whereNotIn('vehicle_scores.vehicle', function($query){ ->whereNotIn('vehicle_scores.vehicle', function($query){
$query->select('vehicle')->from('car_show_winners'); $query->select('vehicle')->from('car_show_winners');
}) })
->where('vehicles.year', '>=', 1968) ->where('vehicles.year', '>=', 1944)
->where('vehicles.year', '<=', 1998) ->where('vehicles.year', '<=', 1997)
->where('vehicles.doNotJudge', '=', 0) ->where('vehicles.doNotJudge', '=', 0)
->orderBy('totalscore','desc') ->orderBy('totalscore','desc')
->first(); ->first();
return $sixtyEightToNinetyEightQuery->vehicle; return $fortyFourToNinetySevenQuery->vehicle;
} }
function NinetyNineToCurrentWinner() function fortyFourToNinetySeven2ndWinner()
{ {
$NinetyNineToCurrentQuery = VehicleScores::join('vehicles', 'vehicle_scores.vehicle', '=', 'vehicles.id') $fortyFourToNinetySeven2ndQuery = VehicleScores::join('vehicles', 'vehicle_scores.vehicle', '=', 'vehicles.id')
->groupBy('vehicles.id') ->groupBy('vehicles.id')
->selectRaw('*, sum(vehicle_scores.overall_score) as totalscore') ->selectRaw('*, sum(vehicle_scores.overall_score) as totalscore')
->whereNotIn('vehicle_scores.vehicle', function($query){ ->whereNotIn('vehicle_scores.vehicle', function($query){
$query->select('vehicle')->from('car_show_winners'); $query->select('vehicle')->from('car_show_winners');
}) })
->where('vehicles.year', '>=', 1999) ->where('vehicles.year', '>=', 1944)
->where('vehicles.year', '<=', 1997)
->where('vehicles.doNotJudge', '=', 0)
->orderBy('totalscore','desc')
->first();
return $fortyFourToNinetySeven2ndQuery->vehicle;
}
function NinetyEightToCurrentWinner()
{
$NinetyEightToCurrentQuery = VehicleScores::join('vehicles', 'vehicle_scores.vehicle', '=', 'vehicles.id')
->groupBy('vehicles.id')
->selectRaw('*, sum(vehicle_scores.overall_score) as totalscore')
->whereNotIn('vehicle_scores.vehicle', function($query){
$query->select('vehicle')->from('car_show_winners');
})
->where('vehicles.year', '>=', 1998)
//->where('vehicles.year', '<=', 1997) //->where('vehicles.year', '<=', 1997)
->where('vehicles.doNotJudge', '=', 0) ->where('vehicles.doNotJudge', '=', 0)
->orderBy('totalscore','desc') ->orderBy('totalscore','desc')
->first(); ->first();
return $NinetyNineToCurrentQuery->vehicle; return $NinetyEightToCurrentQuery->vehicle;
}
function NinetyEightToCurrent2ndWinner()
{
$NinetyEightToCurrent2ndQuery = VehicleScores::join('vehicles', 'vehicle_scores.vehicle', '=', 'vehicles.id')
->groupBy('vehicles.id')
->selectRaw('*, sum(vehicle_scores.overall_score) as totalscore')
->whereNotIn('vehicle_scores.vehicle', function($query){
$query->select('vehicle')->from('car_show_winners');
})
->where('vehicles.year', '>=', 1998)
//->where('vehicles.year', '<=', 1997)
->where('vehicles.doNotJudge', '=', 0)
->orderBy('totalscore','desc')
->first();
return $NinetyEightToCurrent2ndQuery->vehicle;
} }
// Truncate table first // Truncate table first
@ -178,7 +210,18 @@ class TabulateWinners extends Command
'vehicle' => bestInShowWinner() 'vehicle' => bestInShowWinner()
] ]
); );
/*
//Insert Best In Show 2nd Place Winner
CarShowWinner::updateOrCreate(
[
'category' => '6',
'place' => 'second'
],
[
'vehicle' => bestInShow2ndWinner()
]
);
*/
//Insert People's Choice Winner //Insert People's Choice Winner
CarShowWinner::updateOrCreate( CarShowWinner::updateOrCreate(
[ [
@ -189,94 +232,59 @@ class TabulateWinners extends Command
'vehicle' => pcWinner() 'vehicle' => pcWinner()
] ]
); );
/*
//Insert Year Award Winners
//0-1942
CarShowWinner::updateOrCreate(
[
'category' => '17',
'place' => 'first'
],
[
'vehicle' => zeroTo42Winner()
]
);
CarShowWinner::updateOrCreate(
[
'category' => '17',
'place' => 'second'
],
[
'vehicle' => zeroTo42Winner()
]
);
CarShowWinner::updateOrCreate(
[
'category' => '17',
'place' => 'third'
],
[
'vehicle' => zeroTo42Winner()
]
);
//1943-1967
CarShowWinner::updateOrCreate(
[
'category' => '18',
'place' => 'first'
],
[
'vehicle' => fortyThreeToSixtySevenWinner()
]
);
CarShowWinner::updateOrCreate(
[
'category' => '18',
'place' => 'second'
],
[
'vehicle' => fortyThreeToSixtySevenWinner()
]
);
CarShowWinner::updateOrCreate(
[
'category' => '18',
'place' => 'third'
],
[
'vehicle' => fortyThreeToSixtySevenWinner()
]
);
//1968-1997
CarShowWinner::updateOrCreate( CarShowWinner::updateOrCreate(
[ [
'category' => '20', 'category' => '3',
'place' => 'first'
],
[
'vehicle' => sixtyEightToNinetyEightWinner()
]
);
CarShowWinner::updateOrCreate(
[
'category' => '20',
'place' => 'second' 'place' => 'second'
], ],
[ [
'vehicle' => sixtyEightToNinetyEightWinner() 'vehicle' => pc2ndWinner()
] ]
); );
*/
//Insert Year Award Winners
//0-1943
CarShowWinner::updateOrCreate( CarShowWinner::updateOrCreate(
[ [
'category' => '20', 'category' => '17',
'place' => 'third' 'place' => 'first'
], ],
[ [
'vehicle' => sixtyEightToNinetyEightWinner() 'vehicle' => zeroTo43Winner()
] ]
); );
CarShowWinner::updateOrCreate(
[
'category' => '17',
'place' => 'second'
],
[
'vehicle' => zeroTo432ndWinner()
]
);
//1944-1997
CarShowWinner::updateOrCreate(
[
'category' => '18',
'place' => 'first'
],
[
'vehicle' => fortyFourToNinetySevenWinner()
]
);
CarShowWinner::updateOrCreate(
[
'category' => '18',
'place' => 'second'
],
[
'vehicle' => fortyFourToNinetySeven2ndWinner()
]
);
//1998-Current //1998-Current
CarShowWinner::updateOrCreate( CarShowWinner::updateOrCreate(
[ [
@ -284,25 +292,17 @@ class TabulateWinners extends Command
'place' => 'first' 'place' => 'first'
], ],
[ [
'vehicle' => NinetyNineToCurrentWinner() 'vehicle' => NinetyEightToCurrentWinner()
] ]
); );
CarShowWinner::updateOrCreate( CarShowWinner::updateOrCreate(
[ [
'category' => '19', 'category' => '19',
'place' => 'second' 'place' => 'second'
], ],
[ [
'vehicle' => NinetyNineToCurrentWinner() 'vehicle' => NinetyEightToCurrent2ndWinner()
]
);
CarShowWinner::updateOrCreate(
[
'category' => '19',
'place' => 'third'
],
[
'vehicle' => NinetyNineToCurrentWinner()
] ]
); );
} }

View File

@ -1,309 +0,0 @@
<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
use App\Models\Bidders;
use App\Models\CarShowCategory;
use App\Models\CarShowWinner;
use App\Models\PeoplesChoice;
use App\Models\Vehicles;
use App\Models\VehicleScores;
use Illuminate\Support\Facades\DB;
class TabulateWinners extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'carshow:tabulatewinners';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Tabulate Show Winners, and add them to the CarShowWinner table';
/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}
/**
* Execute the console command.
*
* @return mixed
*/
public function handle()
{
function bestInShowWinner()
{
$bestInShowWinnerQuery = VehicleScores::join('vehicles', 'vehicle_scores.vehicle', '=', 'vehicles.id')
->groupBy('vehicles.id')
->selectRaw('*, sum(vehicle_scores.overall_score) as totalscore')
->whereNotIn('vehicle_scores.vehicle', function($query){
$query->select('vehicle')->from('car_show_winners');
})
->where('vehicles.doNotJudge', '=', 0)
->orderBy('totalscore','desc')
->first();
return $bestInShowWinnerQuery->vehicle;
}
function bestInShow2ndWinner()
{
$bestInShow2ndWinnerQuery = VehicleScores::join('vehicles', 'vehicle_scores.vehicle', '=', 'vehicles.id')
->groupBy('vehicles.id')
->selectRaw('*, sum(vehicle_scores.overall_score) as totalscore')
->whereNotIn('vehicle_scores.vehicle', function($query){
$query->select('vehicle')->from('car_show_winners');
})
->where('vehicles.doNotJudge', '=', 0)
->orderBy('totalscore','desc')
->first();
return $bestInShow2ndWinnerQuery->vehicle;
}
function pcWinner()
{
$peoplesChoiceWinnerQuery = PeoplesChoice::join('vehicles', 'peoples_choice.vehicle', '=', 'vehicles.id')
->groupBy('peoples_choice.vehicle')
->selectRaw('*, sum(pc_count) as totalscore')
->whereNotIn('vehicle', function($query){
$query->select('vehicle')->from('car_show_winners');
})
->where('vehicles.doNotJudge', '=', 0)
->orderBy('totalscore','desc')
->first();
return $peoplesChoiceWinnerQuery->vehicle;
}
function pc2ndWinner()
{
$peoplesChoice2ndWinnerQuery = PeoplesChoice::join('vehicles', 'peoples_choice.vehicle', '=', 'vehicles.id')
->groupBy('peoples_choice.vehicle')
->selectRaw('*, sum(pc_count) as totalscore')
->whereNotIn('vehicle', function($query){
$query->select('vehicle')->from('car_show_winners');
})
->where('vehicles.doNotJudge', '=', 0)
->orderBy('totalscore','desc')
->first();
return $peoplesChoice2ndWinnerQuery->vehicle;
}
function zeroTo43Winner()
{
$zeroTo43Query = VehicleScores::join('vehicles', 'vehicle_scores.vehicle', '=', 'vehicles.id')
->groupBy('vehicles.id')
->selectRaw('*, sum(vehicle_scores.overall_score) as totalscore')
->whereNotIn('vehicle_scores.vehicle', function($query){
$query->select('vehicle')->from('car_show_winners');
})
->where('vehicles.year', '>=', 0)
->where('vehicles.year', '<=', 1943)
->where('vehicles.doNotJudge', '=', 0)
->orderBy('totalscore','desc')
->first();
return $zeroTo43Query->vehicle;
}
function zeroTo432ndWinner()
{
$zeroTo432ndQuery = VehicleScores::join('vehicles', 'vehicle_scores.vehicle', '=', 'vehicles.id')
->groupBy('vehicles.id')
->selectRaw('*, sum(vehicle_scores.overall_score) as totalscore')
->whereNotIn('vehicle_scores.vehicle', function($query){
$query->select('vehicle')->from('car_show_winners');
})
->where('vehicles.year', '>=', 0)
->where('vehicles.year', '<=', 1943)
->where('vehicles.doNotJudge', '=', 0)
->orderBy('totalscore','desc')
->first();
return $zeroTo432ndQuery->vehicle;
}
function fortyFourToNinetySevenWinner()
{
$fortyFourToNinetySevenQuery = VehicleScores::join('vehicles', 'vehicle_scores.vehicle', '=', 'vehicles.id')
->groupBy('vehicles.id')
->selectRaw('*, sum(vehicle_scores.overall_score) as totalscore')
->whereNotIn('vehicle_scores.vehicle', function($query){
$query->select('vehicle')->from('car_show_winners');
})
->where('vehicles.year', '>=', 1944)
->where('vehicles.year', '<=', 1997)
->where('vehicles.doNotJudge', '=', 0)
->orderBy('totalscore','desc')
->first();
return $fortyFourToNinetySevenQuery->vehicle;
}
function fortyFourToNinetySeven2ndWinner()
{
$fortyFourToNinetySeven2ndQuery = VehicleScores::join('vehicles', 'vehicle_scores.vehicle', '=', 'vehicles.id')
->groupBy('vehicles.id')
->selectRaw('*, sum(vehicle_scores.overall_score) as totalscore')
->whereNotIn('vehicle_scores.vehicle', function($query){
$query->select('vehicle')->from('car_show_winners');
})
->where('vehicles.year', '>=', 1944)
->where('vehicles.year', '<=', 1997)
->where('vehicles.doNotJudge', '=', 0)
->orderBy('totalscore','desc')
->first();
return $fortyFourToNinetySeven2ndQuery->vehicle;
}
function NinetyEightToCurrentWinner()
{
$NinetyEightToCurrentQuery = VehicleScores::join('vehicles', 'vehicle_scores.vehicle', '=', 'vehicles.id')
->groupBy('vehicles.id')
->selectRaw('*, sum(vehicle_scores.overall_score) as totalscore')
->whereNotIn('vehicle_scores.vehicle', function($query){
$query->select('vehicle')->from('car_show_winners');
})
->where('vehicles.year', '>=', 1998)
//->where('vehicles.year', '<=', 1997)
->where('vehicles.doNotJudge', '=', 0)
->orderBy('totalscore','desc')
->first();
return $NinetyEightToCurrentQuery->vehicle;
}
function NinetyEightToCurrent2ndWinner()
{
$NinetyEightToCurrent2ndQuery = VehicleScores::join('vehicles', 'vehicle_scores.vehicle', '=', 'vehicles.id')
->groupBy('vehicles.id')
->selectRaw('*, sum(vehicle_scores.overall_score) as totalscore')
->whereNotIn('vehicle_scores.vehicle', function($query){
$query->select('vehicle')->from('car_show_winners');
})
->where('vehicles.year', '>=', 1998)
//->where('vehicles.year', '<=', 1997)
->where('vehicles.doNotJudge', '=', 0)
->orderBy('totalscore','desc')
->first();
return $NinetyEightToCurrent2ndQuery->vehicle;
}
// Truncate table first
CarShowWinner::truncate();
//Insert Best In Show Winner
CarShowWinner::updateOrCreate(
[
'category' => '6',
'place' => 'first'
],
[
'vehicle' => bestInShowWinner()
]
);
/*
//Insert Best In Show 2nd Place Winner
CarShowWinner::updateOrCreate(
[
'category' => '6',
'place' => 'second'
],
[
'vehicle' => bestInShow2ndWinner()
]
);
*/
//Insert People's Choice Winner
CarShowWinner::updateOrCreate(
[
'category' => '3',
'place' => 'first'
],
[
'vehicle' => pcWinner()
]
);
/*
CarShowWinner::updateOrCreate(
[
'category' => '3',
'place' => 'second'
],
[
'vehicle' => pc2ndWinner()
]
);
*/
//Insert Year Award Winners
//0-1943
CarShowWinner::updateOrCreate(
[
'category' => '17',
'place' => 'first'
],
[
'vehicle' => zeroTo43Winner()
]
);
CarShowWinner::updateOrCreate(
[
'category' => '17',
'place' => 'second'
],
[
'vehicle' => zeroTo432ndWinner()
]
);
//1944-1997
CarShowWinner::updateOrCreate(
[
'category' => '18',
'place' => 'first'
],
[
'vehicle' => fortyFourToNinetySevenWinner()
]
);
CarShowWinner::updateOrCreate(
[
'category' => '18',
'place' => 'second'
],
[
'vehicle' => fortyFourToNinetySeven2ndWinner()
]
);
//1998-Current
CarShowWinner::updateOrCreate(
[
'category' => '19',
'place' => 'first'
],
[
'vehicle' => NinetyEightToCurrentWinner()
]
);
CarShowWinner::updateOrCreate(
[
'category' => '19',
'place' => 'second'
],
[
'vehicle' => NinetyEightToCurrent2ndWinner()
]
);
}
}

View File

@ -10,6 +10,14 @@
<div class="panel-body"> <div class="panel-body">
<form id="bidder_form" required method="post" action="/showcars" enctype="multipart/form-data" class=form-horizontal> <form id="bidder_form" required method="post" action="/showcars" enctype="multipart/form-data" class=form-horizontal>
{{ csrf_field() }} {{ csrf_field() }}
<div class=form-group>
<label for=biddernum class="col-sm-3 col-sm-offset-1 control-label">
Car / Bidder Number:
</label>
<div class=col-sm-2>
<input type="text" name="biddernum" id="biddernum" required class=form-control />
</div>
</div>
<div class=form-group> <div class=form-group>
<label for=bidderfname class="col-sm-3 col-sm-offset-1 control-label"> <label for=bidderfname class="col-sm-3 col-sm-offset-1 control-label">
First Name: First Name:
@ -58,14 +66,6 @@
<input type="text" name="bidderzip" id="bidderzip" required class=form-control /> <input type="text" name="bidderzip" id="bidderzip" required class=form-control />
</div> </div>
</div> </div>
<div class=form-group>
<label for=bidderemail class="col-sm-3 col-sm-offset-1 control-label">
Email:
</label>
<div class=col-sm-4>
<input type="text" name="bidderemail" id="bidderemail" class=form-control />
</div>
</div>
<div class=form-group> <div class=form-group>
<label for=bidderphone class="col-sm-3 col-sm-offset-1 control-label"> <label for=bidderphone class="col-sm-3 col-sm-offset-1 control-label">
Phone Number: Phone Number:
@ -74,6 +74,14 @@
<input type="text" name="bidderphone" id="bidderphone" required class=form-control /> <input type="text" name="bidderphone" id="bidderphone" required class=form-control />
</div> </div>
</div> </div>
<div class=form-group>
<label for=bidderemail class="col-sm-3 col-sm-offset-1 control-label">
Email:
</label>
<div class=col-sm-4>
<input type="text" name="bidderemail" id="bidderemail" class=form-control />
</div>
</div>
<div class=form-group> <div class=form-group>
<label for=vehyear class="col-sm-3 col-sm-offset-1 control-label"> <label for=vehyear class="col-sm-3 col-sm-offset-1 control-label">
Vechicle Year: Vechicle Year:
@ -98,15 +106,16 @@
<input type="text" name="vehmodel" id="vehmodel" class=form-control /> <input type="text" name="vehmodel" id="vehmodel" class=form-control />
</div> </div>
</div> </div>
<div class=form-group> <div class=form-group>
<label for=biddernum class="col-sm-3 col-sm-offset-1 control-label"> <label for=vehtype class="col-sm-3 col-sm-offset-1 control-label">
Car / Bidder Number: Vehicle Type:
</label> </label>
<div class=col-sm-2> <div class=col-sm-2>
<input type="text" name="biddernum" id="biddernum" required class=form-control /> <select name="vehtype" id="vehtype" required class=form-control>
<?php echo App\Helpers\VehicleTypeSelectList::vehicleTypeShowTypes(); ?>
</select>
</div> </div>
</div> </div>
<div class=form-group> <div class=form-group>
<label for=vehdonotjudge class="col-sm-3 col-sm-offset-1 control-label"> <label for=vehdonotjudge class="col-sm-3 col-sm-offset-1 control-label">
DO NOT JUDGE: DO NOT JUDGE:
@ -115,11 +124,6 @@
<input class="form-check-input" type="checkbox" value="" id="vehdonotjudge" name="vehdonotjudge"> <input class="form-check-input" type="checkbox" value="" id="vehdonotjudge" name="vehdonotjudge">
</div> </div>
</div> </div>
<div class=form-group>
<div class=col-sm-2>
<input type="hidden" value="2" id="vehtype" name="vehtype">
</div>
</div>
<div class=form-group> <div class=form-group>
<div class="col-sm-offset-5 col-sm-10"> <div class="col-sm-offset-5 col-sm-10">
<button type="submit" value="Submit" class="btn btn-primary">Submit</button> <button type="submit" value="Submit" class="btn btn-primary">Submit</button>

7
stats/.htaccess Normal file
View File

@ -0,0 +1,7 @@
AuthName "sa.stjohncarshow.org statistics"
AuthType Basic
AuthUserFile /home/sjcsauction/.stats-htpasswd
require valid-user
<Files .stats-htpasswd>
deny from all
</Files>

1
stats/.htaccess.lock Normal file
View File

@ -0,0 +1 @@
23445

BIN
stats/ctry_usage_201804.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

BIN
stats/ctry_usage_201805.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

BIN
stats/ctry_usage_201806.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

BIN
stats/dns_cache.db Normal file

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

108
stats/index.html Normal file
View File

@ -0,0 +1,108 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- Generated by The Webalizer Ver. 2.23-08 -->
<!-- -->
<!-- Copyright 1997-2013 Bradford L. Barrett -->
<!-- -->
<!-- Distributed under the GNU GPL Version 2 -->
<!-- Full text may be found at: -->
<!-- http://www.webalizer.org -->
<!-- -->
<!-- Give the power back to the programmers -->
<!-- Support the Free Software Foundation -->
<!-- (http://www.fsf.org) -->
<!-- -->
<!-- *** Generated: 11-Jun-2018 05:16 EDT *** -->
<HTML lang="en">
<HEAD>
<TITLE>Usage Statistics for sa.stjohncarshow.org - Summary by Month</TITLE>
</HEAD>
<BODY BGCOLOR="#E8E8E8" TEXT="#000000" LINK="#0000FF" VLINK="#FF0000">
<H2>Usage Statistics for sa.stjohncarshow.org</H2>
<SMALL><STRONG>
Summary by Month<BR>
Generated 11-Jun-2018 05:16 EDT<BR>
</STRONG></SMALL>
<CENTER>
<HR>
<P>
<IMG SRC="usage.png" ALT="Usage summary for sa.stjohncarshow.org" HEIGHT=256 WIDTH=512><P>
<TABLE WIDTH=600 BORDER=2 CELLSPACING=1 CELLPADDING=1>
<TR><TH HEIGHT=4></TH></TR>
<TR><TH COLSPAN=11 BGCOLOR="#C0C0C0" ALIGN=center>Summary by Month</TH></TR>
<TR><TH HEIGHT=4></TH></TR>
<TR><TH ALIGN=left ROWSPAN=2 BGCOLOR="#C0C0C0"><FONT SIZE="-1">Month</FONT></TH>
<TH ALIGN=center COLSPAN=4 BGCOLOR="#C0C0C0"><FONT SIZE="-1">Daily Avg</FONT></TH>
<TH ALIGN=center COLSPAN=6 BGCOLOR="#C0C0C0"><FONT SIZE="-1">Monthly Totals</FONT></TH></TR>
<TR><TH ALIGN=center BGCOLOR="#00805c"><FONT SIZE="-1">Hits</FONT></TH>
<TH ALIGN=center BGCOLOR="#0040ff"><FONT SIZE="-1">Files</FONT></TH>
<TH ALIGN=center BGCOLOR="#00e0ff"><FONT SIZE="-1">Pages</FONT></TH>
<TH ALIGN=center BGCOLOR="#ffff00"><FONT SIZE="-1">Visits</FONT></TH>
<TH ALIGN=center BGCOLOR="#ff8000"><FONT SIZE="-1">Sites</FONT></TH>
<TH ALIGN=center BGCOLOR="#ff0000"><FONT SIZE="-1">KBytes</FONT></TH>
<TH ALIGN=center BGCOLOR="#ffff00"><FONT SIZE="-1">Visits</FONT></TH>
<TH ALIGN=center BGCOLOR="#00e0ff"><FONT SIZE="-1">Pages</FONT></TH>
<TH ALIGN=center BGCOLOR="#0040ff"><FONT SIZE="-1">Files</FONT></TH>
<TH ALIGN=center BGCOLOR="#00805c"><FONT SIZE="-1">Hits</FONT></TH></TR>
<TR><TH HEIGHT=4></TH></TR>
<TR><TD NOWRAP><A HREF="usage_201806.html"><FONT SIZE="-1">Jun 2018</FONT></A></TD>
<TD ALIGN=right><FONT SIZE="-1">2</FONT></TD>
<TD ALIGN=right><FONT SIZE="-1">2</FONT></TD>
<TD ALIGN=right><FONT SIZE="-1">2</FONT></TD>
<TD ALIGN=right><FONT SIZE="-1">1</FONT></TD>
<TD ALIGN=right><FONT SIZE="-1">15</FONT></TD>
<TD ALIGN=right><FONT SIZE="-1">468</FONT></TD>
<TD ALIGN=right><FONT SIZE="-1">15</FONT></TD>
<TD ALIGN=right><FONT SIZE="-1">20</FONT></TD>
<TD ALIGN=right><FONT SIZE="-1">18</FONT></TD>
<TD ALIGN=right><FONT SIZE="-1">26</FONT></TD></TR>
<TR><TD NOWRAP><A HREF="usage_201805.html"><FONT SIZE="-1">May 2018</FONT></A></TD>
<TD ALIGN=right><FONT SIZE="-1">17</FONT></TD>
<TD ALIGN=right><FONT SIZE="-1">12</FONT></TD>
<TD ALIGN=right><FONT SIZE="-1">10</FONT></TD>
<TD ALIGN=right><FONT SIZE="-1">1</FONT></TD>
<TD ALIGN=right><FONT SIZE="-1">18</FONT></TD>
<TD ALIGN=right><FONT SIZE="-1">44069</FONT></TD>
<TD ALIGN=right><FONT SIZE="-1">41</FONT></TD>
<TD ALIGN=right><FONT SIZE="-1">301</FONT></TD>
<TD ALIGN=right><FONT SIZE="-1">382</FONT></TD>
<TD ALIGN=right><FONT SIZE="-1">527</FONT></TD></TR>
<TR><TD NOWRAP><A HREF="usage_201804.html"><FONT SIZE="-1">Apr 2018</FONT></A></TD>
<TD ALIGN=right><FONT SIZE="-1">2</FONT></TD>
<TD ALIGN=right><FONT SIZE="-1">1</FONT></TD>
<TD ALIGN=right><FONT SIZE="-1">1</FONT></TD>
<TD ALIGN=right><FONT SIZE="-1">1</FONT></TD>
<TD ALIGN=right><FONT SIZE="-1">17</FONT></TD>
<TD ALIGN=right><FONT SIZE="-1">1537</FONT></TD>
<TD ALIGN=right><FONT SIZE="-1">31</FONT></TD>
<TD ALIGN=right><FONT SIZE="-1">35</FONT></TD>
<TD ALIGN=right><FONT SIZE="-1">37</FONT></TD>
<TD ALIGN=right><FONT SIZE="-1">57</FONT></TD></TR>
<TR><TH HEIGHT=4></TH></TR>
<TR><TH BGCOLOR="#C0C0C0" COLSPAN=6 ALIGN=left><FONT SIZE="-1">Totals</FONT></TH>
<TH BGCOLOR="#C0C0C0" ALIGN=right><FONT SIZE="-1">46074</FONT></TH>
<TH BGCOLOR="#C0C0C0" ALIGN=right><FONT SIZE="-1">87</FONT></TH>
<TH BGCOLOR="#C0C0C0" ALIGN=right><FONT SIZE="-1">356</FONT></TH>
<TH BGCOLOR="#C0C0C0" ALIGN=right><FONT SIZE="-1">437</FONT></TH>
<TH BGCOLOR="#C0C0C0" ALIGN=right><FONT SIZE="-1">610</FONT></TH></TR>
<TR><TH HEIGHT=4></TH></TR>
</TABLE>
</CENTER>
<P>
<HR>
<TABLE WIDTH="100%" CELLPADDING=0 CELLSPACING=0 BORDER=0>
<TR>
<TD ALIGN=left VALIGN=top>
<SMALL>Generated by
<A HREF="http://www.webalizer.org/"><STRONG>Webalizer Version 2.23</STRONG></A>
</SMALL>
</TD>
</TR>
</TABLE>
<!-- Webalizer Version 2.23-08 (Mod: 26-Aug-2013) -->
</BODY>
</HTML>

BIN
stats/usage.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

1473
stats/usage_201804.html Normal file

File diff suppressed because it is too large Load Diff

1751
stats/usage_201805.html Normal file

File diff suppressed because it is too large Load Diff

1221
stats/usage_201806.html Normal file

File diff suppressed because it is too large Load Diff

548
stats/webalizer.current Normal file
View File

@ -0,0 +1,548 @@
# Webalizer V2.23-08 Incremental Data - 02/08/2020 01:34:47
2020 2 8 1 34 47
193 78 115 19 12 12 2089047 127 76 0
1 1 23 1 8
57 3 86057 55 16 15
5 2 16988 4 5 5
39 32 933685 15 32 13
33 20 809862 17 24 15
18 9 42611 16 14 12
12 9 152388 12 9 9
28 2 40026 8 26 6
1 1 7430 1 1 1
0 0 0 0 0 0
0 0 0 0 0 0
0 0 0 0 0 0
0 0 0 0 0 0
0 0 0 0 0 0
0 0 0 0 0 0
0 0 0 0 0 0
0 0 0 0 0 0
0 0 0 0 0 0
0 0 0 0 0 0
0 0 0 0 0 0
0 0 0 0 0 0
0 0 0 0 0 0
0 0 0 0 0 0
0 0 0 0 0 0
0 0 0 0 0 0
0 0 0 0 0 0
0 0 0 0 0 0
0 0 0 0 0 0
0 0 0 0 0 0
0 0 0 0 0 0
0 0 0 0 0 0
0 0 0 0 0 0
8 3 19803 4
4 4 24992 3
11 2 24567 4
10 1 10927 2
11 3 24082 3
4 2 15664 4
7 5 144506 6
7 1 8832 7
3 1 7993 3
3 0 1910 1
7 1 13881 2
8 0 8212 5
8 4 37303 6
7 2 4039 2
27 20 867420 20
4 2 8198 3
5 4 22582 4
4 2 8294 3
24 16 781130 17
5 3 15580 4
24 2 38694 23
0 0 0 0
2 0 438 1
0 0 0 0
0
0
0
78
0
0
0
0
0
0
0
1
49
0
0
0
0
0
0
0
0
65
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
# -urls-
/css/app.css
0 4 0 456824 0 0
/winnerlist
0 2 0 16374 0 0
/showwinners
0 2 0 37541 1 0
/winnersbyitem
0 1 0 59694 0 0
/bidderlist
0 1 0 70951 0 0
/itemlist
0 1 0 61557 0 0
/password/reset
0 1 0 7782 1 0
/checkout
0 2 0 23229 0 0
/showcarlist
0 1 0 63995 1 0
/favicon.ico
0 2 0 0 0 0
/js/app.js
0 2 0 581724 0 0
/login
0 5 0 44068 2 0
/reprint_receipt
0 4 0 42524 1 0
/home
0 1 0 8129 0 0
/
0 30 0 214662 51 16
/css/pdf.css
0 2 0 262050 0 0
/receiptpdf
0 2 0 12202 0 0
/robots.txt
0 14 0 336 0 0
/showcars
0 1 0 12898 0 0
# End Of Table - urls
# -sites- (monthly)
54.36.148.252
0 1 1 24 0 0
-
13.48.193.67
0 1 0 1472 0 0
-
54.36.148.40
0 1 1 7782 1 1580732083
/password/reset
54.36.150.40
0 1 1 7430 1 1580927067
/
13.232.239.71
0 1 0 1472 0 0
-
76.112.139.17
0 14 10 643158 1 1580842327
/itemlist
54.77.25.17
0 1 0 1472 0 0
-
54.36.148.121
0 1 0 219 0 0
-
54.36.148.156
0 1 1 24 0 0
-
52.17.23.33
0 1 0 1472 0 0
-
54.36.149.10
0 1 1 24 0 0
-
15.206.194.119
0 1 0 1472 0 0
-
52.78.144.208
0 1 0 219 0 0
-
13.211.190.67
0 1 0 1472 0 0
-
54.36.150.75
0 1 1 7386 1 1580875327
/
51.255.109.172
0 1 1 7386 1 1580969329
/
13.239.58.121
0 1 0 1472 0 0
-
13.53.205.123
0 1 0 219 0 0
-
62.210.5.253
0 3 2 15144 3 1581015860
/
178.128.21.91
0 1 0 1472 1 1580903042
-
195.154.63.222
0 3 0 1100 3 1580897733
/
18.184.133.95
0 1 0 1472 0 0
-
54.36.150.160
0 1 1 18399 1 1580820177
/showwinners
35.181.155.153
0 1 0 1472 0 0
-
52.53.218.249
0 1 0 219 0 0
-
165.227.99.188
0 1 1 7402 1 1580704575
/
54.36.148.158
0 1 0 219 0 0
-
3.10.20.125
0 1 0 1472 1 1580541320
-
54.36.148.141
0 1 1 24 0 0
-
54.36.149.4
0 1 1 24 0 0
-
13.236.2.129
0 1 0 1472 1 1580543231
-
167.172.241.194
0 1 1 7438 1 1580707911
/
5.255.174.141
0 3 0 2105 1 1580903566
/
18.140.56.22
0 1 0 1472 0 0
-
54.36.149.80
0 1 0 380 1 1580786963
-
54.36.150.71
0 1 0 372 1 1581099717
/
18.231.145.198
0 1 0 1472 0 0
-
54.36.148.150
0 1 1 24 0 0
-
209.17.97.34
0 1 1 7430 1 1581125687
/
167.71.163.223
0 1 0 219 1 1580704626
/
99.79.128.175
0 1 0 219 0 0
-
51.255.109.160
0 1 1 7386 1 1580840063
/
52.66.249.52
0 1 0 1472 1 1580543888
-
3.106.140.22
0 1 0 219 1 1580545722
-
185.39.10.69
0 21 0 29796 1 1581107432
-
51.255.109.165
0 2 1 114562 1 1580840062
/
54.206.94.99
0 1 0 1472 0 0
-
13.126.8.171
0 1 0 1472 0 0
-
163.172.70.242
0 2 0 764 2 1580871352
/
13.53.172.45
0 1 0 1472 0 0
-
15.188.49.63
0 1 0 1472 0 0
-
54.36.149.44
0 1 0 396 1 1581104753
/showcarlist
54.36.148.203
0 1 0 432 1 1580823072
-
54.255.234.78
0 1 0 1472 0 0
-
54.36.148.11
0 1 1 24 0 0
-
54.36.150.190
0 1 0 400 1 1580917942
/
54.36.150.98
0 1 1 7402 1 1580862105
/
195.154.62.232
0 9 6 45448 7 1580871353
/
35.180.229.193
0 1 0 1472 0 0
-
54.36.148.236
0 1 0 219 1 1581067301
/
62.164.176.194
0 1 0 1472 1 1580817545
-
54.36.149.46
0 1 1 24 0 0
-
15.222.61.98
0 1 0 1472 0 0
-
54.252.219.161
0 1 0 1472 0 0
-
198.252.230.14
0 23 20 863857 1 1580740828
/showcarlist
34.251.57.162
0 1 0 1472 0 0
-
54.36.148.68
0 1 1 24 0 0
-
34.249.245.115
0 1 0 219 0 0
-
54.252.170.226
0 1 0 1472 1 1580542245
-
209.17.97.42
0 1 0 219 1 1581034576
/
54.36.148.111
0 1 0 400 1 1580999541
/
54.36.148.106
0 1 0 424 1 1580836122
-
54.36.149.1
0 1 0 396 1 1580734906
-
62.210.10.77
0 7 4 30744 7 1581015858
/
209.17.97.18
0 1 1 7430 1 1580747517
/
5.255.250.45
0 2 2 7410 1 1580845211
/
54.36.148.253
0 1 0 380 1 1580906223
/reprint_receipt
54.36.149.32
0 1 1 24 0 0
-
18.228.17.0
0 1 0 1472 0 0
-
54.36.149.48
0 1 1 8781 1 1581040448
/login
54.36.148.171
0 1 0 432 1 1580841961
-
51.255.109.170
0 1 0 356 1 1580969327
/
3.0.182.225
0 1 0 1472 0 0
-
54.36.148.181
0 1 0 424 1 1580879695
-
54.254.255.159
0 1 0 1472 0 0
-
209.17.96.122
0 1 0 219 1 1580785352
/
3.121.42.61
0 1 0 1472 0 0
-
54.36.149.34
0 1 1 24 0 0
-
13.126.200.165
0 1 0 1472 0 0
-
13.53.46.235
0 1 0 1472 1 1580541958
-
54.36.150.182
0 1 1 7386 1 1581007786
/
54.36.149.22
0 1 1 24 0 0
-
54.36.150.19
0 1 0 219 1 1580596553
/
51.255.109.163
0 1 1 114206 0 0
-
54.36.148.234
0 1 1 24 0 0
-
3.0.17.191
0 1 0 1472 0 0
-
62.210.36.185
0 1 0 1472 1 1580587342
-
208.113.160.7
0 1 0 1472 1 1580646037
-
134.209.168.83
0 1 1 7430 1 1580706874
/
54.36.149.17
0 1 0 372 1 1580535044
/
54.36.148.218
0 1 1 7430 1 1580971772
/
54.252.219.99
0 1 0 1472 0 0
-
54.36.150.135
0 1 1 7402 1 1581022537
/
54.67.59.180
0 1 0 219 0 0
-
54.36.148.26
0 1 1 8757 1 1580693759
/login
18.144.31.159
0 1 0 1472 0 0
-
138.246.253.5
0 1 1 0 1 1580975354
/
3.122.243.58
0 1 0 1472 0 0
-
15.164.94.132
0 1 0 1472 0 0
-
35.180.51.32
0 1 0 1472 1 1580541198
-
18.185.178.122
0 1 0 1472 0 0
-
165.227.114.249
0 1 1 7386 1 1580709682
/
13.57.47.127
0 1 0 1472 0 0
-
99.79.31.229
0 1 0 1472 0 0
-
13.54.41.231
0 1 0 1472 0 0
-
# End Of Table - sites (monthly)
# -sites- (daily)
209.17.97.34
0 1 1 7430 1 1581125687
/
# End Of Table - sites (daily)
# -referrers-
https://sa.stjohncarshow.org/
0 9
https://sa.stjohncarshow.org/winnersbyitem
0 1
https://sa.stjohncarshow.org/login
0 7
https://sa.stjohncarshow.org/bidderlist
0 1
https://sa.stjohncarshow.org/showcars
0 1
https://sa.stjohncarshow.org/reprint_receipt
0 6
- (Direct Request)
0 159
https://sa.stjohncarshow.org/receiptpdf
0 2
https://sa.stjohncarshow.org/home
0 2
https://sa.stjohncarshow.org/checkout
0 2
https://sa.stjohncarshow.org/showwinners
0 1
https://sa.stjohncarshow.org/winnerlist
0 2
# End Of Table - referrers
# -agents-
Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36
0 14
Mozilla/5.0 (compatible; Nimbostratus-Bot/v1.3.2; http://cloudsystemnetworks.com)
0 4
Mozilla/5.0 (compatible; NetcraftSurveyAgent/1.0; +info@netcraft.com)
0 5
Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)
0 39
Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.109 Safari/537.36
0 3
Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.85 Safari/537.36
0 1
Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36
0 23
Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)
0 2
Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0
0 4
Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:58.0) Gecko/20100101 Firefox/58.0
0 30
curl/7.47.0
0 47
Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)
0 21
# End Of Table - agents
# -search strings-
# End Of Table - search strings
# -usernames-
# End Of Table - usernames

121
stats/webalizer.hist Normal file
View File

@ -0,0 +1,121 @@
# Webalizer V2.23-08 History Data - 08/Feb/2020 05:16:01 (120 month)
2 2020 193 78 115 2040 1 8 127 76
1 2020 417 159 251 1817 1 31 259 161
12 2019 286 144 178 649 1 31 208 151
11 2019 305 168 203 2026 1 30 210 173
10 2019 330 176 226 1779 1 31 253 223
9 2019 406 226 213 3392 1 30 292 215
8 2019 425 261 224 6829 1 31 287 231
7 2019 2410 1457 236 48079 1 31 2227 237
6 2019 66 37 56 845 16 30 41 40
5 2019 0 0 0 0 0 0 0 0
4 2019 0 0 0 0 0 0 0 0
3 2019 0 0 0 0 0 0 0 0
2 2019 0 0 0 0 0 0 0 0
1 2019 0 0 0 0 0 0 0 0
12 2018 0 0 0 0 0 0 0 0
11 2018 0 0 0 0 0 0 0 0
10 2018 0 0 0 0 0 0 0 0
9 2018 0 0 0 0 0 0 0 0
8 2018 0 0 0 0 0 0 0 0
7 2018 0 0 0 0 0 0 0 0
6 2018 26 18 15 468 2 10 20 15
5 2018 527 382 18 44069 2 31 301 41
4 2018 57 37 17 1537 8 29 35 31
3 2018 0 0 0 0 0 0 0 0
2 2018 0 0 0 0 0 0 0 0
1 2018 0 0 0 0 0 0 0 0
12 2017 0 0 0 0 0 0 0 0
11 2017 0 0 0 0 0 0 0 0
10 2017 0 0 0 0 0 0 0 0
9 2017 0 0 0 0 0 0 0 0
8 2017 0 0 0 0 0 0 0 0
7 2017 0 0 0 0 0 0 0 0
6 2017 0 0 0 0 0 0 0 0
5 2017 0 0 0 0 0 0 0 0
4 2017 0 0 0 0 0 0 0 0
3 2017 0 0 0 0 0 0 0 0
2 2017 0 0 0 0 0 0 0 0
1 2017 0 0 0 0 0 0 0 0
12 2016 0 0 0 0 0 0 0 0
11 2016 0 0 0 0 0 0 0 0
10 2016 0 0 0 0 0 0 0 0
9 2016 0 0 0 0 0 0 0 0
8 2016 0 0 0 0 0 0 0 0
7 2016 0 0 0 0 0 0 0 0
6 2016 0 0 0 0 0 0 0 0
5 2016 0 0 0 0 0 0 0 0
4 2016 0 0 0 0 0 0 0 0
3 2016 0 0 0 0 0 0 0 0
2 2016 0 0 0 0 0 0 0 0
1 2016 0 0 0 0 0 0 0 0
12 2015 0 0 0 0 0 0 0 0
11 2015 0 0 0 0 0 0 0 0
10 2015 0 0 0 0 0 0 0 0
9 2015 0 0 0 0 0 0 0 0
8 2015 0 0 0 0 0 0 0 0
7 2015 0 0 0 0 0 0 0 0
6 2015 0 0 0 0 0 0 0 0
5 2015 0 0 0 0 0 0 0 0
4 2015 0 0 0 0 0 0 0 0
3 2015 0 0 0 0 0 0 0 0
2 2015 0 0 0 0 0 0 0 0
1 2015 0 0 0 0 0 0 0 0
12 2014 0 0 0 0 0 0 0 0
11 2014 0 0 0 0 0 0 0 0
10 2014 0 0 0 0 0 0 0 0
9 2014 0 0 0 0 0 0 0 0
8 2014 0 0 0 0 0 0 0 0
7 2014 0 0 0 0 0 0 0 0
6 2014 0 0 0 0 0 0 0 0
5 2014 0 0 0 0 0 0 0 0
4 2014 0 0 0 0 0 0 0 0
3 2014 0 0 0 0 0 0 0 0
2 2014 0 0 0 0 0 0 0 0
1 2014 0 0 0 0 0 0 0 0
12 2013 0 0 0 0 0 0 0 0
11 2013 0 0 0 0 0 0 0 0
10 2013 0 0 0 0 0 0 0 0
9 2013 0 0 0 0 0 0 0 0
8 2013 0 0 0 0 0 0 0 0
7 2013 0 0 0 0 0 0 0 0
6 2013 0 0 0 0 0 0 0 0
5 2013 0 0 0 0 0 0 0 0
4 2013 0 0 0 0 0 0 0 0
3 2013 0 0 0 0 0 0 0 0
2 2013 0 0 0 0 0 0 0 0
1 2013 0 0 0 0 0 0 0 0
12 2012 0 0 0 0 0 0 0 0
11 2012 0 0 0 0 0 0 0 0
10 2012 0 0 0 0 0 0 0 0
9 2012 0 0 0 0 0 0 0 0
8 2012 0 0 0 0 0 0 0 0
7 2012 0 0 0 0 0 0 0 0
6 2012 0 0 0 0 0 0 0 0
5 2012 0 0 0 0 0 0 0 0
4 2012 0 0 0 0 0 0 0 0
3 2012 0 0 0 0 0 0 0 0
2 2012 0 0 0 0 0 0 0 0
1 2012 0 0 0 0 0 0 0 0
12 2011 0 0 0 0 0 0 0 0
11 2011 0 0 0 0 0 0 0 0
10 2011 0 0 0 0 0 0 0 0
9 2011 0 0 0 0 0 0 0 0
8 2011 0 0 0 0 0 0 0 0
7 2011 0 0 0 0 0 0 0 0
6 2011 0 0 0 0 0 0 0 0
5 2011 0 0 0 0 0 0 0 0
4 2011 0 0 0 0 0 0 0 0
3 2011 0 0 0 0 0 0 0 0
2 2011 0 0 0 0 0 0 0 0
1 2011 0 0 0 0 0 0 0 0
12 2010 0 0 0 0 0 0 0 0
11 2010 0 0 0 0 0 0 0 0
10 2010 0 0 0 0 0 0 0 0
9 2010 0 0 0 0 0 0 0 0
8 2010 0 0 0 0 0 0 0 0
7 2010 0 0 0 0 0 0 0 0
6 2010 0 0 0 0 0 0 0 0
5 2010 0 0 0 0 0 0 0 0
4 2010 0 0 0 0 0 0 0 0
3 2010 0 0 0 0 0 0 0 0