first commit

This commit is contained in:
Boris
2024-01-15 20:14:10 +00:00
commit 8c81ee28b7
3106 changed files with 474415 additions and 0 deletions

View File

@@ -0,0 +1,191 @@
| Full Name | George Wilkinson |
|-|-|
| Roll Number | 00677611 |
| ID Number | CHC119 |
| E-Mail | G.Wilkinson2@edu.salford.ac.uk |
### CSI Task 1
**a) Choose a number between 51 and 70. This will be number A. Choose another number between 80 and 120. This will be number B. Using 2s complement 8-bit binary arithmetic, calculate number A number B giving your answer in binary and decimal. (5 marks)**
Number A - 64 - 0100 0000
Number B - 96 - 0110 0000
| Binary Subtraction |
|-------|------------|
| Num A | 0100 0000 |
| Num B | 0110 0000 |
| Flip B | 1001 1111 |
| Add 1 | 1010 0000 |
|||
| Num A | 0100 0000 |
| Num B | 1010 0000 |
| Output | 1110 0000 |
|||
| 1s Comp | 0001 1111 |
| 2s Comp | -0010 0000 |
| Decimal | -32 |
**b) Choose one number from the set { 30, 31, 33, 34, 35, 35, 37, 38, 39 } this is numberC. Choose a number from { 3, 5, 6 } this is numberD. Using 8-bit binary arithmetic, calculate numberC × numberD giving your answer in binary and decimal. (5 marks)**
Number C - 34 - 0010 0010
Number D - 6 - 0000 0110 - 2^1, 2^2
| Binary Multiplication | |
|-|-|
| Num C | 0010 0010 |
| Mult 2^1 | 0100 0100 |
|||
| Num C | 0010 0010 |
| Mult 2^2 | 1000 1000 |
|||
| Add | 1100 1100 |
| Decimal | 204 |
Here, we split our exponent into 2, giving a value of 2 and 4 (2^2), so we can multiply the mantissa by both, and add them together.
**c) Using numberC and numberD from (b), use binary arithmetic to calculate: numberC + numberD giving your answer in binary and decimal. Convert numberC into IEEE-754 format. (5 marks)**
| numberC | 0010 0010 |
|-|-|
| Floating Point | 0010 0010 . 001 |
| C | 100010.001 |
| Decimal | 34.125 |
| numberD | 0000 0010 |
|-|-|
| Floating Point | 0000 0110 . 011 |
| D | 110.011 |
| Decimal | 6.375 |
| Binary Addition | |
|-|-|
| Num C | 0010 0010.001 |
| Num D | 0000 0110.011 |
| Add | 0010 1000.100 |
| Decimal | 40.5 |
Here, we add the floating points to the two numbers, and convert both to decimal to check our answer. Adding them together in the 3rd table to get an answer in both decimal and binary.
| Convert -> Floating Point | Binary | Decimal |
| - | - | - |
| Num C | 100010.001 | 34.125 |
| Normalised | 1.00010001 x 2^5 | 34.125 |
| Remove leading 1 | 0.00010001 | 0.06640625 |
| Sign | 0 (Positive) | 0 |
| Exponent | 10000100 | 132 (2^5) |
| Mantissa | 00010001000000000000000 | 1.06640625 |
| Total | 01000010000010001000000000000000 | 2^5 x 1.06640625 |
Here, since the sign is positive, it takes the value of 0. The exponent is 2^5, but in IEEE-754, you would take the exponent from the normalised value and add to the bias (127 in 32bit). I then got the mantissa by removing the leading 1, since it is assumed, from the normalised value, and adding the trailing 0's to get 23 bits. Concatenating these values I then get the final answer in decimal and binary.
**d) Choose a number between 140 and 160 - this is numberE. Convert numberE to hexadecimal. Choose a number between 170 and 255 - this is numberF. Convert numberF into octal. Using 8-bit binary, calculate numberE OR numberF. Give your answer in binary, octal, decimal and hexadecimal. (5 marks)**
NumberE - 160
NumberF - 223
| NumberE | 160 |
|-|-|
| Binary | 0b10100000 |
| Hexadecimal | 0xA0 |
| NumberF | 223 |
|-|-|
| /8 | 27r7 |
| /8 | 3r3 |
| /8 | 0r3 |
| Octal | 0337 |
| Binary | 1101 1111 |
| NumE OR NumF | |
|-|-|
| NumE | 0b1010 0000 |
| NumF | 0b1101 1111 |
| OR (Binary) | 0b11111111 |
| OR (Decimal) | 255 |
| OR (Hexadecimal) | 0xFF |
| OR (Octal) | 0377 |
Here, I have picked two numbers, the first of which is converted to hexadecimal, and the second converted to octal using a division conversion method on the decimal value. Then I have done a bitwise operation for OR on the two binary values to get a binary value, and then converted to decimal, hexadecimal and octal - in this case it is the maximum value for each using 8 bit binary.
### CSI Task 2
**a) Choose a short phrase of between 50-60 characters. You could choose a website headline, song title, etc. Convert this phrase using Caesar shift encryption and a key of 5 to create your ciphertext. Carry out a cryptanalytic attack to try to work out the decryption key and plaintext. (10 marks)**
F1 veteran to retire and take up new role in 2024.
| Original String | F1 veteran to retire and take up new role in 2024. |
|-|-|
| Key = 1 | G1 wfufsbo up sfujsf boe ublf vq ofx spmf jo 2024. |
| Key = 2 | H1 xgvgtcp vq tgvktg cpf vcmg wr pgy tqng kp 2024. |
| Key = 3 | I1 yhwhudq wr uhwluh dqg wdnh xs qhz uroh lq 2024. |
| Key = 4 | J1 zixiver xs vixmvi erh xeoi yt ria vspi mr 2024. |
| Key = 5 | K1 ajyjwfs yt wjynwj fsi yfpj zu sjb wtqj ns 2024. |
| Character | Count |
|-|-|
| j | 7 |
| y | 4 |
| w | 4 |
| s | 4 |
| f | 3 |
The most common English letter is E, so I am going to substitute J for E, since I assume it will be the most frequent character.
E <- F <- G <- H <- I <- J
This results in a key of 5, so translating the 2nd word: ajyjwfs -> veteran. This looks promising as it resulted in an English word. Trying the 4th word: wjynwj -> retire. Since this word is also in English, I can assume this candidate key is likely to work, so I will translate the entire string.
`K1 ajyjwfs yt wjynwj fsi yfpj zu sjb wtqj ns 2024.` -> `F1 veteran to retire and take up new role in 2024.`
**b) Computer A sends 5 packets of data to computer B using Sliding Windows Flow Control. The transmission time (time to put on the network) for a packet of data is 1 'time units'. Transmission time for an acknowledgement is 0 time units (they are very small). The propagation time (time to travel through network) for any transmission is random (between 3 and 5 time units, you choose a random time for each packet and acknowledgement sent). B's packet processing time is 2. B cannot process multiple packets simultaneously. The initial window size is 2. Draw a diagram to show how flow will be controlled while the data is being sent. (10 marks)
Transmission Time = 1tu
Acknowledgement = 0tu
Propagation Time = 3-5tu
Processing Time (B) = 2tu
Window Size = 2
For propagation time, I am going to use the following values:
( 0 = 3, 1 = 3, 2 = 4, 3 = 4, 4 = 5), and for simplicity's sake, I will mirror the propagation time there with the propagation time back for the acknowledgement.
![](Pasted%20image%2020231127121331.png)
### Linux Task 1
- **Task 1.1 (6 marks): Create the following hierarchy of directories/subdirectories and run the tree command to check that all is correct and add images of the commands and tree/find output.**
![](Pasted%20image%2020231121091012.png)
- **Task 1.2 (3 marks): Use vi to make a file called “grep.txt” inside the “CV” directory. The content of the file should include your full name. Use nano to make a file called “cv.txt” inside the “Linux” directory. The content of the file should include your favourite module. Use cat to output the contents of your files to the screen and add an image of this to your assignment. Run the tree command to show that your files are in the correct location and add and image of the commands used and the output of tree/find to your assignment output.**
![](Pasted%20image%2020231121091508.png)
- **Task 1.3 (3 marks): Using absolute filenames (ones that start with a /), move the grep.txt file into the “Workshop 1” directory. cd into the “PDP” directory. Using relative filenames (.. notation ones that don't start with a /), copy the cv.txt file into the “CV” directory. cd into the “CSIL” directory. Using relative filenames ones that don't start with a /), rename the “Workshop 1” directory so it is called “Tutorial 1” Run the tree command and include images of the commands and the tree/find output. Your final output should also include your command history.**
![](Pasted%20image%2020231121092319.png)
![](Pasted%20image%2020231121092342.png)
### Linux Task 2 (grep)
- Find the “famiclone” consoles?
![](Pasted%20image%2020231121093115.png)
- Find all lines with words with 4 consecutive consonants.
![](Pasted%20image%2020231127012520.png)
- How many Hybrid consoles have been released?
![](Pasted%20image%2020231121093759.png)
- Find all consoles with one word names.
![](Pasted%20image%2020231127020426.png)
- Find consoles whose name is at least 25 characters.
![](Pasted%20image%2020231123132529.png)
- What console names end in a number?
![](Pasted%20image%2020231124122618.png)
- Find the consoles that have sold 100 million or more.
![](Pasted%20image%2020231124123138.png)
- What year had the most consoles released?
![](Pasted%20image%2020231124122035.png)
### Linux Task 3 (sed)
3.1: Change all occurrences of 'Sony' to Better than XBox.
![](Pasted%20image%2020231127121730.png)
3.2: Change all commas “,” to colons “:”.
![](Pasted%20image%2020231127121935.png)
3.3: Change all consoles years from the 20th century (19xx) to “antique”.
![](Pasted%20image%2020231127122617.png)
3.4: With lines that contain "Hybrid" append the line "Runs better when plugged into a TV."
![](Pasted%20image%2020231127122817.png)

View File

@@ -0,0 +1,102 @@
1)
**a) Choose a number between 51 and 70. This will be number A. Choose another number between 80 and 120. This will be number B. Using 2s complement 8-bit binary arithmetic, calculate number A number B giving your answer in binary and decimal. (5 marks)**
Number A - 64 - 0100 0000
Number B - 96 - 0110 0000
| Binary Subtraction |
|-------|------------|
| Num A | 0100 0000 |
| Num B | 0110 0000 |
| Flip B | 1001 1111 |
| Add 1 | 1010 0000 |
|||
| Num A | 0100 0000 |
| Num B | 1010 0000 |
| Output | 1110 0000 |
|||
| 1s Comp | 0001 1111 |
| 2s Comp | -0010 0000 |
| Decimal | -32 |
**b) Choose one number from the set { 30, 31, 33, 34, 35, 35, 37, 38, 39 } this is numberC. Choose a number from { 3, 5, 6 } this is numberD. Using 8-bit binary arithmetic, calculate numberC × numberD giving your answer in binary and decimal.**
Number C - 34 - 0010 0010
Number D - 6 - 0000 0110 - 2^1, 2^2
| Binary Multiplication | |
|-|-|
| Num C | 0010 0010 |
| Mult 2^1 | 0100 0100 |
|||
| Num C | 0010 0010 |
| Mult 2^2 | 1000 1000 |
|||
| Add | 1100 1100 |
| Decimal | 204 |
Here, we split our exponent into 2, giving a value of 2 and 4 (2^2), so we can multiply the mantissa by both, and add them together.
**c) Using numberC and numberD from (b), use binary arithmetic to calculate: numberC.125 + numberD.375 giving your answer in binary and decimal. Convert numberC.125 into IEEE-754 format.**
| numberC | 0010 0010 |
|-|-|
| Floating Point | 0010 0010 . 001 |
| C.125 | 100010.001 |
| Decimal | 34.125 |
| numberD | 0000 0010 |
|-|-|
| Floating Point | 0000 0110 . 011 |
| D.375 | 110.011 |
| Decimal | 6.375 |
| Binary Addition | |
|-|-|
| Num C.125 | 0010 0010.001 |
| Num D.375 | 0000 0110.011 |
| Add | 0010 1000.100 |
| Decimal | 40.5 |
Here, we add the floating points to the two numbers, and convert both to decimal to check our answer. Adding them together in the 3rd table to get an answer in both decimal and binary.
| Convert -> Floating Point | Binary | Decimal |
| - | - | - |
| Num C.125 | 100010.001 | 34.125 |
| Normalised | 1.00010001 x 2^5 | 34.125 |
| Remove leading 1 | 0.00010001 | 0.06640625 |
| Sign | 0 (Positive) | 0 |
| Exponent | 10000100 | 132 (2^5) |
| Mantissa | 00010001000000000000000 | 1.06640625 |
| Total | 01000010000010001000000000000000 | 2^5 x 1.06640625 |
Here, since the sign is positive, it takes the value of 0. The exponent is 2^5, but in IEEE-754, you would take the exponent from the normalised value and add to the bias (127 in 32bit). I then got the mantissa by removing the leading 1, since it is assumed, from the normalised value, and adding the trailing 0's to get 23 bits. Concatenating these values I then get the final answer in decimal and binary.
**d) Choose a number between 140 and 160 - this is numberE. Convert numberE to hexadecimal. Choose a number between 170 and 255 - this is numberF. Convert numberF into octal. Using 8-bit binary, calculate numberE OR numberF. Give your answer in binary, octal, decimal and hexadecimal.**
NumberE - 160
NumberF - 223
| NumberE | 160 |
|-|-|
| Binary | 0b10100000 |
| Hexadecimal | 0xA0 |
| NumberF | 223 |
|-|-|
| /8 | 27r7 |
| /8 | 3r3 |
| /8 | 0r3 |
| Octal | 0337 |
| Binary | 1101 1111 |
| NumE OR NumF | |
|-|-|
| NumE | 0b1010 0000 |
| NumF | 0b1101 1111 |
| OR (Binary) | 0b11111111 |
| OR (Decimal) | 255 |
| OR (Hexadecimal) | 0xFF |
| OR (Octal) | 0377 |
Here, I have picked two numbers, the first of which is converted to hexadecimal, and the second converted to octal using a division conversion method on the decimal value. Then I have done a bitwise operation for OR on the two binary values to get a binary value, and then converted to decimal, hexadecimal and octal - in this case it is the maximum value for each using 8 bit binary.

View File

@@ -0,0 +1,46 @@
1) **Choose a short phrase of between 50-60 characters. You could choose a website headline, song title, etc. Convert this phrase using Caesar shift encryption and a key of 5 to create your ciphertext. Carry out a cryptanalytic attack to try to work out the decryption key and plaintext. (10 marks)**
F1 veteran to retire and take up new role in 2024.
| Original String | F1 veteran to retire and take up new role in 2024. |
|-|-|
| Key = 1 | G1 wfufsbo up sfujsf boe ublf vq ofx spmf jo 2024. |
| Key = 2 | H1 xgvgtcp vq tgvktg cpf vcmg wr pgy tqng kp 2024. |
| Key = 3 | I1 yhwhudq wr uhwluh dqg wdnh xs qhz uroh lq 2024. |
| Key = 4 | J1 zixiver xs vixmvi erh xeoi yt ria vspi mr 2024. |
| Key = 5 | K1 ajyjwfs yt wjynwj fsi yfpj zu sjb wtqj ns 2024. |
| Character | Count |
|-|-|
| j | 7 |
| y | 4 |
| w | 4 |
| s | 4 |
| f | 3 |
The most common English letter is E, so I am going to substitute J for E, since I assume it will be the most frequent character.
E <- F <- G <- H <- I <- J
This results in a key of 5, so translating the 2nd word: ajyjwfs -> veteran. This looks promising as it resulted in an English word. Trying the 4th word: wjynwj -> retire. Since this word is also in English, I can assume this candidate key is likely to work, so I will translate the entire string.
`K1 ajyjwfs yt wjynwj fsi yfpj zu sjb wtqj ns 2024.` -> `F1 veteran to retire and take up new role in 2024.`
2) Computer A sends 5 packets of data to computer B using Sliding Windows Flow Control.
- The transmission time (time to put on the network) for a packet of data is 1 'time units'
- Transmission time for an acknowledgement is 0 time units (they are very small)
- The propagation time (time to travel through network) for any transmission is random (between 3 and 5 time units, you choose a random time for each packet and acknowledgement sent).
- B's packet processing time is 2. B cannot process multiple packets simultaneously.
- The initial window size is 2
Draw a diagram to show how flow will be controlled while the data is being sent. (10 marks)
Transmission Time = 1tu
Acknowledgement = 0tu
Propagation Time = 3-5tu
Processing Time (B) = 2tu
Window Size = 2
For propagation time, I am going to use the following values:
( 0 = 3, 1 = 3, 2 = 4, 3 = 4, 4 = 5), and for simplicity's sake, I will mirror the propagation time there with the propagation time back for the acknowledgement.
-
![](Pasted%20image%2020231127121331.png)

View File

@@ -0,0 +1,7 @@
- (6 marks): Create the following hierarchy of directories/subdirectories and run the tree command to check that all is correct and add images of the commands and tree/find output.
![](Pasted%20image%2020231121091012.png)
- Task 1.2 (3 marks): Use vi to make a file called “grep.txt” inside the “CV” directory. The content of the file should include your full name. Use nano to make a file called “cv.txt” inside the “Linux” directory. The content of the file should include your favourite module. Use cat to output the contents of your files to the screen and add an image of this to your assignment. Run the tree command to show that your files are in the correct location and add and image of the commands used and the output of tree/find to your assignment output.
![](Pasted%20image%2020231121091508.png)
- Task 1.3 (3 marks): Using absolute filenames (ones that start with a /), move the grep.txt file into the “Workshop 1” directory. cd into the “PDP” directory. Using relative filenames (.. notation ones that don't start with a /), copy the cv.txt file into the “CV” directory. cd into the “CSIL” directory. Using relative filenames ones that don't start with a /), rename the “Workshop 1” directory so it is called “Tutorial 1” Run the tree command and include images of the commands and the tree/find output. Your final output should also include your command history.
![](Pasted%20image%2020231121092319.png)
![](Pasted%20image%2020231121092342.png)

View File

@@ -0,0 +1,16 @@
- Find the “famiclone” consoles?
![](Pasted%20image%2020231121093115.png)
- Find all lines with words with 4 consecutive consonants.
![](Pasted%20image%2020231127012520.png)
- How many Hybrid consoles have been released?
![](Pasted%20image%2020231121093759.png)
- Find all consoles with one word names.
![](Pasted%20image%2020231127020426.png)
- Find consoles whose name is at least 25 characters.
![](Pasted%20image%2020231123132529.png)
- What console names end in a number?
![](Pasted%20image%2020231124122618.png)
- Find the consoles that have sold 100 million or more.
![](Pasted%20image%2020231124123138.png)
- What year had the most consoles released?
![](Pasted%20image%2020231124122035.png)

View File

@@ -0,0 +1,8 @@
3.1: Change all occurrences of 'Sony' to Better than XBox.
![](Pasted%20image%2020231127121730.png)
3.2: Change all commas “,” to colons “:”.
![](Pasted%20image%2020231127121935.png)
3.3: Change all consoles years from the 20th century (19xx) to “antique”.
![](Pasted%20image%2020231127122617.png)
3.4: With lines that contain "Hybrid" append the line "Runs better when plugged into a TV."
![](Pasted%20image%2020231127122817.png)

View File

@@ -0,0 +1 @@
Computer Systems Internals and Linux!!!

View File

@@ -0,0 +1 @@
Computer Systems Internals and Linux!!!

View File

@@ -0,0 +1,58 @@
Platform,Type,Firm,Released,Units sold millions
PlayStation 2,Home,Sony,2000,155
Nintendo DS,Handheld,Nintendo,2004,154
Nintendo Switch,Hybrid,Nintendo,2017,129
Game Boy and Game Boy Color,Handheld,Nintendo,1989,118
PlayStation 4,Home,Sony,2013,117
PlayStation,Home,Sony,1994,102
Wii,Home,Nintendo,2006,101
PlayStation 3,Home,Sony,2006,87
Xbox 360,Home,Microsoft,2005,84
Game Boy Advance,Handheld,Nintendo,2001,81
PlayStation Portable,Handheld,Sony,2004,80
Nintendo 3DS,Handheld,Nintendo,2011,75
NES Famicom,Home,Nintendo,1983,61
Xbox One,Home,Microsoft,2013,58
SNES Super Famicom,Home,Nintendo,1990,49
Game & Watch,Handheld,Nintendo,1980,43
PlayStation 5,Home,Sony,2020,41
Nintendo 64,Home,Nintendo,1996,32
Sega Genesis Mega Drive,Home,Sega,1988,30
Atari 2600,Home,Atari,1977,30
Xbox,Home,Microsoft,2001,24
GameCube,Home,Nintendo,2001,21
Xbox Series X S,Home,Microsoft,2020,21
Quest 2,VR headset,Reality Labs Meta,2020,20
Wii U,Home,Nintendo,2012,13
PlayStation Vita,Handheld,Sony,2011,13
Master System,Home,Sega,1986,12
Game Gear,Handheld,Sega,1990,11
PC Engine TurboGrafx-16,Home,NEC Hudson Soft,1987,10
Sega Saturn,Home,Sega,1994,9
Dreamcast,Home,Sega,1998,9
Master System Brazil,Home,Tectoy,1989,8
Dendy famiclone,Home,Micro Genius,1992,6
Super NES Classic Edition,Dedicated,Nintendo,2017,5
Famicom Disk System,Home console add-on,Nintendo,1986,4
Advanced Pico Beena,Home,Sega,2005,4
NES Classic Edition,Dedicated,Nintendo,2016,3
WonderSwan,Handheld,Bandai,1999,3
Sega Pico,Home,Sega,1993,3
Color TV-Game,Dedicated,Nintendo,1977,3
Intellivision,Home,Mattel,1980,3
Mega Drive Brazil,Home,Tectoy,1990,3
N-Gage,Handheld,Nokia,2003,3
Mega-CD Sega CD,Home console add-on,Sega,1991,2
ColecoVision,Home,Coleco,1982,2
3DO Interactive Multiplayer,Home,The 3DO Company,1993,2
Neo Geo Pocket,Handheld,SNK,1999,2
Magnavox Odyssey,Home,Magnavox Philips,1978,2
Sega SG-1000,Home,Sega,1983,2
PC Engine CD-ROM,Home console add-on,NEC,1988,2
Atari 7800,Home,Atari,1986,1
Atari Lynx,Handheld,Atari,1989,1
Philips CD-i,Home,Philips,1990,1
Telstar,Dedicated,Coleco,1976,1
Atari 5200,Home,Atari,1982,1
Pegasus famiclone,Home,Micro Genius,1991,1
Oculus Quest,VR headset,Oculus,2019,1
1 Platform Type Firm Released Units sold millions
2 PlayStation 2 Home Sony 2000 155
3 Nintendo DS Handheld Nintendo 2004 154
4 Nintendo Switch Hybrid Nintendo 2017 129
5 Game Boy and Game Boy Color Handheld Nintendo 1989 118
6 PlayStation 4 Home Sony 2013 117
7 PlayStation Home Sony 1994 102
8 Wii Home Nintendo 2006 101
9 PlayStation 3 Home Sony 2006 87
10 Xbox 360 Home Microsoft 2005 84
11 Game Boy Advance Handheld Nintendo 2001 81
12 PlayStation Portable Handheld Sony 2004 80
13 Nintendo 3DS Handheld Nintendo 2011 75
14 NES Famicom Home Nintendo 1983 61
15 Xbox One Home Microsoft 2013 58
16 SNES Super Famicom Home Nintendo 1990 49
17 Game & Watch Handheld Nintendo 1980 43
18 PlayStation 5 Home Sony 2020 41
19 Nintendo 64 Home Nintendo 1996 32
20 Sega Genesis Mega Drive Home Sega 1988 30
21 Atari 2600 Home Atari 1977 30
22 Xbox Home Microsoft 2001 24
23 GameCube Home Nintendo 2001 21
24 Xbox Series X S Home Microsoft 2020 21
25 Quest 2 VR headset Reality Labs Meta 2020 20
26 Wii U Home Nintendo 2012 13
27 PlayStation Vita Handheld Sony 2011 13
28 Master System Home Sega 1986 12
29 Game Gear Handheld Sega 1990 11
30 PC Engine TurboGrafx-16 Home NEC Hudson Soft 1987 10
31 Sega Saturn Home Sega 1994 9
32 Dreamcast Home Sega 1998 9
33 Master System Brazil Home Tectoy 1989 8
34 Dendy famiclone Home Micro Genius 1992 6
35 Super NES Classic Edition Dedicated Nintendo 2017 5
36 Famicom Disk System Home console add-on Nintendo 1986 4
37 Advanced Pico Beena Home Sega 2005 4
38 NES Classic Edition Dedicated Nintendo 2016 3
39 WonderSwan Handheld Bandai 1999 3
40 Sega Pico Home Sega 1993 3
41 Color TV-Game Dedicated Nintendo 1977 3
42 Intellivision Home Mattel 1980 3
43 Mega Drive Brazil Home Tectoy 1990 3
44 N-Gage Handheld Nokia 2003 3
45 Mega-CD Sega CD Home console add-on Sega 1991 2
46 ColecoVision Home Coleco 1982 2
47 3DO Interactive Multiplayer Home The 3DO Company 1993 2
48 Neo Geo Pocket Handheld SNK 1999 2
49 Magnavox Odyssey Home Magnavox Philips 1978 2
50 Sega SG-1000 Home Sega 1983 2
51 PC Engine CD-ROM Home console add-on NEC 1988 2
52 Atari 7800 Home Atari 1986 1
53 Atari Lynx Handheld Atari 1989 1
54 Philips CD-i Home Philips 1990 1
55 Telstar Dedicated Coleco 1976 1
56 Atari 5200 Home Atari 1982 1
57 Pegasus famiclone Home Micro Genius 1991 1
58 Oculus Quest VR headset Oculus 2019 1

View File

@@ -0,0 +1,61 @@
## Lecture 1 (12.00)
- People use base10 because they have 10 fingers
- Computers use base2 because they have 1 finger
## Lecture 2 (15.00)
### Binary Denary Conversion
#### Convert to Binary
- 9 = 00001001
- 45 = 00101101
- 171 = 10101011
- 238 = 11101110
#### Convert to Denary
- 00010001 = 17
- 00110101 = 53
- 10011010 = 154
- 10110111 = 183
### Basic Linux Commands
- **ls** (list)
- **cd** (navigate directory)
- **~** - home directory
- **/** (root system directory)
- **rmdir** (remove directory)
- **mkdir** (make directory)
- **cp** (copy)
- **mv** (move)
- **rm** (remove)
- **pwd** (print working directory)
#### **vi** (visual editor)
- not hype, use for assessments only
#### **nano** (fork Of Pico editor)
- hype, use everywhere outside of assessments
## Workshop 1 (11:00)
```sh
boris@george-thinkpad:~/OneDrive/Computer Science Year 1/Computer Systems Internals & Linux/Week 1$ vi vi-file.txt
boris@george-thinkpad:~/OneDrive/Computer Science Year 1/Computer Systems Internals & Linux/Week 1$ cat vi-file.txt
This is a file created with Vi / ViM
boris@george-thinkpad:~/OneDrive/Computer Science Year 1/Computer Systems Internals & Linux/Week 1$ nano nano-file.txt
boris@george-thinkpad:~/OneDrive/Computer Science Year 1/Computer Systems Internals & Linux/Week 1$ cp vi-file.txt copy-of-vi.txt
boris@george-thinkpad:~/OneDrive/Computer Science Year 1/Computer Systems Internals & Linux/Week 1$ cp -i nano-file.txt copy-of-vi.txt
cp: overwrite 'copy-of-vi.txt'? no
boris@george-thinkpad:~/OneDrive/Computer Science Year 1/Computer Systems Internals & Linux/Week 1$ mv copy-of-vi.txt renamed-file.txt
boris@george-thinkpad:~/OneDrive/Computer Science Year 1/Computer Systems Internals & Linux/Week 1$ rm -i renamed-file.txt
rm: remove regular file 'renamed-file.txt'? y
boris@george-thinkpad:~/OneDrive/Computer Science Year 1/Computer Systems Internals & Linux/Week 1$ pwd
/home/boris/OneDrive/Computer Science Year 1/Computer Systems Internals & Linux/Week 1
```

View File

@@ -0,0 +1 @@
This is a text file created with nano

View File

@@ -0,0 +1 @@
This is a file created with Vi / ViM

View File

@@ -0,0 +1,55 @@
## Lecture 1 (12:00)
### Addition
| Binary Base | 2^7 | 2^6 | 2^5 | 2^4 | 2^3 | 2^2 | 2^1 | 2^0 |
|-------------|-----|-----|-----|-----|-----|-----|-----|-----|
| Decimal | 128 | 64 | 32 | 16 | 8 | 4 | 2 | 1 |
| | | | | | | | | |
| Int1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 |
| Int2 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 |
| | | | | | | | | |
| Overflow | | | | | 1 | | 1 | |
| Result | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 |
| Decimal | 26 |
### Multiplication
| Binary Base | 2^7 | 2^6 | 2^5 | 2^4 | 2^3 | 2^2 | 2^1 | 2^0 |
|-------------|-----|-----|-----|-----|-----|-----|-----|-----|
| Decimal | 128 | 64 | 32 | 16 | 8 | 4 | 2 | 1 |
| | | | | | | | | |
| Int1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 |
| Factor | | | | | | | 1 | |
| | | | | | | | | |
| Result | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 |
| Decimal | 6 |
- Multiply binary shift to the left. Example is x2
- Multiplying by non powers of 2, split and multiply.
| Binary Base | 2^7 | 2^6 | 2^5 | 2^4 | 2^3 | 2^2 | 2^1 | 2^0 |
|----------------|-----|-----|-----|-----|-----|-----|-----|-----|
| Decimal | 128 | 64 | 32 | 16 | 8 | 4 | 2 | 1 |
| | | | | | | | | |
| Int1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 |
| Factor Decimal | 6 | | | | | | | |
| | | | | | | | | |
| Result 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 |
| Result 2 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 |
| Overflow | | | | 1 | 1 | | | |
| Total | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 |
| Denary | 114 |
- Example of 19x6, which simplifies into `(19x4) + (19x2)`, which is shown above by doing two binary shifts and adding them together.
## Workshop 1 (11:00)
### CSV Manipulation
1. How many users are in the file?
![](Pasted%20image%2020230929112927.png)
2. Use a combination of head and tail to find the 5th line of the file
![](Pasted%20image%2020230929113130.png)
3. how many users use /bin/sh as their shell and how many use /bin/bash
![](Pasted%20image%2020230929113309.png)

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,30 @@
## Lecture 1 (12:00) - Twos Compliment
- First field becomes -128
- Overflow happens when:
- Both numbers are positive or negative
- Sign is different to sign of input
| -128 | 64 | 32 | 16 | 8 | 4 | 2 | 1 | Output |
|------|----|----|----|---|---|---|---|--------|
| 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 10 |
| | | | | | | | | |
| 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | Invert |
| | | | | | | | 1 | 1 |
| | | | | | | 1 | | Overflow |
| 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | -10 |
-10x10 = -10 x (8+2) = (-10 x 8) + (-10 x 2)
| -128 | 64 | 32 | 16 | 8 | 4 | 2 | 1 | |
|------|----|----|----|---|---|---|---|------|
| 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | -10 |
| 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | <<< |
| | | | | | | | | |
| 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | -10 |
| 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | < |
| | | | | | | | | |
| 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | -80 |
| 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | -20 |
| 1 | 1 | | | | | | | Overflow |
| 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | -100 |

View File

@@ -0,0 +1 @@
Computer Science with Cyber Security

View File

@@ -0,0 +1,15 @@
## Lecture 1 (12:00)
IEEE-754
- 32 and 64 bit numbers
- Float and double in java
- Promotes interoperability among programming languages
- 32 bit
- Leftmost bit is a sign bit (0=+ve 1=-ve)
- 8 bit exponent (127 bit unsigned binary number)
- 23 bit mantissa _without_ the 1 infront of the binary point
### Scientific Notation
13.5 = 1101.1 = 1.1011x2 ^3
2.75 = 10110.11 = 1.011011x2 ^4
0.125 = 0.001 = 1x2 ^-3
13.5 in IEEE754 Standard = 0100000101011000000000000000000

View File

@@ -0,0 +1,53 @@
## Lecture 1 (12:00) - Data Communication Security
### Normal Communication
Alice => Message => Bob
- We assume:
- A dedicated transmission system
- Good will, Co-operation, Competence among participants
These are not valid assumptions.
### Security
- Human problem caused by deliberate exploitation of weakness in the transmission system.
- Bad passwords, spoofing / phishing, config errors
- Bad procedures, backdoors, overcomplexity
- Can solve some problems, manage some, and detect some, but cannot fix everything.
- Security threats are generic to all forms of communication, not specifically computers or digital devices. Understanding them is vital to understanding IT.
### Password Security
- Password file must always be assumed to be readable
- Contains encrypted passwords.
- "Dictionary Attacks"
- Pre-encode a dictionary of words (and combination of words). Then simply look up any encoded passwords.
- "Cracker" Programs / "Brute force attacks"
### Encryption
- Scramble the message in some way so that it is only meaningful to Alice and Bob.
- Alice takes message and applies some algorithm to each of the letters to generate an encrypted message.
- Bob applies the reverse algorithm to regenerate the original message
- The aim is that Eve cant do one (or both) of these things
- If she cant decrypt, she cant eavesdrop
- If she cant encrypt, she cant masquerade.
- The more keys, the longer it takes to break
#### Caesar-shift
- Each letter is replaced by another letter, k positions later in the alphabet
- If k=3:
- A becomes D
- B becomes E
- C becomes F
-
- "ATTACK AT TEN" becomes
- DWWDFN DW WHQ
- plaintext - ATTACK AT TEN
- ciphertext - DWWDFN DW WHQ
- Encryption method - Substitution
- Encryption Key - 3
- Decryption Key - 3
- Problem is how to share the key

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,174 @@
82.40.58.133 - - [02/Nov/2015:10:29:48 +0000] "GET / HTTP/1.1" 302 4280 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
82.40.58.133 - - [02/Nov/2015:10:29:48 +0000] "GET /cs HTTP/1.1" 301 668 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
82.40.58.133 - - [02/Nov/2015:10:29:48 +0000] "GET /cs/ HTTP/1.1" 200 2907 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
82.40.58.133 - - [02/Nov/2015:10:29:48 +0000] "GET /largetext.css HTTP/1.1" 200 1485 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
66.249.64.190 - - [02/Nov/2015:10:39:27 +0000] "GET /robots.txt HTTP/1.1" 200 5766 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"
10.99.176.206 - - [02/Nov/2015:11:47:55 +0000] "GET /staff/ HTTP/1.1" 200 4947 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
10.99.176.206 - - [02/Nov/2015:11:47:55 +0000] "GET /staff/csmt.ico HTTP/1.1" 404 578 "https://www.firstyearmatters.info/staff/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
10.99.176.206 - - [02/Nov/2015:11:48:01 +0000] "GET /lists/register.html HTTP/1.1" 200 1977 "https://www.firstyearmatters.info/staff/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
10.99.176.206 - - [02/Nov/2015:11:48:01 +0000] "GET /favicon.ico HTTP/1.1" 200 4122 "https://www.firstyearmatters.info/lists/register.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
74.82.47.3 - - [02/Nov/2015:11:49:09 +0000] "GET / HTTP/1.1" 302 5780 "-" "-"
146.87.136.146 - - [02/Nov/2015:12:12:40 +0000] "GET /portal/ HTTP/1.1" 302 4781 "-" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
146.87.136.146 - - [02/Nov/2015:12:12:43 +0000] "GET /portal/login HTTP/1.1" 200 5177 "-" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
146.87.136.146 - - [02/Nov/2015:12:12:44 +0000] "GET /portal/js/42be59c.js HTTP/1.1" 200 41232 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
146.87.136.146 - - [02/Nov/2015:12:12:44 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
146.87.136.146 - - [02/Nov/2015:12:12:44 +0000] "GET /favicon.ico HTTP/1.1" 200 3984 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
146.87.136.146 - - [02/Nov/2015:12:12:49 +0000] "POST /portal/login_check HTTP/1.1" 302 969 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
146.87.136.146 - - [02/Nov/2015:12:12:50 +0000] "GET /portal/ HTTP/1.1" 302 753 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
146.87.136.146 - - [02/Nov/2015:12:12:50 +0000] "GET /portal/dashboard HTTP/1.1" 200 1397 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
146.87.136.146 - - [02/Nov/2015:12:12:51 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
10.99.57.33 - - [02/Nov/2015:12:14:06 +0000] "GET /portal/linux/passwd/338 HTTP/1.1" 200 5291 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
10.99.57.33 - - [02/Nov/2015:12:14:06 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/linux/passwd/338" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
10.99.57.33 - - [02/Nov/2015:12:14:17 +0000] "POST /portal/linux/passwd/338 HTTP/1.1" 200 5332 "https://firstyearmatters.info/portal/linux/passwd/338" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
10.99.57.33 - - [02/Nov/2015:12:14:18 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/linux/passwd/338" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
10.99.57.33 - - [02/Nov/2015:12:14:31 +0000] "POST /portal/linux/passwd/338 HTTP/1.1" 200 1558 "https://firstyearmatters.info/portal/linux/passwd/338" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
10.99.57.33 - - [02/Nov/2015:12:15:06 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1033 "https://firstyearmatters.info/portal/linux/passwd/338" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
10.99.57.33 - - [02/Nov/2015:12:14:48 +0000] "POST /portal/linux/passwd/338 HTTP/1.1" 200 1636 "https://firstyearmatters.info/portal/linux/passwd/338" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
10.99.57.33 - - [02/Nov/2015:12:15:10 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 890 "https://firstyearmatters.info/portal/linux/passwd/338" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
10.99.57.33 - - [02/Nov/2015:12:15:10 +0000] "GET /portal/linux/passwd/338 HTTP/1.1" 200 1584 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
10.99.57.33 - - [02/Nov/2015:12:16:25 +0000] "GET /portal/ HTTP/1.1" 302 5045 "-" "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; MALNJS; rv:11.0) like Gecko"
10.99.57.33 - - [02/Nov/2015:12:16:25 +0000] "GET /portal/login HTTP/1.1" 200 1577 "-" "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; MALNJS; rv:11.0) like Gecko"
10.99.57.33 - - [02/Nov/2015:12:16:26 +0000] "GET /portal/js/42be59c.js HTTP/1.1" 200 41907 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; MALNJS; rv:11.0) like Gecko"
10.99.57.33 - - [02/Nov/2015:12:16:26 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1124 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; MALNJS; rv:11.0) like Gecko"
10.99.57.33 - - [02/Nov/2015:12:16:59 +0000] "POST /portal/login_check HTTP/1.1" 302 1370 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; MALNJS; rv:11.0) like Gecko"
10.99.57.33 - - [02/Nov/2015:12:16:59 +0000] "GET /portal/ HTTP/1.1" 302 948 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; MALNJS; rv:11.0) like Gecko"
10.99.57.33 - - [02/Nov/2015:12:16:59 +0000] "GET /portal/dashboard HTTP/1.1" 200 1641 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; MALNJS; rv:11.0) like Gecko"
10.99.57.33 - - [02/Nov/2015:12:16:59 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1124 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; MALNJS; rv:11.0) like Gecko"
10.99.57.33 - - [02/Nov/2015:12:16:59 +0000] "GET /favicon.ico HTTP/1.1" 200 7995 "-" "Mozilla/5.0 (Windows NT 6.3; Win64; x64; Trident/7.0; MALNJS; rv:11.0) like Gecko"
10.99.57.33 - - [02/Nov/2015:12:17:00 +0000] "GET /portal/linux/passwd/338 HTTP/1.1" 200 1871 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; MALNJS; rv:11.0) like Gecko"
10.99.57.33 - - [02/Nov/2015:12:17:00 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1124 "https://firstyearmatters.info/portal/linux/passwd/338" "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; MALNJS; rv:11.0) like Gecko"
10.99.57.33 - - [02/Nov/2015:12:17:02 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1322 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; MALNJS; rv:11.0) like Gecko"
10.99.57.33 - - [02/Nov/2015:12:17:20 +0000] "-" 408 3905 "-" "-"
10.99.189.156 - - [02/Nov/2015:12:31:02 +0000] "GET /cgi-bin/binary.cgi HTTP/1.1" 200 5155 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
10.99.189.156 - - [02/Nov/2015:12:31:02 +0000] "GET /page.css HTTP/1.1" 200 626 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
10.99.189.156 - - [02/Nov/2015:12:31:04 +0000] "GET / HTTP/1.1" 302 630 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
10.99.189.156 - - [02/Nov/2015:12:31:05 +0000] "GET /cs HTTP/1.1" 301 668 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
10.99.189.156 - - [02/Nov/2015:12:31:05 +0000] "GET /favicon.ico HTTP/1.1" 200 3984 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
10.99.189.156 - - [02/Nov/2015:12:31:05 +0000] "GET /cs/ HTTP/1.1" 200 3045 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
10.99.189.156 - - [02/Nov/2015:12:31:05 +0000] "GET /default.css HTTP/1.1" 200 1576 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
10.99.189.156 - - [02/Nov/2015:12:31:05 +0000] "GET /switcher.js HTTP/1.1" 200 1134 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
10.99.189.156 - - [02/Nov/2015:12:31:05 +0000] "GET /fym.css HTTP/1.1" 200 1727 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
10.99.189.156 - - [02/Nov/2015:12:31:05 +0000] "GET /highcontrast.css HTTP/1.1" 200 1537 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
10.99.189.156 - - [02/Nov/2015:12:31:05 +0000] "GET /largetext.css HTTP/1.1" 200 1485 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
10.99.189.156 - - [02/Nov/2015:12:31:05 +0000] "GET /print.css HTTP/1.1" 200 1058 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
10.99.189.156 - - [02/Nov/2015:12:31:05 +0000] "GET /ie6.css HTTP/1.1" 200 1730 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
10.99.189.156 - - [02/Nov/2015:12:31:05 +0000] "GET /uos.jpg HTTP/1.1" 200 6265 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
10.99.189.156 - - [02/Nov/2015:12:31:05 +0000] "GET /fuof.jpg HTTP/1.1" 200 9910 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
10.99.189.156 - - [02/Nov/2015:12:31:09 +0000] "GET /cs/stafftimetables.html HTTP/1.1" 200 2683 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
10.99.189.156 - - [02/Nov/2015:12:31:15 +0000] "GET /cs/st1-Andrew+Young.html HTTP/1.1" 200 3247 "https://www.firstyearmatters.info/cs/stafftimetables.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
10.99.189.156 - - [02/Nov/2015:12:31:55 +0000] "GET /cs/st2-Andrew+Young.html HTTP/1.1" 200 3073 "https://www.firstyearmatters.info/cs/st1-Andrew+Young.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
10.99.189.156 - - [02/Nov/2015:12:32:25 +0000] "-" 408 137 "-" "-"
10.99.189.156 - - [02/Nov/2015:12:32:25 +0000] "-" 408 137 "-" "-"
10.99.189.156 - - [02/Nov/2015:12:32:25 +0000] "-" 408 137 "-" "-"
10.99.189.156 - - [02/Nov/2015:12:32:25 +0000] "-" 408 137 "-" "-"
10.99.189.156 - - [02/Nov/2015:12:32:25 +0000] "-" 408 137 "-" "-"
10.99.189.156 - - [02/Nov/2015:12:32:25 +0000] "-" 408 137 "-" "-"
66.249.64.230 - - [02/Nov/2015:14:08:39 +0000] "GET /robots.txt HTTP/1.1" 200 5750 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"
66.249.64.54 - - [02/Nov/2015:14:18:04 +0000] "GET /robots.txt HTTP/1.1" 200 5766 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"
146.87.136.145 - - [02/Nov/2015:14:45:43 +0000] "GET /yabbfiles/Templates/Forum/default.css HTTP/1.1" 200 6363 "http://firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [02/Nov/2015:14:45:43 +0000] "GET /yabbfiles/ubbc.js HTTP/1.1" 200 6081 "http://firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [02/Nov/2015:14:45:43 +0000] "GET /yabbfiles/Templates/Forum/default/fymlogo.gif HTTP/1.1" 200 7116 "http://firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [02/Nov/2015:14:45:43 +0000] "GET /yabbfiles/Templates/Forum/default/tabfill.gif HTTP/1.1" 200 1960 "http://firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [02/Nov/2015:14:45:44 +0000] "GET /yabbfiles/Templates/Forum/default/tabsep211.png HTTP/1.1" 200 424 "http://firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [02/Nov/2015:14:45:44 +0000] "GET /yabbfiles/Templates/Forum/default/rss.png HTTP/1.1" 200 1849 "http://firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [02/Nov/2015:14:45:44 +0000] "GET /yabbfiles/Templates/Forum/default/menutop.png HTTP/1.1" 200 466 "https://www.firstyearmatters.info/yabbfiles/Templates/Forum/default.css" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [02/Nov/2015:14:45:44 +0000] "GET /yabbfiles/Templates/Forum/default/searchbg211.png HTTP/1.1" 200 481 "https://www.firstyearmatters.info/yabbfiles/Templates/Forum/default.css" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [02/Nov/2015:14:45:44 +0000] "GET /yabbfiles/Templates/Forum/default/tab211.png HTTP/1.1" 200 465 "https://www.firstyearmatters.info/yabbfiles/Templates/Forum/default.css" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [02/Nov/2015:14:45:44 +0000] "GET /yabbfiles/Templates/Forum/default/tab_selected211.png HTTP/1.1" 200 614 "https://www.firstyearmatters.info/yabbfiles/Templates/Forum/default.css" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [02/Nov/2015:14:45:44 +0000] "GET /yabbfiles/Templates/Forum/default/search.gif HTTP/1.1" 200 855 "http://firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [02/Nov/2015:14:45:44 +0000] "GET /yabbfiles/Templates/Forum/default/tabright211.png HTTP/1.1" 200 1428 "https://www.firstyearmatters.info/yabbfiles/Templates/Forum/default.css" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [02/Nov/2015:14:45:44 +0000] "GET /yabbfiles/Templates/Forum/default/grad_bottom.png HTTP/1.1" 200 448 "https://www.firstyearmatters.info/yabbfiles/Templates/Forum/default.css" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [02/Nov/2015:14:45:44 +0000] "GET /yabbfiles/Templates/Forum/default/catbg.png HTTP/1.1" 200 467 "https://www.firstyearmatters.info/yabbfiles/Templates/Forum/default.css" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [02/Nov/2015:14:45:44 +0000] "GET /yabbfiles/Templates/Forum/default/tableft211.png HTTP/1.1" 200 961 "https://www.firstyearmatters.info/yabbfiles/Templates/Forum/default.css" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [02/Nov/2015:14:45:44 +0000] "GET /yabbfiles/Templates/Forum/default/online.gif HTTP/1.1" 200 2877 "http://firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [02/Nov/2015:14:45:44 +0000] "GET /yabbfiles/Templates/Forum/default/lastpost.gif HTTP/1.1" 200 655 "http://firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [02/Nov/2015:14:45:44 +0000] "GET /yabbfiles/Templates/Forum/default/info.gif HTTP/1.1" 200 2657 "http://firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [02/Nov/2015:14:45:44 +0000] "GET /yabbfiles/Templates/Forum/default/login.gif HTTP/1.1" 200 1779 "http://firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [02/Nov/2015:14:45:44 +0000] "GET /yabbfiles/Templates/Forum/default/xhtml.gif HTTP/1.1" 200 562 "http://firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [02/Nov/2015:14:45:44 +0000] "GET /yabbfiles/Templates/Forum/default/valid-rss.png HTTP/1.1" 200 1866 "http://firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [02/Nov/2015:14:45:44 +0000] "GET /yabbfiles/Templates/Forum/default/sf.gif HTTP/1.1" 200 740 "http://firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [02/Nov/2015:14:45:44 +0000] "GET /yabbfiles/Templates/Forum/default/css.gif HTTP/1.1" 200 544 "http://firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [02/Nov/2015:14:45:44 +0000] "GET /yabbfiles/Templates/Forum/default/boards.gif HTTP/1.1" 200 2583 "http://firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [02/Nov/2015:14:45:44 +0000] "GET /yabbfiles/Templates/Forum/default/perl.gif HTTP/1.1" 200 1454 "http://firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [02/Nov/2015:15:05:32 +0000] "GET /portal/ HTTP/1.1" 302 4781 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [02/Nov/2015:15:05:32 +0000] "GET /portal/login HTTP/1.1" 200 1336 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [02/Nov/2015:15:05:32 +0000] "GET /portal/js/42be59c.js HTTP/1.1" 200 41232 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [02/Nov/2015:15:05:32 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 4769 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [02/Nov/2015:15:05:33 +0000] "GET /favicon.ico HTTP/1.1" 200 3984 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [02/Nov/2015:15:05:40 +0000] "POST /portal/login_check HTTP/1.1" 302 1016 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [02/Nov/2015:15:05:40 +0000] "GET /portal/login HTTP/1.1" 200 1983 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [02/Nov/2015:15:05:40 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [02/Nov/2015:15:06:00 +0000] "POST /portal/login_check HTTP/1.1" 302 1107 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [02/Nov/2015:15:06:01 +0000] "GET /portal/ HTTP/1.1" 302 753 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [02/Nov/2015:15:06:01 +0000] "GET /portal/dashboard HTTP/1.1" 200 1534 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [02/Nov/2015:15:06:01 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
185.69.145.63 - - [02/Nov/2015:15:07:20 +0000] "GET /cs/ HTTP/1.1" 200 6557 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
185.69.145.63 - - [02/Nov/2015:15:07:21 +0000] "GET /highcontrast.css HTTP/1.1" 200 1537 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
185.69.145.63 - - [02/Nov/2015:15:07:21 +0000] "GET /ie6.css HTTP/1.1" 200 1730 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
185.69.145.63 - - [02/Nov/2015:15:07:21 +0000] "GET /fuof.jpg HTTP/1.1" 200 10048 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
185.69.145.63 - - [02/Nov/2015:15:07:21 +0000] "GET /uos.jpg HTTP/1.1" 200 6265 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
185.69.145.63 - - [02/Nov/2015:15:07:22 +0000] "GET /apple-touch-icon-120x120-precomposed.png HTTP/1.1" 404 4254 "-" "MobileSafari/601.1 CFNetwork/758.1.6 Darwin/15.0.0"
185.69.145.63 - - [02/Nov/2015:15:07:22 +0000] "GET /apple-touch-icon-120x120.png HTTP/1.1" 404 592 "-" "MobileSafari/601.1 CFNetwork/758.1.6 Darwin/15.0.0"
185.69.145.63 - - [02/Nov/2015:15:07:22 +0000] "GET /apple-touch-icon.png HTTP/1.1" 404 584 "-" "MobileSafari/601.1 CFNetwork/758.1.6 Darwin/15.0.0"
185.69.145.63 - - [02/Nov/2015:15:07:22 +0000] "GET /apple-touch-icon.png HTTP/1.1" 404 584 "-" "MobileSafari/601.1 CFNetwork/758.1.6 Darwin/15.0.0"
185.69.145.63 - - [02/Nov/2015:15:07:26 +0000] "GET /cs/timetables.html HTTP/1.1" 200 2653 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
185.69.145.63 - - [02/Nov/2015:15:07:33 +0000] "GET /cs/tt1-WD1.html HTTP/1.1" 200 3152 "https://www.firstyearmatters.info/cs/timetables.html" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
146.87.16.74 - - [02/Nov/2015:15:44:43 +0000] "GET /portal/ HTTP/1.1" 302 4781 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.74 - - [02/Nov/2015:15:44:43 +0000] "GET /portal/login HTTP/1.1" 200 1473 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.74 - - [02/Nov/2015:15:44:43 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.74 - - [02/Nov/2015:15:44:52 +0000] "POST /portal/login_check HTTP/1.1" 302 1107 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.74 - - [02/Nov/2015:15:44:52 +0000] "GET /portal/ HTTP/1.1" 302 891 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.74 - - [02/Nov/2015:15:44:52 +0000] "GET /portal/dashboard HTTP/1.1" 200 1543 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.74 - - [02/Nov/2015:15:44:52 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.74 - - [02/Nov/2015:15:45:00 +0000] "GET /portal/dashboard HTTP/1.1" 200 1543 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.74 - - [02/Nov/2015:15:45:00 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.74 - - [02/Nov/2015:15:45:02 +0000] "GET /portal/dashboard HTTP/1.1" 200 1405 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.74 - - [02/Nov/2015:15:45:02 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.74 - - [02/Nov/2015:15:45:05 +0000] "GET /portal/dashboard HTTP/1.1" 200 1405 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.74 - - [02/Nov/2015:15:45:05 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.74 - - [02/Nov/2015:15:45:06 +0000] "GET /portal/dashboard HTTP/1.1" 200 1405 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.74 - - [02/Nov/2015:15:45:06 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.74 - - [02/Nov/2015:15:45:06 +0000] "GET /portal/dashboard HTTP/1.1" 200 1405 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.74 - - [02/Nov/2015:15:45:06 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.74 - - [02/Nov/2015:15:45:06 +0000] "GET /portal/dashboard HTTP/1.1" 200 1405 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.74 - - [02/Nov/2015:15:45:06 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.74 - - [02/Nov/2015:15:45:07 +0000] "GET /portal/dashboard HTTP/1.1" 200 1405 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.74 - - [02/Nov/2015:15:45:07 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.74 - - [02/Nov/2015:15:45:07 +0000] "GET /portal/dashboard HTTP/1.1" 200 1405 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.74 - - [02/Nov/2015:15:45:07 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.74 - - [02/Nov/2015:15:45:07 +0000] "GET /portal/dashboard HTTP/1.1" 200 1405 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.74 - - [02/Nov/2015:15:45:07 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
66.249.64.137 - - [02/Nov/2015:16:27:37 +0000] "GET /robots.txt HTTP/1.1" 200 4228 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"
82.17.203.75 - - [02/Nov/2015:20:54:24 +0000] "GET /portal/ HTTP/1.1" 302 4781 "-" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.17.203.75 - - [02/Nov/2015:20:54:24 +0000] "GET /portal/login HTTP/1.1" 200 1470 "-" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.17.203.75 - - [02/Nov/2015:20:54:24 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.17.203.75 - - [02/Nov/2015:20:54:24 +0000] "GET /portal/js/42be59c.js HTTP/1.1" 200 41370 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.17.203.75 - - [02/Nov/2015:20:54:24 +0000] "GET /favicon.ico HTTP/1.1" 200 3984 "-" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.17.203.75 - - [02/Nov/2015:20:54:33 +0000] "POST /portal/login_check HTTP/1.1" 302 1016 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.17.203.75 - - [02/Nov/2015:20:54:34 +0000] "GET /portal/login HTTP/1.1" 200 2119 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.17.203.75 - - [02/Nov/2015:20:54:34 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.17.203.75 - - [02/Nov/2015:20:54:37 +0000] "GET /portal/dashboard HTTP/1.1" 302 878 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.17.203.75 - - [02/Nov/2015:20:54:38 +0000] "GET /portal/login HTTP/1.1" 200 1475 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.17.203.75 - - [02/Nov/2015:20:54:38 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.17.203.75 - - [02/Nov/2015:20:54:52 +0000] "POST /portal/login_check HTTP/1.1" 302 1016 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.17.203.75 - - [02/Nov/2015:20:54:52 +0000] "GET /portal/login HTTP/1.1" 200 2119 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.17.203.75 - - [02/Nov/2015:20:54:52 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.17.203.75 - - [02/Nov/2015:20:55:02 +0000] "POST /portal/login_check HTTP/1.1" 302 1107 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.17.203.75 - - [02/Nov/2015:20:55:03 +0000] "GET /portal/ HTTP/1.1" 302 753 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.17.203.75 - - [02/Nov/2015:20:55:03 +0000] "GET /portal/dashboard HTTP/1.1" 200 1530 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.17.203.75 - - [02/Nov/2015:20:55:03 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
54.158.70.222 - - [02/Nov/2015:20:56:32 +0000] "GET / HTTP/1.1" 400 5957 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.2)"
82.4.219.138 - - [02/Nov/2015:21:13:55 +0000] "GET /portal/ HTTP/1.1" 302 4817 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2540.0 Safari/537.36"
82.4.219.138 - - [02/Nov/2015:21:13:55 +0000] "GET /portal/login HTTP/1.1" 200 5194 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2540.0 Safari/537.36"
82.4.219.138 - - [02/Nov/2015:21:13:55 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2540.0 Safari/537.36"
82.4.219.138 - - [02/Nov/2015:21:13:55 +0000] "GET /portal/js/42be59c.js HTTP/1.1" 200 41232 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2540.0 Safari/537.36"
82.4.219.138 - - [02/Nov/2015:21:13:55 +0000] "GET /favicon.ico HTTP/1.1" 200 3984 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2540.0 Safari/537.36"
82.4.219.138 - - [02/Nov/2015:21:13:57 +0000] "POST /portal/login_check HTTP/1.1" 302 989 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2540.0 Safari/537.36"
82.4.219.138 - - [02/Nov/2015:21:13:57 +0000] "GET /portal/ HTTP/1.1" 302 753 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2540.0 Safari/537.36"
82.4.219.138 - - [02/Nov/2015:21:13:58 +0000] "GET /portal/dashboard HTTP/1.1" 200 1397 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2540.0 Safari/537.36"
82.4.219.138 - - [02/Nov/2015:21:13:58 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2540.0 Safari/537.36"
109.246.48.169 - - [02/Nov/2015:22:31:36 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 5191 "http://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
109.246.48.169 - - [02/Nov/2015:22:31:37 +0000] "GET /page.css HTTP/1.1" 200 626 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
109.246.48.169 - - [02/Nov/2015:22:31:37 +0000] "GET /favicon.ico HTTP/1.1" 200 3984 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
109.246.48.169 - - [02/Nov/2015:22:31:43 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1452 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
109.246.48.169 - - [02/Nov/2015:22:32:12 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1469 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"

View File

@@ -0,0 +1,48 @@
85.255.234.176 - - [01/Nov/2015:20:48:08 +0000] "GET /cs/ HTTP/1.1" 200 6555 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
85.255.234.176 - - [01/Nov/2015:20:48:09 +0000] "GET /default.css HTTP/1.1" 200 1576 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
85.255.234.176 - - [01/Nov/2015:20:48:09 +0000] "GET /ie6.css HTTP/1.1" 200 1730 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
85.255.234.176 - - [01/Nov/2015:20:48:09 +0000] "GET /highcontrast.css HTTP/1.1" 200 1675 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
85.255.234.176 - - [01/Nov/2015:20:48:09 +0000] "GET /fuof.jpg HTTP/1.1" 200 10048 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
85.255.234.176 - - [01/Nov/2015:20:48:09 +0000] "GET /largetext.css HTTP/1.1" 200 1623 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
85.255.234.176 - - [01/Nov/2015:20:48:09 +0000] "GET /uos.jpg HTTP/1.1" 200 6265 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
85.255.234.176 - - [01/Nov/2015:20:48:09 +0000] "GET /apple-touch-icon-120x120-precomposed.png HTTP/1.1" 404 4254 "-" "MobileSafari/601.1 CFNetwork/758.1.6 Darwin/15.0.0"
85.255.234.176 - - [01/Nov/2015:20:48:09 +0000] "GET /apple-touch-icon-120x120.png HTTP/1.1" 404 592 "-" "MobileSafari/601.1 CFNetwork/758.1.6 Darwin/15.0.0"
85.255.234.176 - - [01/Nov/2015:20:48:09 +0000] "GET /apple-touch-icon.png HTTP/1.1" 404 584 "-" "MobileSafari/601.1 CFNetwork/758.1.6 Darwin/15.0.0"
85.255.234.176 - - [01/Nov/2015:20:48:10 +0000] "GET /apple-touch-icon.png HTTP/1.1" 404 584 "-" "MobileSafari/601.1 CFNetwork/758.1.6 Darwin/15.0.0"
85.255.234.176 - - [01/Nov/2015:20:48:15 +0000] "GET /cs/timetables.html HTTP/1.1" 200 2651 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
85.255.234.176 - - [01/Nov/2015:20:48:20 +0000] "GET /cs/tt1-MIT2.html HTTP/1.1" 200 2987 "https://www.firstyearmatters.info/cs/timetables.html" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
85.255.234.176 - - [01/Nov/2015:20:48:28 +0000] "GET /cs/tt1-WD1.html HTTP/1.1" 200 3151 "https://www.firstyearmatters.info/cs/timetables.html" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
86.1.238.2 - - [01/Nov/2015:23:15:40 +0000] "GET /cgi-bin/forum/YaBB.pl?num=1394461217 HTTP/1.1" 200 9884 "https://blackboard.salford.ac.uk/webapps/blackboard/execute/announcement?method=search&context=course_entry&course_id=_36320_1&handle=announcements_entry&mode=view" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.1.238.2 - - [01/Nov/2015:23:15:41 +0000] "GET /uos.jpg HTTP/1.1" 200 6127 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?num=1394461217" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.1.238.2 - - [01/Nov/2015:23:15:41 +0000] "GET /yabbfiles/ubbc.js HTTP/1.1" 200 2220 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?num=1394461217" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.1.238.2 - - [01/Nov/2015:23:15:41 +0000] "GET /yabbfiles/Templates/Forum/default/fymlogo.gif HTTP/1.1" 200 3393 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?num=1394461217" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.1.238.2 - - [01/Nov/2015:23:15:41 +0000] "GET /yabbfiles/Templates/Forum/default.css HTTP/1.1" 200 2502 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?num=1394461217" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.1.238.2 - - [01/Nov/2015:23:15:41 +0000] "GET /yabbfiles/Templates/Forum/default/tabfill.gif HTTP/1.1" 200 1960 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?num=1394461217" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.1.238.2 - - [01/Nov/2015:23:15:41 +0000] "GET /yabbfiles/Templates/Forum/default/tabsep211.png HTTP/1.1" 200 424 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?num=1394461217" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.1.238.2 - - [01/Nov/2015:23:15:41 +0000] "GET /yabbfiles/Templates/Forum/default/search.gif HTTP/1.1" 200 855 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?num=1394461217" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.1.238.2 - - [01/Nov/2015:23:15:41 +0000] "GET /yabbfiles/Templates/Forum/default/poll_lock.gif HTTP/1.1" 200 586 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?num=1394461217" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.1.238.2 - - [01/Nov/2015:23:15:41 +0000] "GET /yabbfiles/Templates/Forum/default/poll_left.gif HTTP/1.1" 200 455 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?num=1394461217" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.1.238.2 - - [01/Nov/2015:23:15:41 +0000] "GET /yabbfiles/Templates/Forum/default/menutop.png HTTP/1.1" 200 466 "https://www.firstyearmatters.info/yabbfiles/Templates/Forum/default.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.1.238.2 - - [01/Nov/2015:23:15:41 +0000] "GET /yabbfiles/Templates/Forum/default/tab211.png HTTP/1.1" 200 465 "https://www.firstyearmatters.info/yabbfiles/Templates/Forum/default.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.1.238.2 - - [01/Nov/2015:23:15:41 +0000] "GET /yabbfiles/Templates/Forum/default/searchbg211.png HTTP/1.1" 200 481 "https://www.firstyearmatters.info/yabbfiles/Templates/Forum/default.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.1.238.2 - - [01/Nov/2015:23:15:41 +0000] "GET /yabbfiles/Templates/Forum/default/poll_middle.gif HTTP/1.1" 200 580 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?num=1394461217" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.1.238.2 - - [01/Nov/2015:23:15:41 +0000] "GET /yabbfiles/Templates/Forum/default/poll_right.gif HTTP/1.1" 200 593 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?num=1394461217" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.1.238.2 - - [01/Nov/2015:23:15:41 +0000] "GET /yabbfiles/Templates/Forum/default/tab_selected211.png HTTP/1.1" 200 614 "https://www.firstyearmatters.info/yabbfiles/Templates/Forum/default.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.1.238.2 - - [01/Nov/2015:23:15:41 +0000] "GET /yabbfiles/Templates/Forum/default/tabright211.png HTTP/1.1" 200 1290 "https://www.firstyearmatters.info/yabbfiles/Templates/Forum/default.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.1.238.2 - - [01/Nov/2015:23:15:41 +0000] "GET /yabbfiles/Templates/Forum/default/tableft211.png HTTP/1.1" 200 961 "https://www.firstyearmatters.info/yabbfiles/Templates/Forum/default.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.1.238.2 - - [01/Nov/2015:23:15:41 +0000] "GET /yabbfiles/Templates/Forum/default/thread.gif HTTP/1.1" 200 693 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?num=1394461217" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.1.238.2 - - [01/Nov/2015:23:15:41 +0000] "GET /yabbfiles/Buttons/English/print.png HTTP/1.1" 200 1125 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?num=1394461217" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.1.238.2 - - [01/Nov/2015:23:15:41 +0000] "GET /yabbfiles/Templates/Forum/default/exclamation.gif HTTP/1.1" 200 738 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?num=1394461217" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.1.238.2 - - [01/Nov/2015:23:15:41 +0000] "GET /yabbfiles/Buttons/English/sendtopic.png HTTP/1.1" 200 1302 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?num=1394461217" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.1.238.2 - - [01/Nov/2015:23:15:41 +0000] "GET /yabbfiles/Templates/Forum/default/index_togl.gif HTTP/1.1" 200 1270 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?num=1394461217" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.1.238.2 - - [01/Nov/2015:23:15:41 +0000] "GET /yabbfiles/Templates/Forum/default/staradmin.gif HTTP/1.1" 200 903 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?num=1394461217" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.1.238.2 - - [01/Nov/2015:23:15:41 +0000] "GET /yabbfiles/Templates/Forum/default/ip.gif HTTP/1.1" 200 485 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?num=1394461217" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.1.238.2 - - [01/Nov/2015:23:15:41 +0000] "GET /yabbfiles/Templates/Forum/default/sf.gif HTTP/1.1" 200 740 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?num=1394461217" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.1.238.2 - - [01/Nov/2015:23:15:41 +0000] "GET /yabbfiles/Templates/Forum/default/valid-rss.png HTTP/1.1" 200 1866 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?num=1394461217" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.1.238.2 - - [01/Nov/2015:23:15:41 +0000] "GET /yabbfiles/Templates/Forum/default/grad_bottom.png HTTP/1.1" 200 448 "https://www.firstyearmatters.info/yabbfiles/Templates/Forum/default.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.1.238.2 - - [01/Nov/2015:23:15:41 +0000] "GET /yabbfiles/Templates/Forum/default/css.gif HTTP/1.1" 200 544 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?num=1394461217" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.1.238.2 - - [01/Nov/2015:23:15:41 +0000] "GET /yabbfiles/Templates/Forum/default/perl.gif HTTP/1.1" 200 1454 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?num=1394461217" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.1.238.2 - - [01/Nov/2015:23:15:41 +0000] "GET /yabbfiles/Templates/Forum/default/xhtml.gif HTTP/1.1" 200 562 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?num=1394461217" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.1.238.2 - - [01/Nov/2015:23:15:42 +0000] "GET /favicon.ico HTTP/1.1" 200 3984 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?num=1394461217" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.1.226.30 - - [02/Nov/2015:01:25:23 +0000] "GET / HTTP/1.1" 302 4268 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
86.1.226.30 - - [02/Nov/2015:01:25:23 +0000] "GET /cs HTTP/1.1" 301 656 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"

View File

@@ -0,0 +1,207 @@
146.87.193.140 - - [23/Oct/2015:09:38:54 +0100] "GET /yabbfiles/Templates/Forum/default.css HTTP/1.1" 200 6363 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
146.87.193.140 - - [23/Oct/2015:09:38:54 +0100] "GET /yabbfiles/ubbc.js HTTP/1.1" 200 2220 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
146.87.193.140 - - [23/Oct/2015:09:38:54 +0100] "GET /yabbfiles/Templates/Forum/default/tabfill.gif HTTP/1.1" 200 2098 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
146.87.193.140 - - [23/Oct/2015:09:38:54 +0100] "GET /yabbfiles/Templates/Forum/default/fymlogo.gif HTTP/1.1" 200 3393 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
146.87.193.140 - - [23/Oct/2015:09:38:54 +0100] "GET /yabbfiles/Templates/Forum/default/tabsep211.png HTTP/1.1" 200 562 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
146.87.193.140 - - [23/Oct/2015:09:38:54 +0100] "GET /yabbfiles/Templates/Forum/default/boards.gif HTTP/1.1" 200 2721 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
146.87.193.140 - - [23/Oct/2015:09:38:54 +0100] "GET /yabbfiles/Templates/Forum/default/rss.png HTTP/1.1" 200 1987 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
146.87.193.140 - - [23/Oct/2015:09:38:54 +0100] "GET /yabbfiles/Templates/Forum/default/info.gif HTTP/1.1" 200 2657 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
146.87.193.140 - - [23/Oct/2015:09:38:54 +0100] "GET /yabbfiles/Templates/Forum/default/online.gif HTTP/1.1" 200 2877 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
146.87.193.140 - - [23/Oct/2015:09:38:54 +0100] "GET /yabbfiles/Templates/Forum/default/lastpost.gif HTTP/1.1" 200 655 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
146.87.193.140 - - [23/Oct/2015:09:38:54 +0100] "GET /yabbfiles/Templates/Forum/default/login.gif HTTP/1.1" 200 1779 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
146.87.193.140 - - [23/Oct/2015:09:38:54 +0100] "GET /yabbfiles/Templates/Forum/default/xhtml.gif HTTP/1.1" 200 562 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
146.87.193.140 - - [23/Oct/2015:09:38:54 +0100] "GET /yabbfiles/Templates/Forum/default/valid-rss.png HTTP/1.1" 200 1866 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
146.87.193.140 - - [23/Oct/2015:09:38:54 +0100] "GET /yabbfiles/Templates/Forum/default/css.gif HTTP/1.1" 200 544 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
146.87.193.140 - - [23/Oct/2015:09:38:54 +0100] "GET /yabbfiles/Templates/Forum/default/sf.gif HTTP/1.1" 200 740 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
146.87.193.140 - - [23/Oct/2015:09:38:54 +0100] "GET /yabbfiles/Templates/Forum/default/perl.gif HTTP/1.1" 200 1454 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
146.87.193.140 - - [23/Oct/2015:09:38:54 +0100] "GET /yabbfiles/Templates/Forum/default/menutop.png HTTP/1.1" 200 466 "https://www.firstyearmatters.info/yabbfiles/Templates/Forum/default.css" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
146.87.193.140 - - [23/Oct/2015:09:38:54 +0100] "GET /yabbfiles/Templates/Forum/default/tableft211.png HTTP/1.1" 200 961 "https://www.firstyearmatters.info/yabbfiles/Templates/Forum/default.css" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
146.87.193.140 - - [23/Oct/2015:09:38:54 +0100] "GET /yabbfiles/Templates/Forum/default/tab211.png HTTP/1.1" 200 465 "https://www.firstyearmatters.info/yabbfiles/Templates/Forum/default.css" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
146.87.193.140 - - [23/Oct/2015:09:38:54 +0100] "GET /yabbfiles/Templates/Forum/default/tab_selected211.png HTTP/1.1" 200 476 "https://www.firstyearmatters.info/yabbfiles/Templates/Forum/default.css" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
146.87.193.140 - - [23/Oct/2015:09:38:54 +0100] "GET /yabbfiles/Templates/Forum/default/tabright211.png HTTP/1.1" 200 1290 "https://www.firstyearmatters.info/yabbfiles/Templates/Forum/default.css" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
146.87.193.140 - - [23/Oct/2015:09:38:54 +0100] "GET /yabbfiles/Templates/Forum/default/searchbg211.png HTTP/1.1" 200 481 "https://www.firstyearmatters.info/yabbfiles/Templates/Forum/default.css" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
146.87.193.140 - - [23/Oct/2015:09:38:54 +0100] "GET /yabbfiles/Templates/Forum/default/search.gif HTTP/1.1" 200 717 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
146.87.193.140 - - [23/Oct/2015:09:38:54 +0100] "GET /yabbfiles/Templates/Forum/default/grad_bottom.png HTTP/1.1" 200 448 "https://www.firstyearmatters.info/yabbfiles/Templates/Forum/default.css" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
146.87.193.140 - - [23/Oct/2015:09:38:54 +0100] "GET /yabbfiles/Templates/Forum/default/catbg.png HTTP/1.1" 200 467 "https://www.firstyearmatters.info/yabbfiles/Templates/Forum/default.css" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
146.87.136.146 - - [23/Oct/2015:10:02:27 +0100] "GET /portal/ HTTP/1.1" 302 4781 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [23/Oct/2015:10:02:30 +0100] "GET /portal/login HTTP/1.1" 200 5177 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [23/Oct/2015:10:02:30 +0100] "GET /portal/js/42be59c.js HTTP/1.1" 200 41232 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [23/Oct/2015:10:02:30 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [23/Oct/2015:10:02:31 +0100] "GET /favicon.ico HTTP/1.1" 200 3984 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [23/Oct/2015:10:02:42 +0100] "POST /portal/login_check HTTP/1.1" 302 1107 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [23/Oct/2015:10:02:43 +0100] "GET /portal/ HTTP/1.1" 302 753 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [23/Oct/2015:10:02:43 +0100] "GET /portal/dashboard HTTP/1.1" 200 1395 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [23/Oct/2015:10:02:43 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1062 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [23/Oct/2015:10:04:43 +0100] "GET /portal HTTP/1.1" 301 4509 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [23/Oct/2015:10:04:43 +0100] "GET /portal/ HTTP/1.1" 302 936 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [23/Oct/2015:10:04:43 +0100] "GET /portal/login HTTP/1.1" 200 1334 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [23/Oct/2015:10:04:43 +0100] "GET /portal/js/42be59c.js HTTP/1.1" 200 41232 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [23/Oct/2015:10:04:43 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 4769 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [23/Oct/2015:10:04:44 +0100] "GET /favicon.ico HTTP/1.1" 200 3984 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.187.143 - - [23/Oct/2015:10:04:47 +0100] "GET /portal/logout HTTP/1.1" 302 1107 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.187.143 - - [23/Oct/2015:10:04:47 +0100] "GET /portal/ HTTP/1.1" 302 1016 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.187.143 - - [23/Oct/2015:10:04:47 +0100] "GET /portal/login HTTP/1.1" 200 1330 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.187.143 - - [23/Oct/2015:10:04:47 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [23/Oct/2015:10:04:50 +0100] "POST /portal/login_check HTTP/1.1" 302 1107 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [23/Oct/2015:10:04:50 +0100] "GET /portal/ HTTP/1.1" 302 753 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [23/Oct/2015:10:04:50 +0100] "GET /portal/dashboard HTTP/1.1" 200 1406 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [23/Oct/2015:10:04:50 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [23/Oct/2015:10:04:52 +0100] "GET /portal/linux/passwd/172 HTTP/1.1" 200 1585 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [23/Oct/2015:10:04:52 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/linux/passwd/172" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.187.143 - - [23/Oct/2015:10:04:54 +0100] "POST /portal/login_check HTTP/1.1" 302 1107 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.187.143 - - [23/Oct/2015:10:04:54 +0100] "GET /portal/ HTTP/1.1" 302 891 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.187.143 - - [23/Oct/2015:10:04:54 +0100] "GET /portal/dashboard HTTP/1.1" 200 1395 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.187.143 - - [23/Oct/2015:10:04:54 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [23/Oct/2015:10:05:29 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1062 "https://firstyearmatters.info/portal/linux/passwd/172" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [23/Oct/2015:10:05:02 +0100] "POST /portal/linux/passwd/172 HTTP/1.1" 200 1635 "https://firstyearmatters.info/portal/linux/passwd/172" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [23/Oct/2015:10:05:31 +0100] "GET /portal/dashboard HTTP/1.1" 200 1406 "https://firstyearmatters.info/portal/linux/passwd/172" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [23/Oct/2015:10:05:31 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [23/Oct/2015:10:06:36 +0100] "GET /portal/logout HTTP/1.1" 302 1107 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [23/Oct/2015:10:06:36 +0100] "GET /portal/ HTTP/1.1" 302 878 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [23/Oct/2015:10:06:36 +0100] "GET /portal/login HTTP/1.1" 200 1330 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [23/Oct/2015:10:06:36 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1062 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [23/Oct/2015:10:27:30 +0100] "GET /portal/ HTTP/1.1" 302 4781 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [23/Oct/2015:10:27:30 +0100] "GET /portal/login HTTP/1.1" 200 1334 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [23/Oct/2015:10:27:30 +0100] "GET /portal/js/42be59c.js HTTP/1.1" 200 41232 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [23/Oct/2015:10:27:30 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 4769 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [23/Oct/2015:10:27:30 +0100] "GET /favicon.ico HTTP/1.1" 200 3984 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [23/Oct/2015:10:27:46 +0100] "POST /portal/login_check HTTP/1.1" 302 1107 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [23/Oct/2015:10:27:47 +0100] "GET /portal/ HTTP/1.1" 302 753 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [23/Oct/2015:10:27:47 +0100] "GET /portal/dashboard HTTP/1.1" 200 1396 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [23/Oct/2015:10:27:47 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1062 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.187.162 - - [23/Oct/2015:10:29:17 +0100] "GET /portal/linux/passwd/165 HTTP/1.1" 200 1577 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.187.162 - - [23/Oct/2015:10:29:17 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1062 "https://firstyearmatters.info/portal/linux/passwd/165" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.187.162 - - [23/Oct/2015:10:29:36 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1062 "https://firstyearmatters.info/portal/linux/passwd/165" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.187.162 - - [23/Oct/2015:10:29:26 +0100] "POST /portal/linux/passwd/165 HTTP/1.1" 200 1628 "https://firstyearmatters.info/portal/linux/passwd/165" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.187.162 - - [23/Oct/2015:10:29:50 +0100] "GET /portal/dashboard HTTP/1.1" 200 1534 "https://firstyearmatters.info/portal/linux/passwd/165" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.187.162 - - [23/Oct/2015:10:29:50 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.87 - - [23/Oct/2015:10:34:18 +0100] "GET /portal/ HTTP/1.1" 302 4817 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.87 - - [23/Oct/2015:10:34:18 +0100] "GET /portal/login HTTP/1.1" 200 1474 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.87 - - [23/Oct/2015:10:34:18 +0100] "GET /portal/js/42be59c.js HTTP/1.1" 200 41370 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.87 - - [23/Oct/2015:10:34:18 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.87 - - [23/Oct/2015:10:34:19 +0100] "GET /favicon.ico HTTP/1.1" 200 3984 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.87 - - [23/Oct/2015:10:34:29 +0100] "POST /portal/login_check HTTP/1.1" 302 1127 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.87 - - [23/Oct/2015:10:34:29 +0100] "GET /portal/ HTTP/1.1" 302 891 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.87 - - [23/Oct/2015:10:34:29 +0100] "GET /portal/dashboard HTTP/1.1" 200 1383 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.87 - - [23/Oct/2015:10:34:29 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.87 - - [23/Oct/2015:10:34:32 +0100] "GET /portal/linux/register HTTP/1.1" 200 1491 "https://www.firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.87 - - [23/Oct/2015:10:34:32 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.87 - - [23/Oct/2015:10:34:44 +0100] "POST /portal/linux/register HTTP/1.1" 200 1672 "https://www.firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.87 - - [23/Oct/2015:10:34:44 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.87 - - [23/Oct/2015:10:35:02 +0100] "POST /portal/linux/register HTTP/1.1" 302 891 "https://www.firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.87 - - [23/Oct/2015:10:35:43 +0100] "GET /portal/dashboard HTTP/1.1" 200 1536 "https://www.firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.87 - - [23/Oct/2015:10:35:43 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.87 - - [23/Oct/2015:10:36:00 +0100] "GET /portal/dashboard HTTP/1.1" 200 1536 "https://www.firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.87 - - [23/Oct/2015:10:36:00 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.87 - - [23/Oct/2015:10:36:04 +0100] "GET /portal/dashboard HTTP/1.1" 200 1398 "https://www.firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.87 - - [23/Oct/2015:10:36:04 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
85.29.187.251 - - [23/Oct/2015:11:23:06 +0100] "GET /cgi-bin/forum/YaBB.pl?board=general HTTP/1.0" 200 78753 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?board=general" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:36.0) Gecko/20100101 Firefox/36.0"
85.29.187.251 - - [23/Oct/2015:11:23:07 +0100] "GET /cgi-bin/forum/YaBB.pl?action=register HTTP/1.0" 200 24441 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?action=register" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:36.0) Gecko/20100101 Firefox/36.0"
178.108.12.150 - - [23/Oct/2015:12:58:30 +0100] "GET /portal/ HTTP/1.1" 302 4817 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
178.108.12.150 - - [23/Oct/2015:12:58:31 +0100] "GET /portal/login HTTP/1.1" 200 1330 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
178.108.12.150 - - [23/Oct/2015:12:58:31 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
178.108.12.150 - - [23/Oct/2015:12:58:31 +0100] "GET /portal/js/42be59c.js HTTP/1.1" 200 41370 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
178.108.12.150 - - [23/Oct/2015:12:58:32 +0100] "GET /favicon.ico HTTP/1.1" 200 3984 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
178.108.12.150 - - [23/Oct/2015:12:58:40 +0100] "POST /portal/login_check HTTP/1.1" 302 1127 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
178.108.12.150 - - [23/Oct/2015:12:58:40 +0100] "GET /portal/ HTTP/1.1" 302 753 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
178.108.12.150 - - [23/Oct/2015:12:58:40 +0100] "GET /portal/dashboard HTTP/1.1" 200 1392 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
178.108.12.150 - - [23/Oct/2015:12:58:40 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
178.108.12.150 - - [23/Oct/2015:12:58:57 +0100] "GET /portal/dashboard HTTP/1.1" 200 1530 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
178.108.12.150 - - [23/Oct/2015:12:58:57 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
178.108.12.150 - - [23/Oct/2015:12:58:59 +0100] "GET /portal/linux/passwd/383 HTTP/1.1" 200 1434 "https://www.firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
178.108.12.150 - - [23/Oct/2015:12:58:59 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/linux/passwd/383" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
178.108.12.150 - - [23/Oct/2015:12:59:32 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1062 "https://www.firstyearmatters.info/portal/linux/passwd/383" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
178.108.12.150 - - [23/Oct/2015:12:59:21 +0100] "POST /portal/linux/passwd/383 HTTP/1.1" 200 1622 "https://www.firstyearmatters.info/portal/linux/passwd/383" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
178.108.12.150 - - [23/Oct/2015:12:59:51 +0100] "GET /portal/dashboard HTTP/1.1" 200 1530 "https://www.firstyearmatters.info/portal/linux/passwd/383" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
178.108.12.150 - - [23/Oct/2015:12:59:51 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
86.8.115.114 - - [23/Oct/2015:14:00:57 +0100] "GET /portal/dashboard HTTP/1.1" 302 4781 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
86.8.115.114 - - [23/Oct/2015:14:00:57 +0100] "GET /portal/login HTTP/1.1" 200 5179 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
86.8.115.114 - - [23/Oct/2015:14:00:57 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
86.8.115.114 - - [23/Oct/2015:14:00:58 +0100] "POST /portal/login_check HTTP/1.1" 302 969 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
86.8.115.114 - - [23/Oct/2015:14:00:59 +0100] "GET /portal/ HTTP/1.1" 302 753 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
86.8.115.114 - - [23/Oct/2015:14:00:59 +0100] "GET /portal/dashboard HTTP/1.1" 200 1389 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
86.8.115.114 - - [23/Oct/2015:14:00:59 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.16.25 - - [23/Oct/2015:14:07:04 +0100] "GET /portal/dashboard HTTP/1.1" 200 5318 "https://www.firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.25 - - [23/Oct/2015:14:07:04 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.202.155 - - [23/Oct/2015:15:05:13 +0100] "GET / HTTP/1.1" 302 4280 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
10.99.202.155 - - [23/Oct/2015:15:05:13 +0100] "GET /cs HTTP/1.1" 301 668 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
10.99.202.155 - - [23/Oct/2015:15:05:13 +0100] "GET /cs/ HTTP/1.1" 200 2914 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
10.99.202.155 - - [23/Oct/2015:15:05:13 +0100] "GET /default.css HTTP/1.1" 200 1576 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
10.99.202.155 - - [23/Oct/2015:15:05:13 +0100] "GET /highcontrast.css HTTP/1.1" 200 1537 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
10.99.202.155 - - [23/Oct/2015:15:05:13 +0100] "GET /print.css HTTP/1.1" 200 1058 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
10.99.202.155 - - [23/Oct/2015:15:05:13 +0100] "GET /fym.css HTTP/1.1" 200 1727 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
10.99.202.155 - - [23/Oct/2015:15:05:13 +0100] "GET /largetext.css HTTP/1.1" 200 1623 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
10.99.202.155 - - [23/Oct/2015:15:05:13 +0100] "GET /uos.jpg HTTP/1.1" 200 6265 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
10.99.202.155 - - [23/Oct/2015:15:05:13 +0100] "GET /switcher.js HTTP/1.1" 200 1272 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
10.99.202.155 - - [23/Oct/2015:15:05:13 +0100] "GET /ie6.css HTTP/1.1" 200 1730 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
10.99.202.155 - - [23/Oct/2015:15:05:13 +0100] "GET /fuof.jpg HTTP/1.1" 200 9910 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
10.99.202.155 - - [23/Oct/2015:15:05:20 +0100] "GET /cs/ HTTP/1.1" 200 3052 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
10.99.202.155 - - [23/Oct/2015:15:05:20 +0100] "GET / HTTP/1.1" 302 768 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
10.99.202.155 - - [23/Oct/2015:15:05:20 +0100] "GET /cgi-bin/binary.cgi HTTP/1.1" 200 1291 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
10.99.202.155 - - [23/Oct/2015:15:05:20 +0100] "GET /cs HTTP/1.1" 301 668 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
10.99.202.155 - - [23/Oct/2015:15:05:20 +0100] "GET /cs/ HTTP/1.1" 200 2914 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
10.99.202.155 - - [23/Oct/2015:15:05:22 +0100] "GET /ss HTTP/1.1" 301 668 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
10.99.202.155 - - [23/Oct/2015:15:05:22 +0100] "GET /ss/ HTTP/1.1" 200 1256 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
10.99.202.155 - - [23/Oct/2015:15:05:22 +0100] "GET /page.css HTTP/1.1" 200 626 "https://www.firstyearmatters.info/ss/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
10.99.202.155 - - [23/Oct/2015:15:05:43 +0100] "GET /ss/0201time1.pdf HTTP/1.1" 200 15650 "https://www.firstyearmatters.info/ss/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
146.87.16.210 - - [23/Oct/2015:16:09:35 +0100] "GET /portal HTTP/1.1" 301 4509 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.210 - - [23/Oct/2015:16:09:35 +0100] "GET /portal/ HTTP/1.1" 302 936 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.210 - - [23/Oct/2015:16:09:35 +0100] "GET /portal/login HTTP/1.1" 200 5178 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.210 - - [23/Oct/2015:16:09:35 +0100] "GET /portal/js/42be59c.js HTTP/1.1" 200 41370 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.210 - - [23/Oct/2015:16:09:35 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.210 - - [23/Oct/2015:16:09:35 +0100] "GET /favicon.ico HTTP/1.1" 200 3984 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.210 - - [23/Oct/2015:16:09:47 +0100] "GET /portal/login HTTP/1.1" 200 1471 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.210 - - [23/Oct/2015:16:09:47 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.210 - - [23/Oct/2015:16:10:16 +0100] "POST /portal/login_check HTTP/1.1" 302 1107 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.210 - - [23/Oct/2015:16:10:16 +0100] "GET /portal/ HTTP/1.1" 302 891 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.210 - - [23/Oct/2015:16:10:16 +0100] "GET /portal/dashboard HTTP/1.1" 200 1418 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.210 - - [23/Oct/2015:16:10:16 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.210 - - [23/Oct/2015:16:10:28 +0100] "GET /portal/linux/passwd/271 HTTP/1.1" 200 1597 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.210 - - [23/Oct/2015:16:10:28 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1062 "https://firstyearmatters.info/portal/linux/passwd/271" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.210 - - [23/Oct/2015:16:10:45 +0100] "POST /portal/linux/passwd/271 HTTP/1.1" 200 1639 "https://firstyearmatters.info/portal/linux/passwd/271" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.210 - - [23/Oct/2015:16:10:45 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1062 "https://firstyearmatters.info/portal/linux/passwd/271" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.210 - - [23/Oct/2015:16:11:36 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1062 "https://firstyearmatters.info/portal/linux/passwd/271" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.210 - - [23/Oct/2015:16:11:23 +0100] "POST /portal/linux/passwd/271 HTTP/1.1" 200 1648 "https://firstyearmatters.info/portal/linux/passwd/271" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
86.8.115.114 - - [23/Oct/2015:17:28:10 +0100] "GET /portal/dashboard HTTP/1.1" 200 5234 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
86.8.115.114 - - [23/Oct/2015:17:28:10 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 4769 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.246.124.12 - - [23/Oct/2015:19:13:17 +0100] "GET /portal HTTP/1.1" 301 4509 "-" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.246.124.12 - - [23/Oct/2015:19:13:17 +0100] "GET /portal/ HTTP/1.1" 302 936 "-" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.246.124.12 - - [23/Oct/2015:19:13:17 +0100] "GET /portal/login HTTP/1.1" 200 5181 "-" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.246.124.12 - - [23/Oct/2015:19:13:17 +0100] "GET /portal/js/42be59c.js HTTP/1.1" 200 41232 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.246.124.12 - - [23/Oct/2015:19:13:17 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.246.124.12 - - [23/Oct/2015:19:13:17 +0100] "GET /favicon.ico HTTP/1.1" 200 3984 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.246.124.12 - - [23/Oct/2015:19:13:41 +0100] "POST /portal/login_check HTTP/1.1" 302 1107 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.246.124.12 - - [23/Oct/2015:19:13:41 +0100] "GET /portal/ HTTP/1.1" 302 753 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.246.124.12 - - [23/Oct/2015:19:13:41 +0100] "GET /portal/dashboard HTTP/1.1" 200 1418 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.246.124.12 - - [23/Oct/2015:19:13:41 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
31.205.161.13 - - [23/Oct/2015:20:59:44 +0100] "GET /ss/ HTTP/1.1" 200 4906 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
86.129.42.161 - - [23/Oct/2015:21:08:30 +0100] "GET /cs/timetables.html HTTP/1.1" 200 6384 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
86.129.42.161 - - [23/Oct/2015:21:10:28 +0100] "GET /cs/tt1-CC1.3.html HTTP/1.1" 200 3149 "https://www.firstyearmatters.info/cs/timetables.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
86.129.42.161 - - [23/Oct/2015:21:10:36 +0100] "GET /cs/tt2-CC1.3.html HTTP/1.1" 200 2993 "https://www.firstyearmatters.info/cs/tt1-CC1.3.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
86.129.42.161 - - [23/Oct/2015:21:11:28 +0100] "GET /cs/tt1-CC1.1.html HTTP/1.1" 200 3133 "https://www.firstyearmatters.info/cs/timetables.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
86.129.42.161 - - [23/Oct/2015:21:11:33 +0100] "GET /cs/tt2-CC1.1.html HTTP/1.1" 200 2864 "https://www.firstyearmatters.info/cs/tt1-CC1.1.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
86.129.42.161 - - [23/Oct/2015:21:12:02 +0100] "GET /cs/tt1-CC1.2.html HTTP/1.1" 200 3160 "https://www.firstyearmatters.info/cs/timetables.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
86.129.42.161 - - [23/Oct/2015:21:12:18 +0100] "GET /cs/tt2-CC1.2.html HTTP/1.1" 200 3010 "https://www.firstyearmatters.info/cs/tt1-CC1.2.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
86.129.42.161 - - [23/Oct/2015:21:12:34 +0100] "GET /cs/tt1-CC1.4.html HTTP/1.1" 200 3119 "https://www.firstyearmatters.info/cs/timetables.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
86.129.42.161 - - [23/Oct/2015:21:12:36 +0100] "GET /cs/tt2-CC1.4.html HTTP/1.1" 200 2866 "https://www.firstyearmatters.info/cs/tt1-CC1.4.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
86.129.42.161 - - [23/Oct/2015:21:12:42 +0100] "GET /cs/tt1-CC1.3.html HTTP/1.1" 200 3149 "https://www.firstyearmatters.info/cs/timetables.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
86.129.42.161 - - [23/Oct/2015:21:13:03 +0100] "GET /cs/tt2-CC1.3.html HTTP/1.1" 200 2993 "https://www.firstyearmatters.info/cs/tt1-CC1.3.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
86.129.42.161 - - [23/Oct/2015:21:13:38 +0100] "GET /cs/timetables.html HTTP/1.1" 200 2661 "https://www.firstyearmatters.info/cs/tt1-CC1.3.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
86.129.42.161 - - [23/Oct/2015:21:13:40 +0100] "GET /cs/tt1-CC1.1.html HTTP/1.1" 200 2995 "https://www.firstyearmatters.info/cs/timetables.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
86.129.42.161 - - [23/Oct/2015:21:13:45 +0100] "GET /cs/tt2-CC1.1.html HTTP/1.1" 200 6725 "https://www.firstyearmatters.info/cs/tt1-CC1.1.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
86.129.42.161 - - [23/Oct/2015:21:13:57 +0100] "GET /cs/timetables.html HTTP/1.1" 200 2661 "https://www.firstyearmatters.info/cs/tt1-CC1.1.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
86.129.42.161 - - [23/Oct/2015:21:13:58 +0100] "GET /cs/tt1-CC1.3.html HTTP/1.1" 200 3011 "https://www.firstyearmatters.info/cs/timetables.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
86.129.42.161 - - [23/Oct/2015:21:14:00 +0100] "GET /cs/tt1-CC1.1.html HTTP/1.1" 200 2995 "https://www.firstyearmatters.info/cs/timetables.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
86.129.42.161 - - [23/Oct/2015:21:14:02 +0100] "GET /cs/tt2-CC1.1.html HTTP/1.1" 200 2864 "https://www.firstyearmatters.info/cs/tt1-CC1.1.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
86.129.42.161 - - [23/Oct/2015:21:14:06 +0100] "GET /cs/tt1-CC1.2.html HTTP/1.1" 200 3022 "https://www.firstyearmatters.info/cs/timetables.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
86.129.42.161 - - [23/Oct/2015:21:14:08 +0100] "GET /cs/tt2-CC1.2.html HTTP/1.1" 200 2872 "https://www.firstyearmatters.info/cs/tt1-CC1.2.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
86.129.42.161 - - [23/Oct/2015:21:14:21 +0100] "GET /cs/tt1-CC1.4.html HTTP/1.1" 200 3119 "https://www.firstyearmatters.info/cs/timetables.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
86.129.42.161 - - [23/Oct/2015:21:14:24 +0100] "GET /cs/tt2-CC1.4.html HTTP/1.1" 200 2866 "https://www.firstyearmatters.info/cs/tt1-CC1.4.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
86.27.217.9 - - [23/Oct/2015:21:16:48 +0100] "GET /portal/login HTTP/1.1" 200 5044 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
86.27.217.9 - - [23/Oct/2015:21:16:48 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
2.222.226.135 - - [23/Oct/2015:23:12:49 +0100] "GET /portal/login HTTP/1.1" 200 5039 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko)"
2.222.226.135 - - [23/Oct/2015:23:12:50 +0100] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4242 "-" "Safari/11601.2.7.2 CFNetwork/760.1.2 Darwin/15.0.0 (x86_64)"
2.222.226.135 - - [23/Oct/2015:23:12:50 +0100] "GET /apple-touch-icon.png HTTP/1.1" 404 580 "-" "Safari/11601.2.7.2 CFNetwork/760.1.2 Darwin/15.0.0 (x86_64)"
2.222.226.135 - - [23/Oct/2015:23:12:50 +0100] "GET /portal/login HTTP/1.1" 200 1393 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B410 Safari/600.1.4"
2.222.226.135 - - [23/Oct/2015:23:12:50 +0100] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 592 "-" "Safari/11601.2.7.2 CFNetwork/760.1.2 Darwin/15.0.0 (x86_64)"
2.222.226.135 - - [23/Oct/2015:23:12:50 +0100] "GET /apple-touch-icon.png HTTP/1.1" 404 580 "-" "Safari/11601.2.7.2 CFNetwork/760.1.2 Darwin/15.0.0 (x86_64)"

View File

@@ -0,0 +1,907 @@
146.87.101.23 - - [22/Oct/2015:07:47:15 +0100] "GET /portal HTTP/1.1" 301 4509 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.101.23 - - [22/Oct/2015:07:47:15 +0100] "GET /portal/ HTTP/1.1" 302 936 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.101.23 - - [22/Oct/2015:07:47:18 +0100] "GET /portal/login HTTP/1.1" 200 5180 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.101.23 - - [22/Oct/2015:07:47:19 +0100] "GET /portal/js/42be59c.js HTTP/1.1" 200 41232 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.101.23 - - [22/Oct/2015:07:47:19 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.101.23 - - [22/Oct/2015:07:47:19 +0100] "GET /favicon.ico HTTP/1.1" 200 3984 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.101.23 - - [22/Oct/2015:07:47:24 +0100] "POST /portal/login_check HTTP/1.1" 302 878 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.101.23 - - [22/Oct/2015:07:47:25 +0100] "GET /portal/login HTTP/1.1" 200 2122 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.101.23 - - [22/Oct/2015:07:47:25 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.152 - - [22/Oct/2015:08:07:55 +0100] "GET /portal HTTP/1.1" 301 4509 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.152 - - [22/Oct/2015:08:07:55 +0100] "GET /portal/ HTTP/1.1" 302 936 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.152 - - [22/Oct/2015:08:07:55 +0100] "GET /portal/login HTTP/1.1" 200 5180 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.152 - - [22/Oct/2015:08:07:55 +0100] "GET /portal/js/42be59c.js HTTP/1.1" 200 41232 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.152 - - [22/Oct/2015:08:07:55 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.152 - - [22/Oct/2015:08:07:56 +0100] "GET /favicon.ico HTTP/1.1" 200 3984 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.152 - - [22/Oct/2015:08:08:03 +0100] "POST /portal/login_check HTTP/1.1" 302 1016 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.152 - - [22/Oct/2015:08:08:04 +0100] "GET /portal/login HTTP/1.1" 200 2122 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.152 - - [22/Oct/2015:08:08:04 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.152 - - [22/Oct/2015:08:08:10 +0100] "POST /portal/login_check HTTP/1.1" 302 1016 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.152 - - [22/Oct/2015:08:08:10 +0100] "GET /portal/login HTTP/1.1" 200 2122 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.152 - - [22/Oct/2015:08:08:10 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.152 - - [22/Oct/2015:08:08:15 +0100] "POST /portal/login_check HTTP/1.1" 302 878 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.152 - - [22/Oct/2015:08:08:15 +0100] "GET /portal/login HTTP/1.1" 200 2122 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.152 - - [22/Oct/2015:08:08:15 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.152 - - [22/Oct/2015:08:08:42 +0100] "POST /portal/login_check HTTP/1.1" 302 1016 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.152 - - [22/Oct/2015:08:08:42 +0100] "GET /portal/login HTTP/1.1" 200 1984 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.152 - - [22/Oct/2015:08:08:42 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1062 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.152 - - [22/Oct/2015:08:08:45 +0100] "GET /portal/dashboard HTTP/1.1" 302 878 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.152 - - [22/Oct/2015:08:08:45 +0100] "GET /portal/login HTTP/1.1" 200 1478 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.152 - - [22/Oct/2015:08:08:45 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.152 - - [22/Oct/2015:08:08:57 +0100] "POST /portal/login_check HTTP/1.1" 302 1016 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.152 - - [22/Oct/2015:08:08:57 +0100] "GET /portal/login HTTP/1.1" 200 2122 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.152 - - [22/Oct/2015:08:08:57 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.152 - - [22/Oct/2015:08:09:02 +0100] "GET /portal/dashboard HTTP/1.1" 302 1016 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.152 - - [22/Oct/2015:08:09:02 +0100] "GET /portal/login HTTP/1.1" 200 1478 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.152 - - [22/Oct/2015:08:09:03 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.152 - - [22/Oct/2015:08:09:05 +0100] "GET /portal/login HTTP/1.1" 200 1340 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.152 - - [22/Oct/2015:08:09:05 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
10.99.180.107 - - [22/Oct/2015:08:18:02 +0100] "GET / HTTP/1.1" 302 4268 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
10.99.180.107 - - [22/Oct/2015:08:18:02 +0100] "GET /cs HTTP/1.1" 301 656 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
10.99.180.107 - - [22/Oct/2015:08:18:02 +0100] "GET /cs/ HTTP/1.1" 200 2850 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
10.99.180.107 - - [22/Oct/2015:08:18:03 +0100] "GET /fym.css HTTP/1.1" 200 1589 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
10.99.180.107 - - [22/Oct/2015:08:18:03 +0100] "GET /highcontrast.css HTTP/1.1" 200 1537 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
10.99.180.107 - - [22/Oct/2015:08:18:03 +0100] "GET /ie6.css HTTP/1.1" 200 1592 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
10.99.180.107 - - [22/Oct/2015:08:18:03 +0100] "GET /print.css HTTP/1.1" 200 1196 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
10.99.180.107 - - [22/Oct/2015:08:18:03 +0100] "GET /staff/ HTTP/1.1" 200 4947 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
10.99.180.107 - - [22/Oct/2015:08:18:06 +0100] "GET /lists/register.html HTTP/1.1" 200 1977 "https://www.firstyearmatters.info/staff/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
164.39.1.221 - - [22/Oct/2015:08:21:53 +0100] "GET /portal HTTP/1.1" 301 4514 "https://www.facebook.com/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
164.39.1.221 - - [22/Oct/2015:08:21:53 +0100] "GET /portal/ HTTP/1.1" 302 936 "https://www.facebook.com/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
164.39.1.221 - - [22/Oct/2015:08:21:53 +0100] "GET /portal/login HTTP/1.1" 200 1335 "https://www.facebook.com/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
164.39.1.221 - - [22/Oct/2015:08:21:53 +0100] "GET /portal/js/42be59c.js HTTP/1.1" 200 41375 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
164.39.1.221 - - [22/Oct/2015:08:21:53 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
164.39.1.221 - - [22/Oct/2015:08:22:01 +0100] "GET /favicon.ico HTTP/1.1" 200 4127 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
78.148.119.121 - - [22/Oct/2015:08:23:40 +0100] "GET /portal HTTP/1.1" 301 4662 "-" "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; MASMJS; rv:11.0) like Gecko"
78.148.119.121 - - [22/Oct/2015:08:23:40 +0100] "GET /portal/ HTTP/1.1" 302 1124 "-" "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; MASMJS; rv:11.0) like Gecko"
78.148.119.121 - - [22/Oct/2015:08:23:40 +0100] "GET /portal/login HTTP/1.1" 200 1577 "-" "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; MASMJS; rv:11.0) like Gecko"
78.148.119.121 - - [22/Oct/2015:08:23:41 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1124 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; MASMJS; rv:11.0) like Gecko"
78.148.119.121 - - [22/Oct/2015:08:23:41 +0100] "GET /portal/js/42be59c.js HTTP/1.1" 200 45609 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; MASMJS; rv:11.0) like Gecko"
78.148.119.121 - - [22/Oct/2015:08:23:41 +0100] "GET /favicon.ico HTTP/1.1" 200 7990 "-" "Mozilla/5.0 (Windows NT 6.3; Win64; x64; Trident/7.0; MASMJS; rv:11.0) like Gecko"
78.148.119.121 - - [22/Oct/2015:08:23:54 +0100] "POST /portal/login_check HTTP/1.1" 302 1333 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; MASMJS; rv:11.0) like Gecko"
78.148.119.121 - - [22/Oct/2015:08:23:55 +0100] "GET /portal/ HTTP/1.1" 302 948 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; MASMJS; rv:11.0) like Gecko"
78.148.119.121 - - [22/Oct/2015:08:23:55 +0100] "GET /portal/dashboard HTTP/1.1" 200 1481 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; MASMJS; rv:11.0) like Gecko"
78.148.119.121 - - [22/Oct/2015:08:23:55 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1285 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; MASMJS; rv:11.0) like Gecko"
78.148.119.121 - - [22/Oct/2015:08:24:02 +0100] "-" 408 3900 "-" "-"
78.148.119.121 - - [22/Oct/2015:08:24:07 +0100] "GET /portal/linux/register HTTP/1.1" 200 1898 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; MASMJS; rv:11.0) like Gecko"
78.148.119.121 - - [22/Oct/2015:08:24:07 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1124 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; MASMJS; rv:11.0) like Gecko"
78.148.119.121 - - [22/Oct/2015:08:24:28 +0100] "-" 408 161 "-" "-"
78.148.119.121 - - [22/Oct/2015:08:26:38 +0100] "POST /portal/linux/register HTTP/1.1" 200 1930 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; MASMJS; rv:11.0) like Gecko"
78.148.119.121 - - [22/Oct/2015:08:26:38 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1285 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; MASMJS; rv:11.0) like Gecko"
78.148.119.121 - - [22/Oct/2015:08:27:34 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1285 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; MASMJS; rv:11.0) like Gecko"
78.148.119.121 - - [22/Oct/2015:08:27:34 +0100] "GET /browserconfig.xml HTTP/1.1" 404 827 "-" "Mozilla/5.0 (Windows NT 6.3; Win64; x64; Trident/7.0; MASMJS; rv:11.0) like Gecko"
78.148.119.121 - - [22/Oct/2015:08:27:40 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1285 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; MASMJS; rv:11.0) like Gecko"
78.148.119.121 - - [22/Oct/2015:08:27:55 +0100] "-" 408 161 "-" "-"
78.148.119.121 - - [22/Oct/2015:08:28:01 +0100] "-" 408 161 "-" "-"
78.148.119.121 - - [22/Oct/2015:08:28:02 +0100] "POST /portal/linux/register HTTP/1.1" 200 1930 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; MASMJS; rv:11.0) like Gecko"
78.148.119.121 - - [22/Oct/2015:08:28:02 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1285 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; MASMJS; rv:11.0) like Gecko"
78.148.119.121 - - [22/Oct/2015:08:28:44 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 5024 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; MASMJS; rv:11.0) like Gecko"
78.148.119.121 - - [22/Oct/2015:08:28:45 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 5024 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; MASMJS; rv:11.0) like Gecko"
78.148.119.121 - - [22/Oct/2015:08:28:53 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1285 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; MASMJS; rv:11.0) like Gecko"
78.148.119.121 - - [22/Oct/2015:08:28:54 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1285 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; MASMJS; rv:11.0) like Gecko"
78.148.119.121 - - [22/Oct/2015:08:29:28 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1285 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; MASMJS; rv:11.0) like Gecko"
78.148.119.121 - - [22/Oct/2015:08:29:32 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1285 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; MASMJS; rv:11.0) like Gecko"
78.148.119.121 - - [22/Oct/2015:08:29:34 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1285 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; MASMJS; rv:11.0) like Gecko"
78.148.119.121 - - [22/Oct/2015:08:29:55 +0100] "-" 408 161 "-" "-"
78.148.119.121 - - [22/Oct/2015:08:32:02 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1285 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; MASMJS; rv:11.0) like Gecko"
78.148.119.121 - - [22/Oct/2015:08:33:05 +0100] "-" 408 161 "-" "-"
78.148.119.121 - - [22/Oct/2015:08:32:44 +0100] "POST /portal/linux/register HTTP/1.1" 302 1109 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; MASMJS; rv:11.0) like Gecko"
78.148.119.121 - - [22/Oct/2015:08:33:23 +0100] "GET /portal/dashboard HTTP/1.1" 200 1641 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; MASMJS; rv:11.0) like Gecko"
78.148.119.121 - - [22/Oct/2015:08:33:23 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1124 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; MASMJS; rv:11.0) like Gecko"
78.148.119.121 - - [22/Oct/2015:08:33:44 +0100] "-" 408 161 "-" "-"
78.148.119.121 - - [22/Oct/2015:08:34:00 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 5024 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; MASMJS; rv:11.0) like Gecko"
78.148.119.121 - - [22/Oct/2015:08:34:21 +0100] "-" 408 3900 "-" "-"
78.148.119.121 - - [22/Oct/2015:08:35:10 +0100] "GET /portal/logout HTTP/1.1" 302 1333 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; MASMJS; rv:11.0) like Gecko"
78.148.119.121 - - [22/Oct/2015:08:35:10 +0100] "GET /portal/ HTTP/1.1" 302 1076 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; MASMJS; rv:11.0) like Gecko"
78.148.119.121 - - [22/Oct/2015:08:35:10 +0100] "GET /portal/login HTTP/1.1" 200 1577 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; MASMJS; rv:11.0) like Gecko"
78.148.119.121 - - [22/Oct/2015:08:35:10 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1285 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; MASMJS; rv:11.0) like Gecko"
88.104.9.83 - - [22/Oct/2015:08:40:05 +0100] "GET /portal HTTP/1.1" 301 4509 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
88.104.9.83 - - [22/Oct/2015:08:40:05 +0100] "GET /portal/ HTTP/1.1" 302 936 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
88.104.9.83 - - [22/Oct/2015:08:40:05 +0100] "GET /portal/login HTTP/1.1" 200 1333 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
88.104.9.83 - - [22/Oct/2015:08:40:05 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
88.104.9.83 - - [22/Oct/2015:08:40:05 +0100] "GET /portal/js/42be59c.js HTTP/1.1" 200 45077 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
88.104.9.83 - - [22/Oct/2015:08:40:05 +0100] "GET /favicon.ico HTTP/1.1" 200 3984 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
88.104.9.83 - - [22/Oct/2015:08:40:33 +0100] "POST /portal/login_check HTTP/1.1" 302 1107 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
88.104.9.83 - - [22/Oct/2015:08:40:34 +0100] "GET /portal/ HTTP/1.1" 302 753 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
88.104.9.83 - - [22/Oct/2015:08:40:34 +0100] "GET /portal/dashboard HTTP/1.1" 200 1398 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
88.104.9.83 - - [22/Oct/2015:08:40:34 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
88.104.9.83 - - [22/Oct/2015:08:41:28 +0100] "GET /portal/dashboard HTTP/1.1" 200 1536 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
88.104.9.83 - - [22/Oct/2015:08:41:28 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
88.104.9.83 - - [22/Oct/2015:08:41:35 +0100] "GET /portal/dashboard HTTP/1.1" 200 1536 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
88.104.9.83 - - [22/Oct/2015:08:41:35 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
88.104.9.83 - - [22/Oct/2015:08:42:06 +0100] "GET /portal HTTP/1.1" 301 802 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
88.104.9.83 - - [22/Oct/2015:08:42:06 +0100] "GET /portal/ HTTP/1.1" 302 753 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
88.104.9.83 - - [22/Oct/2015:08:42:06 +0100] "GET /portal/dashboard HTTP/1.1" 200 1398 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
88.104.9.83 - - [22/Oct/2015:08:42:07 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
88.104.9.83 - - [22/Oct/2015:08:42:08 +0100] "GET /portal/linux/passwd/390 HTTP/1.1" 200 1438 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
88.104.9.83 - - [22/Oct/2015:08:42:09 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/linux/passwd/390" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
88.104.9.83 - - [22/Oct/2015:08:42:19 +0100] "POST /portal/linux/passwd/390 HTTP/1.1" 200 1617 "https://firstyearmatters.info/portal/linux/passwd/390" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
88.104.9.83 - - [22/Oct/2015:08:42:19 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/linux/passwd/390" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
88.104.9.83 - - [22/Oct/2015:08:42:39 +0100] "POST /portal/linux/passwd/390 HTTP/1.1" 200 1603 "https://firstyearmatters.info/portal/linux/passwd/390" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
88.104.9.83 - - [22/Oct/2015:08:42:40 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/linux/passwd/390" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
88.104.9.83 - - [22/Oct/2015:08:42:54 +0100] "POST /portal/linux/passwd/390 HTTP/1.1" 200 1617 "https://firstyearmatters.info/portal/linux/passwd/390" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
88.104.9.83 - - [22/Oct/2015:08:42:54 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/linux/passwd/390" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
88.104.9.83 - - [22/Oct/2015:08:42:56 +0100] "GET /portal/dashboard HTTP/1.1" 200 1398 "https://firstyearmatters.info/portal/linux/passwd/390" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
88.104.9.83 - - [22/Oct/2015:08:42:57 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
88.104.9.83 - - [22/Oct/2015:08:42:59 +0100] "GET /portal/linux/passwd/390 HTTP/1.1" 200 1576 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
88.104.9.83 - - [22/Oct/2015:08:43:00 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/linux/passwd/390" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
88.104.9.83 - - [22/Oct/2015:08:43:29 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1062 "https://firstyearmatters.info/portal/linux/passwd/390" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
88.104.9.83 - - [22/Oct/2015:08:43:15 +0100] "POST /portal/linux/passwd/390 HTTP/1.1" 200 1627 "https://firstyearmatters.info/portal/linux/passwd/390" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.60.35 - - [22/Oct/2015:08:44:35 +0100] "GET /portal HTTP/1.1" 301 4509 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.60.35 - - [22/Oct/2015:08:44:35 +0100] "GET /portal/ HTTP/1.1" 302 936 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.60.35 - - [22/Oct/2015:08:44:35 +0100] "GET /portal/login HTTP/1.1" 200 1334 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.60.35 - - [22/Oct/2015:08:44:35 +0100] "GET /portal/js/42be59c.js HTTP/1.1" 200 45077 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.60.35 - - [22/Oct/2015:08:44:35 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.60.35 - - [22/Oct/2015:08:44:35 +0100] "GET /favicon.ico HTTP/1.1" 200 3984 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.60.35 - - [22/Oct/2015:08:44:41 +0100] "POST /portal/login_check HTTP/1.1" 302 1107 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.60.35 - - [22/Oct/2015:08:44:41 +0100] "GET /portal/ HTTP/1.1" 302 753 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.60.35 - - [22/Oct/2015:08:44:41 +0100] "GET /portal/dashboard HTTP/1.1" 200 1402 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.60.35 - - [22/Oct/2015:08:44:41 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
74.82.47.4 - - [22/Oct/2015:08:44:47 +0100] "GET / HTTP/1.1" 302 5780 "-" "-"
10.99.60.35 - - [22/Oct/2015:08:44:47 +0100] "GET /portal/linux/passwd/368 HTTP/1.1" 200 1578 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.60.35 - - [22/Oct/2015:08:44:47 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/linux/passwd/368" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.60.35 - - [22/Oct/2015:08:45:00 +0100] "POST /portal/linux/passwd/368 HTTP/1.1" 200 1622 "https://firstyearmatters.info/portal/linux/passwd/368" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.60.35 - - [22/Oct/2015:08:45:00 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/linux/passwd/368" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.60.35 - - [22/Oct/2015:08:45:31 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1062 "https://firstyearmatters.info/portal/linux/passwd/368" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.60.35 - - [22/Oct/2015:08:45:20 +0100] "POST /portal/linux/passwd/368 HTTP/1.1" 200 1629 "https://firstyearmatters.info/portal/linux/passwd/368" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.60.35 - - [22/Oct/2015:08:45:35 +0100] "GET /portal/dashboard HTTP/1.1" 200 1402 "https://firstyearmatters.info/portal/linux/passwd/368" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.60.35 - - [22/Oct/2015:08:45:36 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.60.35 - - [22/Oct/2015:08:53:01 +0100] "-" 408 3844 "-" "-"
10.99.60.35 - - [22/Oct/2015:08:53:01 +0100] "-" 408 3844 "-" "-"
10.99.60.35 - - [22/Oct/2015:08:53:01 +0100] "-" 408 3844 "-" "-"
10.99.60.35 - - [22/Oct/2015:08:53:01 +0100] "-" 408 3844 "-" "-"
10.99.60.35 - - [22/Oct/2015:08:53:01 +0100] "-" 408 3844 "-" "-"
146.87.16.152 - - [22/Oct/2015:08:53:54 +0100] "GET /portal/login HTTP/1.1" 200 5185 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.152 - - [22/Oct/2015:08:53:54 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 4769 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.152 - - [22/Oct/2015:08:54:06 +0100] "POST /portal/login_check HTTP/1.1" 302 4814 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.152 - - [22/Oct/2015:08:54:06 +0100] "GET /portal/ HTTP/1.1" 302 4598 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.152 - - [22/Oct/2015:08:54:06 +0100] "GET /portal/dashboard HTTP/1.1" 200 1402 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.152 - - [22/Oct/2015:08:54:06 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.75 - - [22/Oct/2015:08:57:15 +0100] "GET /portal HTTP/1.1" 301 4509 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.75 - - [22/Oct/2015:08:57:15 +0100] "GET /portal/ HTTP/1.1" 302 936 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.75 - - [22/Oct/2015:08:57:15 +0100] "GET /portal/login HTTP/1.1" 200 5178 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.75 - - [22/Oct/2015:08:57:15 +0100] "GET /portal/js/42be59c.js HTTP/1.1" 200 41232 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.75 - - [22/Oct/2015:08:57:15 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.75 - - [22/Oct/2015:08:57:15 +0100] "GET /favicon.ico HTTP/1.1" 200 3984 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.75 - - [22/Oct/2015:08:57:29 +0100] "POST /portal/login_check HTTP/1.1" 302 1107 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.75 - - [22/Oct/2015:08:57:29 +0100] "GET /portal/ HTTP/1.1" 302 891 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.75 - - [22/Oct/2015:08:57:29 +0100] "GET /portal/dashboard HTTP/1.1" 200 1242 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.75 - - [22/Oct/2015:08:57:29 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.75 - - [22/Oct/2015:08:57:39 +0100] "GET /portal/linux/register HTTP/1.1" 200 1625 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.75 - - [22/Oct/2015:08:57:39 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
10.99.60.35 - - [22/Oct/2015:08:57:53 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 4769 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.16.197 - - [22/Oct/2015:08:58:29 +0100] "GET /portal HTTP/1.1" 301 4509 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.197 - - [22/Oct/2015:08:58:29 +0100] "GET /portal/ HTTP/1.1" 302 936 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.197 - - [22/Oct/2015:08:58:29 +0100] "GET /portal/login HTTP/1.1" 200 5181 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.197 - - [22/Oct/2015:08:58:29 +0100] "GET /portal/js/42be59c.js HTTP/1.1" 200 41232 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.197 - - [22/Oct/2015:08:58:29 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.197 - - [22/Oct/2015:08:58:29 +0100] "GET /favicon.ico HTTP/1.1" 200 3984 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.192 - - [22/Oct/2015:08:58:35 +0100] "GET /portal HTTP/1.1" 301 4509 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.192 - - [22/Oct/2015:08:58:35 +0100] "GET /portal/ HTTP/1.1" 302 936 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.192 - - [22/Oct/2015:08:58:35 +0100] "GET /portal/login HTTP/1.1" 200 1470 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.192 - - [22/Oct/2015:08:58:36 +0100] "GET /portal/js/42be59c.js HTTP/1.1" 200 41370 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.192 - - [22/Oct/2015:08:58:36 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.192 - - [22/Oct/2015:08:58:36 +0100] "GET /favicon.ico HTTP/1.1" 200 3984 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.197 - - [22/Oct/2015:08:58:37 +0100] "POST /portal/login_check HTTP/1.1" 302 1016 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.197 - - [22/Oct/2015:08:58:37 +0100] "GET /portal/login HTTP/1.1" 200 1984 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.197 - - [22/Oct/2015:08:58:37 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
10.99.60.35 - - [22/Oct/2015:08:58:41 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1062 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.16.192 - - [22/Oct/2015:08:58:42 +0100] "POST /portal/login_check HTTP/1.1" 302 1107 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.192 - - [22/Oct/2015:08:58:42 +0100] "GET /portal/ HTTP/1.1" 302 891 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.192 - - [22/Oct/2015:08:58:42 +0100] "GET /portal/dashboard HTTP/1.1" 200 1397 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.192 - - [22/Oct/2015:08:58:42 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.197 - - [22/Oct/2015:08:59:03 +0100] "POST /portal/login_check HTTP/1.1" 302 1016 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.197 - - [22/Oct/2015:08:59:03 +0100] "GET /portal/login HTTP/1.1" 200 2122 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.197 - - [22/Oct/2015:08:59:03 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.197 - - [22/Oct/2015:08:59:11 +0100] "POST /portal/login_check HTTP/1.1" 302 1016 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.197 - - [22/Oct/2015:08:59:11 +0100] "GET /portal/login HTTP/1.1" 200 2122 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.197 - - [22/Oct/2015:08:59:11 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.75 - - [22/Oct/2015:08:58:35 +0100] "POST /portal/linux/register HTTP/1.1" 302 891 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.75 - - [22/Oct/2015:08:59:11 +0100] "GET /portal/dashboard HTTP/1.1" 200 1534 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.75 - - [22/Oct/2015:08:59:12 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.197 - - [22/Oct/2015:08:59:27 +0100] "POST /portal/login_check HTTP/1.1" 302 1016 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.197 - - [22/Oct/2015:08:59:27 +0100] "GET /portal/login HTTP/1.1" 200 2122 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.197 - - [22/Oct/2015:08:59:27 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.197 - - [22/Oct/2015:08:59:30 +0100] "GET /portal/login HTTP/1.1" 200 1341 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.197 - - [22/Oct/2015:08:59:30 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.197 - - [22/Oct/2015:08:59:34 +0100] "POST /portal/login_check HTTP/1.1" 302 878 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.197 - - [22/Oct/2015:08:59:34 +0100] "GET /portal/login HTTP/1.1" 200 2122 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.197 - - [22/Oct/2015:08:59:34 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.197 - - [22/Oct/2015:08:59:35 +0100] "GET /portal/dashboard HTTP/1.1" 302 878 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.197 - - [22/Oct/2015:08:59:35 +0100] "GET /portal/login HTTP/1.1" 200 1341 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.197 - - [22/Oct/2015:08:59:35 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.197 - - [22/Oct/2015:08:59:37 +0100] "GET /portal/dashboard HTTP/1.1" 302 878 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.197 - - [22/Oct/2015:08:59:37 +0100] "GET /portal/login HTTP/1.1" 200 1341 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.197 - - [22/Oct/2015:08:59:37 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.197 - - [22/Oct/2015:08:59:45 +0100] "GET /portal/dashboard HTTP/1.1" 302 1016 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.197 - - [22/Oct/2015:08:59:45 +0100] "GET /portal/login HTTP/1.1" 200 1479 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.197 - - [22/Oct/2015:08:59:45 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.197 - - [22/Oct/2015:08:59:46 +0100] "GET /portal/dashboard HTTP/1.1" 302 878 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.197 - - [22/Oct/2015:08:59:46 +0100] "GET /portal/login HTTP/1.1" 200 1479 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.197 - - [22/Oct/2015:08:59:46 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.197 - - [22/Oct/2015:09:00:07 +0100] "GET /portal HTTP/1.1" 301 802 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.197 - - [22/Oct/2015:09:00:07 +0100] "GET /portal/ HTTP/1.1" 302 878 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.197 - - [22/Oct/2015:09:00:07 +0100] "GET /portal/login HTTP/1.1" 200 1479 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.197 - - [22/Oct/2015:09:00:07 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.197 - - [22/Oct/2015:09:00:37 +0100] "POST /portal/login_check HTTP/1.1" 302 1016 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.197 - - [22/Oct/2015:09:00:37 +0100] "GET /portal/login HTTP/1.1" 200 2122 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.197 - - [22/Oct/2015:09:00:37 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.197 - - [22/Oct/2015:09:00:43 +0100] "GET /portal/dashboard HTTP/1.1" 302 1016 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.197 - - [22/Oct/2015:09:00:43 +0100] "GET /portal/login HTTP/1.1" 200 1479 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.197 - - [22/Oct/2015:09:00:43 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.197 - - [22/Oct/2015:09:00:45 +0100] "GET /portal/dashboard HTTP/1.1" 302 878 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.197 - - [22/Oct/2015:09:00:45 +0100] "GET /portal/login HTTP/1.1" 200 1341 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.197 - - [22/Oct/2015:09:00:45 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.197 - - [22/Oct/2015:09:00:47 +0100] "GET /portal/login HTTP/1.1" 200 1341 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.197 - - [22/Oct/2015:09:00:47 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.197 - - [22/Oct/2015:09:00:52 +0100] "GET /portal/login HTTP/1.1" 200 1341 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.197 - - [22/Oct/2015:09:00:52 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.197 - - [22/Oct/2015:09:01:02 +0100] "POST /portal/login_check HTTP/1.1" 302 1016 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.197 - - [22/Oct/2015:09:01:02 +0100] "GET /portal/login HTTP/1.1" 200 2122 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.197 - - [22/Oct/2015:09:01:03 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
10.99.60.85 - - [22/Oct/2015:09:01:30 +0100] "GET /portal/dashboard HTTP/1.1" 302 4781 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.60.85 - - [22/Oct/2015:09:01:30 +0100] "GET /portal/login HTTP/1.1" 200 5174 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.60.85 - - [22/Oct/2015:09:01:30 +0100] "GET /portal/js/42be59c.js HTTP/1.1" 200 41232 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.60.85 - - [22/Oct/2015:09:01:30 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.60.85 - - [22/Oct/2015:09:01:30 +0100] "GET /favicon.ico HTTP/1.1" 200 3984 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.60.85 - - [22/Oct/2015:09:01:33 +0100] "POST /portal/login_check HTTP/1.1" 302 969 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.60.85 - - [22/Oct/2015:09:01:33 +0100] "GET /portal/ HTTP/1.1" 302 891 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.60.85 - - [22/Oct/2015:09:01:33 +0100] "GET /portal/dashboard HTTP/1.1" 200 1389 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.60.85 - - [22/Oct/2015:09:01:33 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.16.197 - - [22/Oct/2015:09:01:41 +0100] "POST /portal/login_check HTTP/1.1" 302 1016 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.197 - - [22/Oct/2015:09:01:41 +0100] "GET /portal/login HTTP/1.1" 200 2122 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.197 - - [22/Oct/2015:09:01:41 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.197 - - [22/Oct/2015:09:01:50 +0100] "POST /portal/login_check HTTP/1.1" 302 1016 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.197 - - [22/Oct/2015:09:01:50 +0100] "GET /portal/login HTTP/1.1" 200 2122 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.197 - - [22/Oct/2015:09:01:50 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.197 - - [22/Oct/2015:09:01:53 +0100] "POST /portal/login_check HTTP/1.1" 302 878 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.197 - - [22/Oct/2015:09:01:54 +0100] "GET /portal/login HTTP/1.1" 200 2122 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.197 - - [22/Oct/2015:09:01:54 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.197 - - [22/Oct/2015:09:02:23 +0100] "GET /portal/login HTTP/1.1" 200 5241 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.197 - - [22/Oct/2015:09:02:23 +0100] "GET /portal/js/42be59c.js HTTP/1.1" 200 41370 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.197 - - [22/Oct/2015:09:02:23 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.197 - - [22/Oct/2015:09:02:23 +0100] "GET /favicon.ico HTTP/1.1" 200 3984 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.197 - - [22/Oct/2015:09:03:09 +0100] "POST /portal/login_check HTTP/1.1" 302 1016 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.197 - - [22/Oct/2015:09:03:09 +0100] "GET /portal/login HTTP/1.1" 200 1986 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.197 - - [22/Oct/2015:09:03:09 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.197 - - [22/Oct/2015:09:03:17 +0100] "POST /portal/login_check HTTP/1.1" 302 1016 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.197 - - [22/Oct/2015:09:03:17 +0100] "GET /portal/login HTTP/1.1" 200 2124 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.197 - - [22/Oct/2015:09:03:17 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.32 - - [22/Oct/2015:09:05:52 +0100] "GET /portal HTTP/1.1" 301 4509 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.32 - - [22/Oct/2015:09:05:52 +0100] "GET /portal/ HTTP/1.1" 302 936 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.32 - - [22/Oct/2015:09:05:52 +0100] "GET /portal/login HTTP/1.1" 200 1333 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.32 - - [22/Oct/2015:09:05:52 +0100] "GET /portal/js/42be59c.js HTTP/1.1" 200 45077 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.32 - - [22/Oct/2015:09:05:52 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.32 - - [22/Oct/2015:09:05:53 +0100] "GET /favicon.ico HTTP/1.1" 200 3984 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.85 - - [22/Oct/2015:09:06:20 +0100] "GET /portal/ HTTP/1.1" 302 4781 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.85 - - [22/Oct/2015:09:06:20 +0100] "GET /portal/login HTTP/1.1" 200 5178 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.85 - - [22/Oct/2015:09:06:20 +0100] "GET /portal/js/42be59c.js HTTP/1.1" 200 41232 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.85 - - [22/Oct/2015:09:06:20 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.85 - - [22/Oct/2015:09:06:20 +0100] "GET /favicon.ico HTTP/1.1" 200 3984 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.32 - - [22/Oct/2015:09:06:21 +0100] "POST /portal/login_check HTTP/1.1" 302 1107 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.32 - - [22/Oct/2015:09:06:22 +0100] "GET /portal/ HTTP/1.1" 302 753 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.32 - - [22/Oct/2015:09:06:22 +0100] "GET /portal/dashboard HTTP/1.1" 200 1544 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.32 - - [22/Oct/2015:09:06:22 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.85 - - [22/Oct/2015:09:06:28 +0100] "POST /portal/login_check HTTP/1.1" 302 1107 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.85 - - [22/Oct/2015:09:06:28 +0100] "GET /portal/ HTTP/1.1" 302 753 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.85 - - [22/Oct/2015:09:06:28 +0100] "GET /portal/dashboard HTTP/1.1" 200 1396 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.85 - - [22/Oct/2015:09:06:28 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:09:07:07 +0100] "GET /wiki/doku.php HTTP/1.1" 200 7878 "http://firstyearmatters.info/cs/tt1-CSF.html" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:09:07:09 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick_ltr.css HTTP/1.1" 200 3848 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:09:07:09 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick.min.1.3.js HTTP/1.1" 200 3854 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:09:07:09 +0100] "GET /wiki/lib/exe/css.php?t=dokuwiki&tseed=2cb5b229a761de98d43761336d42f70b HTTP/1.1" 200 27528 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:09:07:09 +0100] "GET /wiki/lib/exe/js.php?t=dokuwiki&tseed=2cb5b229a761de98d43761336d42f70b HTTP/1.1" 200 142933 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:09:07:09 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jquery.1.4.2.js HTTP/1.1" 200 3850 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:09:07:09 +0100] "GET /wiki/_media/wiki:logo.png HTTP/1.1" 200 9453 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:09:07:09 +0100] "GET /wiki/lib/tpl/dokuwiki/images/button-html5.png HTTP/1.1" 200 647 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:09:07:09 +0100] "GET /wiki/lib/tpl/dokuwiki/images/button-php.gif HTTP/1.1" 200 548 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:09:07:09 +0100] "GET /wiki/lib/tpl/dokuwiki/images/button-css.png HTTP/1.1" 200 639 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:09:07:09 +0100] "GET /wiki/lib/tpl/dokuwiki/images/button-donate.gif HTTP/1.1" 200 528 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:09:07:09 +0100] "GET /wiki/lib/tpl/dokuwiki/images/button-dw.png HTTP/1.1" 200 740 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:09:07:09 +0100] "GET /wiki/lib/exe/indexer.php?id=start&1445501228 HTTP/1.1" 200 389 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:09:07:09 +0100] "GET /wiki/lib/tpl/dokuwiki/images/page-gradient.png HTTP/1.1" 200 550 "https://www.firstyearmatters.info/wiki/lib/exe/css.php?t=dokuwiki&tseed=2cb5b229a761de98d43761336d42f70b" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:09:07:10 +0100] "GET /wiki/lib/tpl/dokuwiki/images/usertools.png HTTP/1.1" 200 1771 "https://www.firstyearmatters.info/wiki/lib/exe/css.php?t=dokuwiki&tseed=2cb5b229a761de98d43761336d42f70b" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:09:07:10 +0100] "GET /wiki/lib/tpl/dokuwiki/images/search.png HTTP/1.1" 200 649 "https://www.firstyearmatters.info/wiki/lib/exe/css.php?t=dokuwiki&tseed=2cb5b229a761de98d43761336d42f70b" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:09:07:10 +0100] "GET /wiki/lib/tpl/dokuwiki/images/pagetools-sprite.png?v=2 HTTP/1.1" 200 8103 "https://www.firstyearmatters.info/wiki/lib/exe/css.php?t=dokuwiki&tseed=2cb5b229a761de98d43761336d42f70b" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:09:07:11 +0100] "GET /wiki/lib/tpl/dokuwiki/images/favicon.ico HTTP/1.1" 200 7753 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:09:07:15 +0100] "GET /wiki/linux:start HTTP/1.1" 200 4543 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:09:07:16 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick_ltr.css HTTP/1.1" 200 3733 "https://www.firstyearmatters.info/wiki/linux:start" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:09:07:16 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jquery.1.4.2.js HTTP/1.1" 200 3872 "https://www.firstyearmatters.info/wiki/linux:start" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:09:07:16 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick.min.1.3.js HTTP/1.1" 200 3741 "https://www.firstyearmatters.info/wiki/linux:start" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:09:07:16 +0100] "GET /wiki/_media/wiki:logo.png HTTP/1.1" 304 418 "https://www.firstyearmatters.info/wiki/linux:start" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:09:07:16 +0100] "GET /wiki/lib/exe/indexer.php?id=linux%3Astart&1445501235 HTTP/1.1" 200 389 "https://www.firstyearmatters.info/wiki/linux:start" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:09:07:16 +0100] "GET /wiki/lib/images/external-link.png HTTP/1.1" 200 911 "https://www.firstyearmatters.info/wiki/lib/exe/css.php?t=dokuwiki&tseed=2cb5b229a761de98d43761336d42f70b" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:09:07:16 +0100] "GET /wiki/lib/tpl/dokuwiki/images/toc-bullet.png HTTP/1.1" 200 454 "https://www.firstyearmatters.info/wiki/lib/exe/css.php?t=dokuwiki&tseed=2cb5b229a761de98d43761336d42f70b" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:09:07:16 +0100] "GET /wiki/lib/tpl/dokuwiki/images/toc-arrows.png HTTP/1.1" 200 566 "https://www.firstyearmatters.info/wiki/lib/exe/css.php?t=dokuwiki&tseed=2cb5b229a761de98d43761336d42f70b" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:09:07:33 +0100] "GET /wiki/linux:ssh HTTP/1.1" 200 4498 "https://www.firstyearmatters.info/wiki/linux:start" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:09:07:33 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick_ltr.css HTTP/1.1" 200 3751 "https://www.firstyearmatters.info/wiki/linux:ssh" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:09:07:33 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jquery.1.4.2.js HTTP/1.1" 200 3753 "https://www.firstyearmatters.info/wiki/linux:ssh" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:09:07:33 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick.min.1.3.js HTTP/1.1" 200 3896 "https://www.firstyearmatters.info/wiki/linux:ssh" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:09:07:33 +0100] "GET /wiki/_media/wiki:logo.png HTTP/1.1" 304 418 "https://www.firstyearmatters.info/wiki/linux:ssh" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:09:07:33 +0100] "GET /wiki/lib/exe/indexer.php?id=linux%3Assh&1445501253 HTTP/1.1" 200 389 "https://www.firstyearmatters.info/wiki/linux:ssh" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:09:09:18 +0100] "GET /wiki/linux:start HTTP/1.1" 200 4700 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:09:09:19 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jquery.1.4.2.js HTTP/1.1" 200 3892 "https://www.firstyearmatters.info/wiki/linux:start" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:09:09:19 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick.min.1.3.js HTTP/1.1" 200 3897 "https://www.firstyearmatters.info/wiki/linux:start" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:09:09:19 +0100] "GET /wiki/lib/exe/indexer.php?id=linux%3Astart&1445501359 HTTP/1.1" 200 389 "https://www.firstyearmatters.info/wiki/linux:start" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:09:09:35 +0100] "GET /wiki/linux:x2go HTTP/1.1" 200 4591 "https://www.firstyearmatters.info/wiki/linux:start" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:09:09:35 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick_ltr.css HTTP/1.1" 200 3767 "https://www.firstyearmatters.info/wiki/linux:x2go" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:09:09:35 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jquery.1.4.2.js HTTP/1.1" 200 3907 "https://www.firstyearmatters.info/wiki/linux:x2go" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:09:09:35 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick.min.1.3.js HTTP/1.1" 200 3775 "https://www.firstyearmatters.info/wiki/linux:x2go" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:09:09:35 +0100] "GET /wiki/_media/wiki:logo.png HTTP/1.1" 304 281 "https://www.firstyearmatters.info/wiki/linux:x2go" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:09:09:35 +0100] "GET /wiki/lib/exe/indexer.php?id=linux%3Ax2go&1445501375 HTTP/1.1" 200 526 "https://www.firstyearmatters.info/wiki/linux:x2go" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:09:09:35 +0100] "GET /wiki/_media/linux:screen_shot_2013-07-03_at_09.48.24.png HTTP/1.1" 200 8215 "https://www.firstyearmatters.info/wiki/linux:x2go" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:09:11:00 +0100] "POST /wiki/lib/exe/ajax.php HTTP/1.1" 200 506 "https://www.firstyearmatters.info/wiki/linux:x2go" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:09:11:00 +0100] "GET /wiki/start?do=search&id=hellos HTTP/1.1" 200 3780 "https://www.firstyearmatters.info/wiki/linux:x2go" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:09:11:00 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick_ltr.css HTTP/1.1" 200 3767 "https://www.firstyearmatters.info/wiki/start?do=search&id=hellos" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:09:11:01 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jquery.1.4.2.js HTTP/1.1" 200 3769 "https://www.firstyearmatters.info/wiki/start?do=search&id=hellos" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:09:11:01 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick.min.1.3.js HTTP/1.1" 200 3913 "https://www.firstyearmatters.info/wiki/start?do=search&id=hellos" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:09:11:01 +0100] "GET /wiki/_media/wiki:logo.png HTTP/1.1" 304 418 "https://www.firstyearmatters.info/wiki/start?do=search&id=hellos" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:09:11:01 +0100] "GET /wiki/lib/exe/indexer.php?id=hellos&1445501460 HTTP/1.1" 200 389 "https://www.firstyearmatters.info/wiki/start?do=search&id=hellos" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:09:11:01 +0100] "GET /wiki/lib/images/loading.gif HTTP/1.1" 200 679 "https://www.firstyearmatters.info/wiki/start?do=search&id=hellos" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
82.132.228.200 - - [22/Oct/2015:09:42:04 +0100] "GET /portal HTTP/1.1" 301 4314 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1"
82.132.228.200 - - [22/Oct/2015:09:42:04 +0100] "GET /portal/ HTTP/1.1" 302 936 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1"
82.132.228.200 - - [22/Oct/2015:09:42:04 +0100] "GET /portal/login HTTP/1.1" 200 1334 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1"
82.132.228.200 - - [22/Oct/2015:09:42:05 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1"
82.132.228.200 - - [22/Oct/2015:09:42:05 +0100] "GET /portal/js/42be59c.js HTTP/1.1" 200 41370 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1"
82.132.228.200 - - [22/Oct/2015:09:42:11 +0100] "GET /apple-touch-icon-120x120-precomposed.png HTTP/1.1" 404 4250 "-" "MobileSafari/601.1 CFNetwork/758.0.2 Darwin/15.0.0"
82.132.228.200 - - [22/Oct/2015:09:42:11 +0100] "GET /apple-touch-icon-120x120.png HTTP/1.1" 404 588 "-" "MobileSafari/601.1 CFNetwork/758.0.2 Darwin/15.0.0"
82.132.228.200 - - [22/Oct/2015:09:42:11 +0100] "GET /apple-touch-icon.png HTTP/1.1" 404 580 "-" "MobileSafari/601.1 CFNetwork/758.0.2 Darwin/15.0.0"
82.132.228.200 - - [22/Oct/2015:09:42:11 +0100] "GET /apple-touch-icon.png HTTP/1.1" 404 580 "-" "MobileSafari/601.1 CFNetwork/758.0.2 Darwin/15.0.0"
82.132.228.200 - - [22/Oct/2015:09:42:15 +0100] "POST /portal/login_check HTTP/1.1" 302 1107 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1"
82.132.228.200 - - [22/Oct/2015:09:42:15 +0100] "GET /portal/ HTTP/1.1" 302 753 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1"
82.132.228.200 - - [22/Oct/2015:09:42:16 +0100] "GET /portal/dashboard HTTP/1.1" 200 1396 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1"
82.132.228.200 - - [22/Oct/2015:09:42:16 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1"
82.132.228.200 - - [22/Oct/2015:09:42:26 +0100] "GET /portal/logout HTTP/1.1" 302 1107 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1"
82.132.228.200 - - [22/Oct/2015:09:42:26 +0100] "GET /portal/ HTTP/1.1" 302 878 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1"
82.132.228.200 - - [22/Oct/2015:09:42:26 +0100] "GET /portal/login HTTP/1.1" 200 1332 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1"
82.132.228.200 - - [22/Oct/2015:09:42:26 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1"
109.246.124.30 - - [22/Oct/2015:09:49:58 +0100] "GET /portal HTTP/1.1" 301 4509 "-" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.246.124.30 - - [22/Oct/2015:09:49:58 +0100] "GET /portal/ HTTP/1.1" 302 936 "-" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.246.124.30 - - [22/Oct/2015:09:49:58 +0100] "GET /portal/login HTTP/1.1" 200 1334 "-" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.246.124.30 - - [22/Oct/2015:09:49:58 +0100] "GET /portal/js/42be59c.js HTTP/1.1" 200 45077 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.246.124.30 - - [22/Oct/2015:09:49:58 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.246.124.30 - - [22/Oct/2015:09:49:58 +0100] "GET /favicon.ico HTTP/1.1" 200 3984 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.246.124.30 - - [22/Oct/2015:09:50:05 +0100] "POST /portal/login_check HTTP/1.1" 302 1107 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.246.124.30 - - [22/Oct/2015:09:50:06 +0100] "GET /portal/ HTTP/1.1" 302 753 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.246.124.30 - - [22/Oct/2015:09:50:06 +0100] "GET /portal/dashboard HTTP/1.1" 200 1245 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.246.124.30 - - [22/Oct/2015:09:50:06 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.246.124.30 - - [22/Oct/2015:09:50:09 +0100] "GET /portal/linux/register HTTP/1.1" 200 1626 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.246.124.30 - - [22/Oct/2015:09:50:09 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.246.124.30 - - [22/Oct/2015:09:50:26 +0100] "POST /portal/linux/register HTTP/1.1" 200 1670 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.246.124.30 - - [22/Oct/2015:09:50:26 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.246.124.30 - - [22/Oct/2015:09:51:04 +0100] "POST /portal/linux/register HTTP/1.1" 302 891 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.246.124.30 - - [22/Oct/2015:09:51:39 +0100] "GET /portal/dashboard HTTP/1.1" 200 1537 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.246.124.30 - - [22/Oct/2015:09:51:40 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.16.74 - - [22/Oct/2015:10:29:26 +0100] "GET /portal HTTP/1.1" 301 4509 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.74 - - [22/Oct/2015:10:29:26 +0100] "GET /portal/ HTTP/1.1" 302 936 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.74 - - [22/Oct/2015:10:29:26 +0100] "GET /portal/login HTTP/1.1" 200 1471 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.74 - - [22/Oct/2015:10:29:26 +0100] "GET /portal/js/42be59c.js HTTP/1.1" 200 41370 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.74 - - [22/Oct/2015:10:29:26 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.74 - - [22/Oct/2015:10:29:26 +0100] "GET /favicon.ico HTTP/1.1" 200 3984 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.74 - - [22/Oct/2015:10:29:33 +0100] "POST /portal/login_check HTTP/1.1" 302 1107 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.74 - - [22/Oct/2015:10:29:33 +0100] "GET /portal/ HTTP/1.1" 302 891 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.74 - - [22/Oct/2015:10:29:33 +0100] "GET /portal/dashboard HTTP/1.1" 200 1389 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.74 - - [22/Oct/2015:10:29:33 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.74 - - [22/Oct/2015:10:29:35 +0100] "GET /portal/linux/register HTTP/1.1" 200 1496 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.74 - - [22/Oct/2015:10:29:35 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.74 - - [22/Oct/2015:10:29:42 +0100] "POST /portal/linux/register HTTP/1.1" 200 1677 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.74 - - [22/Oct/2015:10:29:42 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.74 - - [22/Oct/2015:10:30:06 +0100] "POST /portal/linux/register HTTP/1.1" 200 1683 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.74 - - [22/Oct/2015:10:30:07 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1062 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.74 - - [22/Oct/2015:10:30:24 +0100] "POST /portal/linux/register HTTP/1.1" 200 1683 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.74 - - [22/Oct/2015:10:30:24 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.74 - - [22/Oct/2015:10:31:23 +0100] "POST /portal/linux/register HTTP/1.1" 200 1677 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.74 - - [22/Oct/2015:10:31:23 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.74 - - [22/Oct/2015:10:32:26 +0100] "POST /portal/linux/register HTTP/1.1" 302 891 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.74 - - [22/Oct/2015:10:33:00 +0100] "GET /portal/dashboard HTTP/1.1" 200 1543 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.74 - - [22/Oct/2015:10:33:01 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1062 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.192 - - [22/Oct/2015:11:02:55 +0100] "GET /portal HTTP/1.1" 301 4467 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
146.87.16.192 - - [22/Oct/2015:11:02:55 +0100] "GET /portal/ HTTP/1.1" 302 1124 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
146.87.16.192 - - [22/Oct/2015:11:02:55 +0100] "GET /portal/login HTTP/1.1" 200 1770 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
146.87.16.192 - - [22/Oct/2015:11:02:55 +0100] "GET /portal/js/42be59c.js HTTP/1.1" 200 41902 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
146.87.16.192 - - [22/Oct/2015:11:02:55 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1124 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
146.87.16.192 - - [22/Oct/2015:11:02:56 +0100] "GET /favicon.ico HTTP/1.1" 200 4283 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
146.87.16.192 - - [22/Oct/2015:11:03:03 +0100] "POST /portal/login_check HTTP/1.1" 302 1365 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
146.87.16.192 - - [22/Oct/2015:11:03:04 +0100] "GET /portal/ HTTP/1.1" 302 1141 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
146.87.16.192 - - [22/Oct/2015:11:03:04 +0100] "GET /portal/dashboard HTTP/1.1" 200 1818 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
146.87.16.192 - - [22/Oct/2015:11:03:04 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1124 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
146.87.16.192 - - [22/Oct/2015:11:03:25 +0100] "GET /portal/linux/passwd/388 HTTP/1.1" 200 1866 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
146.87.16.192 - - [22/Oct/2015:11:03:25 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1124 "https://firstyearmatters.info/portal/linux/passwd/388" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
146.87.16.192 - - [22/Oct/2015:11:03:51 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1317 "https://firstyearmatters.info/portal/linux/passwd/388" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
146.87.16.192 - - [22/Oct/2015:11:03:39 +0100] "POST /portal/linux/passwd/388 HTTP/1.1" 200 1914 "https://firstyearmatters.info/portal/linux/passwd/388" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
146.87.16.192 - - [22/Oct/2015:11:03:59 +0100] "GET /portal/dashboard HTTP/1.1" 200 1818 "https://firstyearmatters.info/portal/linux/passwd/388" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
146.87.16.192 - - [22/Oct/2015:11:03:59 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1124 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
146.87.16.192 - - [22/Oct/2015:11:05:28 +0100] "GET /portal/linux/passwd/388 HTTP/1.1" 200 1866 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
146.87.16.192 - - [22/Oct/2015:11:05:28 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1124 "https://firstyearmatters.info/portal/linux/passwd/388" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
146.87.16.192 - - [22/Oct/2015:11:05:39 +0100] "POST /portal/linux/passwd/388 HTTP/1.1" 200 1882 "https://firstyearmatters.info/portal/linux/passwd/388" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
146.87.16.192 - - [22/Oct/2015:11:05:39 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1124 "https://firstyearmatters.info/portal/linux/passwd/388" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
146.87.16.192 - - [22/Oct/2015:11:06:00 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1317 "https://firstyearmatters.info/portal/linux/passwd/388" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
146.87.16.192 - - [22/Oct/2015:11:05:50 +0100] "POST /portal/linux/passwd/388 HTTP/1.1" 200 1914 "https://firstyearmatters.info/portal/linux/passwd/388" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
146.87.16.192 - - [22/Oct/2015:11:06:02 +0100] "GET /portal/dashboard HTTP/1.1" 200 1625 "https://firstyearmatters.info/portal/linux/passwd/388" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
146.87.16.192 - - [22/Oct/2015:11:06:02 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1124 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
146.87.16.74 - - [22/Oct/2015:11:06:25 +0100] "GET /portal HTTP/1.1" 301 4509 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.74 - - [22/Oct/2015:11:06:25 +0100] "GET /portal/ HTTP/1.1" 302 936 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.74 - - [22/Oct/2015:11:06:25 +0100] "GET /portal/login HTTP/1.1" 200 5179 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.74 - - [22/Oct/2015:11:06:25 +0100] "GET /portal/js/42be59c.js HTTP/1.1" 200 41370 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.74 - - [22/Oct/2015:11:06:25 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.74 - - [22/Oct/2015:11:06:25 +0100] "GET /favicon.ico HTTP/1.1" 200 3984 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.74 - - [22/Oct/2015:11:06:39 +0100] "POST /portal/login_check HTTP/1.1" 302 1016 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.74 - - [22/Oct/2015:11:06:39 +0100] "GET /portal/login HTTP/1.1" 200 2121 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.74 - - [22/Oct/2015:11:06:39 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.74 - - [22/Oct/2015:11:07:01 +0100] "POST /portal/login_check HTTP/1.1" 302 1016 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.74 - - [22/Oct/2015:11:07:01 +0100] "GET /portal/login HTTP/1.1" 200 2121 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.74 - - [22/Oct/2015:11:07:01 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.74 - - [22/Oct/2015:11:07:14 +0100] "POST /portal/login_check HTTP/1.1" 302 1016 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.74 - - [22/Oct/2015:11:07:14 +0100] "GET /portal/login HTTP/1.1" 200 2121 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.74 - - [22/Oct/2015:11:07:14 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.74 - - [22/Oct/2015:11:07:18 +0100] "POST /portal/login_check HTTP/1.1" 302 878 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.74 - - [22/Oct/2015:11:07:19 +0100] "GET /portal/login HTTP/1.1" 200 2121 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.74 - - [22/Oct/2015:11:07:19 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.74 - - [22/Oct/2015:11:07:23 +0100] "POST /portal/login_check HTTP/1.1" 302 969 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.74 - - [22/Oct/2015:11:07:24 +0100] "GET /portal/ HTTP/1.1" 302 891 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.74 - - [22/Oct/2015:11:07:24 +0100] "GET /portal/dashboard HTTP/1.1" 200 1406 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.74 - - [22/Oct/2015:11:07:24 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.85 - - [22/Oct/2015:11:12:48 +0100] "GET /portal HTTP/1.1" 301 4509 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.85 - - [22/Oct/2015:11:12:48 +0100] "GET /portal/ HTTP/1.1" 302 936 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.85 - - [22/Oct/2015:11:12:48 +0100] "GET /portal/login HTTP/1.1" 200 5177 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.85 - - [22/Oct/2015:11:12:48 +0100] "GET /portal/js/42be59c.js HTTP/1.1" 200 41370 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.85 - - [22/Oct/2015:11:12:48 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.85 - - [22/Oct/2015:11:12:49 +0100] "GET /favicon.ico HTTP/1.1" 200 3984 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.85 - - [22/Oct/2015:11:13:09 +0100] "POST /portal/login_check HTTP/1.1" 302 1016 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.85 - - [22/Oct/2015:11:13:09 +0100] "GET /portal/login HTTP/1.1" 200 2118 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.85 - - [22/Oct/2015:11:13:09 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.85 - - [22/Oct/2015:11:13:37 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1062 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.85 - - [22/Oct/2015:11:13:41 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.85 - - [22/Oct/2015:11:13:48 +0100] "GET /portal/login HTTP/1.1" 200 1476 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.85 - - [22/Oct/2015:11:13:48 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1062 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.85 - - [22/Oct/2015:11:15:09 +0100] "POST /portal/login_check HTTP/1.1" 302 1107 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.85 - - [22/Oct/2015:11:15:09 +0100] "GET /portal/ HTTP/1.1" 302 891 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.85 - - [22/Oct/2015:11:15:09 +0100] "GET /portal/dashboard HTTP/1.1" 200 1399 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.85 - - [22/Oct/2015:11:15:09 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.85 - - [22/Oct/2015:11:15:32 +0100] "GET /portal/logout HTTP/1.1" 302 1107 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.85 - - [22/Oct/2015:11:15:32 +0100] "GET /portal/ HTTP/1.1" 302 1016 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.85 - - [22/Oct/2015:11:15:32 +0100] "GET /portal/login HTTP/1.1" 200 1336 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.85 - - [22/Oct/2015:11:15:32 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.85 - - [22/Oct/2015:11:22:46 +0100] "POST /portal/login_check HTTP/1.1" 302 4723 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.85 - - [22/Oct/2015:11:22:46 +0100] "GET /portal/login HTTP/1.1" 200 2120 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.85 - - [22/Oct/2015:11:22:46 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.85 - - [22/Oct/2015:11:23:00 +0100] "POST /portal/login_check HTTP/1.1" 302 1016 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.85 - - [22/Oct/2015:11:23:00 +0100] "GET /portal/login HTTP/1.1" 200 2120 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.85 - - [22/Oct/2015:11:23:00 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.85 - - [22/Oct/2015:11:28:00 +0100] "POST /portal/login_check HTTP/1.1" 302 4723 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.85 - - [22/Oct/2015:11:28:00 +0100] "GET /portal/login HTTP/1.1" 200 2120 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.85 - - [22/Oct/2015:11:28:00 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [22/Oct/2015:11:29:00 +0100] "GET /portal HTTP/1.1" 301 4509 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [22/Oct/2015:11:29:00 +0100] "GET /portal/ HTTP/1.1" 302 936 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [22/Oct/2015:11:29:00 +0100] "GET /portal/login HTTP/1.1" 200 1334 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [22/Oct/2015:11:29:00 +0100] "GET /portal/js/42be59c.js HTTP/1.1" 200 41232 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [22/Oct/2015:11:29:00 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 4769 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [22/Oct/2015:11:29:00 +0100] "GET /favicon.ico HTTP/1.1" 200 3984 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [22/Oct/2015:11:29:13 +0100] "POST /portal/login_check HTTP/1.1" 302 1016 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [22/Oct/2015:11:29:13 +0100] "GET /portal/login HTTP/1.1" 200 1983 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [22/Oct/2015:11:29:13 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [22/Oct/2015:11:29:23 +0100] "POST /portal/login_check HTTP/1.1" 302 1016 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [22/Oct/2015:11:29:24 +0100] "GET /portal/login HTTP/1.1" 200 1983 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [22/Oct/2015:11:29:24 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [22/Oct/2015:11:29:27 +0100] "GET /portal/login HTTP/1.1" 200 1477 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [22/Oct/2015:11:29:27 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
10.99.200.225 - - [22/Oct/2015:11:36:45 +0100] "GET / HTTP/1.1" 302 4435 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:11:36:45 +0100] "GET /cs HTTP/1.1" 301 746 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:11:36:45 +0100] "GET /cs/ HTTP/1.1" 200 3028 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:11:36:52 +0100] "GET /cs/timetables.html HTTP/1.1" 200 2837 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:11:36:54 +0100] "GET /cs/tt1-MITF.html HTTP/1.1" 200 2948 "https://firstyearmatters.info/cs/timetables.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:11:37:07 +0100] "GET /cs/lists/cc1.groups.html HTTP/1.1" 200 3925 "https://firstyearmatters.info/cs/tt1-MITF.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:11:37:08 +0100] "GET /cs/timetables.html HTTP/1.1" 200 2644 "https://firstyearmatters.info/cs/lists/cc1.groups.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:11:37:09 +0100] "GET /cs/timetables.html HTTP/1.1" 200 2644 "https://firstyearmatters.info/cs/timetables.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:11:37:10 +0100] "GET /cs/lists/cc1.groups.html HTTP/1.1" 200 3732 "https://firstyearmatters.info/cs/timetables.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:11:37:13 +0100] "GET /cs/course.html HTTP/1.1" 200 3108 "https://firstyearmatters.info/cs/lists/cc1.groups.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:11:37:14 +0100] "GET /cs/lecturers.html HTTP/1.1" 200 3732 "https://firstyearmatters.info/cs/course.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:11:37:21 +0100] "GET /cs/usefullinks.html HTTP/1.1" 200 3173 "https://firstyearmatters.info/cs/lecturers.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:11:38:32 +0100] "GET /portal/linux/passwd/388 HTTP/1.1" 302 1333 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:11:38:32 +0100] "GET /portal/login HTTP/1.1" 200 1577 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:11:38:32 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1124 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:11:38:43 +0100] "POST /portal/login_check HTTP/1.1" 302 1365 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:11:38:43 +0100] "GET /portal/ HTTP/1.1" 302 948 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:11:38:43 +0100] "GET /portal/dashboard HTTP/1.1" 200 1625 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:11:38:43 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1124 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:11:39:11 +0100] "GET /portal/linux/passwd/388 HTTP/1.1" 200 1866 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:11:39:11 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1124 "https://firstyearmatters.info/portal/linux/passwd/388" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:11:39:40 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1317 "https://firstyearmatters.info/portal/linux/passwd/388" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:11:39:30 +0100] "POST /portal/linux/passwd/388 HTTP/1.1" 200 1914 "https://firstyearmatters.info/portal/linux/passwd/388" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:11:39:45 +0100] "GET /portal/dashboard HTTP/1.1" 200 1625 "https://firstyearmatters.info/portal/linux/passwd/388" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:11:39:45 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1124 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:11:40:18 +0100] "GET /portal/dashboard HTTP/1.1" 302 4845 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko)"
10.99.200.225 - - [22/Oct/2015:11:40:18 +0100] "GET /portal/login HTTP/1.1" 200 1641 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko)"
10.99.200.225 - - [22/Oct/2015:11:40:18 +0100] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4387 "-" "Safari/10601.1.56.2 CFNetwork/720.5.7 Darwin/14.5.0 (x86_64)"
10.99.200.225 - - [22/Oct/2015:11:40:18 +0100] "GET /favicon.ico HTTP/1.1" 200 4283 "-" "Safari/10601.1.56.2 CFNetwork/720.5.7 Darwin/14.5.0 (x86_64)"
10.99.200.225 - - [22/Oct/2015:11:40:18 +0100] "GET /apple-touch-icon.png HTTP/1.1" 404 682 "-" "Safari/10601.1.56.2 CFNetwork/720.5.7 Darwin/14.5.0 (x86_64)"
10.99.200.225 - - [22/Oct/2015:11:40:20 +0100] "GET /portal/dashboard HTTP/1.1" 302 1124 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B410 Safari/600.1.4"
10.99.200.225 - - [22/Oct/2015:11:40:20 +0100] "GET /portal/login HTTP/1.1" 200 1834 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B410 Safari/600.1.4"
10.99.200.225 - - [22/Oct/2015:11:40:20 +0100] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 682 "-" "Safari/10601.1.56.2 CFNetwork/720.5.7 Darwin/14.5.0 (x86_64)"
10.99.200.225 - - [22/Oct/2015:11:40:20 +0100] "GET /apple-touch-icon.png HTTP/1.1" 404 682 "-" "Safari/10601.1.56.2 CFNetwork/720.5.7 Darwin/14.5.0 (x86_64)"
10.99.200.225 - - [22/Oct/2015:11:41:43 +0100] "GET /cs/referencelinks.html HTTP/1.1" 200 3205 "https://firstyearmatters.info/cs/usefullinks.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:11:41:43 +0100] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 875 "-" "Safari/10601.1.56.2 CFNetwork/720.5.7 Darwin/14.5.0 (x86_64)"
10.99.200.225 - - [22/Oct/2015:11:41:43 +0100] "GET /apple-touch-icon.png HTTP/1.1" 404 682 "-" "Safari/10601.1.56.2 CFNetwork/720.5.7 Darwin/14.5.0 (x86_64)"
10.99.200.225 - - [22/Oct/2015:11:41:46 +0100] "GET /cs/lecturers.html HTTP/1.1" 200 3732 "https://firstyearmatters.info/cs/referencelinks.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:11:41:48 +0100] "GET /cs/programmes.html HTTP/1.1" 200 2415 "https://firstyearmatters.info/cs/lecturers.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:11:41:50 +0100] "GET /ps/SE2014.html HTTP/1.1" 200 11417 "https://firstyearmatters.info/cs/programmes.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:11:41:53 +0100] "GET /ps/MIT2014.html HTTP/1.1" 200 10905 "https://firstyearmatters.info/cs/programmes.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:11:41:57 +0100] "GET /cs/schedules.html HTTP/1.1" 200 2431 "https://firstyearmatters.info/cs/programmes.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:11:42:05 +0100] "GET /cs/sch-MITF.html HTTP/1.1" 200 6733 "https://firstyearmatters.info/cs/schedules.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:11:42:12 +0100] "GET /cs/lists/cc1.groups.html HTTP/1.1" 200 3925 "https://firstyearmatters.info/cs/sch-MITF.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:11:42:14 +0100] "GET /cs/lists/handbook.pdf HTTP/1.1" 404 682 "https://firstyearmatters.info/cs/lists/cc1.groups.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:11:42:23 +0100] "GET / HTTP/1.1" 302 923 "https://firstyearmatters.info/cs/lists/cc1.groups.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:11:42:23 +0100] "GET /cs HTTP/1.1" 301 746 "https://firstyearmatters.info/cs/lists/cc1.groups.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:11:42:23 +0100] "GET /cs/ HTTP/1.1" 200 3028 "https://firstyearmatters.info/cs/lists/cc1.groups.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:11:42:34 +0100] "GET /cs/referencelinks.html HTTP/1.1" 200 3205 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:11:43:07 +0100] "GET /new/referencelinks.html HTTP/1.1" 404 875 "https://firstyearmatters.info/cs/referencelinks.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:11:43:12 +0100] "GET /new/referencelinks.html HTTP/1.1" 404 875 "https://firstyearmatters.info/cs/referencelinks.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:11:43:21 +0100] "GET /new/referencelinks.html HTTP/1.1" 404 875 "https://firstyearmatters.info/cs/referencelinks.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:11:43:28 +0100] "GET /cs/handbook.pdf HTTP/1.1" 200 486124 "https://firstyearmatters.info/cs/referencelinks.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:11:43:32 +0100] "GET /cs/timetables.html HTTP/1.1" 200 2644 "https://firstyearmatters.info/cs/referencelinks.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:11:43:37 +0100] "GET /cs/tt1-MITF.html HTTP/1.1" 200 2948 "https://firstyearmatters.info/cs/timetables.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:11:43:39 +0100] "GET /new/tt1-MITF.html HTTP/1.1" 404 666 "https://firstyearmatters.info/cs/tt1-MITF.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:11:43:46 +0100] "GET / HTTP/1.1" 302 923 "https://firstyearmatters.info/cs/tt1-MITF.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:11:43:46 +0100] "GET /cs HTTP/1.1" 301 746 "https://firstyearmatters.info/cs/tt1-MITF.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:11:43:46 +0100] "GET /cs/ HTTP/1.1" 200 3028 "https://firstyearmatters.info/cs/tt1-MITF.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:11:43:50 +0100] "GET /cs/timetables.html HTTP/1.1" 200 2644 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
46.183.194.25 - - [22/Oct/2015:12:16:19 +0100] "GET / HTTP/1.1" 302 4435 "-" "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko"
46.183.194.25 - - [22/Oct/2015:12:16:19 +0100] "GET /cs HTTP/1.1" 301 746 "-" "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko"
46.183.194.25 - - [22/Oct/2015:12:16:19 +0100] "GET /cs/ HTTP/1.1" 200 3028 "-" "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko"
46.183.194.25 - - [22/Oct/2015:12:16:19 +0100] "GET /default.css HTTP/1.1" 200 1727 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko"
46.183.194.25 - - [22/Oct/2015:12:16:19 +0100] "GET /print.css HTTP/1.1" 200 1199 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko"
46.183.194.25 - - [22/Oct/2015:12:16:19 +0100] "GET /switcher.js HTTP/1.1" 200 1472 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko"
46.183.194.25 - - [22/Oct/2015:12:16:19 +0100] "GET /uos.jpg HTTP/1.1" 200 6427 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko"
46.183.194.25 - - [22/Oct/2015:12:16:19 +0100] "GET /fuof.jpg HTTP/1.1" 200 10203 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko"
46.183.194.25 - - [22/Oct/2015:12:16:19 +0100] "GET /fym.css HTTP/1.1" 200 1743 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko"
46.183.194.25 - - [22/Oct/2015:12:16:19 +0100] "GET /largetext.css HTTP/1.1" 200 1824 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko"
46.183.194.25 - - [22/Oct/2015:12:16:19 +0100] "GET /highcontrast.css HTTP/1.1" 200 1695 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko"
46.183.194.25 - - [22/Oct/2015:12:16:19 +0100] "GET /ie6.css HTTP/1.1" 200 1743 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko"
46.183.194.25 - - [22/Oct/2015:12:16:30 +0100] "-" 408 3705 "-" "-"
46.183.194.25 - - [22/Oct/2015:12:16:44 +0100] "GET / HTTP/1.1" 302 923 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko"
46.183.194.25 - - [22/Oct/2015:12:16:44 +0100] "GET /cs/ HTTP/1.1" 200 3028 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko"
46.183.194.25 - - [22/Oct/2015:12:17:05 +0100] "-" 408 193 "-" "-"
146.87.16.153 - - [22/Oct/2015:12:19:32 +0100] "GET /portal HTTP/1.1" 301 4509 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.153 - - [22/Oct/2015:12:19:32 +0100] "GET /portal/ HTTP/1.1" 302 936 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.153 - - [22/Oct/2015:12:19:32 +0100] "GET /portal/login HTTP/1.1" 200 5180 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.153 - - [22/Oct/2015:12:19:32 +0100] "GET /portal/js/42be59c.js HTTP/1.1" 200 41370 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.153 - - [22/Oct/2015:12:19:32 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.153 - - [22/Oct/2015:12:19:32 +0100] "GET /favicon.ico HTTP/1.1" 200 3984 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.153 - - [22/Oct/2015:12:19:40 +0100] "POST /portal/login_check HTTP/1.1" 302 1107 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.153 - - [22/Oct/2015:12:19:41 +0100] "GET /portal/ HTTP/1.1" 302 891 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.153 - - [22/Oct/2015:12:19:41 +0100] "GET /portal/dashboard HTTP/1.1" 200 1405 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.153 - - [22/Oct/2015:12:19:41 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.153 - - [22/Oct/2015:12:19:53 +0100] "GET /portal/dashboard HTTP/1.1" 200 1543 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.153 - - [22/Oct/2015:12:19:53 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.153 - - [22/Oct/2015:12:19:54 +0100] "GET /portal/dashboard HTTP/1.1" 200 1405 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.153 - - [22/Oct/2015:12:19:55 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.153 - - [22/Oct/2015:12:20:03 +0100] "GET /portal HTTP/1.1" 301 802 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.153 - - [22/Oct/2015:12:20:03 +0100] "GET /portal/ HTTP/1.1" 302 753 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.153 - - [22/Oct/2015:12:20:03 +0100] "GET /portal/dashboard HTTP/1.1" 200 1543 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.153 - - [22/Oct/2015:12:20:03 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
10.99.200.225 - - [22/Oct/2015:12:25:54 +0100] "GET /cs/timetables.html HTTP/1.1" 200 6349 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:12:25:59 +0100] "GET /cs/tt1-MITF.html HTTP/1.1" 200 3141 "https://firstyearmatters.info/cs/timetables.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
146.87.16.168 - - [22/Oct/2015:12:34:36 +0100] "GET /portal HTTP/1.1" 301 4509 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.168 - - [22/Oct/2015:12:34:36 +0100] "GET /portal/ HTTP/1.1" 302 936 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.168 - - [22/Oct/2015:12:34:36 +0100] "GET /portal/login HTTP/1.1" 200 5178 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.168 - - [22/Oct/2015:12:34:36 +0100] "GET /portal/js/42be59c.js HTTP/1.1" 200 41370 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.168 - - [22/Oct/2015:12:34:36 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.168 - - [22/Oct/2015:12:34:36 +0100] "GET /favicon.ico HTTP/1.1" 200 3984 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.168 - - [22/Oct/2015:12:34:45 +0100] "POST /portal/login_check HTTP/1.1" 302 1107 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.168 - - [22/Oct/2015:12:34:46 +0100] "GET /portal/ HTTP/1.1" 302 891 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.168 - - [22/Oct/2015:12:34:46 +0100] "GET /portal/dashboard HTTP/1.1" 200 1398 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.168 - - [22/Oct/2015:12:34:46 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
46.183.194.25 - - [22/Oct/2015:12:36:16 +0100] "GET /cs/lecturers.html HTTP/1.1" 200 7437 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko"
46.183.194.25 - - [22/Oct/2015:12:36:37 +0100] "-" 408 3705 "-" "-"
46.183.194.25 - - [22/Oct/2015:12:36:54 +0100] "GET /default.css HTTP/1.1" 200 5432 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/7.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; ms-office; MSOffice 14)"
207.46.13.173 - - [22/Oct/2015:12:42:44 +0100] "GET /wiki/hosting:helios_admin HTTP/1.1" 200 15891 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b"
10.99.200.154 - - [22/Oct/2015:12:54:23 +0100] "GET /portal HTTP/1.1" 301 4509 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.200.154 - - [22/Oct/2015:12:54:23 +0100] "GET /portal/ HTTP/1.1" 302 936 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.200.154 - - [22/Oct/2015:12:54:23 +0100] "GET /portal/login HTTP/1.1" 200 1332 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.200.154 - - [22/Oct/2015:12:54:23 +0100] "GET /portal/js/42be59c.js HTTP/1.1" 200 45077 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.200.154 - - [22/Oct/2015:12:54:23 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.200.154 - - [22/Oct/2015:12:54:24 +0100] "GET /favicon.ico HTTP/1.1" 200 3984 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.200.154 - - [22/Oct/2015:12:54:35 +0100] "POST /portal/login_check HTTP/1.1" 302 1107 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.200.154 - - [22/Oct/2015:12:54:35 +0100] "GET /portal/ HTTP/1.1" 302 753 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.200.154 - - [22/Oct/2015:12:54:35 +0100] "GET /portal/dashboard HTTP/1.1" 200 1407 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.200.154 - - [22/Oct/2015:12:54:35 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.200.154 - - [22/Oct/2015:12:55:09 +0100] "GET /portal/dashboard HTTP/1.1" 200 1545 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.200.154 - - [22/Oct/2015:12:55:09 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.200.154 - - [22/Oct/2015:12:55:28 +0100] "GET /portal/dashboard HTTP/1.1" 200 1545 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.200.154 - - [22/Oct/2015:12:55:28 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
82.40.58.133 - - [22/Oct/2015:13:11:11 +0100] "GET /cs/ HTTP/1.1" 200 6500 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
82.40.58.133 - - [22/Oct/2015:13:11:12 +0100] "GET /default.css HTTP/1.1" 200 1576 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
82.40.58.133 - - [22/Oct/2015:13:11:12 +0100] "GET /ie6.css HTTP/1.1" 200 1730 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
82.40.58.133 - - [22/Oct/2015:13:11:12 +0100] "GET /largetext.css HTTP/1.1" 200 1623 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
82.40.58.133 - - [22/Oct/2015:13:11:12 +0100] "GET /print.css HTTP/1.1" 200 1196 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
82.40.58.133 - - [22/Oct/2015:13:11:12 +0100] "GET /switcher.js HTTP/1.1" 200 1272 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
82.40.58.133 - - [22/Oct/2015:13:11:12 +0100] "GET /highcontrast.css HTTP/1.1" 200 1675 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
82.40.58.133 - - [22/Oct/2015:13:11:12 +0100] "GET /apple-touch-icon-120x120-precomposed.png HTTP/1.1" 404 4254 "-" "MobileSafari/601.1 CFNetwork/758.1.6 Darwin/15.0.0"
82.40.58.133 - - [22/Oct/2015:13:11:12 +0100] "GET /apple-touch-icon-120x120.png HTTP/1.1" 404 592 "-" "MobileSafari/601.1 CFNetwork/758.1.6 Darwin/15.0.0"
82.40.58.133 - - [22/Oct/2015:13:11:13 +0100] "GET /apple-touch-icon.png HTTP/1.1" 404 584 "-" "MobileSafari/601.1 CFNetwork/758.1.6 Darwin/15.0.0"
82.40.58.133 - - [22/Oct/2015:13:11:13 +0100] "GET /apple-touch-icon.png HTTP/1.1" 404 584 "-" "MobileSafari/601.1 CFNetwork/758.1.6 Darwin/15.0.0"
82.40.58.133 - - [22/Oct/2015:13:11:17 +0100] "GET /cs/timetables.html HTTP/1.1" 200 2457 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
82.40.58.133 - - [22/Oct/2015:13:11:24 +0100] "GET /cs/tt1-WD1.html HTTP/1.1" 200 3060 "https://www.firstyearmatters.info/cs/timetables.html" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
146.87.136.146 - - [22/Oct/2015:13:32:23 +0100] "GET /portal HTTP/1.1" 301 4509 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.10240"
146.87.136.146 - - [22/Oct/2015:13:32:23 +0100] "GET /portal/ HTTP/1.1" 302 936 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.10240"
146.87.136.146 - - [22/Oct/2015:13:32:23 +0100] "GET /portal/login HTTP/1.1" 200 1334 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.10240"
146.87.136.146 - - [22/Oct/2015:13:32:23 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.10240"
146.87.136.146 - - [22/Oct/2015:13:32:23 +0100] "GET /portal/js/42be59c.js HTTP/1.1" 200 41338 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.10240"
146.87.136.146 - - [22/Oct/2015:13:32:24 +0100] "GET /favicon.ico HTTP/1.1" 200 7829 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.10240"
146.87.136.146 - - [22/Oct/2015:13:32:45 +0100] "POST /portal/login_check HTTP/1.1" 302 1075 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.10240"
146.87.136.146 - - [22/Oct/2015:13:32:45 +0100] "GET /portal/ HTTP/1.1" 302 753 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.10240"
146.87.136.146 - - [22/Oct/2015:13:32:45 +0100] "GET /portal/dashboard HTTP/1.1" 200 1401 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.10240"
146.87.136.146 - - [22/Oct/2015:13:32:45 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.10240"
146.87.136.146 - - [22/Oct/2015:13:32:57 +0100] "GET /portal/dashboard HTTP/1.1" 200 1507 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.10240"
146.87.136.146 - - [22/Oct/2015:13:32:58 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.10240"
146.87.136.146 - - [22/Oct/2015:13:33:54 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1030 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.10240"
213.152.161.133 - - [22/Oct/2015:13:41:26 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 5156 "http://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
213.152.161.133 - - [22/Oct/2015:13:42:24 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1469 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
213.152.161.133 - - [22/Oct/2015:13:43:03 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1479 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
213.152.161.133 - - [22/Oct/2015:13:43:10 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1439 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
213.152.161.133 - - [22/Oct/2015:13:43:16 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1484 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
213.152.161.133 - - [22/Oct/2015:13:43:53 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1484 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.200.225 - - [22/Oct/2015:14:04:19 +0100] "GET /porta HTTP/1.1" 404 859 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:14:04:19 +0100] "GET /portal/linux/passwd/388 HTTP/1.1" 200 5378 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:14:04:19 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1124 "https://firstyearmatters.info/portal/linux/passwd/388" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:14:04:22 +0100] "GET /portal/linux/passwd/388 HTTP/1.1" 200 1673 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:14:04:22 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1124 "https://firstyearmatters.info/portal/linux/passwd/388" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:14:04:50 +0100] "POST /portal/linux/passwd/388 HTTP/1.1" 200 1882 "https://firstyearmatters.info/portal/linux/passwd/388" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:14:04:50 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1124 "https://firstyearmatters.info/portal/linux/passwd/388" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:14:04:59 +0100] "POST /portal/linux/passwd/388 HTTP/1.1" 200 1882 "https://firstyearmatters.info/portal/linux/passwd/388" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:14:05:00 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1124 "https://firstyearmatters.info/portal/linux/passwd/388" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:14:05:02 +0100] "GET /portal/dashboard HTTP/1.1" 200 1625 "https://firstyearmatters.info/portal/linux/passwd/388" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:14:05:02 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1124 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:14:05:03 +0100] "GET /portal/linux/passwd/388 HTTP/1.1" 200 1673 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:14:05:03 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1124 "https://firstyearmatters.info/portal/linux/passwd/388" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
146.87.136.146 - - [22/Oct/2015:14:06:54 +0100] "GET /portal HTTP/1.1" 301 4509 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [22/Oct/2015:14:06:54 +0100] "GET /portal/ HTTP/1.1" 302 936 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [22/Oct/2015:14:06:54 +0100] "GET /portal/login HTTP/1.1" 200 1333 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [22/Oct/2015:14:06:54 +0100] "GET /portal/js/42be59c.js HTTP/1.1" 200 41232 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [22/Oct/2015:14:06:54 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 4769 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [22/Oct/2015:14:06:54 +0100] "GET /favicon.ico HTTP/1.1" 200 3984 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [22/Oct/2015:14:07:04 +0100] "POST /portal/login_check HTTP/1.1" 302 1107 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [22/Oct/2015:14:07:05 +0100] "GET /portal/ HTTP/1.1" 302 753 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [22/Oct/2015:14:07:05 +0100] "GET /portal/dashboard HTTP/1.1" 200 1405 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [22/Oct/2015:14:07:05 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
10.99.60.116 - - [22/Oct/2015:14:10:17 +0100] "GET /portal/ HTTP/1.1" 302 4781 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.60.116 - - [22/Oct/2015:14:10:17 +0100] "GET /portal/login HTTP/1.1" 200 1336 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.60.116 - - [22/Oct/2015:14:10:17 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.60.116 - - [22/Oct/2015:14:10:28 +0100] "POST /portal/login_check HTTP/1.1" 302 1016 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.60.116 - - [22/Oct/2015:14:10:28 +0100] "GET /portal/login HTTP/1.1" 200 1984 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.60.116 - - [22/Oct/2015:14:10:28 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.60.116 - - [22/Oct/2015:14:10:36 +0100] "POST /portal/login_check HTTP/1.1" 302 1016 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.60.116 - - [22/Oct/2015:14:10:36 +0100] "GET /portal/login HTTP/1.1" 200 1984 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.60.116 - - [22/Oct/2015:14:10:36 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.60.116 - - [22/Oct/2015:14:10:50 +0100] "POST /portal/login_check HTTP/1.1" 302 1016 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.60.116 - - [22/Oct/2015:14:10:50 +0100] "GET /portal/login HTTP/1.1" 200 1984 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.60.116 - - [22/Oct/2015:14:10:51 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.60.116 - - [22/Oct/2015:14:11:00 +0100] "GET /portal/dashboard HTTP/1.1" 302 1016 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.60.116 - - [22/Oct/2015:14:11:00 +0100] "GET /portal/login HTTP/1.1" 200 1341 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.60.116 - - [22/Oct/2015:14:11:00 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.60.116 - - [22/Oct/2015:14:11:01 +0100] "GET /portal/dashboard HTTP/1.1" 302 878 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.60.116 - - [22/Oct/2015:14:11:01 +0100] "GET /portal/login HTTP/1.1" 200 1479 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.60.116 - - [22/Oct/2015:14:11:01 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:14:17:58 +0100] "GET /portal/ HTTP/1.1" 302 4817 "-" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:14:17:58 +0100] "GET /portal/login HTTP/1.1" 200 1334 "-" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:14:17:58 +0100] "GET /portal/js/42be59c.js HTTP/1.1" 200 45093 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:14:17:58 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:14:17:59 +0100] "GET /favicon.ico HTTP/1.1" 200 3984 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:14:18:08 +0100] "POST /portal/login_check HTTP/1.1" 302 1127 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:14:18:08 +0100] "GET /portal/ HTTP/1.1" 302 753 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:14:18:09 +0100] "GET /portal/dashboard HTTP/1.1" 200 1254 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:14:18:09 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:14:18:39 +0100] "GET /portal/linux/register HTTP/1.1" 200 1638 "https://www.firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:14:18:39 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.146 - - [22/Oct/2015:14:18:57 +0100] "GET /portal/ HTTP/1.1" 302 4781 "-" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.146 - - [22/Oct/2015:14:18:57 +0100] "GET /portal/login HTTP/1.1" 200 1337 "-" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.146 - - [22/Oct/2015:14:18:58 +0100] "GET /portal/js/42be59c.js HTTP/1.1" 200 45077 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.146 - - [22/Oct/2015:14:18:58 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.146 - - [22/Oct/2015:14:18:58 +0100] "GET /favicon.ico HTTP/1.1" 200 3984 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.146 - - [22/Oct/2015:14:19:11 +0100] "POST /portal/login_check HTTP/1.1" 302 1107 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.146 - - [22/Oct/2015:14:19:11 +0100] "GET /portal/ HTTP/1.1" 302 753 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.146 - - [22/Oct/2015:14:19:11 +0100] "GET /portal/dashboard HTTP/1.1" 200 1244 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.146 - - [22/Oct/2015:14:19:11 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:14:19:14 +0100] "POST /portal/linux/register HTTP/1.1" 200 1682 "https://www.firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:14:19:15 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.146 - - [22/Oct/2015:14:19:15 +0100] "GET /portal/linux/register HTTP/1.1" 200 1487 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.146 - - [22/Oct/2015:14:19:15 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:14:19:32 +0100] "GET /portal/logout HTTP/1.1" 302 1127 "https://www.firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:14:19:32 +0100] "GET /portal/ HTTP/1.1" 302 898 "https://www.firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:14:19:32 +0100] "GET /portal/login HTTP/1.1" 200 1336 "https://www.firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:14:19:32 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.16.147 - - [22/Oct/2015:14:24:05 +0100] "GET /portal HTTP/1.1" 301 4509 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.147 - - [22/Oct/2015:14:24:05 +0100] "GET /portal/ HTTP/1.1" 302 936 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.147 - - [22/Oct/2015:14:24:06 +0100] "GET /portal/login HTTP/1.1" 200 5178 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.147 - - [22/Oct/2015:14:24:06 +0100] "GET /portal/js/42be59c.js HTTP/1.1" 200 41232 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.147 - - [22/Oct/2015:14:24:06 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.147 - - [22/Oct/2015:14:24:06 +0100] "GET /favicon.ico HTTP/1.1" 200 3984 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.147 - - [22/Oct/2015:14:24:17 +0100] "POST /portal/login_check HTTP/1.1" 302 1107 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.147 - - [22/Oct/2015:14:24:18 +0100] "GET /portal/ HTTP/1.1" 302 891 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.147 - - [22/Oct/2015:14:24:18 +0100] "GET /portal/dashboard HTTP/1.1" 200 1398 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.147 - - [22/Oct/2015:14:24:18 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.147 - - [22/Oct/2015:14:24:21 +0100] "GET /portal/linux/passwd/390 HTTP/1.1" 200 1439 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.147 - - [22/Oct/2015:14:24:21 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/linux/passwd/390" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.147 - - [22/Oct/2015:14:24:28 +0100] "POST /portal/linux/passwd/390 HTTP/1.1" 200 1625 "https://firstyearmatters.info/portal/linux/passwd/390" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.147 - - [22/Oct/2015:14:24:29 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/linux/passwd/390" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.147 - - [22/Oct/2015:14:24:55 +0100] "POST /portal/linux/passwd/390 HTTP/1.1" 200 1606 "https://firstyearmatters.info/portal/linux/passwd/390" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.147 - - [22/Oct/2015:14:24:55 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/linux/passwd/390" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [22/Oct/2015:14:34:10 +0100] "GET /portal/linux/register HTTP/1.1" 200 5332 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.146 - - [22/Oct/2015:14:34:10 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.146 - - [22/Oct/2015:14:34:24 +0100] "POST /portal/linux/register HTTP/1.1" 200 1667 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.146 - - [22/Oct/2015:14:34:24 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.146 - - [22/Oct/2015:14:37:28 +0100] "POST /portal/linux/register HTTP/1.1" 302 857 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.146 - - [22/Oct/2015:14:38:04 +0100] "POST /portal/linux/register HTTP/1.1" 401 1138 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.146 - - [22/Oct/2015:14:38:31 +0100] "POST /portal/linux/register HTTP/1.1" 401 1138 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.146 - - [22/Oct/2015:14:38:38 +0100] "GET /portal/dashboard HTTP/1.1" 200 1535 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.146 - - [22/Oct/2015:14:38:38 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:14:39:46 +0100] "GET /portal/ HTTP/1.1" 302 4759 "-" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:14:39:46 +0100] "GET /portal/login HTTP/1.1" 200 1336 "-" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:14:39:46 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:14:39:54 +0100] "POST /portal/login_check HTTP/1.1" 302 4850 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:14:39:55 +0100] "GET /portal/ HTTP/1.1" 302 753 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:14:39:55 +0100] "GET /portal/dashboard HTTP/1.1" 200 1254 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:14:39:55 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:14:39:57 +0100] "GET /portal/linux/register HTTP/1.1" 200 1500 "https://www.firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:14:39:57 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:14:40:10 +0100] "POST /portal/linux/register HTTP/1.1" 200 1680 "https://www.firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:14:40:10 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:14:40:20 +0100] "POST /portal/linux/register HTTP/1.1" 302 891 "https://www.firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:14:40:56 +0100] "GET /portal/dashboard HTTP/1.1" 200 1547 "https://www.firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [22/Oct/2015:14:40:57 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.49.30 - - [22/Oct/2015:14:50:58 +0100] "GET /portal/ HTTP/1.1" 302 4817 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.49.30 - - [22/Oct/2015:14:50:58 +0100] "GET /portal/login HTTP/1.1" 200 1473 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.49.30 - - [22/Oct/2015:14:50:58 +0100] "GET /portal/js/42be59c.js HTTP/1.1" 200 41370 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.49.30 - - [22/Oct/2015:14:50:58 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.49.30 - - [22/Oct/2015:14:50:58 +0100] "GET /favicon.ico HTTP/1.1" 200 3984 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.49.30 - - [22/Oct/2015:14:51:12 +0100] "POST /portal/login_check HTTP/1.1" 302 1127 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.49.30 - - [22/Oct/2015:14:51:12 +0100] "GET /portal/ HTTP/1.1" 302 891 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.49.30 - - [22/Oct/2015:14:51:12 +0100] "GET /portal/dashboard HTTP/1.1" 200 1440 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.49.30 - - [22/Oct/2015:14:51:13 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.49.30 - - [22/Oct/2015:14:51:16 +0100] "GET /portal/linux/register HTTP/1.1" 200 1546 "https://www.firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.49.30 - - [22/Oct/2015:14:51:16 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.49.30 - - [22/Oct/2015:14:51:28 +0100] "POST /portal/linux/register HTTP/1.1" 200 1726 "https://www.firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.49.30 - - [22/Oct/2015:14:51:28 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.49.30 - - [22/Oct/2015:14:51:44 +0100] "POST /portal/linux/register HTTP/1.1" 302 891 "https://www.firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.49.30 - - [22/Oct/2015:14:52:27 +0100] "GET /portal/dashboard HTTP/1.1" 200 1595 "https://www.firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.49.30 - - [22/Oct/2015:14:52:28 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.147 - - [22/Oct/2015:14:55:43 +0100] "GET /portal HTTP/1.1" 301 4509 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.147 - - [22/Oct/2015:14:55:43 +0100] "GET /portal/ HTTP/1.1" 302 753 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.147 - - [22/Oct/2015:14:55:43 +0100] "GET /portal/dashboard HTTP/1.1" 200 5243 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.147 - - [22/Oct/2015:14:55:44 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.147 - - [22/Oct/2015:14:55:46 +0100] "GET /portal/linux/passwd/390 HTTP/1.1" 200 1439 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.147 - - [22/Oct/2015:14:55:46 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/linux/passwd/390" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.147 - - [22/Oct/2015:14:56:05 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1062 "https://firstyearmatters.info/portal/linux/passwd/390" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.147 - - [22/Oct/2015:14:55:54 +0100] "POST /portal/linux/passwd/390 HTTP/1.1" 200 5334 "https://firstyearmatters.info/portal/linux/passwd/390" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.74 - - [22/Oct/2015:14:57:46 +0100] "GET /portal/ HTTP/1.1" 302 4817 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.74 - - [22/Oct/2015:14:57:46 +0100] "GET /portal/login HTTP/1.1" 200 1467 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.74 - - [22/Oct/2015:14:57:46 +0100] "GET /portal/js/42be59c.js HTTP/1.1" 200 41370 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.74 - - [22/Oct/2015:14:57:46 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.74 - - [22/Oct/2015:14:57:46 +0100] "GET /favicon.ico HTTP/1.1" 200 3984 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.74 - - [22/Oct/2015:14:57:54 +0100] "POST /portal/login_check HTTP/1.1" 302 1127 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.74 - - [22/Oct/2015:14:57:54 +0100] "GET /portal/ HTTP/1.1" 302 753 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.74 - - [22/Oct/2015:14:57:54 +0100] "GET /portal/dashboard HTTP/1.1" 200 1544 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.74 - - [22/Oct/2015:14:57:54 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0"
10.99.200.225 - - [22/Oct/2015:14:58:14 +0100] "GET /portal HTTP/1.1" 301 4467 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:14:58:14 +0100] "GET /portal/ HTTP/1.1" 302 948 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:14:58:14 +0100] "GET /portal/dashboard HTTP/1.1" 200 1818 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:14:58:14 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1124 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:14:58:16 +0100] "GET /portal/linux/passwd/388 HTTP/1.1" 200 1673 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:14:58:16 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1124 "https://firstyearmatters.info/portal/linux/passwd/388" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:14:58:39 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1317 "https://firstyearmatters.info/portal/linux/passwd/388" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:14:58:29 +0100] "POST /portal/linux/passwd/388 HTTP/1.1" 200 1914 "https://firstyearmatters.info/portal/linux/passwd/388" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:14:58:43 +0100] "GET /portal/dashboard HTTP/1.1" 200 1625 "https://firstyearmatters.info/portal/linux/passwd/388" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:14:58:43 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1124 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.154 - - [22/Oct/2015:15:01:38 +0100] "GET /portal HTTP/1.1" 301 4509 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.200.154 - - [22/Oct/2015:15:01:38 +0100] "GET /portal/ HTTP/1.1" 302 753 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.200.154 - - [22/Oct/2015:15:01:38 +0100] "GET /portal/dashboard HTTP/1.1" 200 1407 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.200.154 - - [22/Oct/2015:15:01:38 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.200.154 - - [22/Oct/2015:15:01:44 +0100] "GET /portal/linux/passwd/395 HTTP/1.1" 200 5293 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.200.154 - - [22/Oct/2015:15:01:44 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/linux/passwd/395" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.200.154 - - [22/Oct/2015:15:01:56 +0100] "POST /portal/linux/passwd/395 HTTP/1.1" 200 1559 "https://firstyearmatters.info/portal/linux/passwd/395" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.200.154 - - [22/Oct/2015:15:02:21 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1062 "https://firstyearmatters.info/portal/linux/passwd/395" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.200.154 - - [22/Oct/2015:15:02:00 +0100] "POST /portal/linux/passwd/395 HTTP/1.1" 200 1637 "https://firstyearmatters.info/portal/linux/passwd/395" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.200.154 - - [22/Oct/2015:15:02:28 +0100] "GET /portal/dashboard HTTP/1.1" 200 1545 "https://firstyearmatters.info/portal/linux/passwd/395" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.200.154 - - [22/Oct/2015:15:02:28 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.114.171 - - [22/Oct/2015:15:06:17 +0100] "GET /portal/dashboard HTTP/1.1" 302 4845 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
146.87.114.171 - - [22/Oct/2015:15:06:17 +0100] "GET /portal/login HTTP/1.1" 200 1641 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
146.87.114.171 - - [22/Oct/2015:15:06:18 +0100] "GET /favicon.ico HTTP/1.1" 200 4090 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
146.87.114.171 - - [22/Oct/2015:15:06:18 +0100] "GET /portal/dashboard HTTP/1.1" 302 1124 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B410 Safari/600.1.4"
146.87.114.171 - - [22/Oct/2015:15:06:18 +0100] "GET /portal/login HTTP/1.1" 200 1641 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B410 Safari/600.1.4"
146.87.114.171 - - [22/Oct/2015:15:06:19 +0100] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4387 "-" "com.apple.WebKit.WebContent/10600.6.3 CFNetwork/720.3.13 Darwin/14.3.0 (x86_64)"
146.87.114.171 - - [22/Oct/2015:15:06:19 +0100] "GET /apple-touch-icon.png HTTP/1.1" 404 682 "-" "com.apple.WebKit.WebContent/10600.6.3 CFNetwork/720.3.13 Darwin/14.3.0 (x86_64)"
10.99.200.225 - - [22/Oct/2015:16:04:48 +0100] "GET / HTTP/1.1" 302 4435 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:16:04:48 +0100] "GET /cs HTTP/1.1" 301 746 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.99.200.225 - - [22/Oct/2015:16:04:48 +0100] "GET /cs/ HTTP/1.1" 200 3028 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
2.121.112.52 - - [22/Oct/2015:17:59:29 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 5089 "http://firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
2.121.112.52 - - [22/Oct/2015:17:59:30 +0100] "GET /page.css HTTP/1.1" 200 626 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
2.121.112.52 - - [22/Oct/2015:17:59:30 +0100] "GET /favicon.ico HTTP/1.1" 200 3984 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
2.121.112.52 - - [22/Oct/2015:18:00:20 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 5117 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
2.121.112.52 - - [22/Oct/2015:18:00:26 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 5145 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
2.121.112.52 - - [22/Oct/2015:18:00:40 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 5223 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
2.121.112.52 - - [22/Oct/2015:18:01:23 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 5221 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
2.121.112.52 - - [22/Oct/2015:18:02:11 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 5226 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
2.121.112.52 - - [22/Oct/2015:18:05:24 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 5231 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
2.121.112.52 - - [22/Oct/2015:18:05:38 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 5200 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
2.121.112.52 - - [22/Oct/2015:18:06:16 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 5251 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
2.121.112.52 - - [22/Oct/2015:18:06:36 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 5260 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
2.121.112.52 - - [22/Oct/2015:18:06:56 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 5251 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
2.121.112.52 - - [22/Oct/2015:18:07:45 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 5280 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
2.121.112.52 - - [22/Oct/2015:18:08:04 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 5287 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
2.121.112.52 - - [22/Oct/2015:18:08:17 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 5300 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
2.121.112.52 - - [22/Oct/2015:18:11:00 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 5308 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
2.121.112.52 - - [22/Oct/2015:18:11:45 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 5303 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
2.121.112.52 - - [22/Oct/2015:18:12:07 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 5333 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
2.121.112.52 - - [22/Oct/2015:18:13:16 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 5343 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
86.129.42.161 - - [22/Oct/2015:19:10:38 +0100] "GET /cs/tt1-CC1.3.html HTTP/1.1" 200 6793 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
86.129.42.161 - - [22/Oct/2015:19:10:52 +0100] "GET /cs/timetables.html HTTP/1.1" 200 2595 "https://www.firstyearmatters.info/cs/tt1-CC1.3.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
86.129.42.161 - - [22/Oct/2015:19:10:54 +0100] "GET /cs/tt1-CC1.1.html HTTP/1.1" 200 2928 "https://www.firstyearmatters.info/cs/timetables.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
86.129.42.161 - - [22/Oct/2015:19:11:13 +0100] "GET /cs/timetables.html HTTP/1.1" 200 2595 "https://www.firstyearmatters.info/cs/tt1-CC1.1.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
86.129.42.161 - - [22/Oct/2015:19:11:14 +0100] "GET /cs/tt1-CC1.2.html HTTP/1.1" 200 2940 "https://www.firstyearmatters.info/cs/timetables.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
86.129.42.161 - - [22/Oct/2015:19:11:35 +0100] "GET /cs/timetables.html HTTP/1.1" 200 2595 "https://www.firstyearmatters.info/cs/tt1-CC1.2.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
86.129.42.161 - - [22/Oct/2015:19:11:37 +0100] "GET /cs/tt1-CC1.4.html HTTP/1.1" 200 2914 "https://www.firstyearmatters.info/cs/timetables.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
86.129.42.161 - - [22/Oct/2015:19:11:44 +0100] "GET /cs/tt1-CC1.3.html HTTP/1.1" 200 3070 "https://www.firstyearmatters.info/cs/timetables.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
86.129.42.161 - - [22/Oct/2015:19:11:50 +0100] "GET /cs/tt1-CS2.1.html HTTP/1.1" 200 3139 "https://www.firstyearmatters.info/cs/timetables.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
86.129.42.161 - - [22/Oct/2015:19:11:56 +0100] "GET /cs/tt1-CS2.2.html HTTP/1.1" 200 3087 "https://www.firstyearmatters.info/cs/timetables.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
86.129.42.161 - - [22/Oct/2015:19:12:04 +0100] "GET /cs/tt1-CSF.html HTTP/1.1" 200 3082 "https://www.firstyearmatters.info/cs/timetables.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
86.129.42.161 - - [22/Oct/2015:19:12:11 +0100] "GET /cs/tt1-WD1.html HTTP/1.1" 200 3060 "https://www.firstyearmatters.info/cs/timetables.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
86.129.42.161 - - [22/Oct/2015:19:12:35 +0100] "GET /cs/tt1-MITF.html HTTP/1.1" 200 2898 "https://www.firstyearmatters.info/cs/timetables.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
86.129.42.161 - - [22/Oct/2015:19:12:40 +0100] "GET /cs/tt1-ACS.html HTTP/1.1" 200 2680 "https://www.firstyearmatters.info/cs/timetables.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
86.129.42.161 - - [22/Oct/2015:19:12:48 +0100] "GET /cs/tt1-MSE.html HTTP/1.1" 200 2779 "https://www.firstyearmatters.info/cs/timetables.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
86.129.42.161 - - [22/Oct/2015:19:13:08 +0100] "GET /cs/tt1-DWBS.html HTTP/1.1" 200 2808 "https://www.firstyearmatters.info/cs/timetables.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.19.13 - - [22/Oct/2015:20:15:04 +0100] "GET /portal HTTP/1.1" 301 4509 "https://www.facebook.com/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.19.13 - - [22/Oct/2015:20:15:04 +0100] "GET /portal/ HTTP/1.1" 302 936 "https://www.facebook.com/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.19.13 - - [22/Oct/2015:20:15:04 +0100] "GET /portal/login HTTP/1.1" 200 1473 "https://www.facebook.com/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.19.13 - - [22/Oct/2015:20:15:04 +0100] "GET /portal/js/42be59c.js HTTP/1.1" 200 41370 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.19.13 - - [22/Oct/2015:20:15:04 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.19.13 - - [22/Oct/2015:20:15:04 +0100] "GET /favicon.ico HTTP/1.1" 200 3984 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.19.13 - - [22/Oct/2015:20:15:09 +0100] "POST /portal/login_check HTTP/1.1" 302 878 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.19.13 - - [22/Oct/2015:20:15:09 +0100] "GET /portal/login HTTP/1.1" 200 1985 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.19.13 - - [22/Oct/2015:20:15:09 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1062 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.19.13 - - [22/Oct/2015:20:15:16 +0100] "POST /portal/login_check HTTP/1.1" 302 1107 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.19.13 - - [22/Oct/2015:20:15:16 +0100] "GET /portal/ HTTP/1.1" 302 753 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.19.13 - - [22/Oct/2015:20:15:16 +0100] "GET /portal/dashboard HTTP/1.1" 200 1382 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.19.13 - - [22/Oct/2015:20:15:16 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.19.13 - - [22/Oct/2015:20:15:18 +0100] "GET /portal/linux/register HTTP/1.1" 200 1491 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.19.13 - - [22/Oct/2015:20:15:18 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1062 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.19.13 - - [22/Oct/2015:20:15:29 +0100] "POST /portal/linux/register HTTP/1.1" 200 1672 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.19.13 - - [22/Oct/2015:20:15:29 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.19.13 - - [22/Oct/2015:20:15:39 +0100] "POST /portal/linux/register HTTP/1.1" 302 891 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.19.13 - - [22/Oct/2015:20:16:14 +0100] "GET /portal/dashboard HTTP/1.1" 200 1534 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.19.13 - - [22/Oct/2015:20:16:14 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
86.129.42.161 - - [22/Oct/2015:23:23:10 +0100] "GET /cgi-bin/binary.cgi HTTP/1.1" 200 5150 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
86.129.42.161 - - [22/Oct/2015:23:23:15 +0100] "GET / HTTP/1.1" 302 630 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
86.129.42.161 - - [22/Oct/2015:23:23:15 +0100] "GET /cs/ HTTP/1.1" 200 2915 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
86.129.42.161 - - [22/Oct/2015:23:23:22 +0100] "GET /cs/timetables.html HTTP/1.1" 200 2663 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
86.129.42.161 - - [22/Oct/2015:23:23:23 +0100] "GET /cs/tt1-CC1.3.html HTTP/1.1" 200 2999 "https://www.firstyearmatters.info/cs/timetables.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
82.29.189.123 - - [23/Oct/2015:00:04:50 +0100] "GET /wiki/free HTTP/1.1" 200 9425 "http://www.firstyearmatters.info/new/usefullinks.html" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.29.189.123 - - [23/Oct/2015:00:04:51 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick_ltr.css HTTP/1.1" 200 9377 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.29.189.123 - - [23/Oct/2015:00:04:51 +0100] "GET /wiki/lib/exe/css.php?t=dokuwiki&tseed=2cb5b229a761de98d43761336d42f70b HTTP/1.1" 200 27528 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.29.189.123 - - [23/Oct/2015:00:04:51 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jquery.1.4.2.js HTTP/1.1" 200 4117 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.29.189.123 - - [23/Oct/2015:00:04:51 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick.min.1.3.js HTTP/1.1" 200 4123 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.29.189.123 - - [23/Oct/2015:00:04:51 +0100] "GET /wiki/lib/exe/js.php?t=dokuwiki&tseed=2cb5b229a761de98d43761336d42f70b HTTP/1.1" 200 142933 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.29.189.123 - - [23/Oct/2015:00:04:52 +0100] "GET /wiki/lib/tpl/dokuwiki/images/button-donate.gif HTTP/1.1" 200 528 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.29.189.123 - - [23/Oct/2015:00:04:52 +0100] "GET /wiki/lib/tpl/dokuwiki/images/button-dw.png HTTP/1.1" 200 740 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.29.189.123 - - [23/Oct/2015:00:04:52 +0100] "GET /wiki/lib/tpl/dokuwiki/images/button-php.gif HTTP/1.1" 200 548 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.29.189.123 - - [23/Oct/2015:00:04:52 +0100] "GET /wiki/lib/tpl/dokuwiki/images/button-html5.png HTTP/1.1" 200 647 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.29.189.123 - - [23/Oct/2015:00:04:52 +0100] "GET /wiki/lib/tpl/dokuwiki/images/button-css.png HTTP/1.1" 200 777 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.29.189.123 - - [23/Oct/2015:00:04:52 +0100] "GET /wiki/_media/wiki:logo.png HTTP/1.1" 403 535 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.29.189.123 - - [23/Oct/2015:00:04:52 +0100] "GET /wiki/lib/tpl/dokuwiki/images/page-gradient.png HTTP/1.1" 200 550 "https://fym.cse.salford.ac.uk/wiki/lib/exe/css.php?t=dokuwiki&tseed=2cb5b229a761de98d43761336d42f70b" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.29.189.123 - - [23/Oct/2015:00:04:52 +0100] "GET /wiki/free HTTP/1.1" 200 3942 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.29.189.123 - - [23/Oct/2015:00:04:52 +0100] "GET /wiki/lib/exe/indexer.php?id=free&1445555091 HTTP/1.1" 200 526 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.29.189.123 - - [23/Oct/2015:00:04:52 +0100] "GET /wiki/lib/tpl/dokuwiki/images/favicon.ico HTTP/1.1" 200 7753 "-" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.29.189.123 - - [23/Oct/2015:00:04:52 +0100] "GET /wiki/_media/wiki:logo.png HTTP/1.1" 403 535 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.29.189.123 - - [23/Oct/2015:00:04:52 +0100] "GET /wiki/lib/tpl/dokuwiki/images/usertools.png HTTP/1.1" 200 1771 "https://fym.cse.salford.ac.uk/wiki/lib/exe/css.php?t=dokuwiki&tseed=2cb5b229a761de98d43761336d42f70b" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.29.189.123 - - [23/Oct/2015:00:04:52 +0100] "GET /wiki/lib/tpl/dokuwiki/images/search.png HTTP/1.1" 200 649 "https://fym.cse.salford.ac.uk/wiki/lib/exe/css.php?t=dokuwiki&tseed=2cb5b229a761de98d43761336d42f70b" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.29.189.123 - - [23/Oct/2015:00:04:52 +0100] "GET /wiki/lib/tpl/dokuwiki/images/pagetools-sprite.png?v=2 HTTP/1.1" 200 8103 "https://fym.cse.salford.ac.uk/wiki/lib/exe/css.php?t=dokuwiki&tseed=2cb5b229a761de98d43761336d42f70b" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.29.189.123 - - [23/Oct/2015:00:05:04 +0100] "POST /wiki/free HTTP/1.1" 302 688 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.29.189.123 - - [23/Oct/2015:00:05:05 +0100] "GET /wiki/free HTTP/1.1" 200 5020 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.29.189.123 - - [23/Oct/2015:00:05:05 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick_ltr.css HTTP/1.1" 200 3723 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.29.189.123 - - [23/Oct/2015:00:05:05 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jquery.1.4.2.js HTTP/1.1" 200 3863 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.29.189.123 - - [23/Oct/2015:00:05:05 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick.min.1.3.js HTTP/1.1" 200 3869 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.29.189.123 - - [23/Oct/2015:00:05:06 +0100] "GET /wiki/lib/exe/indexer.php?id=free&1445555105 HTTP/1.1" 200 389 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.29.189.123 - - [23/Oct/2015:00:05:06 +0100] "GET /wiki/_media/wiki:logo.png HTTP/1.1" 200 9315 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.29.189.123 - - [23/Oct/2015:00:05:06 +0100] "GET /wiki/free HTTP/1.1" 200 4883 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.29.189.123 - - [23/Oct/2015:00:05:06 +0100] "GET /wiki/lib/tpl/dokuwiki/images/toc-bullet.png HTTP/1.1" 200 454 "https://fym.cse.salford.ac.uk/wiki/lib/exe/css.php?t=dokuwiki&tseed=2cb5b229a761de98d43761336d42f70b" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.29.189.123 - - [23/Oct/2015:00:05:06 +0100] "GET /wiki/lib/images/external-link.png HTTP/1.1" 200 773 "https://fym.cse.salford.ac.uk/wiki/lib/exe/css.php?t=dokuwiki&tseed=2cb5b229a761de98d43761336d42f70b" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.29.189.123 - - [23/Oct/2015:00:05:06 +0100] "GET /wiki/lib/tpl/dokuwiki/images/toc-arrows.png HTTP/1.1" 200 566 "https://fym.cse.salford.ac.uk/wiki/lib/exe/css.php?t=dokuwiki&tseed=2cb5b229a761de98d43761336d42f70b" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
74.82.47.4 - - [23/Oct/2015:03:52:24 +0100] "GET / HTTP/1.1" 302 5780 "-" "-"

View File

@@ -0,0 +1,497 @@
10.99.180.134 - - [20/Oct/2015:08:52:00 +0100] "GET /cs/stafftimetables.html HTTP/1.1" 200 6277 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.4 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.4"
10.99.180.134 - - [20/Oct/2015:08:52:02 +0100] "GET /fym.css HTTP/1.1" 200 1589 "https://firstyearmatters.info/cs/stafftimetables.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.4 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.4"
10.99.180.134 - - [20/Oct/2015:08:52:03 +0100] "GET /switcher.js HTTP/1.1" 200 1134 "https://firstyearmatters.info/cs/stafftimetables.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.4 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.4"
10.99.180.134 - - [20/Oct/2015:08:52:03 +0100] "GET /uos.jpg HTTP/1.1" 200 6127 "https://firstyearmatters.info/cs/stafftimetables.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.4 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.4"
146.87.185.25 - - [20/Oct/2015:09:00:46 +0100] "GET /portal/login HTTP/1.1" 200 5234 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.185.25 - - [20/Oct/2015:09:00:49 +0100] "GET /portal/js/42be59c.js HTTP/1.1" 200 41370 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.185.25 - - [20/Oct/2015:09:00:49 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 4769 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.185.25 - - [20/Oct/2015:09:00:50 +0100] "GET /favicon.ico HTTP/1.1" 200 3984 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.185.25 - - [20/Oct/2015:09:01:10 +0100] "POST /portal/login_check HTTP/1.1" 302 1016 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.185.25 - - [20/Oct/2015:09:01:11 +0100] "GET /portal/login HTTP/1.1" 200 1980 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.185.25 - - [20/Oct/2015:09:01:11 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.185.25 - - [20/Oct/2015:09:01:21 +0100] "POST /portal/login_check HTTP/1.1" 302 1107 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.185.25 - - [20/Oct/2015:09:01:21 +0100] "GET /portal/ HTTP/1.1" 302 753 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.185.25 - - [20/Oct/2015:09:01:21 +0100] "GET /portal/dashboard HTTP/1.1" 200 1540 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.185.25 - - [20/Oct/2015:09:01:21 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
184.105.247.195 - - [20/Oct/2015:09:13:00 +0100] "GET / HTTP/1.1" 302 5780 "-" "-"
146.87.136.146 - - [20/Oct/2015:10:41:08 +0100] "GET /portal/login HTTP/1.1" 200 5072 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/5.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET CLR 1.1.4322; .NET4.0C; .NET4.0E; InfoPath.3)"
146.87.136.146 - - [20/Oct/2015:10:41:08 +0100] "GET /portal/login HTTP/1.1" 200 5072 "-" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)"
146.87.136.146 - - [20/Oct/2015:10:41:08 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 911 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)"
146.87.136.146 - - [20/Oct/2015:10:41:08 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1093 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)"
146.87.136.146 - - [20/Oct/2015:10:41:08 +0100] "GET /portal/js/42be59c.js HTTP/1.1" 200 41422 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)"
146.87.136.146 - - [20/Oct/2015:10:41:08 +0100] "GET /favicon.ico HTTP/1.1" 200 3994 "-" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)"
146.87.136.146 - - [20/Oct/2015:10:41:18 +0100] "POST /portal/login_check HTTP/1.1" 302 1045 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)"
146.87.136.146 - - [20/Oct/2015:10:41:18 +0100] "GET /portal/login HTTP/1.1" 200 2009 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)"
146.87.136.146 - - [20/Oct/2015:10:41:18 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1093 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)"
146.87.136.146 - - [20/Oct/2015:10:41:30 +0100] "POST /portal/login_check HTTP/1.1" 302 1045 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)"
146.87.136.146 - - [20/Oct/2015:10:41:30 +0100] "GET /portal/login HTTP/1.1" 200 2009 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)"
146.87.136.146 - - [20/Oct/2015:10:41:30 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1093 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)"
146.87.136.146 - - [20/Oct/2015:10:41:38 +0100] "POST /portal/login_check HTTP/1.1" 302 1125 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)"
146.87.136.146 - - [20/Oct/2015:10:41:39 +0100] "GET /portal/ HTTP/1.1" 302 772 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)"
146.87.136.146 - - [20/Oct/2015:10:41:39 +0100] "GET /portal/dashboard HTTP/1.1" 200 1417 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)"
146.87.136.146 - - [20/Oct/2015:10:41:39 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 948 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)"
146.87.136.146 - - [20/Oct/2015:10:42:23 +0100] "GET /portal/linux/passwd/133 HTTP/1.1" 200 1626 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)"
146.87.136.146 - - [20/Oct/2015:10:42:23 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 948 "https://firstyearmatters.info/portal/linux/passwd/133" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)"
146.87.136.146 - - [20/Oct/2015:10:42:36 +0100] "POST /portal/linux/passwd/133 HTTP/1.1" 200 1584 "https://firstyearmatters.info/portal/linux/passwd/133" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)"
146.87.136.146 - - [20/Oct/2015:10:42:53 +0100] "POST /portal/linux/passwd/133 HTTP/1.1" 200 1584 "https://firstyearmatters.info/portal/linux/passwd/133" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)"
146.87.136.146 - - [20/Oct/2015:10:43:01 +0100] "POST /portal/linux/passwd/133 HTTP/1.1" 200 1584 "https://firstyearmatters.info/portal/linux/passwd/133" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)"
146.87.136.146 - - [20/Oct/2015:10:42:56 +0100] "POST /portal/linux/passwd/133 HTTP/1.1" 200 1584 "https://firstyearmatters.info/portal/linux/passwd/133" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)"
146.87.136.146 - - [20/Oct/2015:10:43:09 +0100] "POST /portal/linux/passwd/133 HTTP/1.1" 200 1584 "https://firstyearmatters.info/portal/linux/passwd/133" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)"
146.87.136.146 - - [20/Oct/2015:10:43:10 +0100] "POST /portal/linux/passwd/133 HTTP/1.1" 200 1584 "https://firstyearmatters.info/portal/linux/passwd/133" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)"
146.87.136.146 - - [20/Oct/2015:10:43:10 +0100] "POST /portal/linux/passwd/133 HTTP/1.1" 200 1584 "https://firstyearmatters.info/portal/linux/passwd/133" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)"
146.87.136.146 - - [20/Oct/2015:10:43:10 +0100] "POST /portal/linux/passwd/133 HTTP/1.1" 200 1674 "https://firstyearmatters.info/portal/linux/passwd/133" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)"
146.87.136.146 - - [20/Oct/2015:10:43:13 +0100] "POST /portal/linux/passwd/133 HTTP/1.1" 200 1674 "https://firstyearmatters.info/portal/linux/passwd/133" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)"
146.87.136.146 - - [20/Oct/2015:10:43:11 +0100] "POST /portal/linux/passwd/133 HTTP/1.1" 200 1674 "https://firstyearmatters.info/portal/linux/passwd/133" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)"
146.87.136.146 - - [20/Oct/2015:10:43:09 +0100] "POST /portal/linux/passwd/133 HTTP/1.1" 200 1674 "https://firstyearmatters.info/portal/linux/passwd/133" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)"
146.87.136.146 - - [20/Oct/2015:10:43:38 +0100] "POST /portal/linux/passwd/133 HTTP/1.1" 200 1674 "https://firstyearmatters.info/portal/linux/passwd/133" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)"
146.87.136.146 - - [20/Oct/2015:10:43:13 +0100] "POST /portal/linux/passwd/133 HTTP/1.1" 200 1674 "https://firstyearmatters.info/portal/linux/passwd/133" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)"
146.87.136.146 - - [20/Oct/2015:10:43:14 +0100] "POST /portal/linux/passwd/133 HTTP/1.1" 200 1674 "https://firstyearmatters.info/portal/linux/passwd/133" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)"
146.87.136.146 - - [20/Oct/2015:10:43:15 +0100] "POST /portal/linux/passwd/133 HTTP/1.1" 200 1674 "https://firstyearmatters.info/portal/linux/passwd/133" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)"
146.87.136.146 - - [20/Oct/2015:10:43:15 +0100] "POST /portal/linux/passwd/133 HTTP/1.1" 200 1674 "https://firstyearmatters.info/portal/linux/passwd/133" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)"
146.87.136.146 - - [20/Oct/2015:10:43:08 +0100] "POST /portal/linux/passwd/133 HTTP/1.1" 200 1674 "https://firstyearmatters.info/portal/linux/passwd/133" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)"
146.87.136.146 - - [20/Oct/2015:10:43:37 +0100] "POST /portal/linux/passwd/133 HTTP/1.1" 200 1674 "https://firstyearmatters.info/portal/linux/passwd/133" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)"
146.87.136.146 - - [20/Oct/2015:10:43:12 +0100] "POST /portal/linux/passwd/133 HTTP/1.1" 200 1674 "https://firstyearmatters.info/portal/linux/passwd/133" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)"
146.87.136.146 - - [20/Oct/2015:10:43:11 +0100] "POST /portal/linux/passwd/133 HTTP/1.1" 200 1674 "https://firstyearmatters.info/portal/linux/passwd/133" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)"
146.87.136.146 - - [20/Oct/2015:10:43:11 +0100] "POST /portal/linux/passwd/133 HTTP/1.1" 200 1674 "https://firstyearmatters.info/portal/linux/passwd/133" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)"
146.87.136.146 - - [20/Oct/2015:10:43:16 +0100] "POST /portal/linux/passwd/133 HTTP/1.1" 200 1674 "https://firstyearmatters.info/portal/linux/passwd/133" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)"
146.87.136.146 - - [20/Oct/2015:10:43:13 +0100] "POST /portal/linux/passwd/133 HTTP/1.1" 200 1674 "https://firstyearmatters.info/portal/linux/passwd/133" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)"
146.87.136.146 - - [20/Oct/2015:10:43:08 +0100] "POST /portal/linux/passwd/133 HTTP/1.1" 200 1674 "https://firstyearmatters.info/portal/linux/passwd/133" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)"
146.87.136.146 - - [20/Oct/2015:10:43:15 +0100] "POST /portal/linux/passwd/133 HTTP/1.1" 200 1674 "https://firstyearmatters.info/portal/linux/passwd/133" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)"
146.87.136.146 - - [20/Oct/2015:10:43:12 +0100] "POST /portal/linux/passwd/133 HTTP/1.1" 200 1674 "https://firstyearmatters.info/portal/linux/passwd/133" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)"
146.87.16.25 - - [20/Oct/2015:11:43:57 +0100] "GET /portal HTTP/1.1" 301 4509 "https://uos-portal.salford.ac.uk/owa/redir.aspx?C=aUMPl_oaLEC3iFonbaess5VOPxT53dIIKIo74QgHZXp0Q1JBIQynYN9sO7XnEk3wPeRi4J7dYXA.&URL=https%3a%2f%2ffirstyearmatters.info%2fportal" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.25 - - [20/Oct/2015:11:43:57 +0100] "GET /portal/ HTTP/1.1" 302 936 "https://uos-portal.salford.ac.uk/owa/redir.aspx?C=aUMPl_oaLEC3iFonbaess5VOPxT53dIIKIo74QgHZXp0Q1JBIQynYN9sO7XnEk3wPeRi4J7dYXA.&URL=https%3a%2f%2ffirstyearmatters.info%2fportal" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.25 - - [20/Oct/2015:11:43:58 +0100] "GET /portal/login HTTP/1.1" 200 1470 "https://uos-portal.salford.ac.uk/owa/redir.aspx?C=aUMPl_oaLEC3iFonbaess5VOPxT53dIIKIo74QgHZXp0Q1JBIQynYN9sO7XnEk3wPeRi4J7dYXA.&URL=https%3a%2f%2ffirstyearmatters.info%2fportal" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.25 - - [20/Oct/2015:11:43:58 +0100] "GET /portal/js/42be59c.js HTTP/1.1" 200 41370 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.25 - - [20/Oct/2015:11:43:58 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.25 - - [20/Oct/2015:11:43:58 +0100] "GET /favicon.ico HTTP/1.1" 200 3984 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.175 - - [20/Oct/2015:11:44:45 +0100] "GET /portal/login HTTP/1.1" 200 5250 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.175 - - [20/Oct/2015:11:44:45 +0100] "GET /portal/js/42be59c.js HTTP/1.1" 200 41370 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.175 - - [20/Oct/2015:11:44:45 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.175 - - [20/Oct/2015:11:44:45 +0100] "GET /favicon.ico HTTP/1.1" 200 3984 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.175 - - [20/Oct/2015:11:45:03 +0100] "POST /portal/login_check HTTP/1.1" 302 1127 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.175 - - [20/Oct/2015:11:45:04 +0100] "GET /portal/ HTTP/1.1" 302 891 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.175 - - [20/Oct/2015:11:45:04 +0100] "GET /portal/dashboard HTTP/1.1" 200 1381 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.175 - - [20/Oct/2015:11:45:04 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.175 - - [20/Oct/2015:11:45:12 +0100] "GET /portal/linux/register HTTP/1.1" 200 1628 "https://www.firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.175 - - [20/Oct/2015:11:45:12 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.175 - - [20/Oct/2015:11:45:31 +0100] "POST /portal/linux/register HTTP/1.1" 200 1671 "https://www.firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.175 - - [20/Oct/2015:11:45:32 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.175 - - [20/Oct/2015:11:45:52 +0100] "POST /portal/linux/register HTTP/1.1" 302 891 "https://www.firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.175 - - [20/Oct/2015:11:46:32 +0100] "GET /portal/dashboard HTTP/1.1" 200 1535 "https://www.firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.175 - - [20/Oct/2015:11:46:33 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.124 - - [20/Oct/2015:11:46:37 +0100] "GET /portal/login HTTP/1.1" 200 5252 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.124 - - [20/Oct/2015:11:46:37 +0100] "GET /portal/js/42be59c.js HTTP/1.1" 200 41370 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.124 - - [20/Oct/2015:11:46:37 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.124 - - [20/Oct/2015:11:46:37 +0100] "GET /favicon.ico HTTP/1.1" 200 3984 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.175 - - [20/Oct/2015:11:46:44 +0100] "GET /portal/dashboard HTTP/1.1" 200 1535 "https://www.firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.175 - - [20/Oct/2015:11:46:44 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.124 - - [20/Oct/2015:11:46:47 +0100] "POST /portal/login_check HTTP/1.1" 302 1127 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.124 - - [20/Oct/2015:11:46:48 +0100] "GET /portal/ HTTP/1.1" 302 891 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.124 - - [20/Oct/2015:11:46:48 +0100] "GET /portal/dashboard HTTP/1.1" 200 1534 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.124 - - [20/Oct/2015:11:46:48 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.124 - - [20/Oct/2015:11:48:51 +0100] "GET /portal/dashboard HTTP/1.1" 200 1534 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.124 - - [20/Oct/2015:11:48:51 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.124 - - [20/Oct/2015:11:48:51 +0100] "GET /portal/login HTTP/1.1" 200 1406 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.124 - - [20/Oct/2015:11:48:51 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.124 - - [20/Oct/2015:11:49:00 +0100] "POST /portal/login_check HTTP/1.1" 302 1127 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.124 - - [20/Oct/2015:11:49:00 +0100] "GET /portal/ HTTP/1.1" 302 891 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.124 - - [20/Oct/2015:11:49:00 +0100] "GET /portal/dashboard HTTP/1.1" 200 1534 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.124 - - [20/Oct/2015:11:49:01 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.124 - - [20/Oct/2015:11:49:05 +0100] "GET /portal/linux/passwd/315 HTTP/1.1" 200 1438 "https://www.firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.124 - - [20/Oct/2015:11:49:06 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/linux/passwd/315" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.124 - - [20/Oct/2015:11:49:15 +0100] "POST /portal/linux/passwd/315 HTTP/1.1" 200 1618 "https://www.firstyearmatters.info/portal/linux/passwd/315" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.124 - - [20/Oct/2015:11:49:15 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/linux/passwd/315" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.124 - - [20/Oct/2015:11:50:43 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1062 "https://www.firstyearmatters.info/portal/linux/passwd/315" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.124 - - [20/Oct/2015:11:50:31 +0100] "POST /portal/linux/passwd/315 HTTP/1.1" 200 1627 "https://www.firstyearmatters.info/portal/linux/passwd/315" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.124 - - [20/Oct/2015:11:50:49 +0100] "GET /portal/dashboard HTTP/1.1" 200 1396 "https://www.firstyearmatters.info/portal/linux/passwd/315" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.124 - - [20/Oct/2015:11:50:49 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.136.146 - - [20/Oct/2015:12:08:34 +0100] "GET /portal/login HTTP/1.1" 200 5236 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:08:34 +0100] "GET /portal/js/42be59c.js HTTP/1.1" 200 45077 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:08:34 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:08:34 +0100] "GET /favicon.ico HTTP/1.1" 200 3984 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:08:39 +0100] "GET /portal/dashboard HTTP/1.1" 302 878 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:08:39 +0100] "GET /portal/login HTTP/1.1" 200 1333 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:08:39 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:08:40 +0100] "GET /portal/dashboard HTTP/1.1" 302 878 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:08:40 +0100] "GET /portal/login HTTP/1.1" 200 1333 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:08:40 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:08:41 +0100] "GET /portal/dashboard HTTP/1.1" 302 1016 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:08:41 +0100] "GET /portal/login HTTP/1.1" 200 1333 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:08:41 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1062 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:08:57 +0100] "POST /portal/login_check HTTP/1.1" 302 1016 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:08:57 +0100] "GET /portal/login HTTP/1.1" 200 1987 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:08:57 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1062 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:09:26 +0100] "GET /portal/dashboard HTTP/1.1" 302 1016 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:09:26 +0100] "GET /portal/login HTTP/1.1" 200 1341 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:09:26 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:09:27 +0100] "GET /portal/dashboard HTTP/1.1" 302 1016 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:09:27 +0100] "GET /portal/login HTTP/1.1" 200 1341 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:09:27 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1062 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:09:28 +0100] "GET /portal/dashboard HTTP/1.1" 302 878 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:09:28 +0100] "GET /portal/login HTTP/1.1" 200 1341 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:09:28 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1062 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:09:30 +0100] "GET /portal/dashboard HTTP/1.1" 302 878 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:09:30 +0100] "GET /portal/login HTTP/1.1" 200 1341 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:09:30 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1062 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:09:31 +0100] "GET /portal/dashboard HTTP/1.1" 302 878 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:09:31 +0100] "GET /portal/login HTTP/1.1" 200 1341 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:09:31 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1062 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:09:31 +0100] "GET /portal/dashboard HTTP/1.1" 302 878 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:09:31 +0100] "GET /portal/login HTTP/1.1" 200 1341 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:09:31 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1062 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:09:32 +0100] "GET /portal/dashboard HTTP/1.1" 302 878 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:09:32 +0100] "GET /portal/login HTTP/1.1" 200 1341 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:09:32 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1062 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:09:32 +0100] "GET /portal/dashboard HTTP/1.1" 302 878 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:09:32 +0100] "GET /portal/login HTTP/1.1" 200 1341 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:09:32 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:09:39 +0100] "GET /portal/login/signup HTTP/1.1" 404 1062 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:09:44 +0100] "GET /portal/dashboard HTTP/1.1" 302 878 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:09:44 +0100] "GET /portal/login HTTP/1.1" 200 1479 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:09:44 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:09:44 +0100] "GET /portal/dashboard HTTP/1.1" 302 878 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:09:44 +0100] "GET /portal/login HTTP/1.1" 200 1479 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:09:44 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:09:50 +0100] "GET /portal/dashboard HTTP/1.1" 302 1016 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:09:50 +0100] "GET /portal/login HTTP/1.1" 200 1479 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:09:50 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:09:52 +0100] "GET / HTTP/1.1" 302 618 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:09:52 +0100] "GET /cs HTTP/1.1" 301 656 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:09:52 +0100] "GET /cs/ HTTP/1.1" 200 3161 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:09:53 +0100] "GET /default.css HTTP/1.1" 200 1576 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:09:53 +0100] "GET /switcher.js HTTP/1.1" 200 1272 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:09:53 +0100] "GET /fym.css HTTP/1.1" 200 1727 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:09:53 +0100] "GET /highcontrast.css HTTP/1.1" 200 1537 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:09:53 +0100] "GET /largetext.css HTTP/1.1" 200 1485 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:09:53 +0100] "GET /print.css HTTP/1.1" 200 1058 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:09:53 +0100] "GET /ie6.css HTTP/1.1" 200 1730 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:09:53 +0100] "GET /uos.jpg HTTP/1.1" 200 6265 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:09:53 +0100] "GET /fuof.jpg HTTP/1.1" 200 9910 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:43:31 +0100] "GET /portal/signup HTTP/1.1" 404 4769 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:43:34 +0100] "GET /portal/login HTTP/1.1" 200 1341 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:43:34 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 4769 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:43:42 +0100] "POST /portal/login_check HTTP/1.1" 302 4814 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:43:42 +0100] "GET /portal/ HTTP/1.1" 302 4598 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:43:42 +0100] "GET /portal/dashboard HTTP/1.1" 200 1244 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:43:42 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:43:45 +0100] "GET /portal/linux/register HTTP/1.1" 200 1490 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:43:45 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 4769 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:44:06 +0100] "POST /portal/linux/register HTTP/1.1" 200 1672 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:44:06 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:44:22 +0100] "POST /portal/linux/register HTTP/1.1" 302 891 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:44:57 +0100] "GET /portal/dashboard HTTP/1.1" 200 1536 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:44:58 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:45:33 +0100] "GET /portal/dashboard HTTP/1.1" 200 1536 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:12:45:33 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:14:53:03 +0100] "GET /portal/login HTTP/1.1" 200 5236 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:14:53:03 +0100] "GET /portal/js/42be59c.js HTTP/1.1" 200 41232 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:14:53:03 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1062 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:14:53:04 +0100] "GET /favicon.ico HTTP/1.1" 200 3984 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:14:53:15 +0100] "POST /portal/login_check HTTP/1.1" 302 1107 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:14:53:15 +0100] "GET /portal/ HTTP/1.1" 302 753 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:14:53:15 +0100] "GET /portal/dashboard HTTP/1.1" 200 1402 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [20/Oct/2015:14:53:15 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
208.80.155.255 - - [20/Oct/2015:15:33:20 +0100] "GET /cgi-bin/discography.cgi?deleted HTTP/1.1" 200 11989 "-" "German Wikipedia Broken Weblinks Bot; contact: gifti@tools.wmflabs.org"
213.152.161.85 - - [20/Oct/2015:15:56:42 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 5154 "http://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
213.152.161.85 - - [20/Oct/2015:15:57:35 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1478 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
213.152.161.85 - - [20/Oct/2015:15:58:13 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1478 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
213.152.161.85 - - [20/Oct/2015:15:58:18 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1438 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
213.152.161.85 - - [20/Oct/2015:15:58:40 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1475 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
213.152.161.85 - - [20/Oct/2015:15:59:08 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1479 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [20/Oct/2015:16:46:12 +0100] "GET /cgi-bin/forum/YaBB.pl?num=1289915317/8 HTTP/1.1" 200 15565 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?num=1289915317/8" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
82.17.203.75 - - [20/Oct/2015:18:29:18 +0100] "GET /yabbfiles/Templates/Forum/default.css HTTP/1.1" 200 6363 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
82.17.203.75 - - [20/Oct/2015:18:29:18 +0100] "GET /yabbfiles/Templates/Forum/default/fymlogo.gif HTTP/1.1" 200 3255 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
82.17.203.75 - - [20/Oct/2015:18:29:18 +0100] "GET /yabbfiles/Templates/Forum/default/tabsep211.png HTTP/1.1" 200 424 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
82.17.203.75 - - [20/Oct/2015:18:29:18 +0100] "GET /yabbfiles/Templates/Forum/default/tabfill.gif HTTP/1.1" 200 2098 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
82.17.203.75 - - [20/Oct/2015:18:29:18 +0100] "GET /yabbfiles/Templates/Forum/default/rss.png HTTP/1.1" 200 1987 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
82.17.203.75 - - [20/Oct/2015:18:29:18 +0100] "GET /yabbfiles/Templates/Forum/default/search.gif HTTP/1.1" 200 855 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
82.17.203.75 - - [20/Oct/2015:18:29:18 +0100] "GET /yabbfiles/Templates/Forum/default/boards.gif HTTP/1.1" 200 2583 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
82.17.203.75 - - [20/Oct/2015:18:29:18 +0100] "GET /yabbfiles/Templates/Forum/default/catbg.png HTTP/1.1" 200 605 "https://www.firstyearmatters.info/yabbfiles/Templates/Forum/default.css" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
82.17.203.75 - - [20/Oct/2015:18:29:18 +0100] "GET /yabbfiles/Templates/Forum/default/cat_collapse.gif HTTP/1.1" 200 443 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
82.17.203.75 - - [20/Oct/2015:18:29:18 +0100] "GET /yabbfiles/Templates/Forum/default/menutop.png HTTP/1.1" 200 604 "https://www.firstyearmatters.info/yabbfiles/Templates/Forum/default.css" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
82.17.203.75 - - [20/Oct/2015:18:29:18 +0100] "GET /yabbfiles/Templates/Forum/default/tab211.png HTTP/1.1" 200 465 "https://www.firstyearmatters.info/yabbfiles/Templates/Forum/default.css" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
82.17.203.75 - - [20/Oct/2015:18:29:18 +0100] "GET /yabbfiles/Templates/Forum/default/grad_bottom.png HTTP/1.1" 200 448 "https://www.firstyearmatters.info/yabbfiles/Templates/Forum/default.css" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
82.17.203.75 - - [20/Oct/2015:18:29:18 +0100] "GET /yabbfiles/Templates/Forum/default/searchbg211.png HTTP/1.1" 200 481 "https://www.firstyearmatters.info/yabbfiles/Templates/Forum/default.css" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
82.17.203.75 - - [20/Oct/2015:18:29:18 +0100] "GET /yabbfiles/Templates/Forum/default/tab_selected211.png HTTP/1.1" 200 476 "https://www.firstyearmatters.info/yabbfiles/Templates/Forum/default.css" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
82.17.203.75 - - [20/Oct/2015:18:29:18 +0100] "GET /yabbfiles/Templates/Forum/default/tabright211.png HTTP/1.1" 200 1290 "https://www.firstyearmatters.info/yabbfiles/Templates/Forum/default.css" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
82.17.203.75 - - [20/Oct/2015:18:29:18 +0100] "GET /yabbfiles/Templates/Forum/default/tableft211.png HTTP/1.1" 200 961 "https://www.firstyearmatters.info/yabbfiles/Templates/Forum/default.css" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
82.17.203.75 - - [20/Oct/2015:18:29:18 +0100] "GET /yabbfiles/Templates/Forum/default/lastpost.gif HTTP/1.1" 200 655 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
82.17.203.75 - - [20/Oct/2015:18:29:18 +0100] "GET /yabbfiles/Buttons/English/markallread.png HTTP/1.1" 200 979 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
82.17.203.75 - - [20/Oct/2015:18:29:18 +0100] "GET /yabbfiles/Templates/Forum/default/online.gif HTTP/1.1" 200 2877 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
82.17.203.75 - - [20/Oct/2015:18:29:18 +0100] "GET /yabbfiles/Templates/Forum/default/info.gif HTTP/1.1" 200 2657 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
82.17.203.75 - - [20/Oct/2015:18:29:18 +0100] "GET /yabbfiles/Buttons/English/collapse.png HTTP/1.1" 200 907 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
82.17.203.75 - - [20/Oct/2015:18:29:18 +0100] "GET /yabbfiles/Templates/Forum/default/on.gif HTTP/1.1" 200 3265 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
82.17.203.75 - - [20/Oct/2015:18:29:18 +0100] "GET /yabbfiles/Templates/Forum/default/off.gif HTTP/1.1" 200 1419 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
82.17.203.75 - - [20/Oct/2015:18:29:18 +0100] "GET /yabbfiles/Templates/Forum/default/xhtml.gif HTTP/1.1" 200 562 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
82.17.203.75 - - [20/Oct/2015:18:29:18 +0100] "GET /yabbfiles/Templates/Forum/default/valid-rss.png HTTP/1.1" 200 1866 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
82.17.203.75 - - [20/Oct/2015:18:29:18 +0100] "GET /yabbfiles/Templates/Forum/default/perl.gif HTTP/1.1" 200 1454 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
82.17.203.75 - - [20/Oct/2015:18:29:18 +0100] "GET /yabbfiles/Templates/Forum/default/sf.gif HTTP/1.1" 200 740 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
82.17.203.75 - - [20/Oct/2015:18:29:18 +0100] "GET /yabbfiles/Templates/Forum/default/css.gif HTTP/1.1" 200 544 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.246.48.168 - - [20/Oct/2015:20:45:27 +0100] "GET /wiki/free HTTP/1.1" 200 9229 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:45:28 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick_ltr.css HTTP/1.1" 200 4112 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:45:28 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick.min.1.3.js HTTP/1.1" 200 4125 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:45:28 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jquery.1.4.2.js HTTP/1.1" 200 4116 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:45:28 +0100] "GET /wiki/lib/exe/css.php?t=dokuwiki&tseed=2cb5b229a761de98d43761336d42f70b HTTP/1.1" 200 27528 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:45:28 +0100] "GET /wiki/lib/tpl/dokuwiki/images/page-gradient.png HTTP/1.1" 200 550 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:45:28 +0100] "GET /wiki/lib/exe/js.php?t=dokuwiki&tseed=2cb5b229a761de98d43761336d42f70b HTTP/1.1" 200 142933 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:45:30 +0100] "GET /wiki/lib/tpl/dokuwiki/images/button-php.gif HTTP/1.1" 200 548 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:45:30 +0100] "GET /wiki/lib/tpl/dokuwiki/images/button-donate.gif HTTP/1.1" 200 528 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:45:30 +0100] "GET /wiki/lib/tpl/dokuwiki/images/button-css.png HTTP/1.1" 200 639 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:45:30 +0100] "GET /wiki/lib/tpl/dokuwiki/images/button-html5.png HTTP/1.1" 200 647 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:45:30 +0100] "GET /wiki/lib/tpl/dokuwiki/images/button-dw.png HTTP/1.1" 200 878 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:45:30 +0100] "GET /wiki/lib/tpl/dokuwiki/images/usertools.png HTTP/1.1" 200 1771 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:45:30 +0100] "GET /wiki/lib/tpl/dokuwiki/images/pagetools-sprite.png?v=2 HTTP/1.1" 200 8103 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:45:30 +0100] "GET /wiki/_media/wiki:logo.png HTTP/1.1" 403 535 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:45:30 +0100] "GET /wiki/lib/exe/indexer.php?id=free&1445370328 HTTP/1.1" 200 526 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:45:30 +0100] "GET /wiki/lib/tpl/dokuwiki/images/search.png HTTP/1.1" 200 787 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:45:30 +0100] "GET /wiki/lib/tpl/dokuwiki/images/favicon.ico HTTP/1.1" 200 7891 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:45:34 +0100] "POST /wiki/free HTTP/1.1" 302 550 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:45:34 +0100] "GET /wiki/free HTTP/1.1" 200 4881 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:45:34 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick_ltr.css HTTP/1.1" 200 3721 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:45:34 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jquery.1.4.2.js HTTP/1.1" 200 3725 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:45:34 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick.min.1.3.js HTTP/1.1" 200 3731 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:45:34 +0100] "GET /wiki/lib/tpl/dokuwiki/images/toc-bullet.png HTTP/1.1" 200 454 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:45:34 +0100] "GET /wiki/lib/tpl/dokuwiki/images/toc-arrows.png HTTP/1.1" 200 566 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:45:34 +0100] "GET /wiki/_media/wiki:logo.png HTTP/1.1" 200 9315 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:45:34 +0100] "GET /wiki/lib/images/external-link.png HTTP/1.1" 200 773 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:45:34 +0100] "GET /wiki/lib/exe/indexer.php?id=free&1445370334 HTTP/1.1" 200 389 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:45:58 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jquery.1.4.2.js HTTP/1.1" 200 3863 "https://fym.cse.salford.ac.uk/wiki/free?do=media&ns=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:45:58 +0100] "GET /wiki/free?do=media&ns= HTTP/1.1" 200 4282 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:45:58 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick_ltr.css HTTP/1.1" 200 3859 "https://fym.cse.salford.ac.uk/wiki/free?do=media&ns=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:45:58 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick.min.1.3.js HTTP/1.1" 200 3869 "https://fym.cse.salford.ac.uk/wiki/free?do=media&ns=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:45:58 +0100] "GET /wiki/lib/images/minus.gif HTTP/1.1" 200 425 "https://fym.cse.salford.ac.uk/wiki/free?do=media&ns=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:45:58 +0100] "GET /wiki/lib/images/plus.gif HTTP/1.1" 200 428 "https://fym.cse.salford.ac.uk/wiki/free?do=media&ns=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:45:58 +0100] "GET /wiki/_media/wiki:logo.png HTTP/1.1" 304 281 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:45:58 +0100] "GET /wiki/lib/exe/indexer.php?id=free&1445370358 HTTP/1.1" 200 389 "https://fym.cse.salford.ac.uk/wiki/free?do=media&ns=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:45:58 +0100] "GET /wiki/lib/images/icon-list.png HTTP/1.1" 200 1064 "https://fym.cse.salford.ac.uk/wiki/free?do=media&ns=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:45:58 +0100] "GET /wiki/lib/images/media_align_left.png HTTP/1.1" 200 588 "https://fym.cse.salford.ac.uk/wiki/free?do=media&ns=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:45:58 +0100] "GET /wiki/lib/images/icon-sort.png HTTP/1.1" 200 690 "https://fym.cse.salford.ac.uk/wiki/free?do=media&ns=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:45:58 +0100] "GET /wiki/lib/images/media_align_center.png HTTP/1.1" 200 590 "https://fym.cse.salford.ac.uk/wiki/free?do=media&ns=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:45:58 +0100] "GET /wiki/lib/images/media_align_right.png HTTP/1.1" 200 591 "https://fym.cse.salford.ac.uk/wiki/free?do=media&ns=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:45:58 +0100] "GET /wiki/lib/images/media_link_nolnk.png HTTP/1.1" 200 794 "https://fym.cse.salford.ac.uk/wiki/free?do=media&ns=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:45:58 +0100] "GET /wiki/lib/scripts/jquery/jquery-ui-theme/images/ui-bg_flat_75_ffffff_40x100.png HTTP/1.1" 200 519 "https://fym.cse.salford.ac.uk/wiki/free?do=media&ns=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:45:58 +0100] "GET /wiki/lib/images/media_link_lnk.png HTTP/1.1" 200 1058 "https://fym.cse.salford.ac.uk/wiki/free?do=media&ns=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:45:58 +0100] "GET /wiki/lib/images/media_link_direct.png HTTP/1.1" 200 1056 "https://fym.cse.salford.ac.uk/wiki/free?do=media&ns=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:45:58 +0100] "GET /wiki/lib/images/media_align_noalign.png HTTP/1.1" 200 559 "https://fym.cse.salford.ac.uk/wiki/free?do=media&ns=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:45:58 +0100] "GET /wiki/lib/images/media_size_small.png HTTP/1.1" 200 547 "https://fym.cse.salford.ac.uk/wiki/free?do=media&ns=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:45:58 +0100] "GET /wiki/lib/scripts/jquery/jquery-ui-theme/images/ui-bg_glass_65_ffffff_1x400.png HTTP/1.1" 200 446 "https://fym.cse.salford.ac.uk/wiki/free?do=media&ns=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:45:58 +0100] "GET /wiki/lib/scripts/jquery/jquery-ui-theme/images/ui-bg_glass_75_e6e6e6_1x400.png HTTP/1.1" 200 492 "https://fym.cse.salford.ac.uk/wiki/free?do=media&ns=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:45:58 +0100] "GET /wiki/lib/images/resizecol.png HTTP/1.1" 200 489 "https://fym.cse.salford.ac.uk/wiki/free?do=media&ns=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:45:58 +0100] "GET /wiki/lib/images/media_size_original.png HTTP/1.1" 200 551 "https://fym.cse.salford.ac.uk/wiki/free?do=media&ns=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:45:58 +0100] "GET /wiki/lib/images/media_link_displaylnk.png HTTP/1.1" 200 784 "https://fym.cse.salford.ac.uk/wiki/free?do=media&ns=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:45:58 +0100] "GET /wiki/lib/images/media_size_medium.png HTTP/1.1" 200 567 "https://fym.cse.salford.ac.uk/wiki/free?do=media&ns=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:45:58 +0100] "GET /wiki/lib/images/media_size_large.png HTTP/1.1" 200 441 "https://fym.cse.salford.ac.uk/wiki/free?do=media&ns=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:45:59 +0100] "GET /wiki/lib/scripts/jquery/jquery-ui-theme/images/ui-bg_highlight-soft_75_cccccc_1x100.png HTTP/1.1" 200 442 "https://fym.cse.salford.ac.uk/wiki/free?do=media&ns=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:46:01 +0100] "GET /wiki/lib/images/loading.gif HTTP/1.1" 200 679 "https://fym.cse.salford.ac.uk/wiki/free?do=media&ns=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:46:01 +0100] "POST /wiki/lib/exe/ajax.php HTTP/1.1" 200 1182 "https://fym.cse.salford.ac.uk/wiki/free?do=media&ns=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:46:01 +0100] "GET /wiki/lib/images/fileicons/32x32/pdf.png HTTP/1.1" 200 1346 "https://fym.cse.salford.ac.uk/wiki/free?do=media&ns=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:46:02 +0100] "POST /wiki/lib/exe/ajax.php HTTP/1.1" 200 5812 "https://fym.cse.salford.ac.uk/wiki/free?do=media&ns=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:46:02 +0100] "GET /wiki/lib/images/fileicons/32x32/pptx.png HTTP/1.1" 200 1208 "https://fym.cse.salford.ac.uk/wiki/free?do=media&ns=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:46:02 +0100] "GET /wiki/lib/images/fileicons/32x32/csv.png HTTP/1.1" 200 1005 "https://fym.cse.salford.ac.uk/wiki/free?do=media&ns=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:46:02 +0100] "GET /wiki/lib/images/fileicons/32x32/ppt.png HTTP/1.1" 200 1192 "https://fym.cse.salford.ac.uk/wiki/free?do=media&ns=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:46:02 +0100] "GET /wiki/lib/images/fileicons/32x32/docx.png HTTP/1.1" 200 1312 "https://fym.cse.salford.ac.uk/wiki/free?do=media&ns=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:46:02 +0100] "GET /wiki/lib/images/fileicons/32x32/xlsx.png HTTP/1.1" 200 1474 "https://fym.cse.salford.ac.uk/wiki/free?do=media&ns=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:46:02 +0100] "GET /wiki/lib/images/fileicons/32x32/doc.png HTTP/1.1" 200 1298 "https://fym.cse.salford.ac.uk/wiki/free?do=media&ns=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:46:02 +0100] "GET /wiki/_media/bigdata:bigdata-desktop.png?w=90&h=71&t=1403530604&tok=8f59c7 HTTP/1.1" 200 8897 "https://fym.cse.salford.ac.uk/wiki/free?do=media&ns=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:46:02 +0100] "GET /wiki/_media/bigdata:kaz_bar.jpg?w=90&h=59&t=1403271144&tok=7f662d HTTP/1.1" 200 2449 "https://fym.cse.salford.ac.uk/wiki/free?do=media&ns=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:46:21 +0100] "POST /wiki/lib/exe/ajax.php HTTP/1.1" 200 1592 "https://fym.cse.salford.ac.uk/wiki/free?do=media&ns=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:46:21 +0100] "GET /wiki/_media/linux:screen_shot_2013-07-03_at_09.48.24.png?w=38&h=36&t=1372841349&tok=330961 HTTP/1.1" 200 8353 "https://fym.cse.salford.ac.uk/wiki/free?do=media&ns=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:46:21 +0100] "GET /wiki/_media/linux:screen_shot_2013-07-03_at_09.30.55.png?w=87&h=90&t=1372841495&tok=85e91e HTTP/1.1" 200 10403 "https://fym.cse.salford.ac.uk/wiki/free?do=media&ns=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:46:21 +0100] "GET /wiki/_media/linux:screen_shot_2013-07-03_at_09.54.10.png?w=90&h=51&t=1372841689&tok=a673c6 HTTP/1.1" 200 11602 "https://fym.cse.salford.ac.uk/wiki/free?do=media&ns=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:46:21 +0100] "GET /wiki/_media/linux:screen_shot_2013-08-27_at_11.15.53.png?w=90&h=3&t=1377598618&tok=6ba000 HTTP/1.1" 200 7720 "https://fym.cse.salford.ac.uk/wiki/free?do=media&ns=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:46:25 +0100] "POST /wiki/lib/exe/ajax.php HTTP/1.1" 200 1317 "https://fym.cse.salford.ac.uk/wiki/free?do=media&ns=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:46:25 +0100] "GET /wiki/_media/wiki:logo.png?w=90&h=67&t=1403255438&tok=2d51d8 HTTP/1.1" 200 4140 "https://fym.cse.salford.ac.uk/wiki/free?do=media&ns=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:46:25 +0100] "GET /wiki/_media/wiki:uos150.png?w=90&h=67&t=1403255149&tok=25c068 HTTP/1.1" 200 4142 "https://fym.cse.salford.ac.uk/wiki/free?do=media&ns=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:46:25 +0100] "GET /wiki/_media/wiki:dokuwiki-128.png?w=90&h=90&t=1441893163&tok=b8dbf1 HTTP/1.1" 200 17873 "https://fym.cse.salford.ac.uk/wiki/free?do=media&ns=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:46:26 +0100] "POST /wiki/lib/exe/ajax.php HTTP/1.1" 200 368 "https://fym.cse.salford.ac.uk/wiki/free?do=media&ns=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:46:26 +0100] "POST /wiki/lib/exe/ajax.php HTTP/1.1" 200 368 "https://fym.cse.salford.ac.uk/wiki/free?do=media&ns=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:46:28 +0100] "POST /wiki/lib/exe/ajax.php HTTP/1.1" 200 368 "https://fym.cse.salford.ac.uk/wiki/free?do=media&ns=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:46:30 +0100] "POST /wiki/lib/exe/ajax.php HTTP/1.1" 200 368 "https://fym.cse.salford.ac.uk/wiki/free?do=media&ns=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:46:31 +0100] "POST /wiki/lib/exe/ajax.php HTTP/1.1" 200 986 "https://fym.cse.salford.ac.uk/wiki/free?do=media&ns=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:46:34 +0100] "GET /wiki/free?do=media&ns= HTTP/1.1" 200 4144 "https://fym.cse.salford.ac.uk/wiki/free?do=media&ns=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:46:34 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick_ltr.css HTTP/1.1" 200 3720 "https://fym.cse.salford.ac.uk/wiki/free?do=media&ns=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:46:34 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jquery.1.4.2.js HTTP/1.1" 200 3862 "https://fym.cse.salford.ac.uk/wiki/free?do=media&ns=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:46:34 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick.min.1.3.js HTTP/1.1" 200 3868 "https://fym.cse.salford.ac.uk/wiki/free?do=media&ns=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:46:34 +0100] "GET /wiki/_media/wiki:logo.png HTTP/1.1" 304 281 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:46:34 +0100] "GET /wiki/lib/exe/indexer.php?id=free&1445370394 HTTP/1.1" 200 389 "https://fym.cse.salford.ac.uk/wiki/free?do=media&ns=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:46:35 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick.min.1.3.js HTTP/1.1" 200 3869 "https://fym.cse.salford.ac.uk/wiki/free?do=index" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:46:35 +0100] "GET /wiki/free?do=index HTTP/1.1" 200 3905 "https://fym.cse.salford.ac.uk/wiki/free?do=media&ns=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:46:35 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jquery.1.4.2.js HTTP/1.1" 200 3862 "https://fym.cse.salford.ac.uk/wiki/free?do=index" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:46:35 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick_ltr.css HTTP/1.1" 200 3859 "https://fym.cse.salford.ac.uk/wiki/free?do=index" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:46:35 +0100] "GET /wiki/_media/wiki:logo.png HTTP/1.1" 304 281 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:46:35 +0100] "GET /wiki/lib/images/closed.png HTTP/1.1" 200 451 "https://fym.cse.salford.ac.uk/wiki/free?do=index" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:46:35 +0100] "GET /wiki/lib/exe/indexer.php?id=free&1445370395 HTTP/1.1" 200 389 "https://fym.cse.salford.ac.uk/wiki/free?do=index" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:46:35 +0100] "GET /wiki/lib/images/interwiki/doku.gif HTTP/1.1" 200 529 "https://fym.cse.salford.ac.uk/wiki/free?do=index" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:46:35 +0100] "GET /wiki/lib/images/bullet.png HTTP/1.1" 200 580 "https://fym.cse.salford.ac.uk/wiki/free?do=index" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:46:40 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick_ltr.css HTTP/1.1" 200 3742 "https://fym.cse.salford.ac.uk/wiki/start" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:46:40 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick.min.1.3.js HTTP/1.1" 200 3888 "https://fym.cse.salford.ac.uk/wiki/start" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:46:40 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jquery.1.4.2.js HTTP/1.1" 200 3743 "https://fym.cse.salford.ac.uk/wiki/start" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:46:40 +0100] "GET /wiki/_media/wiki:logo.png HTTP/1.1" 304 281 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:46:39 +0100] "GET /wiki/start HTTP/1.1" 200 3848 "https://fym.cse.salford.ac.uk/wiki/free?do=index" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:46:40 +0100] "GET /wiki/lib/exe/indexer.php?id=start&1445370400 HTTP/1.1" 200 389 "https://fym.cse.salford.ac.uk/wiki/start" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:46:42 +0100] "GET /wiki/free HTTP/1.1" 200 4902 "https://fym.cse.salford.ac.uk/wiki/start" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:46:42 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick_ltr.css HTTP/1.1" 200 3738 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:46:42 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jquery.1.4.2.js HTTP/1.1" 200 3740 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:46:42 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick.min.1.3.js HTTP/1.1" 200 3885 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:46:42 +0100] "GET /wiki/_media/wiki:logo.png HTTP/1.1" 304 281 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.246.48.168 - - [20/Oct/2015:20:46:42 +0100] "GET /wiki/lib/exe/indexer.php?id=free&1445370402 HTTP/1.1" 200 389 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
92.234.199.243 - - [20/Oct/2015:21:04:49 +0100] "GET /wiki/doku.php HTTP/1.1" 200 7865 "http://www.firstyearmatters.info/new/tt1-CC1.1.html" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
92.234.199.243 - - [20/Oct/2015:21:04:49 +0100] "GET /wiki/lib/exe/css.php?t=dokuwiki&tseed=2cb5b229a761de98d43761336d42f70b HTTP/1.1" 200 27528 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
92.234.199.243 - - [20/Oct/2015:21:04:49 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick_ltr.css HTTP/1.1" 200 4094 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
92.234.199.243 - - [20/Oct/2015:21:04:49 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jquery.1.4.2.js HTTP/1.1" 200 4096 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
92.234.199.243 - - [20/Oct/2015:21:04:49 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick.min.1.3.js HTTP/1.1" 200 4105 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
92.234.199.243 - - [20/Oct/2015:21:04:49 +0100] "GET /wiki/_media/wiki:logo.png HTTP/1.1" 403 673 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
92.234.199.243 - - [20/Oct/2015:21:04:49 +0100] "GET /wiki/lib/tpl/dokuwiki/images/button-donate.gif HTTP/1.1" 200 528 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
92.234.199.243 - - [20/Oct/2015:21:04:50 +0100] "GET /wiki/lib/tpl/dokuwiki/images/button-php.gif HTTP/1.1" 200 548 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
92.234.199.243 - - [20/Oct/2015:21:04:50 +0100] "GET /wiki/lib/tpl/dokuwiki/images/button-html5.png HTTP/1.1" 200 647 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
92.234.199.243 - - [20/Oct/2015:21:04:50 +0100] "GET /wiki/lib/tpl/dokuwiki/images/button-css.png HTTP/1.1" 200 639 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
92.234.199.243 - - [20/Oct/2015:21:04:49 +0100] "GET /wiki/lib/exe/js.php?t=dokuwiki&tseed=2cb5b229a761de98d43761336d42f70b HTTP/1.1" 200 142933 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
92.234.199.243 - - [20/Oct/2015:21:04:50 +0100] "GET /wiki/lib/tpl/dokuwiki/images/button-dw.png HTTP/1.1" 200 740 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
92.234.199.243 - - [20/Oct/2015:21:04:50 +0100] "GET /wiki/lib/exe/indexer.php?id=start&1445371489 HTTP/1.1" 200 526 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
92.234.199.243 - - [20/Oct/2015:21:04:50 +0100] "GET /wiki/lib/tpl/dokuwiki/images/page-gradient.png HTTP/1.1" 200 550 "https://www.firstyearmatters.info/wiki/lib/exe/css.php?t=dokuwiki&tseed=2cb5b229a761de98d43761336d42f70b" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
92.234.199.243 - - [20/Oct/2015:21:04:50 +0100] "GET /wiki/lib/tpl/dokuwiki/images/usertools.png HTTP/1.1" 200 1771 "https://www.firstyearmatters.info/wiki/lib/exe/css.php?t=dokuwiki&tseed=2cb5b229a761de98d43761336d42f70b" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
92.234.199.243 - - [20/Oct/2015:21:04:50 +0100] "GET /wiki/lib/tpl/dokuwiki/images/search.png HTTP/1.1" 200 649 "https://www.firstyearmatters.info/wiki/lib/exe/css.php?t=dokuwiki&tseed=2cb5b229a761de98d43761336d42f70b" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
92.234.199.243 - - [20/Oct/2015:21:04:50 +0100] "GET /wiki/lib/tpl/dokuwiki/images/pagetools-sprite.png?v=2 HTTP/1.1" 200 8103 "https://www.firstyearmatters.info/wiki/lib/exe/css.php?t=dokuwiki&tseed=2cb5b229a761de98d43761336d42f70b" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
92.234.199.243 - - [20/Oct/2015:21:04:50 +0100] "GET /wiki/_media/wiki:logo.png HTTP/1.1" 403 535 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
92.234.199.243 - - [20/Oct/2015:21:04:50 +0100] "GET /wiki/lib/tpl/dokuwiki/images/favicon.ico HTTP/1.1" 200 7753 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
78.148.31.75 - - [20/Oct/2015:21:16:57 +0100] "GET /wiki/free HTTP/1.1" 200 9227 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1"
78.148.31.75 - - [20/Oct/2015:21:16:57 +0100] "GET /wiki/lib/exe/css.php?t=dokuwiki&tseed=2cb5b229a761de98d43761336d42f70b HTTP/1.1" 200 27528 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1"
78.148.31.75 - - [20/Oct/2015:21:16:57 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick_ltr.css HTTP/1.1" 200 4109 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1"
78.148.31.75 - - [20/Oct/2015:21:16:57 +0100] "GET /wiki/lib/tpl/dokuwiki/images/button-donate.gif HTTP/1.1" 200 528 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1"
78.148.31.75 - - [20/Oct/2015:21:16:57 +0100] "GET /wiki/lib/tpl/dokuwiki/images/button-php.gif HTTP/1.1" 200 548 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1"
78.148.31.75 - - [20/Oct/2015:21:16:57 +0100] "GET /wiki/lib/tpl/dokuwiki/images/button-html5.png HTTP/1.1" 200 647 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1"
78.148.31.75 - - [20/Oct/2015:21:16:57 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jquery.1.4.2.js HTTP/1.1" 200 4113 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1"
78.148.31.75 - - [20/Oct/2015:21:16:57 +0100] "GET /wiki/lib/tpl/dokuwiki/images/button-css.png HTTP/1.1" 200 639 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1"
78.148.31.75 - - [20/Oct/2015:21:16:57 +0100] "GET /wiki/lib/tpl/dokuwiki/images/button-dw.png HTTP/1.1" 200 740 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1"
78.148.31.75 - - [20/Oct/2015:21:16:57 +0100] "GET /wiki/lib/tpl/dokuwiki/images/page-gradient.png HTTP/1.1" 200 550 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1"
78.148.31.75 - - [20/Oct/2015:21:16:57 +0100] "GET /wiki/lib/exe/indexer.php?id=free&1445372217 HTTP/1.1" 200 526 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1"
78.148.31.75 - - [20/Oct/2015:21:16:57 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick.min.1.3.js HTTP/1.1" 200 4121 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1"
78.148.31.75 - - [20/Oct/2015:21:16:57 +0100] "GET /wiki/_media/wiki:logo.png HTTP/1.1" 403 673 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1"
78.148.31.75 - - [20/Oct/2015:21:16:57 +0100] "GET /wiki/lib/exe/js.php?t=dokuwiki&tseed=2cb5b229a761de98d43761336d42f70b HTTP/1.1" 200 142933 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1"
78.148.31.75 - - [20/Oct/2015:21:16:58 +0100] "GET /wiki/lib/tpl/dokuwiki/images/usertools.png HTTP/1.1" 200 1771 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1"
78.148.31.75 - - [20/Oct/2015:21:16:58 +0100] "GET /wiki/lib/tpl/dokuwiki/images/search.png HTTP/1.1" 200 649 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1"
78.148.31.75 - - [20/Oct/2015:21:16:58 +0100] "GET /wiki/_media/wiki:logo.png HTTP/1.1" 403 535 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1"
78.148.31.75 - - [20/Oct/2015:21:16:58 +0100] "GET /wiki/lib/tpl/dokuwiki/images/pagetools-sprite.png?v=2 HTTP/1.1" 200 8103 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1"
78.148.31.75 - - [20/Oct/2015:21:17:26 +0100] "POST /wiki/free HTTP/1.1" 302 690 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1"
78.148.31.75 - - [20/Oct/2015:21:17:26 +0100] "GET /wiki/free HTTP/1.1" 200 4883 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1"
78.148.31.75 - - [20/Oct/2015:21:17:26 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick_ltr.css HTTP/1.1" 200 3859 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1"
78.148.31.75 - - [20/Oct/2015:21:17:26 +0100] "GET /wiki/lib/exe/indexer.php?id=free&1445372246 HTTP/1.1" 200 389 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1"
78.148.31.75 - - [20/Oct/2015:21:17:26 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick.min.1.3.js HTTP/1.1" 200 3868 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1"
78.148.31.75 - - [20/Oct/2015:21:17:26 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jquery.1.4.2.js HTTP/1.1" 200 3860 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1"
78.148.31.75 - - [20/Oct/2015:21:17:26 +0100] "GET /wiki/_media/wiki:logo.png HTTP/1.1" 200 9453 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1"
78.148.31.75 - - [20/Oct/2015:21:17:26 +0100] "GET /wiki/lib/tpl/dokuwiki/images/toc-bullet.png HTTP/1.1" 200 454 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1"
78.148.31.75 - - [20/Oct/2015:21:17:26 +0100] "GET /wiki/lib/images/external-link.png HTTP/1.1" 200 773 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1"
78.148.31.75 - - [20/Oct/2015:21:17:26 +0100] "GET /wiki/lib/tpl/dokuwiki/images/toc-arrows.png HTTP/1.1" 200 566 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1"
78.148.31.75 - - [20/Oct/2015:21:18:33 +0100] "GET /wiki/free HTTP/1.1" 200 5019 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1"
78.148.31.75 - - [20/Oct/2015:21:18:33 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jquery.1.4.2.js HTTP/1.1" 200 3722 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1"
78.148.31.75 - - [20/Oct/2015:21:18:33 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick.min.1.3.js HTTP/1.1" 200 3867 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1"
78.148.31.75 - - [20/Oct/2015:21:18:33 +0100] "GET /wiki/lib/exe/indexer.php?id=free&1445372313 HTTP/1.1" 200 526 "https://fym.cse.salford.ac.uk/wiki/free" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1"
146.198.24.30 - - [20/Oct/2015:22:16:49 +0100] "GET /yabbfiles/Templates/Forum/default/fymlogo.gif HTTP/1.1" 200 7121 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.198.24.30 - - [20/Oct/2015:22:16:49 +0100] "GET /yabbfiles/Templates/Forum/default.css HTTP/1.1" 200 6368 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.198.24.30 - - [20/Oct/2015:22:16:49 +0100] "GET /yabbfiles/ubbc.js HTTP/1.1" 200 6086 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.198.24.30 - - [20/Oct/2015:22:16:49 +0100] "GET /yabbfiles/Templates/Forum/default/tabfill.gif HTTP/1.1" 200 1960 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.198.24.30 - - [20/Oct/2015:22:16:50 +0100] "GET /yabbfiles/Templates/Forum/default/tabsep211.png HTTP/1.1" 200 424 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.198.24.30 - - [20/Oct/2015:22:16:50 +0100] "GET /yabbfiles/Templates/Forum/default/rss.png HTTP/1.1" 200 1849 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.198.24.30 - - [20/Oct/2015:22:16:50 +0100] "GET /yabbfiles/Templates/Forum/default/search.gif HTTP/1.1" 200 717 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.198.24.30 - - [20/Oct/2015:22:16:50 +0100] "GET /yabbfiles/Templates/Forum/default/boards.gif HTTP/1.1" 200 2583 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.198.24.30 - - [20/Oct/2015:22:16:50 +0100] "GET /yabbfiles/Templates/Forum/default/menutop.png HTTP/1.1" 200 466 "https://www.firstyearmatters.info/yabbfiles/Templates/Forum/default.css" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.198.24.30 - - [20/Oct/2015:22:16:50 +0100] "GET /yabbfiles/Templates/Forum/default/tab211.png HTTP/1.1" 200 465 "https://www.firstyearmatters.info/yabbfiles/Templates/Forum/default.css" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.198.24.30 - - [20/Oct/2015:22:16:50 +0100] "GET /yabbfiles/Templates/Forum/default/searchbg211.png HTTP/1.1" 200 481 "https://www.firstyearmatters.info/yabbfiles/Templates/Forum/default.css" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.198.24.30 - - [20/Oct/2015:22:16:50 +0100] "GET /yabbfiles/Templates/Forum/default/tab_selected211.png HTTP/1.1" 200 619 "https://www.firstyearmatters.info/yabbfiles/Templates/Forum/default.css" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.198.24.30 - - [20/Oct/2015:22:16:50 +0100] "GET /yabbfiles/Templates/Forum/default/lastpost.gif HTTP/1.1" 200 798 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.198.24.30 - - [20/Oct/2015:22:16:50 +0100] "GET /yabbfiles/Templates/Forum/default/info.gif HTTP/1.1" 200 2657 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.198.24.30 - - [20/Oct/2015:22:16:50 +0100] "GET /yabbfiles/Templates/Forum/default/catbg.png HTTP/1.1" 200 467 "https://www.firstyearmatters.info/yabbfiles/Templates/Forum/default.css" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.198.24.30 - - [20/Oct/2015:22:16:50 +0100] "GET /yabbfiles/Templates/Forum/default/grad_bottom.png HTTP/1.1" 200 448 "https://www.firstyearmatters.info/yabbfiles/Templates/Forum/default.css" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.198.24.30 - - [20/Oct/2015:22:16:50 +0100] "GET /yabbfiles/Templates/Forum/default/tableft211.png HTTP/1.1" 200 961 "https://www.firstyearmatters.info/yabbfiles/Templates/Forum/default.css" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.198.24.30 - - [20/Oct/2015:22:16:50 +0100] "GET /yabbfiles/Templates/Forum/default/tabright211.png HTTP/1.1" 200 1290 "https://www.firstyearmatters.info/yabbfiles/Templates/Forum/default.css" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.198.24.30 - - [20/Oct/2015:22:16:50 +0100] "GET /yabbfiles/Templates/Forum/default/xhtml.gif HTTP/1.1" 200 562 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.198.24.30 - - [20/Oct/2015:22:16:50 +0100] "GET /yabbfiles/Templates/Forum/default/perl.gif HTTP/1.1" 200 1454 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.198.24.30 - - [20/Oct/2015:22:16:50 +0100] "GET /yabbfiles/Templates/Forum/default/valid-rss.png HTTP/1.1" 200 1866 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.198.24.30 - - [20/Oct/2015:22:16:50 +0100] "GET /yabbfiles/Templates/Forum/default/online.gif HTTP/1.1" 200 2877 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.198.24.30 - - [20/Oct/2015:22:16:50 +0100] "GET /yabbfiles/Templates/Forum/default/sf.gif HTTP/1.1" 200 740 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.198.24.30 - - [20/Oct/2015:22:16:50 +0100] "GET /yabbfiles/Templates/Forum/default/css.gif HTTP/1.1" 200 544 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.198.24.30 - - [20/Oct/2015:22:16:50 +0100] "GET /yabbfiles/Templates/Forum/default/login.gif HTTP/1.1" 200 1779 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
89.242.218.154 - - [20/Oct/2015:22:25:40 +0100] "GET /portal HTTP/1.1" 301 4467 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
89.242.218.154 - - [20/Oct/2015:22:25:40 +0100] "GET /portal/ HTTP/1.1" 302 1124 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
89.242.218.154 - - [20/Oct/2015:22:25:40 +0100] "GET /portal/login HTTP/1.1" 200 1770 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
89.242.218.154 - - [20/Oct/2015:22:25:40 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1124 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
89.242.218.154 - - [20/Oct/2015:22:25:40 +0100] "GET /portal/js/42be59c.js HTTP/1.1" 200 41902 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
89.242.218.154 - - [20/Oct/2015:22:25:40 +0100] "GET /favicon.ico HTTP/1.1" 200 4283 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
89.242.218.154 - - [20/Oct/2015:22:26:14 +0100] "POST /portal/login_check HTTP/1.1" 302 1365 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
89.242.218.154 - - [20/Oct/2015:22:26:14 +0100] "GET /portal/ HTTP/1.1" 302 1141 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
89.242.218.154 - - [20/Oct/2015:22:26:14 +0100] "GET /portal/dashboard HTTP/1.1" 200 1898 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
89.242.218.154 - - [20/Oct/2015:22:26:14 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1124 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
89.242.218.154 - - [20/Oct/2015:22:26:31 +0100] "GET /portal/dashboard HTTP/1.1" 200 1898 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
89.242.218.154 - - [20/Oct/2015:22:26:31 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1124 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
89.242.218.154 - - [20/Oct/2015:22:26:34 +0100] "GET /portal/dashboard HTTP/1.1" 200 1705 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
89.242.218.154 - - [20/Oct/2015:22:26:34 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1317 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
89.242.218.154 - - [20/Oct/2015:22:26:35 +0100] "GET /portal/dashboard HTTP/1.1" 200 1705 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
89.242.218.154 - - [20/Oct/2015:22:26:35 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1124 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
89.242.218.154 - - [20/Oct/2015:22:27:14 +0100] "GET /portal/linux/passwd/358 HTTP/1.1" 200 1946 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
89.242.218.154 - - [20/Oct/2015:22:27:14 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1124 "https://firstyearmatters.info/portal/linux/passwd/358" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
89.242.218.154 - - [20/Oct/2015:22:27:24 +0100] "POST /portal/linux/passwd/358 HTTP/1.1" 200 1978 "https://firstyearmatters.info/portal/linux/passwd/358" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
89.242.218.154 - - [20/Oct/2015:22:27:24 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1124 "https://firstyearmatters.info/portal/linux/passwd/358" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
89.242.218.154 - - [20/Oct/2015:22:27:30 +0100] "POST /portal/linux/passwd/358 HTTP/1.1" 200 1824 "https://firstyearmatters.info/portal/linux/passwd/358" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
89.242.218.154 - - [20/Oct/2015:22:27:35 +0100] "POST /portal/linux/passwd/358 HTTP/1.1" 200 1824 "https://firstyearmatters.info/portal/linux/passwd/358" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
89.242.218.154 - - [20/Oct/2015:22:27:45 +0100] "GET /portal/dashboard HTTP/1.1" 200 1898 "https://firstyearmatters.info/portal/linux/passwd/358" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
89.242.218.154 - - [20/Oct/2015:22:27:42 +0100] "GET /portal/dashboard HTTP/1.1" 200 1898 "https://firstyearmatters.info/portal/linux/passwd/358" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
89.242.218.154 - - [20/Oct/2015:22:27:53 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1124 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
89.242.218.154 - - [20/Oct/2015:22:28:26 +0100] "GET /portal/linux/passwd/358 HTTP/1.1" 200 1946 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
89.242.218.154 - - [20/Oct/2015:22:28:27 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1124 "https://firstyearmatters.info/portal/linux/passwd/358" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
89.242.218.154 - - [20/Oct/2015:22:28:43 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1317 "https://firstyearmatters.info/portal/linux/passwd/358" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
89.242.218.154 - - [20/Oct/2015:22:28:33 +0100] "POST /portal/linux/passwd/358 HTTP/1.1" 200 1994 "https://firstyearmatters.info/portal/linux/passwd/358" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
89.242.218.154 - - [20/Oct/2015:22:28:46 +0100] "GET /portal/dashboard HTTP/1.1" 200 1705 "https://firstyearmatters.info/portal/linux/passwd/358" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
89.242.218.154 - - [20/Oct/2015:22:28:47 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1124 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
89.242.218.154 - - [20/Oct/2015:22:29:14 +0100] "GET /portal/dashboard HTTP/1.1" 200 1898 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
89.242.218.154 - - [20/Oct/2015:22:29:14 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1124 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
89.242.218.154 - - [20/Oct/2015:22:31:44 +0100] "GET /portal/ HTTP/1.1" 302 4653 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
89.242.218.154 - - [20/Oct/2015:22:31:44 +0100] "GET /portal/dashboard HTTP/1.1" 200 1898 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
89.242.218.154 - - [20/Oct/2015:22:31:44 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1124 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
89.242.218.154 - - [20/Oct/2015:22:33:34 +0100] "GET /portal/ HTTP/1.1" 302 1141 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
89.242.218.154 - - [20/Oct/2015:22:33:34 +0100] "GET /portal/dashboard HTTP/1.1" 200 1898 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
89.242.218.154 - - [20/Oct/2015:22:33:34 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1124 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
89.242.218.154 - - [20/Oct/2015:22:34:31 +0100] "GET /portal/linux/passwd/358 HTTP/1.1" 200 1946 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
89.242.218.154 - - [20/Oct/2015:22:34:31 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1317 "https://firstyearmatters.info/portal/linux/passwd/358" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
89.242.218.154 - - [20/Oct/2015:22:34:44 +0100] "POST /portal/linux/passwd/358 HTTP/1.1" 200 1978 "https://firstyearmatters.info/portal/linux/passwd/358" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
89.242.218.154 - - [20/Oct/2015:22:34:44 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1124 "https://firstyearmatters.info/portal/linux/passwd/358" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
89.242.218.154 - - [20/Oct/2015:22:35:15 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1317 "https://firstyearmatters.info/portal/linux/passwd/358" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
89.242.218.154 - - [20/Oct/2015:22:34:59 +0100] "POST /portal/linux/passwd/358 HTTP/1.1" 200 1994 "https://firstyearmatters.info/portal/linux/passwd/358" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
89.242.218.154 - - [20/Oct/2015:22:35:19 +0100] "GET /portal/dashboard HTTP/1.1" 200 1705 "https://firstyearmatters.info/portal/linux/passwd/358" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
89.242.218.154 - - [20/Oct/2015:22:35:19 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1124 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
89.242.218.154 - - [20/Oct/2015:22:38:03 +0100] "GET /portal/dashboard HTTP/1.1" 302 4845 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
89.242.218.154 - - [20/Oct/2015:22:38:03 +0100] "GET /portal/login HTTP/1.1" 200 1577 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
89.242.218.154 - - [20/Oct/2015:22:38:03 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1124 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
31.205.161.13 - - [21/Oct/2015:00:31:25 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 4981 "http://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.50 (KHTML, like Gecko) Version/9.0 Safari/601.1.50"
31.205.161.13 - - [21/Oct/2015:00:31:25 +0100] "GET /page.css HTTP/1.1" 200 626 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.50 (KHTML, like Gecko) Version/9.0 Safari/601.1.50"
31.205.161.13 - - [21/Oct/2015:00:31:26 +0100] "GET /favicon.ico HTTP/1.1" 200 4122 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.50 (KHTML, like Gecko) Version/9.0 Safari/601.1.50"
31.205.161.13 - - [21/Oct/2015:00:31:45 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1348 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.50 (KHTML, like Gecko) Version/9.0 Safari/601.1.50"
31.205.161.13 - - [21/Oct/2015:00:31:58 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1465 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.50 (KHTML, like Gecko) Version/9.0 Safari/601.1.50"
31.205.161.13 - - [21/Oct/2015:00:32:06 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1479 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.50 (KHTML, like Gecko) Version/9.0 Safari/601.1.50"
31.205.161.13 - - [21/Oct/2015:00:32:21 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1493 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.50 (KHTML, like Gecko) Version/9.0 Safari/601.1.50"
31.205.161.13 - - [21/Oct/2015:00:32:30 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1491 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.50 (KHTML, like Gecko) Version/9.0 Safari/601.1.50"
31.205.161.13 - - [21/Oct/2015:00:32:36 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1500 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.50 (KHTML, like Gecko) Version/9.0 Safari/601.1.50"
31.205.161.13 - - [21/Oct/2015:00:32:42 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1491 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.50 (KHTML, like Gecko) Version/9.0 Safari/601.1.50"
31.205.161.13 - - [21/Oct/2015:00:32:46 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1368 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.50 (KHTML, like Gecko) Version/9.0 Safari/601.1.50"
151.224.209.137 - - [21/Oct/2015:01:37:42 +0100] "GET /portal HTTP/1.1" 301 4509 "-" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
151.224.209.137 - - [21/Oct/2015:01:37:43 +0100] "GET /portal/ HTTP/1.1" 302 936 "-" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
151.224.209.137 - - [21/Oct/2015:01:37:43 +0100] "GET /portal/login HTTP/1.1" 200 5175 "-" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
151.224.209.137 - - [21/Oct/2015:01:37:43 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
151.224.209.137 - - [21/Oct/2015:01:37:43 +0100] "GET /portal/js/42be59c.js HTTP/1.1" 200 41232 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
151.224.209.137 - - [21/Oct/2015:01:37:43 +0100] "GET /favicon.ico HTTP/1.1" 200 3984 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
151.224.209.137 - - [21/Oct/2015:01:37:50 +0100] "POST /portal/login_check HTTP/1.1" 302 1016 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
151.224.209.137 - - [21/Oct/2015:01:37:50 +0100] "GET /portal/login HTTP/1.1" 200 1980 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
151.224.209.137 - - [21/Oct/2015:01:37:50 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
151.224.209.137 - - [21/Oct/2015:01:37:55 +0100] "POST /portal/login_check HTTP/1.1" 302 1107 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
151.224.209.137 - - [21/Oct/2015:01:37:55 +0100] "GET /portal/ HTTP/1.1" 302 753 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
151.224.209.137 - - [21/Oct/2015:01:37:55 +0100] "GET /portal/dashboard HTTP/1.1" 200 1533 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
151.224.209.137 - - [21/Oct/2015:01:37:55 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
151.224.209.137 - - [21/Oct/2015:01:42:29 +0100] "GET /portal/dashboard HTTP/1.1" 200 1533 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
151.224.209.137 - - [21/Oct/2015:01:42:30 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
151.224.209.137 - - [21/Oct/2015:01:42:33 +0100] "GET /portal/linux/passwd/181 HTTP/1.1" 200 1577 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
151.224.209.137 - - [21/Oct/2015:01:42:33 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/linux/passwd/181" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
151.224.209.137 - - [21/Oct/2015:01:42:40 +0100] "POST /portal/linux/passwd/181 HTTP/1.1" 200 1618 "https://firstyearmatters.info/portal/linux/passwd/181" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
151.224.209.137 - - [21/Oct/2015:01:42:40 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/linux/passwd/181" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
151.224.209.137 - - [21/Oct/2015:01:43:11 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1062 "https://firstyearmatters.info/portal/linux/passwd/181" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
151.224.209.137 - - [21/Oct/2015:01:42:50 +0100] "POST /portal/linux/passwd/181 HTTP/1.1" 200 5334 "https://firstyearmatters.info/portal/linux/passwd/181" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
151.224.209.137 - - [21/Oct/2015:01:43:24 +0100] "GET /portal/dashboard HTTP/1.1" 200 1533 "https://firstyearmatters.info/portal/linux/passwd/181" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
151.224.209.137 - - [21/Oct/2015:01:43:25 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"

View File

@@ -0,0 +1,270 @@
86.129.42.161 - - [19/Oct/2015:06:56:27 +0100] "GET / HTTP/1.1" 302 4491 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
86.129.42.161 - - [19/Oct/2015:06:56:28 +0100] "GET /cs/ HTTP/1.1" 200 2975 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
86.129.42.161 - - [19/Oct/2015:06:56:43 +0100] "GET /cs/timetables.html HTTP/1.1" 200 2595 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
86.129.42.161 - - [19/Oct/2015:06:56:45 +0100] "GET /cs/tt1-CC1.3.html HTTP/1.1" 200 2937 "https://www.firstyearmatters.info/cs/timetables.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
10.99.180.141 - - [19/Oct/2015:09:14:36 +0100] "GET / HTTP/1.1" 302 4268 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.4 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.4"
10.99.180.141 - - [19/Oct/2015:09:14:36 +0100] "GET /cs HTTP/1.1" 301 656 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.4 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.4"
10.99.180.141 - - [19/Oct/2015:09:14:36 +0100] "GET /cs/ HTTP/1.1" 200 2975 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.4 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.4"
10.99.180.141 - - [19/Oct/2015:09:14:36 +0100] "GET /default.css HTTP/1.1" 200 1576 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.4 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.4"
10.99.180.141 - - [19/Oct/2015:09:14:36 +0100] "GET /fym.css HTTP/1.1" 200 1589 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.4 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.4"
10.99.180.141 - - [19/Oct/2015:09:14:36 +0100] "GET /largetext.css HTTP/1.1" 200 1485 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.4 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.4"
10.99.180.141 - - [19/Oct/2015:09:14:36 +0100] "GET /print.css HTTP/1.1" 200 1058 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.4 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.4"
10.99.180.141 - - [19/Oct/2015:09:14:36 +0100] "GET /switcher.js HTTP/1.1" 200 1134 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.4 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.4"
10.99.180.141 - - [19/Oct/2015:09:14:36 +0100] "GET /uos.jpg HTTP/1.1" 200 6127 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.4 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.4"
10.99.180.141 - - [19/Oct/2015:09:14:36 +0100] "GET /fuof.jpg HTTP/1.1" 200 10048 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.4 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.4"
10.99.180.141 - - [19/Oct/2015:09:14:36 +0100] "GET /favicon.ico HTTP/1.1" 200 3984 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.4 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.4"
10.99.180.141 - - [19/Oct/2015:09:14:36 +0100] "GET /cs/ HTTP/1.1" 200 2975 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.4 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.4"
10.99.180.141 - - [19/Oct/2015:09:14:40 +0100] "GET /cs/stafftimetables.html HTTP/1.1" 200 2762 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.4 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.4"
10.99.180.141 - - [19/Oct/2015:09:14:42 +0100] "GET /cs/st1-Rob+Aspin.html HTTP/1.1" 200 2940 "https://firstyearmatters.info/cs/stafftimetables.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.4 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.4"
216.218.206.66 - - [19/Oct/2015:09:46:21 +0100] "GET / HTTP/1.1" 302 5780 "-" "-"
10.99.180.141 - - [19/Oct/2015:11:35:58 +0100] "GET / HTTP/1.1" 302 4268 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.4 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.4"
10.99.180.141 - - [19/Oct/2015:11:35:58 +0100] "GET /cs HTTP/1.1" 301 656 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.4 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.4"
10.99.180.141 - - [19/Oct/2015:11:35:58 +0100] "GET /cs/ HTTP/1.1" 200 3159 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.4 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.4"
10.99.180.141 - - [19/Oct/2015:11:35:58 +0100] "GET /resit/ HTTP/1.1" 404 704 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.4 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.4"
10.99.180.141 - - [19/Oct/2015:11:35:59 +0100] "GET / HTTP/1.1" 302 618 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.4 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.4"
10.99.180.141 - - [19/Oct/2015:11:35:59 +0100] "GET /cs HTTP/1.1" 301 656 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.4 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.4"
10.99.180.141 - - [19/Oct/2015:11:35:59 +0100] "GET /cs/ HTTP/1.1" 200 3159 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.4 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.4"
10.99.180.141 - - [19/Oct/2015:11:36:00 +0100] "GET /staff/ HTTP/1.1" 200 4947 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.4 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.4"
10.99.180.141 - - [19/Oct/2015:11:36:00 +0100] "GET /staff/csmt.ico HTTP/1.1" 404 578 "https://www.firstyearmatters.info/staff/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.4 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.4"
10.99.180.141 - - [19/Oct/2015:11:36:04 +0100] "GET /lists/register.html HTTP/1.1" 200 1977 "https://www.firstyearmatters.info/staff/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.4 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.4"
10.99.180.141 - - [19/Oct/2015:11:36:04 +0100] "GET /favicon.ico HTTP/1.1" 200 3984 "https://www.firstyearmatters.info/lists/register.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.4 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.4"
208.80.155.255 - - [19/Oct/2015:14:07:58 +0100] "GET /cgi-bin/discography.cgi?deleted HTTP/1.1" 200 18413 "-" "German Wikipedia Broken Weblinks Bot; contact: gifti@tools.wmflabs.org"
10.100.4.44 - - [19/Oct/2015:14:53:03 +0100] "GET /portal/login HTTP/1.1" 200 5037 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko)"
10.100.4.44 - - [19/Oct/2015:14:53:06 +0100] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4242 "-" "Safari/11601.1.56 CFNetwork/760.0.5 Darwin/15.0.0 (x86_64)"
10.100.4.44 - - [19/Oct/2015:14:53:07 +0100] "GET /apple-touch-icon.png HTTP/1.1" 404 580 "-" "Safari/11601.1.56 CFNetwork/760.0.5 Darwin/15.0.0 (x86_64)"
10.100.4.44 - - [19/Oct/2015:14:53:07 +0100] "GET /portal/login HTTP/1.1" 200 1390 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B410 Safari/600.1.4"
10.100.4.44 - - [19/Oct/2015:14:53:07 +0100] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 592 "-" "Safari/11601.1.56 CFNetwork/760.0.5 Darwin/15.0.0 (x86_64)"
10.100.4.44 - - [19/Oct/2015:14:53:07 +0100] "GET /apple-touch-icon.png HTTP/1.1" 404 580 "-" "Safari/11601.1.56 CFNetwork/760.0.5 Darwin/15.0.0 (x86_64)"
146.87.136.146 - - [19/Oct/2015:15:04:34 +0100] "GET /portal/ HTTP/1.1" 302 4781 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [19/Oct/2015:15:04:34 +0100] "GET /portal/login HTTP/1.1" 200 1335 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [19/Oct/2015:15:04:34 +0100] "GET /portal/js/42be59c.js HTTP/1.1" 200 45077 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [19/Oct/2015:15:04:34 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [19/Oct/2015:15:04:35 +0100] "GET /favicon.ico HTTP/1.1" 200 3984 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [19/Oct/2015:15:04:42 +0100] "POST /portal/login_check HTTP/1.1" 302 1107 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [19/Oct/2015:15:04:43 +0100] "GET /portal/ HTTP/1.1" 302 753 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [19/Oct/2015:15:04:43 +0100] "GET /portal/dashboard HTTP/1.1" 200 1539 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [19/Oct/2015:15:04:43 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [19/Oct/2015:15:04:46 +0100] "GET /portal/linux/passwd/151 HTTP/1.1" 200 1444 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [19/Oct/2015:15:04:47 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/linux/passwd/151" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [19/Oct/2015:15:04:56 +0100] "POST /portal/linux/passwd/151 HTTP/1.1" 200 1623 "https://firstyearmatters.info/portal/linux/passwd/151" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [19/Oct/2015:15:04:56 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/linux/passwd/151" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [19/Oct/2015:15:05:24 +0100] "GET /portal/ HTTP/1.1" 302 891 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [19/Oct/2015:15:05:24 +0100] "GET /portal/dashboard HTTP/1.1" 200 1539 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [19/Oct/2015:15:05:24 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [19/Oct/2015:15:05:52 +0100] "GET /portal/linux/passwd/151 HTTP/1.1" 200 1582 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [19/Oct/2015:15:05:52 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/linux/passwd/151" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [19/Oct/2015:15:06:00 +0100] "POST /portal/linux/passwd/151 HTTP/1.1" 200 1623 "https://firstyearmatters.info/portal/linux/passwd/151" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [19/Oct/2015:15:06:00 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/linux/passwd/151" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [19/Oct/2015:15:06:20 +0100] "POST /portal/linux/passwd/151 HTTP/1.1" 200 1554 "https://firstyearmatters.info/portal/linux/passwd/151" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [19/Oct/2015:15:06:46 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1062 "https://firstyearmatters.info/portal/linux/passwd/151" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [19/Oct/2015:15:06:24 +0100] "POST /portal/linux/passwd/151 HTTP/1.1" 200 1632 "https://firstyearmatters.info/portal/linux/passwd/151" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
10.100.4.44 - - [19/Oct/2015:15:08:59 +0100] "GET / HTTP/1.1" 302 4268 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.100.4.44 - - [19/Oct/2015:15:08:59 +0100] "GET /cs HTTP/1.1" 301 656 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.100.4.44 - - [19/Oct/2015:15:08:59 +0100] "GET /cs/ HTTP/1.1" 200 3159 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.100.4.44 - - [19/Oct/2015:15:09:00 +0100] "GET /default.css HTTP/1.1" 200 1576 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.100.4.44 - - [19/Oct/2015:15:09:00 +0100] "GET /switcher.js HTTP/1.1" 200 1134 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.100.4.44 - - [19/Oct/2015:15:09:00 +0100] "GET /largetext.css HTTP/1.1" 200 1623 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.100.4.44 - - [19/Oct/2015:15:09:00 +0100] "GET /uos.jpg HTTP/1.1" 200 6127 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.100.4.44 - - [19/Oct/2015:15:09:00 +0100] "GET /print.css HTTP/1.1" 200 1196 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.100.4.44 - - [19/Oct/2015:15:09:00 +0100] "GET /fuof.jpg HTTP/1.1" 200 9910 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.100.4.44 - - [19/Oct/2015:15:09:00 +0100] "GET /highcontrast.css HTTP/1.1" 200 1675 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.100.4.44 - - [19/Oct/2015:15:09:00 +0100] "GET /fym.css HTTP/1.1" 200 1727 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.100.4.44 - - [19/Oct/2015:15:09:00 +0100] "GET /ie6.css HTTP/1.1" 200 1730 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.100.4.44 - - [19/Oct/2015:15:09:01 +0100] "GET /portal/login HTTP/1.1" 200 1393 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.100.4.44 - - [19/Oct/2015:15:09:02 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.100.4.44 - - [19/Oct/2015:15:09:02 +0100] "GET /portal/js/42be59c.js HTTP/1.1" 200 41232 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.100.4.44 - - [19/Oct/2015:15:09:04 +0100] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4242 "-" "Safari/11601.1.56 CFNetwork/760.0.5 Darwin/15.0.0 (x86_64)"
10.100.4.44 - - [19/Oct/2015:15:09:04 +0100] "GET /apple-touch-icon.png HTTP/1.1" 404 580 "-" "Safari/11601.1.56 CFNetwork/760.0.5 Darwin/15.0.0 (x86_64)"
10.100.4.44 - - [19/Oct/2015:15:09:25 +0100] "POST /portal/login_check HTTP/1.1" 302 1016 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.100.4.44 - - [19/Oct/2015:15:09:25 +0100] "GET /portal/login HTTP/1.1" 200 2122 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.100.4.44 - - [19/Oct/2015:15:09:25 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.100.4.44 - - [19/Oct/2015:15:09:32 +0100] "POST /portal/login_check HTTP/1.1" 302 1107 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.100.4.44 - - [19/Oct/2015:15:09:32 +0100] "GET /portal/ HTTP/1.1" 302 891 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.100.4.44 - - [19/Oct/2015:15:09:32 +0100] "GET /portal/dashboard HTTP/1.1" 200 1540 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.100.4.44 - - [19/Oct/2015:15:09:32 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.100.4.44 - - [19/Oct/2015:15:09:36 +0100] "GET /portal/linux/passwd/154 HTTP/1.1" 200 1445 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.100.4.44 - - [19/Oct/2015:15:09:36 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/linux/passwd/154" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.100.4.44 - - [19/Oct/2015:15:09:55 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1062 "https://firstyearmatters.info/portal/linux/passwd/154" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.100.4.44 - - [19/Oct/2015:15:09:45 +0100] "POST /portal/linux/passwd/154 HTTP/1.1" 200 1633 "https://firstyearmatters.info/portal/linux/passwd/154" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
213.152.161.170 - - [19/Oct/2015:16:54:43 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 5167 "http://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
213.152.161.170 - - [19/Oct/2015:16:54:44 +0100] "GET /page.css HTTP/1.1" 200 626 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
213.152.161.170 - - [19/Oct/2015:16:54:44 +0100] "GET /favicon.ico HTTP/1.1" 200 3984 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
213.152.161.170 - - [19/Oct/2015:16:54:44 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1291 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
213.152.161.170 - - [19/Oct/2015:16:57:05 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1482 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
213.152.161.170 - - [19/Oct/2015:16:57:24 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1480 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
213.152.161.170 - - [19/Oct/2015:16:57:37 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1465 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
213.152.161.170 - - [19/Oct/2015:16:57:40 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1312 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
213.152.161.170 - - [19/Oct/2015:16:58:22 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1469 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
213.152.161.170 - - [19/Oct/2015:16:58:32 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1483 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
213.152.161.170 - - [19/Oct/2015:16:58:41 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1444 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
213.152.161.170 - - [19/Oct/2015:16:59:03 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1485 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
213.152.161.170 - - [19/Oct/2015:16:59:23 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1486 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
213.152.161.170 - - [19/Oct/2015:17:00:20 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 5211 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
52.25.39.152 - - [19/Oct/2015:17:03:37 +0100] "GET / HTTP/1.1" 400 5957 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.2)"
146.87.136.145 - - [19/Oct/2015:17:35:19 +0100] "GET /wiki/doku.php HTTP/1.1" 200 8150 "http://www.firstyearmatters.info/cs/" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
146.87.136.145 - - [19/Oct/2015:17:35:20 +0100] "GET /wiki/lib/tpl/dokuwiki/images/button-php.gif HTTP/1.1" 200 827 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
146.87.136.145 - - [19/Oct/2015:17:35:20 +0100] "GET /wiki/lib/tpl/dokuwiki/images/button-donate.gif HTTP/1.1" 200 811 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
146.87.136.145 - - [19/Oct/2015:17:35:20 +0100] "GET /wiki/lib/tpl/dokuwiki/images/button-html5.png HTTP/1.1" 200 939 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
146.87.136.145 - - [19/Oct/2015:17:35:20 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jquery.1.4.2.js HTTP/1.1" 200 4606 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
146.87.136.145 - - [19/Oct/2015:17:35:20 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick.min.1.3.js HTTP/1.1" 200 4622 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
146.87.136.145 - - [19/Oct/2015:17:35:20 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick_ltr.css HTTP/1.1" 200 4606 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
146.87.136.145 - - [19/Oct/2015:17:35:20 +0100] "GET /wiki/lib/exe/css.php?t=dokuwiki&tseed=2cb5b229a761de98d43761336d42f70b HTTP/1.1" 200 27891 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
146.87.136.145 - - [19/Oct/2015:17:35:20 +0100] "GET /wiki/lib/exe/js.php?t=dokuwiki&tseed=2cb5b229a761de98d43761336d42f70b HTTP/1.1" 200 145643 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
146.87.136.145 - - [19/Oct/2015:17:35:20 +0100] "GET /wiki/_media/wiki:logo.png HTTP/1.1" 403 827 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
146.87.136.145 - - [19/Oct/2015:17:35:20 +0100] "GET /wiki/lib/tpl/dokuwiki/images/page-gradient.png HTTP/1.1" 200 650 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
146.87.136.145 - - [19/Oct/2015:17:35:20 +0100] "GET /wiki/lib/tpl/dokuwiki/images/button-css.png HTTP/1.1" 200 923 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
146.87.136.145 - - [19/Oct/2015:17:35:20 +0100] "GET /wiki/lib/tpl/dokuwiki/images/button-dw.png HTTP/1.1" 200 1019 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
146.87.136.145 - - [19/Oct/2015:17:35:20 +0100] "GET /wiki/lib/tpl/dokuwiki/images/search.png HTTP/1.1" 200 746 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
146.87.136.145 - - [19/Oct/2015:17:35:20 +0100] "GET /wiki/lib/exe/indexer.php?id=start&1445272520 HTTP/1.1" 200 811 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
146.87.136.145 - - [19/Oct/2015:17:35:20 +0100] "GET /wiki/lib/tpl/dokuwiki/images/usertools.png HTTP/1.1" 200 1866 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
146.87.136.145 - - [19/Oct/2015:17:35:20 +0100] "GET /wiki/lib/tpl/dokuwiki/images/pagetools-sprite.png?v=2 HTTP/1.1" 200 8186 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
146.87.136.145 - - [19/Oct/2015:17:35:20 +0100] "GET /wiki/lib/tpl/dokuwiki/images/favicon.ico HTTP/1.1" 200 7850 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
146.87.136.145 - - [19/Oct/2015:17:35:59 +0100] "POST /wiki/doku.php HTTP/1.1" 302 806 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
146.87.136.145 - - [19/Oct/2015:17:35:59 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jquery.1.4.2.js HTTP/1.1" 200 4366 "https://www.firstyearmatters.info/wiki/start" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
146.87.136.145 - - [19/Oct/2015:17:35:59 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick_ltr.css HTTP/1.1" 200 4366 "https://www.firstyearmatters.info/wiki/start" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
146.87.136.145 - - [19/Oct/2015:17:35:59 +0100] "GET /wiki/_media/wiki:logo.png HTTP/1.1" 200 9595 "https://www.firstyearmatters.info/wiki/start" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
146.87.136.145 - - [19/Oct/2015:17:35:59 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick.min.1.3.js HTTP/1.1" 200 4366 "https://www.firstyearmatters.info/wiki/start" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
146.87.136.145 - - [19/Oct/2015:17:35:59 +0100] "GET /wiki/start HTTP/1.1" 200 4397 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
146.87.136.145 - - [19/Oct/2015:17:35:59 +0100] "GET /wiki/lib/exe/indexer.php?id=start&1445272559 HTTP/1.1" 200 490 "https://www.firstyearmatters.info/wiki/start" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
146.87.136.145 - - [19/Oct/2015:17:36:17 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick_ltr.css HTTP/1.1" 200 4398 "https://www.firstyearmatters.info/wiki/free" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
146.87.136.145 - - [19/Oct/2015:17:36:17 +0100] "GET /wiki/_media/wiki:logo.png HTTP/1.1" 200 9595 "https://www.firstyearmatters.info/wiki/free" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
146.87.136.145 - - [19/Oct/2015:17:36:17 +0100] "GET /wiki/free HTTP/1.1" 200 5742 "https://www.firstyearmatters.info/wiki/start" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
146.87.136.145 - - [19/Oct/2015:17:36:17 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jquery.1.4.2.js HTTP/1.1" 200 4398 "https://www.firstyearmatters.info/wiki/free" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
146.87.136.145 - - [19/Oct/2015:17:36:17 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick.min.1.3.js HTTP/1.1" 200 4398 "https://www.firstyearmatters.info/wiki/free" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
146.87.136.145 - - [19/Oct/2015:17:36:17 +0100] "GET /wiki/lib/exe/indexer.php?id=free&1445272577 HTTP/1.1" 200 490 "https://www.firstyearmatters.info/wiki/free" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
146.87.136.145 - - [19/Oct/2015:17:36:17 +0100] "GET /wiki/lib/tpl/dokuwiki/images/toc-bullet.png HTTP/1.1" 200 554 "https://www.firstyearmatters.info/wiki/free" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
146.87.136.145 - - [19/Oct/2015:17:36:17 +0100] "GET /wiki/lib/tpl/dokuwiki/images/toc-arrows.png HTTP/1.1" 200 666 "https://www.firstyearmatters.info/wiki/free" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
146.87.136.145 - - [19/Oct/2015:17:36:17 +0100] "GET /wiki/lib/images/external-link.png HTTP/1.1" 200 858 "https://www.firstyearmatters.info/wiki/free" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
146.87.136.145 - - [19/Oct/2015:17:36:46 +0100] "GET /wiki/start HTTP/1.1" 200 4638 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
146.87.136.145 - - [19/Oct/2015:17:36:46 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick_ltr.css HTTP/1.1" 200 4398 "https://www.firstyearmatters.info/wiki/start" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
146.87.136.145 - - [19/Oct/2015:17:36:46 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jquery.1.4.2.js HTTP/1.1" 200 4398 "https://www.firstyearmatters.info/wiki/start" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
146.87.136.145 - - [19/Oct/2015:17:36:46 +0100] "GET /wiki/_media/wiki:logo.png HTTP/1.1" 200 9595 "https://www.firstyearmatters.info/wiki/start" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
146.87.136.145 - - [19/Oct/2015:17:36:46 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick.min.1.3.js HTTP/1.1" 200 4414 "https://www.firstyearmatters.info/wiki/start" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
146.87.136.145 - - [19/Oct/2015:17:36:46 +0100] "GET /wiki/lib/exe/indexer.php?id=start&1445272606 HTTP/1.1" 200 490 "https://www.firstyearmatters.info/wiki/start" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
146.87.136.145 - - [19/Oct/2015:17:36:49 +0100] "GET /wiki/hosting:start HTTP/1.1" 200 4845 "https://www.firstyearmatters.info/wiki/start" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
146.87.136.145 - - [19/Oct/2015:17:36:50 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick_ltr.css HTTP/1.1" 200 4221 "https://www.firstyearmatters.info/wiki/hosting:start" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
146.87.136.145 - - [19/Oct/2015:17:36:50 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jquery.1.4.2.js HTTP/1.1" 200 4221 "https://www.firstyearmatters.info/wiki/hosting:start" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
146.87.136.145 - - [19/Oct/2015:17:36:50 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick.min.1.3.js HTTP/1.1" 200 4237 "https://www.firstyearmatters.info/wiki/hosting:start" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
146.87.136.145 - - [19/Oct/2015:17:36:50 +0100] "GET /wiki/_media/wiki:logo.png HTTP/1.1" 200 9595 "https://www.firstyearmatters.info/wiki/hosting:start" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
146.87.136.145 - - [19/Oct/2015:17:36:50 +0100] "GET /wiki/lib/exe/indexer.php?id=hosting%3Astart&1445272610 HTTP/1.1" 200 490 "https://www.firstyearmatters.info/wiki/hosting:start" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
146.87.136.145 - - [19/Oct/2015:17:36:55 +0100] "GET /wiki/start HTTP/1.1" 200 4654 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
146.87.136.145 - - [19/Oct/2015:17:36:55 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick_ltr.css HTTP/1.1" 200 4414 "https://www.firstyearmatters.info/wiki/start" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
146.87.136.145 - - [19/Oct/2015:17:36:55 +0100] "GET /wiki/_media/wiki:logo.png HTTP/1.1" 200 9595 "https://www.firstyearmatters.info/wiki/start" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
146.87.136.145 - - [19/Oct/2015:17:36:55 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick.min.1.3.js HTTP/1.1" 200 4430 "https://www.firstyearmatters.info/wiki/start" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
146.87.136.145 - - [19/Oct/2015:17:36:56 +0100] "GET /wiki/lib/exe/indexer.php?id=start&1445272615 HTTP/1.1" 200 490 "https://www.firstyearmatters.info/wiki/start" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
146.87.136.145 - - [19/Oct/2015:17:36:55 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jquery.1.4.2.js HTTP/1.1" 200 4414 "https://www.firstyearmatters.info/wiki/start" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
146.87.136.145 - - [19/Oct/2015:17:36:58 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jquery.1.4.2.js HTTP/1.1" 200 4253 "https://www.firstyearmatters.info/wiki/course_admin:start" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
146.87.136.145 - - [19/Oct/2015:17:36:58 +0100] "GET /wiki/course_admin:start HTTP/1.1" 200 5197 "https://www.firstyearmatters.info/wiki/start" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
146.87.136.145 - - [19/Oct/2015:17:36:58 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick.min.1.3.js HTTP/1.1" 200 4253 "https://www.firstyearmatters.info/wiki/course_admin:start" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
146.87.136.145 - - [19/Oct/2015:17:36:58 +0100] "GET /wiki/_media/wiki:logo.png HTTP/1.1" 200 9595 "https://www.firstyearmatters.info/wiki/course_admin:start" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
146.87.136.145 - - [19/Oct/2015:17:36:58 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick_ltr.css HTTP/1.1" 200 4253 "https://www.firstyearmatters.info/wiki/course_admin:start" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
146.87.136.145 - - [19/Oct/2015:17:36:58 +0100] "GET /wiki/lib/exe/indexer.php?id=course_admin%3Astart&1445272618 HTTP/1.1" 200 490 "https://www.firstyearmatters.info/wiki/course_admin:start" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
146.87.136.145 - - [19/Oct/2015:17:36:58 +0100] "GET /wiki/lib/images/fileicons/pdf.png HTTP/1.1" 200 810 "https://www.firstyearmatters.info/wiki/course_admin:start" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
146.87.136.145 - - [19/Oct/2015:17:37:06 +0100] "GET /wiki/start HTTP/1.1" 200 4654 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
146.87.136.145 - - [19/Oct/2015:17:37:06 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick_ltr.css HTTP/1.1" 200 4446 "https://www.firstyearmatters.info/wiki/start" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
146.87.136.145 - - [19/Oct/2015:17:37:06 +0100] "GET /wiki/_media/wiki:logo.png HTTP/1.1" 200 9595 "https://www.firstyearmatters.info/wiki/start" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
146.87.136.145 - - [19/Oct/2015:17:37:06 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jquery.1.4.2.js HTTP/1.1" 200 4446 "https://www.firstyearmatters.info/wiki/start" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
146.87.136.145 - - [19/Oct/2015:17:37:06 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick.min.1.3.js HTTP/1.1" 200 4446 "https://www.firstyearmatters.info/wiki/start" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
146.87.136.145 - - [19/Oct/2015:17:37:06 +0100] "GET /wiki/lib/exe/indexer.php?id=start&1445272626 HTTP/1.1" 200 490 "https://www.firstyearmatters.info/wiki/start" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
146.87.136.145 - - [19/Oct/2015:17:37:07 +0100] "GET /wiki/doku.php HTTP/1.1" 200 4461 "http://www.firstyearmatters.info/cs/" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
146.87.136.145 - - [19/Oct/2015:17:37:07 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick_ltr.css HTTP/1.1" 200 4253 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
146.87.136.145 - - [19/Oct/2015:17:37:07 +0100] "GET /wiki/_media/wiki:logo.png HTTP/1.1" 200 9595 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
146.87.136.145 - - [19/Oct/2015:17:37:07 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jquery.1.4.2.js HTTP/1.1" 200 4253 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
146.87.136.145 - - [19/Oct/2015:17:37:07 +0100] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick.min.1.3.js HTTP/1.1" 200 4253 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
146.87.136.145 - - [19/Oct/2015:17:37:07 +0100] "GET /wiki/lib/exe/indexer.php?id=start&1445272627 HTTP/1.1" 200 490 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko"
109.175.190.192 - - [19/Oct/2015:19:46:33 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 5187 "http://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.175.190.192 - - [19/Oct/2015:19:46:34 +0100] "GET /page.css HTTP/1.1" 200 626 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.175.190.192 - - [19/Oct/2015:19:46:34 +0100] "GET /favicon.ico HTTP/1.1" 200 3984 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.175.190.192 - - [19/Oct/2015:19:46:46 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1380 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.175.190.192 - - [19/Oct/2015:19:51:12 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1449 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.175.190.192 - - [19/Oct/2015:19:54:23 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 5205 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.175.190.192 - - [19/Oct/2015:19:54:53 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1490 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.175.190.192 - - [19/Oct/2015:19:55:06 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1502 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.175.190.192 - - [19/Oct/2015:19:55:21 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1507 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.175.190.192 - - [19/Oct/2015:19:55:27 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1510 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.175.190.192 - - [19/Oct/2015:19:55:36 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1520 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.175.190.192 - - [19/Oct/2015:19:56:02 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1532 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.175.190.192 - - [19/Oct/2015:19:56:09 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1538 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.175.190.192 - - [19/Oct/2015:19:56:20 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1545 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.175.190.192 - - [19/Oct/2015:19:56:25 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1407 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.175.190.192 - - [19/Oct/2015:19:56:36 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1548 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.175.190.192 - - [19/Oct/2015:19:56:45 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1558 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.175.190.192 - - [19/Oct/2015:19:56:52 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1559 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.175.190.192 - - [19/Oct/2015:19:56:59 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1568 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.175.190.192 - - [19/Oct/2015:19:57:09 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1573 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.175.190.192 - - [19/Oct/2015:19:57:16 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1580 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.175.190.192 - - [19/Oct/2015:19:57:22 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1586 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.175.190.192 - - [19/Oct/2015:19:57:28 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1590 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.175.190.192 - - [19/Oct/2015:19:57:32 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1451 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.175.190.192 - - [19/Oct/2015:19:57:38 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1600 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.175.190.192 - - [19/Oct/2015:19:57:44 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1603 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.175.190.192 - - [19/Oct/2015:19:57:47 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1463 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.175.190.192 - - [19/Oct/2015:19:57:51 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1466 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.175.190.192 - - [19/Oct/2015:19:57:56 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1613 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.175.190.192 - - [19/Oct/2015:19:58:05 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1629 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.175.190.192 - - [19/Oct/2015:19:58:09 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1485 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.175.190.192 - - [19/Oct/2015:19:58:16 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1636 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.175.190.192 - - [19/Oct/2015:19:58:23 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1639 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.175.190.192 - - [19/Oct/2015:19:58:26 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1505 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.175.190.192 - - [19/Oct/2015:19:58:31 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1505 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.175.190.192 - - [19/Oct/2015:19:58:34 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1506 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.175.190.192 - - [19/Oct/2015:19:58:40 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1633 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.175.190.192 - - [19/Oct/2015:19:59:33 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 5416 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.175.190.192 - - [19/Oct/2015:20:00:18 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1714 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.175.190.192 - - [19/Oct/2015:20:00:33 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1716 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.175.190.192 - - [19/Oct/2015:20:00:44 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1687 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.175.190.192 - - [19/Oct/2015:20:02:11 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1757 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.175.190.192 - - [19/Oct/2015:20:02:40 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1750 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.175.190.192 - - [19/Oct/2015:20:03:10 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1774 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.175.190.192 - - [19/Oct/2015:20:04:26 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1779 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.175.190.192 - - [19/Oct/2015:20:05:02 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 5526 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.175.190.192 - - [19/Oct/2015:20:05:13 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1805 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.175.190.192 - - [19/Oct/2015:20:05:51 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1798 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.175.190.192 - - [19/Oct/2015:20:06:20 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1826 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.175.190.192 - - [19/Oct/2015:20:06:24 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1644 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.175.190.192 - - [19/Oct/2015:20:07:31 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1840 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.175.190.192 - - [19/Oct/2015:20:08:19 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1848 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.175.190.192 - - [19/Oct/2015:20:09:02 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1857 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.175.190.192 - - [19/Oct/2015:20:09:07 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1840 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.175.190.192 - - [19/Oct/2015:20:09:15 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1850 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
86.30.240.10 - - [19/Oct/2015:20:30:51 +0100] "GET / HTTP/1.1" 302 4268 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
86.30.240.10 - - [19/Oct/2015:20:30:51 +0100] "GET /cs HTTP/1.1" 301 656 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
86.30.240.10 - - [19/Oct/2015:20:30:51 +0100] "GET /cs/ HTTP/1.1" 200 3159 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
86.30.240.10 - - [19/Oct/2015:20:30:51 +0100] "GET /default.css HTTP/1.1" 200 1576 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
86.30.240.10 - - [19/Oct/2015:20:30:51 +0100] "GET /fuof.jpg HTTP/1.1" 200 9910 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
86.30.240.10 - - [19/Oct/2015:20:30:51 +0100] "GET /fym.css HTTP/1.1" 200 1727 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
86.30.240.10 - - [19/Oct/2015:20:30:51 +0100] "GET /ie6.css HTTP/1.1" 200 1730 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
86.30.240.10 - - [19/Oct/2015:20:30:51 +0100] "GET /print.css HTTP/1.1" 200 1196 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
86.30.240.10 - - [19/Oct/2015:20:30:51 +0100] "GET /highcontrast.css HTTP/1.1" 200 1675 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
86.30.240.10 - - [19/Oct/2015:20:30:51 +0100] "GET /largetext.css HTTP/1.1" 200 1623 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
86.30.240.10 - - [19/Oct/2015:20:30:51 +0100] "GET /favicon.ico HTTP/1.1" 200 3984 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
86.30.240.10 - - [19/Oct/2015:20:30:56 +0100] "GET /portal/login HTTP/1.1" 200 1526 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
86.30.240.10 - - [19/Oct/2015:20:30:57 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
86.30.240.10 - - [19/Oct/2015:20:30:58 +0100] "POST /portal/login_check HTTP/1.1" 302 1107 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
86.30.240.10 - - [19/Oct/2015:20:30:59 +0100] "GET /portal/ HTTP/1.1" 302 891 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
86.30.240.10 - - [19/Oct/2015:20:30:59 +0100] "GET /portal/dashboard HTTP/1.1" 200 1402 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
86.30.240.10 - - [19/Oct/2015:20:30:59 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
82.40.58.133 - - [19/Oct/2015:21:25:37 +0100] "GET / HTTP/1.1" 302 4280 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1"
82.40.58.133 - - [19/Oct/2015:21:25:38 +0100] "GET /cs HTTP/1.1" 301 668 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1"
82.40.58.133 - - [19/Oct/2015:21:25:38 +0100] "GET /cs/ HTTP/1.1" 200 3159 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1"
82.40.58.133 - - [19/Oct/2015:21:25:38 +0100] "GET /largetext.css HTTP/1.1" 200 1485 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1"
82.40.58.133 - - [19/Oct/2015:21:25:38 +0100] "GET /print.css HTTP/1.1" 200 1196 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1"
82.40.58.133 - - [19/Oct/2015:21:25:38 +0100] "GET /switcher.js HTTP/1.1" 200 1272 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1"
82.40.58.133 - - [19/Oct/2015:21:25:38 +0100] "GET /ie6.css HTTP/1.1" 200 1730 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1"
82.40.58.133 - - [19/Oct/2015:21:25:38 +0100] "GET /highcontrast.css HTTP/1.1" 200 1675 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1"
82.40.58.133 - - [19/Oct/2015:21:25:51 +0100] "GET / HTTP/1.1" 302 768 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1"
82.40.58.133 - - [19/Oct/2015:21:25:51 +0100] "GET /cs HTTP/1.1" 301 668 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1"
82.40.58.133 - - [19/Oct/2015:21:25:51 +0100] "GET /cs/ HTTP/1.1" 200 3159 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1"
82.40.58.133 - - [19/Oct/2015:21:25:53 +0100] "GET / HTTP/1.1" 302 630 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1"
82.40.58.133 - - [19/Oct/2015:21:25:53 +0100] "GET /cs HTTP/1.1" 301 668 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1"
82.40.58.133 - - [19/Oct/2015:21:25:53 +0100] "GET /cs/ HTTP/1.1" 200 3159 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1"
82.40.58.133 - - [19/Oct/2015:21:26:25 +0100] "GET /cs/students.html HTTP/1.1" 200 3575 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1"
86.30.240.10 - - [19/Oct/2015:22:00:05 +0100] "GET / HTTP/1.1" 302 4268 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
86.30.240.10 - - [19/Oct/2015:22:00:05 +0100] "GET /cs HTTP/1.1" 301 656 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
86.30.240.10 - - [19/Oct/2015:22:00:05 +0100] "GET /cs/ HTTP/1.1" 200 3159 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
146.90.251.95 - - [19/Oct/2015:22:21:16 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 5085 "http://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.90.251.95 - - [19/Oct/2015:22:21:16 +0100] "GET /page.css HTTP/1.1" 200 626 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.90.251.95 - - [19/Oct/2015:22:21:16 +0100] "GET /favicon.ico HTTP/1.1" 200 3984 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.90.251.95 - - [19/Oct/2015:22:22:11 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1407 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
208.80.155.255 - - [20/Oct/2015:01:53:39 +0100] "GET /queen/albums.html HTTP/1.1" 404 5722 "-" "German Wikipedia Broken Weblinks Bot; contact: gifti@tools.wmflabs.org"
66.249.79.205 - - [20/Oct/2015:02:32:23 +0100] "GET /robots.txt HTTP/1.1" 200 5766 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"

View File

@@ -0,0 +1,180 @@
62.212.230.9 - - [31/Oct/2015:11:31:49 +0000] "HEAD /a2billing/customer/iridium_threed.php HTTP/1.1" 404 5651 "-" "python-requests/2.8.1"
86.187.168.36 - - [31/Oct/2015:11:50:22 +0000] "GET /wiki/doku.php?id=hosting:mysql_hosting HTTP/1.1" 200 7914 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:36.0) Gecko/20100101 Firefox/36.0"
86.187.168.36 - - [31/Oct/2015:11:50:25 +0000] "GET /wiki/lib/exe/css.php?t=dokuwiki&tseed=2cb5b229a761de98d43761336d42f70b HTTP/1.1" 200 27528 "https://www.firstyearmatters.info/wiki/doku.php?id=hosting:mysql_hosting" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:36.0) Gecko/20100101 Firefox/36.0"
86.187.168.36 - - [31/Oct/2015:11:50:25 +0000] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick_ltr.css HTTP/1.1" 200 4070 "https://www.firstyearmatters.info/wiki/doku.php?id=hosting:mysql_hosting" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:36.0) Gecko/20100101 Firefox/36.0"
86.187.168.36 - - [31/Oct/2015:11:50:26 +0000] "GET /wiki/lib/tpl/dokuwiki/images/button-donate.gif HTTP/1.1" 200 528 "https://www.firstyearmatters.info/wiki/doku.php?id=hosting:mysql_hosting" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:36.0) Gecko/20100101 Firefox/36.0"
86.187.168.36 - - [31/Oct/2015:11:50:25 +0000] "GET /wiki/lib/plugins/issuetracker/datepick/jquery.1.4.2.js HTTP/1.1" 200 4075 "https://www.firstyearmatters.info/wiki/doku.php?id=hosting:mysql_hosting" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:36.0) Gecko/20100101 Firefox/36.0"
86.187.168.36 - - [31/Oct/2015:11:50:25 +0000] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick.min.1.3.js HTTP/1.1" 200 4082 "https://www.firstyearmatters.info/wiki/doku.php?id=hosting:mysql_hosting" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:36.0) Gecko/20100101 Firefox/36.0"
86.187.168.36 - - [31/Oct/2015:11:50:25 +0000] "GET /wiki/_media/wiki:logo.png HTTP/1.1" 403 753 "https://www.firstyearmatters.info/wiki/doku.php?id=hosting:mysql_hosting" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:36.0) Gecko/20100101 Firefox/36.0"
86.187.168.36 - - [31/Oct/2015:11:50:26 +0000] "GET /wiki/lib/tpl/dokuwiki/images/button-php.gif HTTP/1.1" 200 548 "https://www.firstyearmatters.info/wiki/doku.php?id=hosting:mysql_hosting" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:36.0) Gecko/20100101 Firefox/36.0"
86.187.168.36 - - [31/Oct/2015:11:50:26 +0000] "GET /wiki/lib/tpl/dokuwiki/images/button-html5.png HTTP/1.1" 200 647 "https://www.firstyearmatters.info/wiki/doku.php?id=hosting:mysql_hosting" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:36.0) Gecko/20100101 Firefox/36.0"
86.187.168.36 - - [31/Oct/2015:11:50:26 +0000] "GET /wiki/lib/tpl/dokuwiki/images/button-dw.png HTTP/1.1" 200 740 "https://www.firstyearmatters.info/wiki/doku.php?id=hosting:mysql_hosting" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:36.0) Gecko/20100101 Firefox/36.0"
86.187.168.36 - - [31/Oct/2015:11:50:26 +0000] "GET /wiki/lib/tpl/dokuwiki/images/button-css.png HTTP/1.1" 200 639 "https://www.firstyearmatters.info/wiki/doku.php?id=hosting:mysql_hosting" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:36.0) Gecko/20100101 Firefox/36.0"
86.187.168.36 - - [31/Oct/2015:11:50:26 +0000] "GET /wiki/lib/exe/indexer.php?id=hosting%3Amysql_hosting&1446292224 HTTP/1.1" 200 606 "https://www.firstyearmatters.info/wiki/doku.php?id=hosting:mysql_hosting" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:36.0) Gecko/20100101 Firefox/36.0"
86.187.168.36 - - [31/Oct/2015:11:50:25 +0000] "GET /wiki/lib/exe/js.php?t=dokuwiki&tseed=2cb5b229a761de98d43761336d42f70b HTTP/1.1" 200 142933 "https://www.firstyearmatters.info/wiki/doku.php?id=hosting:mysql_hosting" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:36.0) Gecko/20100101 Firefox/36.0"
86.187.168.36 - - [31/Oct/2015:11:50:27 +0000] "GET /wiki/lib/tpl/dokuwiki/images/page-gradient.png HTTP/1.1" 200 550 "https://www.firstyearmatters.info/wiki/lib/exe/css.php?t=dokuwiki&tseed=2cb5b229a761de98d43761336d42f70b" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:36.0) Gecko/20100101 Firefox/36.0"
86.187.168.36 - - [31/Oct/2015:11:50:28 +0000] "GET /wiki/doku.php?id=hosting:mysql_hosting HTTP/1.1" 200 4055 "https://www.firstyearmatters.info/wiki/doku.php?id=hosting:mysql_hosting" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:36.0) Gecko/20100101 Firefox/36.0"
86.187.168.36 - - [31/Oct/2015:11:50:28 +0000] "GET /wiki/lib/tpl/dokuwiki/images/usertools.png HTTP/1.1" 200 1771 "https://www.firstyearmatters.info/wiki/lib/exe/css.php?t=dokuwiki&tseed=2cb5b229a761de98d43761336d42f70b" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:36.0) Gecko/20100101 Firefox/36.0"
86.187.168.36 - - [31/Oct/2015:11:50:28 +0000] "GET /wiki/lib/tpl/dokuwiki/images/pagetools-sprite.png?v=2 HTTP/1.1" 200 8103 "https://www.firstyearmatters.info/wiki/lib/exe/css.php?t=dokuwiki&tseed=2cb5b229a761de98d43761336d42f70b" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:36.0) Gecko/20100101 Firefox/36.0"
86.187.168.36 - - [31/Oct/2015:11:50:28 +0000] "GET /wiki/lib/tpl/dokuwiki/images/search.png HTTP/1.1" 200 649 "https://www.firstyearmatters.info/wiki/lib/exe/css.php?t=dokuwiki&tseed=2cb5b229a761de98d43761336d42f70b" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:36.0) Gecko/20100101 Firefox/36.0"
86.187.168.36 - - [31/Oct/2015:11:50:28 +0000] "GET /wiki/_media/wiki:logo.png HTTP/1.1" 403 615 "https://www.firstyearmatters.info/wiki/doku.php?id=hosting:mysql_hosting" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:36.0) Gecko/20100101 Firefox/36.0"
82.4.219.138 - - [31/Oct/2015:12:29:48 +0000] "GET /portal HTTP/1.1" 301 4509 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2540.0 Safari/537.36"
82.4.219.138 - - [31/Oct/2015:12:29:48 +0000] "GET /portal/ HTTP/1.1" 302 936 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2540.0 Safari/537.36"
82.4.219.138 - - [31/Oct/2015:12:29:50 +0000] "GET /portal/login HTTP/1.1" 200 1335 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2540.0 Safari/537.36"
82.4.219.138 - - [31/Oct/2015:12:29:51 +0000] "GET /portal/js/42be59c.js HTTP/1.1" 200 45077 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2540.0 Safari/537.36"
82.4.219.138 - - [31/Oct/2015:12:29:51 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2540.0 Safari/537.36"
82.4.219.138 - - [31/Oct/2015:12:29:51 +0000] "GET /favicon.ico HTTP/1.1" 200 3984 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2540.0 Safari/537.36"
82.4.219.138 - - [31/Oct/2015:12:29:59 +0000] "POST /portal/login_check HTTP/1.1" 302 1107 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2540.0 Safari/537.36"
82.4.219.138 - - [31/Oct/2015:12:30:00 +0000] "GET /portal/ HTTP/1.1" 302 753 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2540.0 Safari/537.36"
82.4.219.138 - - [31/Oct/2015:12:30:00 +0000] "GET /portal/dashboard HTTP/1.1" 200 1242 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2540.0 Safari/537.36"
82.4.219.138 - - [31/Oct/2015:12:30:00 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2540.0 Safari/537.36"
82.4.219.138 - - [31/Oct/2015:12:30:23 +0000] "GET /portal/linux/register HTTP/1.1" 200 1629 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2540.0 Safari/537.36"
82.4.219.138 - - [31/Oct/2015:12:30:23 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2540.0 Safari/537.36"
82.4.219.138 - - [31/Oct/2015:12:30:34 +0000] "GET /portal/linux/register HTTP/1.1" 200 1629 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2540.0 Safari/537.36"
82.4.219.138 - - [31/Oct/2015:12:30:35 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2540.0 Safari/537.36"
82.4.219.138 - - [31/Oct/2015:12:30:47 +0000] "POST /portal/linux/register HTTP/1.1" 200 1673 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2540.0 Safari/537.36"
82.4.219.138 - - [31/Oct/2015:12:30:47 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2540.0 Safari/537.36"
82.4.219.138 - - [31/Oct/2015:12:31:15 +0000] "POST /portal/linux/register HTTP/1.1" 200 1656 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2540.0 Safari/537.36"
82.4.219.138 - - [31/Oct/2015:12:31:15 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2540.0 Safari/537.36"
82.4.219.138 - - [31/Oct/2015:12:31:44 +0000] "POST /portal/linux/register HTTP/1.1" 200 1656 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2540.0 Safari/537.36"
82.4.219.138 - - [31/Oct/2015:12:31:44 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2540.0 Safari/537.36"
82.4.219.138 - - [31/Oct/2015:12:31:58 +0000] "POST /portal/linux/register HTTP/1.1" 200 1679 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2540.0 Safari/537.36"
82.4.219.138 - - [31/Oct/2015:12:31:58 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2540.0 Safari/537.36"
82.4.219.138 - - [31/Oct/2015:12:32:13 +0000] "POST /portal/linux/register HTTP/1.1" 200 1679 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2540.0 Safari/537.36"
82.4.219.138 - - [31/Oct/2015:12:32:13 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2540.0 Safari/537.36"
82.4.219.138 - - [31/Oct/2015:12:32:25 +0000] "POST /portal/linux/register HTTP/1.1" 200 1679 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2540.0 Safari/537.36"
82.4.219.138 - - [31/Oct/2015:12:32:26 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2540.0 Safari/537.36"
82.4.219.138 - - [31/Oct/2015:12:32:37 +0000] "POST /portal/linux/register HTTP/1.1" 200 1679 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2540.0 Safari/537.36"
82.4.219.138 - - [31/Oct/2015:12:32:37 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2540.0 Safari/537.36"
82.4.219.138 - - [31/Oct/2015:12:32:51 +0000] "POST /portal/linux/register HTTP/1.1" 200 1673 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2540.0 Safari/537.36"
82.4.219.138 - - [31/Oct/2015:12:32:51 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2540.0 Safari/537.36"
82.4.219.138 - - [31/Oct/2015:12:33:24 +0000] "POST /portal/linux/register HTTP/1.1" 200 1659 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2540.0 Safari/537.36"
82.4.219.138 - - [31/Oct/2015:12:33:24 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2540.0 Safari/537.36"
82.4.219.138 - - [31/Oct/2015:12:33:35 +0000] "POST /portal/linux/register HTTP/1.1" 302 891 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2540.0 Safari/537.36"
82.4.219.138 - - [31/Oct/2015:12:34:25 +0000] "GET /portal/dashboard HTTP/1.1" 200 1535 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2540.0 Safari/537.36"
82.4.219.138 - - [31/Oct/2015:12:34:26 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2540.0 Safari/537.36"
82.4.219.138 - - [31/Oct/2015:12:37:44 +0000] "GET /chrishughes HTTP/1.1" 404 4416 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2540.0 Safari/537.36"
82.4.219.138 - - [31/Oct/2015:12:37:51 +0000] "GET /chris HTTP/1.1" 404 4410 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2540.0 Safari/537.36"
82.4.219.138 - - [31/Oct/2015:12:37:57 +0000] "GET / HTTP/1.1" 302 4463 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2540.0 Safari/537.36"
82.4.219.138 - - [31/Oct/2015:12:37:57 +0000] "GET /cs HTTP/1.1" 301 656 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2540.0 Safari/537.36"
82.4.219.138 - - [31/Oct/2015:12:37:57 +0000] "GET /cs/ HTTP/1.1" 200 2913 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2540.0 Safari/537.36"
82.4.219.138 - - [31/Oct/2015:12:37:57 +0000] "GET /default.css HTTP/1.1" 200 1576 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2540.0 Safari/537.36"
82.4.219.138 - - [31/Oct/2015:12:37:57 +0000] "GET /switcher.js HTTP/1.1" 200 1134 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2540.0 Safari/537.36"
82.4.219.138 - - [31/Oct/2015:12:37:57 +0000] "GET /fym.css HTTP/1.1" 200 1589 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2540.0 Safari/537.36"
82.4.219.138 - - [31/Oct/2015:12:37:57 +0000] "GET /highcontrast.css HTTP/1.1" 200 1675 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2540.0 Safari/537.36"
82.4.219.138 - - [31/Oct/2015:12:37:57 +0000] "GET /largetext.css HTTP/1.1" 200 1623 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2540.0 Safari/537.36"
82.4.219.138 - - [31/Oct/2015:12:37:57 +0000] "GET /ie6.css HTTP/1.1" 200 1592 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2540.0 Safari/537.36"
82.4.219.138 - - [31/Oct/2015:12:37:57 +0000] "GET /uos.jpg HTTP/1.1" 200 6127 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2540.0 Safari/537.36"
82.4.219.138 - - [31/Oct/2015:12:37:57 +0000] "GET /print.css HTTP/1.1" 200 1058 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2540.0 Safari/537.36"
82.4.219.138 - - [31/Oct/2015:12:37:57 +0000] "GET /fuof.jpg HTTP/1.1" 200 10048 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2540.0 Safari/537.36"
82.4.219.138 - - [31/Oct/2015:12:38:02 +0000] "GET /cs/lecturers.html HTTP/1.1" 200 3749 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2540.0 Safari/537.36"
82.4.219.138 - - [31/Oct/2015:12:38:13 +0000] "GET /cs/coursereps.html HTTP/1.1" 200 3135 "https://firstyearmatters.info/cs/lecturers.html" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2540.0 Safari/537.36"
82.4.219.138 - - [31/Oct/2015:12:38:26 +0000] "GET /cs/students.html HTTP/1.1" 200 3642 "https://firstyearmatters.info/cs/coursereps.html" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2540.0 Safari/537.36"
95.145.204.143 - - [31/Oct/2015:15:04:42 +0000] "GET /portal HTTP/1.1" 301 4509 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
95.145.204.143 - - [31/Oct/2015:15:04:42 +0000] "GET /portal/ HTTP/1.1" 302 936 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
95.145.204.143 - - [31/Oct/2015:15:04:42 +0000] "GET /portal/login HTTP/1.1" 200 1335 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
95.145.204.143 - - [31/Oct/2015:15:04:42 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
95.145.204.143 - - [31/Oct/2015:15:04:42 +0000] "GET /portal/js/42be59c.js HTTP/1.1" 200 45077 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
95.145.204.143 - - [31/Oct/2015:15:04:43 +0000] "GET /favicon.ico HTTP/1.1" 200 3984 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
95.145.204.143 - - [31/Oct/2015:15:04:52 +0000] "POST /portal/login_check HTTP/1.1" 302 1016 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
95.145.204.143 - - [31/Oct/2015:15:04:53 +0000] "GET /portal/login HTTP/1.1" 200 1983 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
95.145.204.143 - - [31/Oct/2015:15:04:53 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
95.145.204.143 - - [31/Oct/2015:15:05:09 +0000] "POST /portal/login_check HTTP/1.1" 302 1107 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
95.145.204.143 - - [31/Oct/2015:15:05:10 +0000] "GET /portal/ HTTP/1.1" 302 753 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
95.145.204.143 - - [31/Oct/2015:15:05:10 +0000] "GET /portal/dashboard HTTP/1.1" 200 1398 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
95.145.204.143 - - [31/Oct/2015:15:05:10 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
95.145.204.143 - - [31/Oct/2015:15:05:25 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1062 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
82.28.185.198 - - [31/Oct/2015:17:27:18 +0000] "GET /wiki/lib/exe/ajax.php?call=suggestions&q=RTr HTTP/1.1" 200 4235 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [31/Oct/2015:17:27:18 +0000] "GET /wiki/lib/exe/ajax.php?call=suggestions&q=R HTTP/1.1" 200 904 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [31/Oct/2015:17:27:19 +0000] "GET /wiki/lib/exe/ajax.php?call=suggestions&q=T HTTP/1.1" 200 909 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [31/Oct/2015:17:27:19 +0000] "GET /wiki/lib/exe/ajax.php?call=suggestions&q=Te HTTP/1.1" 200 840 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [31/Oct/2015:17:27:19 +0000] "GET /wiki/lib/exe/ajax.php?call=suggestions&q=T HTTP/1.1" 200 691 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [31/Oct/2015:17:27:19 +0000] "GET /wiki/lib/exe/ajax.php?call=suggestions&q=Tr HTTP/1.1" 200 643 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [31/Oct/2015:17:27:20 +0000] "GET /wiki/lib/exe/ajax.php?call=suggestions&q=Tra HTTP/1.1" 200 505 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [31/Oct/2015:17:27:20 +0000] "GET /wiki/lib/exe/ajax.php?call=suggestions&q=Trans HTTP/1.1" 200 643 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [31/Oct/2015:17:27:20 +0000] "GET /wiki/lib/exe/ajax.php?call=suggestions&q=TransP HTTP/1.1" 200 505 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [31/Oct/2015:17:27:20 +0000] "GET /wiki/lib/exe/ajax.php?call=suggestions&q=TransPe HTTP/1.1" 200 505 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [31/Oct/2015:17:27:22 +0000] "GET /wiki/lib/exe/ajax.php?call=suggestions&q=TransPenning HTTP/1.1" 200 643 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [31/Oct/2015:17:27:22 +0000] "GET /wiki/lib/exe/ajax.php?call=suggestions&q=TransPennin HTTP/1.1" 200 643 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [31/Oct/2015:17:27:23 +0000] "GET /wiki/lib/exe/ajax.php?call=suggestions&q=TransPennine HTTP/1.1" 200 643 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [31/Oct/2015:17:27:29 +0000] "GET /wiki/doku.php?do=search&id=TransPennine HTTP/1.1" 200 7329 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [31/Oct/2015:17:27:29 +0000] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick_ltr.css HTTP/1.1" 200 3992 "https://www.firstyearmatters.info/wiki/doku.php?do=search&id=TransPennine" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [31/Oct/2015:17:27:29 +0000] "GET /wiki/lib/exe/css.php?t=dokuwiki&tseed=2cb5b229a761de98d43761336d42f70b HTTP/1.1" 200 27666 "https://www.firstyearmatters.info/wiki/doku.php?do=search&id=TransPennine" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [31/Oct/2015:17:27:29 +0000] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick.min.1.3.js HTTP/1.1" 200 4000 "https://www.firstyearmatters.info/wiki/doku.php?do=search&id=TransPennine" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [31/Oct/2015:17:27:29 +0000] "GET /wiki/lib/plugins/issuetracker/datepick/jquery.1.4.2.js HTTP/1.1" 200 3996 "https://www.firstyearmatters.info/wiki/doku.php?do=search&id=TransPennine" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [31/Oct/2015:17:27:29 +0000] "GET /wiki/lib/exe/js.php?t=dokuwiki&tseed=2cb5b229a761de98d43761336d42f70b HTTP/1.1" 200 142933 "https://www.firstyearmatters.info/wiki/doku.php?do=search&id=TransPennine" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [31/Oct/2015:17:27:29 +0000] "GET /wiki/lib/tpl/dokuwiki/images/button-html5.png HTTP/1.1" 200 647 "https://www.firstyearmatters.info/wiki/doku.php?do=search&id=TransPennine" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [31/Oct/2015:17:27:29 +0000] "GET /wiki/lib/tpl/dokuwiki/images/button-dw.png HTTP/1.1" 200 740 "https://www.firstyearmatters.info/wiki/doku.php?do=search&id=TransPennine" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [31/Oct/2015:17:27:29 +0000] "GET /wiki/_media/wiki:logo.png HTTP/1.1" 403 535 "https://www.firstyearmatters.info/wiki/doku.php?do=search&id=TransPennine" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [31/Oct/2015:17:27:29 +0000] "GET /wiki/lib/images/loading.gif HTTP/1.1" 200 679 "https://www.firstyearmatters.info/wiki/doku.php?do=search&id=TransPennine" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [31/Oct/2015:17:27:29 +0000] "GET /wiki/lib/exe/indexer.php?id=transpennine&1446312449 HTTP/1.1" 200 526 "https://www.firstyearmatters.info/wiki/doku.php?do=search&id=TransPennine" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [31/Oct/2015:17:27:29 +0000] "GET /wiki/lib/tpl/dokuwiki/images/pagetools-sprite.png?v=2 HTTP/1.1" 200 8103 "https://www.firstyearmatters.info/wiki/doku.php?do=search&id=TransPennine" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [31/Oct/2015:17:27:30 +0000] "GET /wiki/lib/exe/opensearch.php HTTP/1.1" 200 1022 "-" "com.apple.Safari.SearchHelper/11601.2.3 CFNetwork/760.1.2 Darwin/15.0.0 (x86_64)"
82.28.185.198 - - [31/Oct/2015:17:27:41 +0000] "GET /wiki/lib/exe/ajax.php?call=suggestions&q=Tr HTTP/1.1" 200 643 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [31/Oct/2015:17:27:42 +0000] "GET /wiki/lib/exe/ajax.php?call=suggestions&q=Tra HTTP/1.1" 200 505 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [31/Oct/2015:17:27:43 +0000] "GET /wiki/lib/exe/ajax.php?call=suggestions&q=TransP HTTP/1.1" 200 643 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [31/Oct/2015:17:27:45 +0000] "GET /wiki/lib/exe/ajax.php?call=suggestions&q=TransPenning HTTP/1.1" 200 643 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [31/Oct/2015:17:27:45 +0000] "GET /wiki/lib/exe/ajax.php?call=suggestions&q=TransPennin HTTP/1.1" 200 643 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [31/Oct/2015:17:27:45 +0000] "GET /wiki/lib/exe/ajax.php?call=suggestions&q=TransPennine HTTP/1.1" 200 643 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [31/Oct/2015:17:27:46 +0000] "GET /wiki/lib/exe/ajax.php?call=suggestions&q=TransPennine+Expr HTTP/1.1" 200 643 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [31/Oct/2015:17:27:46 +0000] "GET /wiki/lib/exe/ajax.php?call=suggestions&q=TransPennine+Expre HTTP/1.1" 200 643 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [31/Oct/2015:17:27:46 +0000] "GET /wiki/lib/exe/ajax.php?call=suggestions&q=TransPennine+Expres HTTP/1.1" 200 643 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [31/Oct/2015:17:27:46 +0000] "GET /wiki/lib/exe/ajax.php?call=suggestions&q=TransPennine+Express HTTP/1.1" 200 643 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
91.200.12.99 - - [31/Oct/2015:17:36:54 +0000] "GET /cgi-bin/forum/YaBB.pl?action=register HTTP/1.0" 200 24439 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?action=register" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.101 Safari/537.36"
86.168.119.56 - - [31/Oct/2015:18:49:04 +0000] "GET /wiki/doku.php?id=linux:start HTTP/1.1" 200 7886 "-" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.168.119.56 - - [31/Oct/2015:18:49:05 +0000] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick_ltr.css HTTP/1.1" 200 7821 "https://www.firstyearmatters.info/wiki/doku.php?id=linux:start" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.168.119.56 - - [31/Oct/2015:18:49:05 +0000] "GET /wiki/lib/exe/css.php?t=dokuwiki&tseed=2cb5b229a761de98d43761336d42f70b HTTP/1.1" 200 27528 "https://www.firstyearmatters.info/wiki/doku.php?id=linux:start" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.168.119.56 - - [31/Oct/2015:18:49:05 +0000] "GET /wiki/lib/plugins/issuetracker/datepick/jquery.1.4.2.js HTTP/1.1" 200 3962 "https://www.firstyearmatters.info/wiki/doku.php?id=linux:start" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.168.119.56 - - [31/Oct/2015:18:49:05 +0000] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick.min.1.3.js HTTP/1.1" 200 3971 "https://www.firstyearmatters.info/wiki/doku.php?id=linux:start" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.168.119.56 - - [31/Oct/2015:18:49:05 +0000] "GET /wiki/_media/wiki:logo.png HTTP/1.1" 403 673 "https://www.firstyearmatters.info/wiki/doku.php?id=linux:start" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.168.119.56 - - [31/Oct/2015:18:49:05 +0000] "GET /wiki/lib/tpl/dokuwiki/images/button-donate.gif HTTP/1.1" 200 528 "https://www.firstyearmatters.info/wiki/doku.php?id=linux:start" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.168.119.56 - - [31/Oct/2015:18:49:05 +0000] "GET /wiki/lib/exe/js.php?t=dokuwiki&tseed=2cb5b229a761de98d43761336d42f70b HTTP/1.1" 200 142795 "https://www.firstyearmatters.info/wiki/doku.php?id=linux:start" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.168.119.56 - - [31/Oct/2015:18:49:05 +0000] "GET /wiki/lib/tpl/dokuwiki/images/button-php.gif HTTP/1.1" 200 548 "https://www.firstyearmatters.info/wiki/doku.php?id=linux:start" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.168.119.56 - - [31/Oct/2015:18:49:05 +0000] "GET /wiki/lib/tpl/dokuwiki/images/button-css.png HTTP/1.1" 200 639 "https://www.firstyearmatters.info/wiki/doku.php?id=linux:start" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.168.119.56 - - [31/Oct/2015:18:49:05 +0000] "GET /wiki/lib/tpl/dokuwiki/images/button-dw.png HTTP/1.1" 200 878 "https://www.firstyearmatters.info/wiki/doku.php?id=linux:start" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.168.119.56 - - [31/Oct/2015:18:49:05 +0000] "GET /wiki/lib/tpl/dokuwiki/images/button-html5.png HTTP/1.1" 200 647 "https://www.firstyearmatters.info/wiki/doku.php?id=linux:start" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.168.119.56 - - [31/Oct/2015:18:49:05 +0000] "GET /wiki/lib/exe/indexer.php?id=linux%3Astart&1446317345 HTTP/1.1" 200 663 "https://www.firstyearmatters.info/wiki/doku.php?id=linux:start" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.168.119.56 - - [31/Oct/2015:18:49:05 +0000] "GET /wiki/lib/tpl/dokuwiki/images/page-gradient.png HTTP/1.1" 200 550 "https://www.firstyearmatters.info/wiki/lib/exe/css.php?t=dokuwiki&tseed=2cb5b229a761de98d43761336d42f70b" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.168.119.56 - - [31/Oct/2015:18:49:05 +0000] "GET /wiki/lib/tpl/dokuwiki/images/usertools.png HTTP/1.1" 200 1771 "https://www.firstyearmatters.info/wiki/lib/exe/css.php?t=dokuwiki&tseed=2cb5b229a761de98d43761336d42f70b" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.168.119.56 - - [31/Oct/2015:18:49:05 +0000] "GET /wiki/lib/tpl/dokuwiki/images/search.png HTTP/1.1" 200 649 "https://www.firstyearmatters.info/wiki/lib/exe/css.php?t=dokuwiki&tseed=2cb5b229a761de98d43761336d42f70b" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.168.119.56 - - [31/Oct/2015:18:49:05 +0000] "GET /wiki/lib/tpl/dokuwiki/images/pagetools-sprite.png?v=2 HTTP/1.1" 200 8103 "https://www.firstyearmatters.info/wiki/lib/exe/css.php?t=dokuwiki&tseed=2cb5b229a761de98d43761336d42f70b" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.168.119.56 - - [31/Oct/2015:18:49:05 +0000] "GET /wiki/_media/wiki:logo.png HTTP/1.1" 403 535 "https://www.firstyearmatters.info/wiki/doku.php?id=linux:start" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.168.119.56 - - [31/Oct/2015:18:49:05 +0000] "GET /wiki/lib/tpl/dokuwiki/images/favicon.ico HTTP/1.1" 200 7753 "https://www.firstyearmatters.info/wiki/doku.php?id=linux:start" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.168.119.56 - - [31/Oct/2015:18:49:17 +0000] "POST /wiki/doku.php?id=linux:start HTTP/1.1" 302 699 "https://www.firstyearmatters.info/wiki/doku.php?id=linux:start" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.168.119.56 - - [31/Oct/2015:18:49:17 +0000] "GET /wiki/_media/wiki:logo.png HTTP/1.1" 200 9453 "https://www.firstyearmatters.info/wiki/linux:start" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.168.119.56 - - [31/Oct/2015:18:49:17 +0000] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick.min.1.3.js HTTP/1.1" 200 3863 "https://www.firstyearmatters.info/wiki/linux:start" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.168.119.56 - - [31/Oct/2015:18:49:17 +0000] "GET /wiki/lib/plugins/issuetracker/datepick/jquery.1.4.2.js HTTP/1.1" 200 3856 "https://www.firstyearmatters.info/wiki/linux:start" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.168.119.56 - - [31/Oct/2015:18:49:17 +0000] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick_ltr.css HTTP/1.1" 200 3854 "https://www.firstyearmatters.info/wiki/linux:start" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.168.119.56 - - [31/Oct/2015:18:49:17 +0000] "GET /wiki/linux:start HTTP/1.1" 200 4526 "https://www.firstyearmatters.info/wiki/doku.php?id=linux:start" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.168.119.56 - - [31/Oct/2015:18:49:18 +0000] "GET /wiki/lib/exe/indexer.php?id=linux%3Astart&1446317357 HTTP/1.1" 200 389 "https://www.firstyearmatters.info/wiki/linux:start" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.168.119.56 - - [31/Oct/2015:18:49:18 +0000] "GET /wiki/lib/images/external-link.png HTTP/1.1" 200 773 "https://www.firstyearmatters.info/wiki/lib/exe/css.php?t=dokuwiki&tseed=2cb5b229a761de98d43761336d42f70b" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.168.119.56 - - [31/Oct/2015:18:49:18 +0000] "GET /wiki/lib/tpl/dokuwiki/images/toc-bullet.png HTTP/1.1" 200 454 "https://www.firstyearmatters.info/wiki/lib/exe/css.php?t=dokuwiki&tseed=2cb5b229a761de98d43761336d42f70b" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.168.119.56 - - [31/Oct/2015:18:49:18 +0000] "GET /wiki/lib/tpl/dokuwiki/images/toc-arrows.png HTTP/1.1" 200 566 "https://www.firstyearmatters.info/wiki/lib/exe/css.php?t=dokuwiki&tseed=2cb5b229a761de98d43761336d42f70b" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.168.119.56 - - [31/Oct/2015:18:49:35 +0000] "GET /wiki/linux:x2go HTTP/1.1" 200 4564 "https://www.firstyearmatters.info/wiki/linux:start" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.168.119.56 - - [31/Oct/2015:18:49:35 +0000] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick_ltr.css HTTP/1.1" 200 3734 "https://www.firstyearmatters.info/wiki/linux:x2go" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.168.119.56 - - [31/Oct/2015:18:49:35 +0000] "GET /wiki/lib/plugins/issuetracker/datepick/jquery.1.4.2.js HTTP/1.1" 200 3738 "https://www.firstyearmatters.info/wiki/linux:x2go" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.168.119.56 - - [31/Oct/2015:18:49:35 +0000] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick.min.1.3.js HTTP/1.1" 200 3883 "https://www.firstyearmatters.info/wiki/linux:x2go" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.168.119.56 - - [31/Oct/2015:18:49:35 +0000] "GET /wiki/_media/wiki:logo.png HTTP/1.1" 304 418 "https://www.firstyearmatters.info/wiki/linux:x2go" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.168.119.56 - - [31/Oct/2015:18:49:35 +0000] "GET /wiki/_media/linux:screen_shot_2013-07-03_at_09.48.24.png HTTP/1.1" 200 8215 "https://www.firstyearmatters.info/wiki/linux:x2go" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.168.119.56 - - [31/Oct/2015:18:49:35 +0000] "GET /wiki/lib/exe/indexer.php?id=linux%3Ax2go&1446317375 HTTP/1.1" 200 389 "https://www.firstyearmatters.info/wiki/linux:x2go" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.168.119.56 - - [31/Oct/2015:18:50:07 +0000] "GET /wiki/linux:x2go HTTP/1.1" 200 4563 "https://www.firstyearmatters.info/wiki/linux:start" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.168.119.56 - - [31/Oct/2015:18:50:08 +0000] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick_ltr.css HTTP/1.1" 200 3734 "https://www.firstyearmatters.info/wiki/linux:x2go" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.168.119.56 - - [31/Oct/2015:18:50:08 +0000] "GET /wiki/lib/plugins/issuetracker/datepick/jquery.1.4.2.js HTTP/1.1" 200 3876 "https://www.firstyearmatters.info/wiki/linux:x2go" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.168.119.56 - - [31/Oct/2015:18:50:08 +0000] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick.min.1.3.js HTTP/1.1" 200 3883 "https://www.firstyearmatters.info/wiki/linux:x2go" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.168.119.56 - - [31/Oct/2015:18:50:08 +0000] "GET /wiki/lib/exe/indexer.php?id=linux%3Ax2go&1446317408 HTTP/1.1" 200 526 "https://www.firstyearmatters.info/wiki/linux:x2go" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
91.200.12.99 - - [31/Oct/2015:20:21:08 +0000] "POST /YaBB.pl?action=login2 HTTP/1.0" 404 11478 "http://fym.cse.salford.ac.uk/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.1; rv:37.0) Gecko/20100101 Firefox/37.0"
91.200.12.99 - - [31/Oct/2015:20:21:08 +0000] "POST /https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?action=login2 HTTP/1.0" 404 11526 "http://fym.cse.salford.ac.uk/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.1; rv:37.0) Gecko/20100101 Firefox/37.0"
91.200.12.99 - - [31/Oct/2015:20:21:09 +0000] "GET /cgi-bin/forum/YaBB.pl?action=viewprofile;username=313B31727677420 HTTP/1.0" 404 24417 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?action=viewprofile;username=313B31727677420" "Mozilla/5.0 (Windows NT 6.1; rv:37.0) Gecko/20100101 Firefox/37.0"
91.200.12.99 - - [31/Oct/2015:20:21:09 +0000] "GET /forum/YaBB.pl?action=viewprofile;username=313B31727677420 HTTP/1.0" 302 6107 "http://www.firstyearmatters.info/forum/YaBB.pl?action=viewprofile;username=313B31727677420" "Mozilla/5.0 (Windows NT 6.1; rv:37.0) Gecko/20100101 Firefox/37.0"
91.200.12.99 - - [31/Oct/2015:20:21:10 +0000] "GET /cgi-bin/forum/YaBB.pl?board=general HTTP/1.0" 200 78751 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?board=general" "Mozilla/5.0 (Windows NT 6.1; rv:37.0) Gecko/20100101 Firefox/37.0"
91.200.12.99 - - [31/Oct/2015:20:21:12 +0000] "GET /cgi-bin/forum/YaBB.pl?virboard=general;num=1316302398 HTTP/1.0" 200 36730 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?virboard=general;num=1316302398" "Mozilla/5.0 (Windows NT 6.1; rv:37.0) Gecko/20100101 Firefox/37.0"
91.200.12.99 - - [31/Oct/2015:20:21:12 +0000] "GET /cgi-bin/forum/YaBB.pl?virboard=general;num=1316419866 HTTP/1.0" 200 34791 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?virboard=general;num=1316419866" "Mozilla/5.0 (Windows NT 6.1; rv:37.0) Gecko/20100101 Firefox/37.0"
91.200.12.99 - - [31/Oct/2015:20:21:13 +0000] "GET /cgi-bin/forum/YaBB.pl?board=general/60 HTTP/1.0" 200 69734 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?board=general/60" "Mozilla/5.0 (Windows NT 6.1; rv:37.0) Gecko/20100101 Firefox/37.0"
91.200.12.99 - - [31/Oct/2015:20:21:14 +0000] "GET /cgi-bin/forum/YaBB.pl?board=general/30 HTTP/1.0" 200 77880 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?board=general/30" "Mozilla/5.0 (Windows NT 6.1; rv:37.0) Gecko/20100101 Firefox/37.0"
91.200.12.99 - - [31/Oct/2015:20:21:16 +0000] "GET /cgi-bin/forum/YaBB.pl?board=general/0 HTTP/1.0" 200 78751 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?board=general/0" "Mozilla/5.0 (Windows NT 6.1; rv:37.0) Gecko/20100101 Firefox/37.0"
91.200.12.99 - - [31/Oct/2015:20:21:17 +0000] "GET /wiki/doku.php HTTP/1.0" 200 21910 "http://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 6.1; rv:37.0) Gecko/20100101 Firefox/37.0"
91.200.12.99 - - [31/Oct/2015:20:21:18 +0000] "GET /wiki/index.php HTTP/1.0" 200 21830 "http://www.firstyearmatters.info/index.php" "Mozilla/5.0 (Windows NT 6.1; rv:37.0) Gecko/20100101 Firefox/37.0"
91.200.12.99 - - [31/Oct/2015:20:21:18 +0000] "GET /wiki/index.php HTTP/1.0" 200 21830 "http://www.firstyearmatters.info/index.php" "Mozilla/5.0 (Windows NT 6.1; rv:37.0) Gecko/20100101 Firefox/37.0"
79.137.225.218 - - [31/Oct/2015:21:08:09 +0000] "HEAD /a2billing/customer/iridium_threed.php HTTP/1.1" 404 5651 "-" "python-requests/2.7.0 CPython/3.2.3 Linux/2.6.18-404.el5"
184.105.247.196 - - [01/Nov/2015:00:54:19 +0000] "GET / HTTP/1.1" 302 5780 "-" "-"
66.249.69.24 - - [01/Nov/2015:01:17:31 +0000] "GET /robots.txt HTTP/1.1" 200 5766 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"

View File

@@ -0,0 +1,100 @@
216.218.206.66 - - [30/Oct/2015:07:21:02 +0000] "GET / HTTP/1.1" 302 5780 "-" "-"
86.134.109.149 - - [30/Oct/2015:15:01:56 +0000] "GET /portal/ HTTP/1.1" 302 4781 "-" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.134.109.149 - - [30/Oct/2015:15:01:59 +0000] "GET /portal/login HTTP/1.1" 200 1330 "-" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.134.109.149 - - [30/Oct/2015:15:02:00 +0000] "GET /portal/js/42be59c.js HTTP/1.1" 200 45077 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.134.109.149 - - [30/Oct/2015:15:02:00 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.134.109.149 - - [30/Oct/2015:15:08:45 +0000] "POST /portal/login_check HTTP/1.1" 302 4814 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.134.109.149 - - [30/Oct/2015:15:08:46 +0000] "GET /portal/ HTTP/1.1" 302 753 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.134.109.149 - - [30/Oct/2015:15:08:46 +0000] "GET /portal/dashboard HTTP/1.1" 200 1534 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.134.109.149 - - [30/Oct/2015:15:08:46 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
82.28.185.198 - - [30/Oct/2015:20:50:02 +0000] "GET /yabbfiles/Templates/Forum/default.css HTTP/1.1" 200 6152 "http://firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:20:50:02 +0000] "GET /yabbfiles/Templates/Forum/default/fymlogo.gif HTTP/1.1" 200 3255 "http://firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:20:50:02 +0000] "GET /yabbfiles/Templates/Forum/default/tableft211.png HTTP/1.1" 200 961 "http://firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:20:50:02 +0000] "GET /yabbfiles/Templates/Forum/default/tabsep211.png HTTP/1.1" 200 562 "http://firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:20:50:02 +0000] "GET /yabbfiles/Templates/Forum/default/rss.png HTTP/1.1" 200 1987 "http://firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:20:50:02 +0000] "GET /yabbfiles/Templates/Forum/default/tab211.png HTTP/1.1" 200 465 "http://firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:20:50:02 +0000] "GET /yabbfiles/ubbc.js HTTP/1.1" 200 2358 "http://firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:20:50:02 +0000] "GET /yabbfiles/Templates/Forum/default/tabfill.gif HTTP/1.1" 200 2098 "http://firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:20:50:02 +0000] "GET /yabbfiles/Templates/Forum/default/menutop.png HTTP/1.1" 200 604 "http://firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:20:50:02 +0000] "GET /yabbfiles/Templates/Forum/default/searchbg211.png HTTP/1.1" 200 481 "http://firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:20:50:02 +0000] "GET /yabbfiles/Templates/Forum/default/tab_selected211.png HTTP/1.1" 200 476 "http://firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:20:50:02 +0000] "GET /yabbfiles/Templates/Forum/default/tabright211.png HTTP/1.1" 200 1290 "http://firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:20:50:02 +0000] "GET /yabbfiles/Templates/Forum/default/search.gif HTTP/1.1" 200 717 "http://firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:20:50:02 +0000] "GET /yabbfiles/Templates/Forum/default/boards.gif HTTP/1.1" 200 2583 "http://firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:20:50:02 +0000] "GET /yabbfiles/Templates/Forum/default/lastpost.gif HTTP/1.1" 200 655 "http://firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:20:50:02 +0000] "GET /yabbfiles/Templates/Forum/default/login.gif HTTP/1.1" 200 1779 "http://firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:20:50:02 +0000] "GET /yabbfiles/Templates/Forum/default/info.gif HTTP/1.1" 200 2657 "http://firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:20:50:02 +0000] "GET /yabbfiles/Templates/Forum/default/online.gif HTTP/1.1" 200 2877 "http://firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:20:50:02 +0000] "GET /yabbfiles/Templates/Forum/default/valid-rss.png HTTP/1.1" 200 1866 "http://firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:20:50:03 +0000] "GET /yabbfiles/Templates/Forum/default/xhtml.gif HTTP/1.1" 200 562 "http://firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:20:50:03 +0000] "GET /yabbfiles/Templates/Forum/default/css.gif HTTP/1.1" 200 544 "http://firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:20:50:03 +0000] "GET /yabbfiles/Templates/Forum/default/catbg.png HTTP/1.1" 200 467 "http://firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:20:50:03 +0000] "GET /yabbfiles/Templates/Forum/default/grad_bottom.png HTTP/1.1" 200 448 "http://firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:20:50:03 +0000] "GET /yabbfiles/Templates/Forum/default/perl.gif HTTP/1.1" 200 1454 "http://firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:20:50:03 +0000] "GET /yabbfiles/Templates/Forum/default/sf.gif HTTP/1.1" 200 740 "http://firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:20:50:11 +0000] "GET /cgi-bin/forum/YaBB.pl?board=general HTTP/1.1" 200 7978 "http://firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:20:50:12 +0000] "GET /uos.jpg HTTP/1.1" 200 6127 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?board=general" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:20:50:12 +0000] "GET /yabbfiles/Templates/Forum/default/locked_moved.gif HTTP/1.1" 200 730 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?board=general" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:20:50:12 +0000] "GET /yabbfiles/Templates/Forum/default/index_togl.gif HTTP/1.1" 200 1408 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?board=general" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:20:50:12 +0000] "GET /yabbfiles/Templates/Forum/default/exclamation.gif HTTP/1.1" 200 876 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?board=general" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:20:50:12 +0000] "GET /yabbfiles/Templates/Forum/default/announcement.gif HTTP/1.1" 200 725 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?board=general" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:20:50:12 +0000] "GET /yabbfiles/Templates/Forum/default/sticky.gif HTTP/1.1" 200 841 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?board=general" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:20:50:12 +0000] "GET /yabbfiles/Templates/Forum/default/xx.gif HTTP/1.1" 200 857 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?board=general" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:20:50:12 +0000] "GET /yabbfiles/Templates/Forum/default/thread.gif HTTP/1.1" 200 693 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?board=general" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:20:50:12 +0000] "GET /yabbfiles/Templates/Forum/default/paperclip.gif HTTP/1.1" 200 1217 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?board=general" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:20:50:12 +0000] "GET /yabbfiles/Templates/Forum/default/poll_open.gif HTTP/1.1" 200 497 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?board=general" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:20:50:12 +0000] "GET /yabbfiles/Templates/Forum/default/locked.gif HTTP/1.1" 200 724 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?board=general" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:20:50:12 +0000] "GET /yabbfiles/Templates/Forum/default/question.gif HTTP/1.1" 200 588 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?board=general" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:20:50:12 +0000] "GET /yabbfiles/Templates/Forum/default/hotthread.gif HTTP/1.1" 200 725 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?board=general" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:20:50:12 +0000] "GET /yabbfiles/Templates/Forum/default/stickylock.gif HTTP/1.1" 200 733 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?board=general" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:20:50:12 +0000] "GET /yabbfiles/Templates/Forum/default/veryhotthread.gif HTTP/1.1" 200 725 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?board=general" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:20:50:13 +0000] "GET /favicon.ico HTTP/1.1" 200 4122 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?board=general" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:20:50:27 +0000] "GET /cgi-bin/forum/YaBB.pl?num=1422968959/0 HTTP/1.1" 200 5430 "http://firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:20:50:27 +0000] "GET /yabbfiles/Buttons/English/sendtopic.png HTTP/1.1" 200 1302 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?num=1422968959/0" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:20:50:27 +0000] "GET /yabbfiles/Templates/Forum/default/starsilver.gif HTTP/1.1" 200 1354 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?num=1422968959/0" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:20:50:27 +0000] "GET /yabbfiles/Buttons/English/login.png HTTP/1.1" 200 1375 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?num=1422968959/0" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:20:50:28 +0000] "GET /yabbfiles/Buttons/English/print.png HTTP/1.1" 200 1263 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?num=1422968959/0" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:20:50:28 +0000] "GET /yabbfiles/Templates/Forum/default/ip.gif HTTP/1.1" 200 623 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?num=1422968959/0" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:20:50:40 +0000] "GET /cgi-bin/forum/YaBB.pl?board=modmat HTTP/1.1" 200 7659 "http://firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:20:50:41 +0000] "GET /yabbfiles/Templates/Forum/default/poll_lock.gif HTTP/1.1" 200 586 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?board=modmat" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:20:50:41 +0000] "GET /yabbfiles/Templates/Forum/default/cheesy.gif HTTP/1.1" 200 1291 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?board=modmat" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:20:50:49 +0000] "GET /cgi-bin/forum/YaBB.pl?num=1424965150 HTTP/1.1" 200 6391 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?board=modmat" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:20:50:50 +0000] "GET /yabbfiles/Templates/Forum/default/starmod.gif HTTP/1.1" 200 904 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?num=1424965150" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:20:50:51 +0000] "GET /yabbfiles/Templates/Forum/default/rolleyes.gif HTTP/1.1" 200 2171 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?num=1424965150" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:20:51:34 +0000] "GET /cgi-bin/forum/YaBB.pl?num=1423047819 HTTP/1.1" 200 6194 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?board=modmat" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:20:51:34 +0000] "GET /yabbfiles/Templates/Forum/default/staradmin.gif HTTP/1.1" 200 903 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?num=1423047819" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:20:52:45 +0000] "GET /cgi-bin/forum/YaBB.pl?num=1423010008 HTTP/1.1" 200 5785 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?board=modmat" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:20:53:32 +0000] "GET /cgi-bin/forum/YaBB.pl?num=1419246803 HTTP/1.1" 200 7121 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?board=modmat" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:20:55:16 +0000] "GET /cgi-bin/forum/YaBB.pl?num=1394461217 HTTP/1.1" 200 9666 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?board=modmat" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:20:55:16 +0000] "GET /yabbfiles/Templates/Forum/default/poll_left.gif HTTP/1.1" 200 455 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?num=1394461217" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:20:55:17 +0000] "GET /yabbfiles/Templates/Forum/default/poll_right.gif HTTP/1.1" 200 593 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?num=1394461217" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:20:55:17 +0000] "GET /yabbfiles/Templates/Forum/default/poll_middle.gif HTTP/1.1" 200 580 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?num=1394461217" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:20:55:48 +0000] "GET /cgi-bin/forum/YaBB.pl?num=1390606205 HTTP/1.1" 200 5942 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?board=modmat" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:20:55:49 +0000] "GET /yabbfiles/Templates/Forum/default/starblue.gif HTTP/1.1" 200 529 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?num=1390606205" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:20:55:50 +0000] "GET /yabbfiles/Templates/Forum/default/huh.gif HTTP/1.1" 200 1221 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?num=1390606205" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:20:56:37 +0000] "GET /cgi-bin/forum/YaBB.pl?board=general HTTP/1.1" 200 7964 "http://firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:20:57:04 +0000] "GET /cgi-bin/forum/YaBB.pl?num=1412708724 HTTP/1.1" 200 5748 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?board=general" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:20:57:05 +0000] "GET /yabbfiles/Templates/Forum/default/smiley.gif HTTP/1.1" 200 1150 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?num=1412708724" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:20:57:31 +0000] "GET /cgi-bin/forum/YaBB.pl?num=1413744591 HTTP/1.1" 200 6034 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?board=general" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:20:58:10 +0000] "GET /cgi-bin/forum/YaBB.pl?num=1412338581 HTTP/1.1" 200 7753 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?board=general" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:20:58:11 +0000] "GET /yabbfiles/Templates/Forum/default/wink.gif HTTP/1.1" 200 1286 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?num=1412338581" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:21:02:55 +0000] "GET /wiki/doku.php HTTP/1.1" 200 7660 "http://firstyearmatters.info/cs/usefullinks.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:21:02:56 +0000] "GET /wiki/lib/exe/css.php?t=dokuwiki&tseed=2cb5b229a761de98d43761336d42f70b HTTP/1.1" 200 27528 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:21:02:56 +0000] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick.min.1.3.js HTTP/1.1" 200 4109 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:21:02:56 +0000] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick_ltr.css HTTP/1.1" 200 4099 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:21:02:56 +0000] "GET /wiki/lib/plugins/issuetracker/datepick/jquery.1.4.2.js HTTP/1.1" 200 4101 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:21:02:56 +0000] "GET /wiki/lib/tpl/dokuwiki/images/page-gradient.png HTTP/1.1" 200 550 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:21:02:56 +0000] "GET /wiki/lib/exe/js.php?t=dokuwiki&tseed=2cb5b229a761de98d43761336d42f70b HTTP/1.1" 200 142933 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:21:02:58 +0000] "GET /wiki/lib/tpl/dokuwiki/images/button-donate.gif HTTP/1.1" 200 528 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:21:02:58 +0000] "GET /wiki/lib/tpl/dokuwiki/images/button-php.gif HTTP/1.1" 200 548 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:21:02:58 +0000] "GET /wiki/lib/tpl/dokuwiki/images/button-html5.png HTTP/1.1" 200 647 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:21:02:58 +0000] "GET /wiki/lib/tpl/dokuwiki/images/button-dw.png HTTP/1.1" 200 878 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:21:02:58 +0000] "GET /wiki/_media/wiki:logo.png HTTP/1.1" 403 535 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:21:02:58 +0000] "GET /wiki/lib/exe/indexer.php?id=start&1446238976 HTTP/1.1" 200 526 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:21:02:58 +0000] "GET /wiki/lib/tpl/dokuwiki/images/button-css.png HTTP/1.1" 200 639 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:21:02:58 +0000] "GET /wiki/lib/tpl/dokuwiki/images/usertools.png HTTP/1.1" 200 1771 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:21:02:58 +0000] "GET /wiki/lib/tpl/dokuwiki/images/pagetools-sprite.png?v=2 HTTP/1.1" 200 8103 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:21:02:58 +0000] "GET /wiki/lib/tpl/dokuwiki/images/search.png HTTP/1.1" 200 787 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:21:02:58 +0000] "GET /wiki/lib/tpl/dokuwiki/images/favicon.ico HTTP/1.1" 200 7891 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
82.28.185.198 - - [30/Oct/2015:21:02:58 +0000] "GET /wiki/lib/exe/opensearch.php HTTP/1.1" 200 4534 "-" "com.apple.Safari.SearchHelper/11601.2.3 CFNetwork/760.1.2 Darwin/15.0.0 (x86_64)"
216.218.206.68 - - [31/Oct/2015:03:34:04 +0000] "GET / HTTP/1.1" 302 5780 "-" "-"

View File

@@ -0,0 +1,213 @@
216.218.206.68 - - [29/Oct/2015:08:03:55 +0000] "GET / HTTP/1.1" 302 5780 "-" "-"
10.99.180.97 - - [29/Oct/2015:08:49:00 +0000] "GET /staff/ HTTP/1.1" 200 4947 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
10.99.180.97 - - [29/Oct/2015:08:49:06 +0000] "GET /lists/register.html HTTP/1.1" 200 1977 "https://www.firstyearmatters.info/staff/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
10.99.61.49 - - [29/Oct/2015:09:03:54 +0000] "GET /portal/dashboard HTTP/1.1" 302 4781 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.61.49 - - [29/Oct/2015:09:03:56 +0000] "GET /portal/login HTTP/1.1" 200 1334 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.61.49 - - [29/Oct/2015:09:03:57 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.61.49 - - [29/Oct/2015:09:03:58 +0000] "GET /favicon.ico HTTP/1.1" 200 3984 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.61.49 - - [29/Oct/2015:09:04:04 +0000] "POST /portal/login_check HTTP/1.1" 302 4814 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.61.49 - - [29/Oct/2015:09:04:05 +0000] "GET /portal/ HTTP/1.1" 302 753 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.61.49 - - [29/Oct/2015:09:04:05 +0000] "GET /portal/dashboard HTTP/1.1" 200 1389 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.61.49 - - [29/Oct/2015:09:04:05 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.61.49 - - [29/Oct/2015:09:05:03 +0000] "POST /portal/login_check HTTP/1.1" 302 1107 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.61.49 - - [29/Oct/2015:09:05:03 +0000] "GET /portal/ HTTP/1.1" 302 753 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.61.49 - - [29/Oct/2015:09:05:03 +0000] "GET /portal/dashboard HTTP/1.1" 200 1389 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.61.49 - - [29/Oct/2015:09:05:03 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
10.99.61.49 - - [29/Oct/2015:09:05:41 +0000] "-" 408 137 "-" "-"
10.99.61.49 - - [29/Oct/2015:09:05:41 +0000] "-" 408 137 "-" "-"
10.99.61.49 - - [29/Oct/2015:09:05:41 +0000] "-" 408 137 "-" "-"
10.99.60.6 - - [29/Oct/2015:09:07:01 +0000] "GET /portal/ HTTP/1.1" 302 4781 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
10.99.60.6 - - [29/Oct/2015:09:07:01 +0000] "GET /portal/login HTTP/1.1" 200 5179 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
10.99.60.6 - - [29/Oct/2015:09:07:01 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
10.99.60.6 - - [29/Oct/2015:09:07:01 +0000] "GET /favicon.ico HTTP/1.1" 200 3984 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
10.99.60.6 - - [29/Oct/2015:09:07:13 +0000] "POST /portal/login_check HTTP/1.1" 302 1107 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
10.99.60.6 - - [29/Oct/2015:09:07:13 +0000] "GET /portal/ HTTP/1.1" 302 753 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
10.99.60.6 - - [29/Oct/2015:09:07:13 +0000] "GET /portal/dashboard HTTP/1.1" 200 1410 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
10.99.60.6 - - [29/Oct/2015:09:07:13 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
10.99.60.6 - - [29/Oct/2015:09:07:17 +0000] "GET /portal/linux/passwd/365 HTTP/1.1" 200 1451 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
10.99.60.6 - - [29/Oct/2015:09:07:17 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/linux/passwd/365" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
10.99.60.6 - - [29/Oct/2015:09:07:34 +0000] "-" 408 137 "-" "-"
10.99.60.6 - - [29/Oct/2015:09:07:48 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1062 "https://firstyearmatters.info/portal/linux/passwd/365" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
10.99.60.6 - - [29/Oct/2015:09:07:36 +0000] "POST /portal/linux/passwd/365 HTTP/1.1" 200 1640 "https://firstyearmatters.info/portal/linux/passwd/365" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
146.87.16.75 - - [29/Oct/2015:09:43:12 +0000] "GET /portal/ HTTP/1.1" 302 4781 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.75 - - [29/Oct/2015:09:43:12 +0000] "GET /portal/login HTTP/1.1" 200 5177 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.75 - - [29/Oct/2015:09:43:12 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.75 - - [29/Oct/2015:09:43:12 +0000] "GET /portal/js/42be59c.js HTTP/1.1" 200 41232 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.75 - - [29/Oct/2015:09:43:13 +0000] "GET /favicon.ico HTTP/1.1" 200 3984 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.75 - - [29/Oct/2015:09:43:27 +0000] "POST /portal/login_check HTTP/1.1" 302 1016 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.75 - - [29/Oct/2015:09:43:27 +0000] "GET /portal/login HTTP/1.1" 200 2119 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.75 - - [29/Oct/2015:09:43:27 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.75 - - [29/Oct/2015:09:43:36 +0000] "POST /portal/login_check HTTP/1.1" 302 1016 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.75 - - [29/Oct/2015:09:43:36 +0000] "GET /portal/login HTTP/1.1" 200 2119 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.75 - - [29/Oct/2015:09:43:36 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.75 - - [29/Oct/2015:09:43:41 +0000] "POST /portal/login_check HTTP/1.1" 302 1107 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.75 - - [29/Oct/2015:09:43:42 +0000] "GET /portal/ HTTP/1.1" 302 891 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.75 - - [29/Oct/2015:09:43:42 +0000] "GET /portal/dashboard HTTP/1.1" 200 1398 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.75 - - [29/Oct/2015:09:43:42 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.75 - - [29/Oct/2015:09:43:46 +0000] "GET /portal/linux/passwd/359 HTTP/1.1" 200 1438 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.75 - - [29/Oct/2015:09:43:46 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/linux/passwd/359" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.75 - - [29/Oct/2015:09:44:12 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1062 "https://firstyearmatters.info/portal/linux/passwd/359" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.75 - - [29/Oct/2015:09:43:59 +0000] "POST /portal/linux/passwd/359 HTTP/1.1" 200 1626 "https://firstyearmatters.info/portal/linux/passwd/359" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.75 - - [29/Oct/2015:09:44:16 +0000] "GET /portal/dashboard HTTP/1.1" 200 1398 "https://firstyearmatters.info/portal/linux/passwd/359" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.75 - - [29/Oct/2015:09:44:16 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.65 - - [29/Oct/2015:11:03:17 +0000] "GET /portal HTTP/1.1" 301 4509 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.65 - - [29/Oct/2015:11:03:17 +0000] "GET /portal/ HTTP/1.1" 302 936 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.65 - - [29/Oct/2015:11:03:17 +0000] "GET /portal/login HTTP/1.1" 200 5180 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.65 - - [29/Oct/2015:11:03:17 +0000] "GET /portal/js/42be59c.js HTTP/1.1" 200 41232 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.65 - - [29/Oct/2015:11:03:17 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.65 - - [29/Oct/2015:11:03:17 +0000] "GET /favicon.ico HTTP/1.1" 200 3984 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.65 - - [29/Oct/2015:11:03:28 +0000] "POST /portal/login_check HTTP/1.1" 302 1107 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.65 - - [29/Oct/2015:11:03:28 +0000] "GET /portal/ HTTP/1.1" 302 753 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.65 - - [29/Oct/2015:11:03:28 +0000] "GET /portal/dashboard HTTP/1.1" 200 1538 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.65 - - [29/Oct/2015:11:03:28 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.65 - - [29/Oct/2015:11:03:37 +0000] "GET /portal/dashboard HTTP/1.1" 200 1538 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.65 - - [29/Oct/2015:11:03:37 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.65 - - [29/Oct/2015:11:04:05 +0000] "GET /portal/dashboard HTTP/1.1" 200 1538 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.65 - - [29/Oct/2015:11:04:05 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.85 - - [29/Oct/2015:11:23:24 +0000] "GET /portal/login HTTP/1.1" 200 5237 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.85 - - [29/Oct/2015:11:23:24 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.85 - - [29/Oct/2015:11:24:19 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1062 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
86.8.115.114 - - [29/Oct/2015:12:11:44 +0000] "GET /portal/dashboard HTTP/1.1" 302 4781 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
86.8.115.114 - - [29/Oct/2015:12:11:44 +0000] "GET /portal/login HTTP/1.1" 200 1332 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
86.8.115.114 - - [29/Oct/2015:12:11:44 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
86.8.115.114 - - [29/Oct/2015:12:11:45 +0000] "POST /portal/login_check HTTP/1.1" 302 4814 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
86.8.115.114 - - [29/Oct/2015:12:11:46 +0000] "GET /portal/ HTTP/1.1" 302 753 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
86.8.115.114 - - [29/Oct/2015:12:11:46 +0000] "GET /portal/dashboard HTTP/1.1" 200 1389 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
86.8.115.114 - - [29/Oct/2015:12:11:46 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
86.8.115.114 - - [29/Oct/2015:12:12:07 +0000] "-" 408 137 "-" "-"
146.87.49.155 - - [29/Oct/2015:13:57:46 +0000] "GET /portal/ HTTP/1.1" 302 4781 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.49.155 - - [29/Oct/2015:13:57:47 +0000] "GET /portal/login HTTP/1.1" 200 1471 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.49.155 - - [29/Oct/2015:13:57:47 +0000] "GET /portal/js/42be59c.js HTTP/1.1" 200 41370 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.49.155 - - [29/Oct/2015:13:57:47 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.49.155 - - [29/Oct/2015:13:57:47 +0000] "GET /favicon.ico HTTP/1.1" 200 3984 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.49.155 - - [29/Oct/2015:13:57:53 +0000] "POST /portal/login_check HTTP/1.1" 302 1107 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.49.155 - - [29/Oct/2015:13:57:53 +0000] "GET /portal/ HTTP/1.1" 302 891 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.49.155 - - [29/Oct/2015:13:57:53 +0000] "GET /portal/dashboard HTTP/1.1" 200 1534 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.49.155 - - [29/Oct/2015:13:57:53 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.136.145 - - [29/Oct/2015:14:27:17 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 6107 "http://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)"
146.87.136.145 - - [29/Oct/2015:14:27:19 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 2468 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)"
146.87.136.145 - - [29/Oct/2015:14:46:58 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 4966 "http://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)"
146.87.16.155 - - [29/Oct/2015:14:56:54 +0000] "GET /portal HTTP/1.1" 301 4467 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
146.87.16.155 - - [29/Oct/2015:14:56:54 +0000] "GET /portal/ HTTP/1.1" 302 1124 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
146.87.16.155 - - [29/Oct/2015:14:56:55 +0000] "GET /portal/login HTTP/1.1" 200 1770 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
146.87.16.155 - - [29/Oct/2015:14:56:55 +0000] "GET /portal/js/42be59c.js HTTP/1.1" 200 41902 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
146.87.16.155 - - [29/Oct/2015:14:56:55 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1124 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
146.87.16.155 - - [29/Oct/2015:14:56:55 +0000] "GET /favicon.ico HTTP/1.1" 200 4283 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
146.87.16.155 - - [29/Oct/2015:14:57:03 +0000] "POST /portal/login_check HTTP/1.1" 302 1365 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
146.87.16.155 - - [29/Oct/2015:14:57:03 +0000] "GET /portal/ HTTP/1.1" 302 1141 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
146.87.16.155 - - [29/Oct/2015:14:57:03 +0000] "GET /portal/dashboard HTTP/1.1" 200 1818 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
146.87.16.155 - - [29/Oct/2015:14:57:03 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1124 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
146.87.16.155 - - [29/Oct/2015:14:57:05 +0000] "GET /portal/linux/passwd/388 HTTP/1.1" 200 1673 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
146.87.16.155 - - [29/Oct/2015:14:57:05 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1317 "https://firstyearmatters.info/portal/linux/passwd/388" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
146.87.16.155 - - [29/Oct/2015:14:57:31 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1317 "https://firstyearmatters.info/portal/linux/passwd/388" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
146.87.16.155 - - [29/Oct/2015:14:57:17 +0000] "POST /portal/linux/passwd/388 HTTP/1.1" 200 1914 "https://firstyearmatters.info/portal/linux/passwd/388" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
146.87.16.155 - - [29/Oct/2015:15:00:42 +0000] "GET /portal/ HTTP/1.1" 302 1141 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
146.87.16.155 - - [29/Oct/2015:15:00:42 +0000] "GET /portal/dashboard HTTP/1.1" 200 1818 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
146.87.16.155 - - [29/Oct/2015:15:00:42 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1124 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
146.87.16.155 - - [29/Oct/2015:15:00:43 +0000] "GET /portal/linux/passwd/388 HTTP/1.1" 200 1673 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
146.87.16.155 - - [29/Oct/2015:15:00:43 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1317 "https://firstyearmatters.info/portal/linux/passwd/388" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
146.87.16.155 - - [29/Oct/2015:15:00:58 +0000] "POST /portal/linux/passwd/388 HTTP/1.1" 200 1882 "https://firstyearmatters.info/portal/linux/passwd/388" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
146.87.16.155 - - [29/Oct/2015:15:00:58 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1124 "https://firstyearmatters.info/portal/linux/passwd/388" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
146.87.16.155 - - [29/Oct/2015:15:01:21 +0000] "POST /portal/linux/passwd/388 HTTP/1.1" 200 1882 "https://firstyearmatters.info/portal/linux/passwd/388" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
146.87.16.155 - - [29/Oct/2015:15:01:21 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1124 "https://firstyearmatters.info/portal/linux/passwd/388" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
146.87.16.155 - - [29/Oct/2015:15:01:34 +0000] "POST /portal/linux/passwd/388 HTTP/1.1" 200 1882 "https://firstyearmatters.info/portal/linux/passwd/388" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
146.87.16.155 - - [29/Oct/2015:15:01:34 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1124 "https://firstyearmatters.info/portal/linux/passwd/388" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
146.87.16.155 - - [29/Oct/2015:15:01:54 +0000] "POST /portal/linux/passwd/388 HTTP/1.1" 200 5394 "https://firstyearmatters.info/portal/linux/passwd/388" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
146.87.16.155 - - [29/Oct/2015:15:01:54 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1317 "https://firstyearmatters.info/portal/linux/passwd/388" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
146.87.16.155 - - [29/Oct/2015:15:02:39 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1317 "https://firstyearmatters.info/portal/linux/passwd/388" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
146.87.16.155 - - [29/Oct/2015:15:02:26 +0000] "POST /portal/linux/passwd/388 HTTP/1.1" 200 1914 "https://firstyearmatters.info/portal/linux/passwd/388" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3"
146.87.16.65 - - [29/Oct/2015:15:21:16 +0000] "GET /portal/ HTTP/1.1" 302 4781 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.65 - - [29/Oct/2015:15:21:17 +0000] "GET /portal/login HTTP/1.1" 200 1470 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.65 - - [29/Oct/2015:15:21:17 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.65 - - [29/Oct/2015:15:21:17 +0000] "GET /portal/js/42be59c.js HTTP/1.1" 200 41370 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.65 - - [29/Oct/2015:15:21:17 +0000] "GET /favicon.ico HTTP/1.1" 200 3984 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.65 - - [29/Oct/2015:15:21:23 +0000] "POST /portal/login_check HTTP/1.1" 302 1107 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.65 - - [29/Oct/2015:15:21:24 +0000] "GET /portal/ HTTP/1.1" 302 753 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.65 - - [29/Oct/2015:15:21:24 +0000] "GET /portal/dashboard HTTP/1.1" 200 1538 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.65 - - [29/Oct/2015:15:21:24 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.77 - - [29/Oct/2015:15:21:25 +0000] "GET /portal/ HTTP/1.1" 302 4781 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.77 - - [29/Oct/2015:15:21:25 +0000] "GET /portal/login HTTP/1.1" 200 5175 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.77 - - [29/Oct/2015:15:21:25 +0000] "GET /portal/js/42be59c.js HTTP/1.1" 200 41232 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.77 - - [29/Oct/2015:15:21:25 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.77 - - [29/Oct/2015:15:21:25 +0000] "GET /favicon.ico HTTP/1.1" 200 3984 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.65 - - [29/Oct/2015:15:21:27 +0000] "GET /portal/linux/passwd/387 HTTP/1.1" 200 1441 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.65 - - [29/Oct/2015:15:21:27 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/linux/passwd/387" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.77 - - [29/Oct/2015:15:21:33 +0000] "POST /portal/login_check HTTP/1.1" 302 1016 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.77 - - [29/Oct/2015:15:21:33 +0000] "GET /portal/login HTTP/1.1" 200 2119 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.77 - - [29/Oct/2015:15:21:33 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.77 - - [29/Oct/2015:15:21:36 +0000] "GET /portal/dashboard HTTP/1.1" 302 878 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.77 - - [29/Oct/2015:15:21:36 +0000] "GET /portal/login HTTP/1.1" 200 1476 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.77 - - [29/Oct/2015:15:21:36 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.65 - - [29/Oct/2015:15:21:52 +0000] "POST /portal/linux/passwd/387 HTTP/1.1" 200 1620 "https://firstyearmatters.info/portal/linux/passwd/387" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.65 - - [29/Oct/2015:15:21:52 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/linux/passwd/387" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.77 - - [29/Oct/2015:15:21:53 +0000] "POST /portal/login_check HTTP/1.1" 302 1107 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.77 - - [29/Oct/2015:15:21:53 +0000] "GET /portal/ HTTP/1.1" 302 891 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.77 - - [29/Oct/2015:15:21:54 +0000] "GET /portal/dashboard HTTP/1.1" 200 1405 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.153 - - [29/Oct/2015:15:21:54 +0000] "GET /portal/ HTTP/1.1" 302 4781 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.77 - - [29/Oct/2015:15:21:54 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.153 - - [29/Oct/2015:15:21:54 +0000] "GET /portal/login HTTP/1.1" 200 1472 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.153 - - [29/Oct/2015:15:21:54 +0000] "GET /portal/js/42be59c.js HTTP/1.1" 200 41370 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.153 - - [29/Oct/2015:15:21:54 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.153 - - [29/Oct/2015:15:21:54 +0000] "GET /favicon.ico HTTP/1.1" 200 3984 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.153 - - [29/Oct/2015:15:22:01 +0000] "POST /portal/login_check HTTP/1.1" 302 1107 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.153 - - [29/Oct/2015:15:22:02 +0000] "GET /portal/ HTTP/1.1" 302 891 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.153 - - [29/Oct/2015:15:22:02 +0000] "GET /portal/dashboard HTTP/1.1" 200 1532 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
151.228.18.252 - - [29/Oct/2015:15:22:02 +0000] "GET /portal/ HTTP/1.1" 302 4822 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
146.87.16.153 - - [29/Oct/2015:15:22:02 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
151.228.18.252 - - [29/Oct/2015:15:22:02 +0000] "GET /portal/login HTTP/1.1" 200 5199 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
151.228.18.252 - - [29/Oct/2015:15:22:02 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
151.228.18.252 - - [29/Oct/2015:15:22:02 +0000] "GET /portal/js/42be59c.js HTTP/1.1" 200 41232 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
151.228.18.252 - - [29/Oct/2015:15:22:03 +0000] "GET /favicon.ico HTTP/1.1" 200 3984 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
151.228.18.252 - - [29/Oct/2015:15:22:05 +0000] "POST /portal/login_check HTTP/1.1" 302 989 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
151.228.18.252 - - [29/Oct/2015:15:22:05 +0000] "GET /portal/ HTTP/1.1" 302 753 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
151.228.18.252 - - [29/Oct/2015:15:22:05 +0000] "GET /portal/dashboard HTTP/1.1" 200 1397 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
151.228.18.252 - - [29/Oct/2015:15:22:06 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
146.87.16.153 - - [29/Oct/2015:15:22:06 +0000] "GET /portal/linux/passwd/371 HTTP/1.1" 200 1432 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.153 - - [29/Oct/2015:15:22:06 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/linux/passwd/371" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.65 - - [29/Oct/2015:15:22:20 +0000] "POST /portal/linux/passwd/387 HTTP/1.1" 200 1628 "https://firstyearmatters.info/portal/linux/passwd/387" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.65 - - [29/Oct/2015:15:22:20 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/linux/passwd/387" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.153 - - [29/Oct/2015:15:22:31 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1062 "https://firstyearmatters.info/portal/linux/passwd/371" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.153 - - [29/Oct/2015:15:22:17 +0000] "POST /portal/linux/passwd/371 HTTP/1.1" 200 1623 "https://firstyearmatters.info/portal/linux/passwd/371" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.153 - - [29/Oct/2015:15:22:40 +0000] "GET /portal/dashboard HTTP/1.1" 200 1532 "https://firstyearmatters.info/portal/linux/passwd/371" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.153 - - [29/Oct/2015:15:22:40 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.77 - - [29/Oct/2015:15:22:40 +0000] "GET /portal/linux/passwd/394 HTTP/1.1" 200 1583 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.77 - - [29/Oct/2015:15:22:40 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/linux/passwd/394" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.65 - - [29/Oct/2015:15:22:41 +0000] "POST /portal/linux/passwd/387 HTTP/1.1" 200 1628 "https://firstyearmatters.info/portal/linux/passwd/387" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.65 - - [29/Oct/2015:15:22:41 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/linux/passwd/387" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.77 - - [29/Oct/2015:15:22:54 +0000] "POST /portal/linux/passwd/394 HTTP/1.1" 200 1625 "https://firstyearmatters.info/portal/linux/passwd/394" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.77 - - [29/Oct/2015:15:22:55 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/linux/passwd/394" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.65 - - [29/Oct/2015:15:23:02 +0000] "POST /portal/linux/passwd/387 HTTP/1.1" 200 1620 "https://firstyearmatters.info/portal/linux/passwd/387" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.65 - - [29/Oct/2015:15:23:02 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1062 "https://firstyearmatters.info/portal/linux/passwd/387" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.77 - - [29/Oct/2015:15:23:03 +0000] "POST /portal/linux/passwd/394 HTTP/1.1" 200 1625 "https://firstyearmatters.info/portal/linux/passwd/394" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.77 - - [29/Oct/2015:15:23:03 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/linux/passwd/394" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.77 - - [29/Oct/2015:15:23:25 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1062 "https://firstyearmatters.info/portal/linux/passwd/394" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.77 - - [29/Oct/2015:15:23:14 +0000] "POST /portal/linux/passwd/394 HTTP/1.1" 200 1635 "https://firstyearmatters.info/portal/linux/passwd/394" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.77 - - [29/Oct/2015:15:23:29 +0000] "GET /portal/dashboard HTTP/1.1" 200 1405 "https://firstyearmatters.info/portal/linux/passwd/394" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.77 - - [29/Oct/2015:15:23:29 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.65 - - [29/Oct/2015:15:23:45 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1062 "https://firstyearmatters.info/portal/linux/passwd/387" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.65 - - [29/Oct/2015:15:23:34 +0000] "POST /portal/linux/passwd/387 HTTP/1.1" 200 1630 "https://firstyearmatters.info/portal/linux/passwd/387" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.16.153 - - [29/Oct/2015:15:24:02 +0000] "GET /portal/dashboard HTTP/1.1" 200 1532 "https://firstyearmatters.info/portal/linux/passwd/371" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.153 - - [29/Oct/2015:15:24:02 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
151.228.18.252 - - [29/Oct/2015:20:42:52 +0000] "GET /portal/ HTTP/1.1" 302 4822 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
151.228.18.252 - - [29/Oct/2015:20:42:52 +0000] "GET /portal/login HTTP/1.1" 200 5200 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
151.228.18.252 - - [29/Oct/2015:20:42:53 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
151.228.18.252 - - [29/Oct/2015:20:42:54 +0000] "POST /portal/login_check HTTP/1.1" 302 989 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
151.228.18.252 - - [29/Oct/2015:20:42:54 +0000] "GET /portal/ HTTP/1.1" 302 4619 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
151.228.18.252 - - [29/Oct/2015:20:42:54 +0000] "GET /portal/dashboard HTTP/1.1" 200 1397 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
151.228.18.252 - - [29/Oct/2015:20:42:54 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
151.228.18.252 - - [29/Oct/2015:21:35:20 +0000] "GET /portal/ HTTP/1.1" 302 4822 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
151.228.18.252 - - [29/Oct/2015:21:35:20 +0000] "GET /portal/login HTTP/1.1" 200 1332 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
151.228.18.252 - - [29/Oct/2015:21:35:20 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
151.228.18.252 - - [29/Oct/2015:21:35:23 +0000] "POST /portal/login_check HTTP/1.1" 302 989 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
151.228.18.252 - - [29/Oct/2015:21:35:23 +0000] "GET /portal/ HTTP/1.1" 302 4619 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
151.228.18.252 - - [29/Oct/2015:21:35:23 +0000] "GET /portal/dashboard HTTP/1.1" 200 1397 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
151.228.18.252 - - [29/Oct/2015:21:35:23 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
2.222.88.44 - - [30/Oct/2015:00:58:52 +0000] "GET /portal/login HTTP/1.1" 200 5041 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko)"
2.222.88.44 - - [30/Oct/2015:00:58:54 +0000] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4242 "-" "Safari/11601.2.7.2 CFNetwork/760.1.2 Darwin/15.0.0 (x86_64)"
2.222.88.44 - - [30/Oct/2015:00:58:55 +0000] "GET /apple-touch-icon.png HTTP/1.1" 404 580 "-" "Safari/11601.2.7.2 CFNetwork/760.1.2 Darwin/15.0.0 (x86_64)"
2.222.88.44 - - [30/Oct/2015:00:58:55 +0000] "GET /portal/login HTTP/1.1" 200 1394 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B410 Safari/600.1.4"
2.222.88.44 - - [30/Oct/2015:00:58:56 +0000] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 592 "-" "Safari/11601.2.7.2 CFNetwork/760.1.2 Darwin/15.0.0 (x86_64)"
2.222.88.44 - - [30/Oct/2015:00:58:56 +0000] "GET /apple-touch-icon.png HTTP/1.1" 404 580 "-" "Safari/11601.2.7.2 CFNetwork/760.1.2 Darwin/15.0.0 (x86_64)"
82.40.58.133 - - [30/Oct/2015:05:40:06 +0000] "GET /default.css HTTP/1.1" 200 5226 "https://www.firstyearmatters.info/cs/tt1-WD1.html" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
82.40.58.133 - - [30/Oct/2015:05:40:06 +0000] "GET /ie6.css HTTP/1.1" 200 1730 "https://www.firstyearmatters.info/cs/tt1-WD1.html" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
82.40.58.133 - - [30/Oct/2015:05:40:06 +0000] "GET /fuof.jpg HTTP/1.1" 200 10048 "https://www.firstyearmatters.info/cs/tt1-WD1.html" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"

View File

@@ -0,0 +1,260 @@
188.138.17.205 - - [28/Oct/2015:08:35:15 +0000] "GET / HTTP/1.1" 302 5964 "-" "-"
188.138.17.205 - - [28/Oct/2015:08:35:15 +0000] "GET /cgi-bin/forum/YaBB.pl HTTP/1.1" 200 29660 "-" "-"
188.138.17.205 - - [28/Oct/2015:08:35:16 +0000] "GET /robots.txt HTTP/1.1" 200 5699 "-" "-"
188.138.17.205 - - [28/Oct/2015:08:35:16 +0000] "GET /sitemap.xml HTTP/1.1" 404 5895 "-" "-"
188.138.17.205 - - [28/Oct/2015:08:35:21 +0000] "quit" 302 5555 "-" "-"
85.25.218.25 - - [28/Oct/2015:09:02:29 +0000] "GET / HTTP/1.1" 302 5983 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:39.0) Gecko/20100101 Firefox/39.0"
188.220.140.57 - - [28/Oct/2015:09:16:51 +0000] "GET /cgi-bin/forum/YaBB.pl?action=RSSrecent HTTP/1.1" 200 10062 "-" "Apple-PubSub/28"
188.220.140.57 - - [28/Oct/2015:09:16:51 +0000] "GET /cgi-bin/forum/YaBB.pl?action=RSSrecent HTTP/1.1" 200 10062 "-" "Apple-PubSub/28"
188.220.140.57 - - [28/Oct/2015:09:46:39 +0000] "GET /cgi-bin/forum/YaBB.pl?action=RSSrecent HTTP/1.1" 200 10062 "-" "Apple-PubSub/28"
188.220.140.57 - - [28/Oct/2015:09:46:39 +0000] "GET /cgi-bin/forum/YaBB.pl?action=RSSrecent HTTP/1.1" 200 10062 "-" "Apple-PubSub/28"
74.82.47.3 - - [28/Oct/2015:09:48:05 +0000] "GET / HTTP/1.1" 302 5780 "-" "-"
188.220.140.57 - - [28/Oct/2015:10:16:40 +0000] "GET /cgi-bin/forum/YaBB.pl?action=RSSrecent HTTP/1.1" 200 10062 "-" "Apple-PubSub/28"
188.220.140.57 - - [28/Oct/2015:10:16:40 +0000] "GET /cgi-bin/forum/YaBB.pl?action=RSSrecent HTTP/1.1" 200 10062 "-" "Apple-PubSub/28"
86.9.71.194 - - [28/Oct/2015:10:26:02 +0000] "GET /wiki/doku.php HTTP/1.1" 200 7868 "http://www.firstyearmatters.info/cs/lecturers.html" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.10240"
86.9.71.194 - - [28/Oct/2015:10:26:04 +0000] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick_ltr.css HTTP/1.1" 200 3958 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.10240"
86.9.71.194 - - [28/Oct/2015:10:26:04 +0000] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick.min.1.3.js HTTP/1.1" 200 3969 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.10240"
86.9.71.194 - - [28/Oct/2015:10:26:04 +0000] "GET /wiki/lib/tpl/dokuwiki/images/button-php.gif HTTP/1.1" 200 548 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.10240"
86.9.71.194 - - [28/Oct/2015:10:26:04 +0000] "GET /wiki/lib/exe/css.php?t=dokuwiki&tseed=2cb5b229a761de98d43761336d42f70b HTTP/1.1" 200 27528 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.10240"
86.9.71.194 - - [28/Oct/2015:10:26:04 +0000] "GET /wiki/lib/tpl/dokuwiki/images/button-html5.png HTTP/1.1" 200 647 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.10240"
86.9.71.194 - - [28/Oct/2015:10:26:04 +0000] "GET /wiki/lib/plugins/issuetracker/datepick/jquery.1.4.2.js HTTP/1.1" 200 3963 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.10240"
86.9.71.194 - - [28/Oct/2015:10:26:04 +0000] "GET /wiki/_media/wiki:logo.png HTTP/1.1" 403 641 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.10240"
86.9.71.194 - - [28/Oct/2015:10:26:04 +0000] "GET /wiki/lib/tpl/dokuwiki/images/button-css.png HTTP/1.1" 200 639 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleW10.99.193.52 - - [28/Oct/2015:14:28:06 +0000] "GET /wiki/doku.php HTTP/1.1" 200 7876 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:28:06 +0000] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick_ltr.css HTTP/1.1" 200 3961 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:28:06 +0000] "GET /wiki/lib/plugins/issuetracker/datepick/jquery.1.4.2.js HTTP/1.1" 200 3963 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:28:06 +0000] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick.min.1.3.js HTTP/1.1" 200 7838 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:28:06 +0000] "GET /wiki/_media/wiki:logo.png HTTP/1.1" 403 535 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:28:06 +0000] "GET /wiki/lib/exe/indexer.php?id=start&1446042486 HTTP/1.1" 200 4391 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:28:06 +0000] "GET /wiki/lib/tpl/dokuwiki/images/button-html5.png HTTP/1.1" 304 209 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:28:06 +0000] "GET /wiki/doku.php HTTP/1.1" 200 3930 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:28:06 +0000] "GET /wiki/lib/tpl/dokuwiki/images/page-gradient.png HTTP/1.1" 304 208 "https://www.firstyearmatters.info/wiki/lib/exe/css.php?t=dokuwiki&tseed=2cb5b229a761de98d43761336d42f70b" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:28:06 +0000] "GET /wiki/lib/tpl/dokuwiki/images/button-css.png HTTP/1.1" 304 352 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:28:06 +0000] "GET /wiki/_media/wiki:logo.png HTTP/1.1" 403 535 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:28:07 +0000] "GET /wiki/lib/tpl/dokuwiki/images/search.png HTTP/1.1" 304 209 "https://www.firstyearmatters.info/wiki/lib/exe/css.php?t=dokuwiki&tseed=2cb5b229a761de98d43761336d42f70b" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:28:07 +0000] "GET /wiki/lib/tpl/dokuwiki/images/usertools.png HTTP/1.1" 304 209 "https://www.firstyearmatters.info/wiki/lib/exe/css.php?t=dokuwiki&tseed=2cb5b229a761de98d43761336d42f70b" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:28:07 +0000] "GET /wiki/lib/tpl/dokuwiki/images/pagetools-sprite.png?v=2 HTTP/1.1" 304 210 "https://www.firstyearmatters.info/wiki/lib/exe/css.php?t=dokuwiki&tseed=2cb5b229a761de98d43761336d42f70b" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:28:21 +0000] "POST /wiki/doku.php HTTP/1.1" 302 698 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:28:21 +0000] "GET /wiki/start HTTP/1.1" 200 3568 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:28:22 +0000] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick_ltr.css HTTP/1.1" 200 3675 "https://www.firstyearmatters.info/wiki/start" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:28:22 +0000] "GET /wiki/lib/plugins/issuetracker/datepick/jquery.1.4.2.js HTTP/1.1" 200 3677 "https://www.firstyearmatters.info/wiki/start" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:28:22 +0000] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick.min.1.3.js HTTP/1.1" 200 3683 "https://www.firstyearmatters.info/wiki/start" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:28:22 +0000] "GET /wiki/_media/wiki:logo.png HTTP/1.1" 200 9315 "https://www.firstyearmatters.info/wiki/start" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:28:22 +0000] "GET /wiki/lib/exe/indexer.php?id=start&1446042501 HTTP/1.1" 200 389 "https://www.firstyearmatters.info/wiki/start" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:28:22 +0000] "GET /wiki/start HTTP/1.1" 200 3569 "https://www.firstyearmatters.info/wiki/start" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:28:46 +0000] "GET /wiki/doku.php HTTP/1.1" 200 3712 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:28:47 +0000] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick.min.1.3.js HTTP/1.1" 200 3683 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:28:47 +0000] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick_ltr.css HTTP/1.1" 200 3675 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:28:47 +0000] "GET /wiki/lib/plugins/issuetracker/datepick/jquery.1.4.2.js HTTP/1.1" 200 3677 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:28:47 +0000] "GET /wiki/lib/exe/indexer.php?id=start&1446042527 HTTP/1.1" 200 389 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:28:47 +0000] "GET /wiki/doku.php HTTP/1.1" 200 3569 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:28:47 +0000] "GET /wiki/_media/wiki:logo.png HTTP/1.1" 304 281 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:29:19 +0000] "GET /wiki/doku.php HTTP/1.1" 200 3713 "http://www.firstyearmatters.info/cs/" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:29:20 +0000] "GET /wiki/lib/plugins/issuetracker/datepick/jquery.1.4.2.js HTTP/1.1" 200 3679 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:29:20 +0000] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick.min.1.3.js HTTP/1.1" 200 3684 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:29:19 +0000] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick_ltr.css HTTP/1.1" 200 3676 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:29:20 +0000] "GET /wiki/lib/exe/indexer.php?id=start&1446042559 HTTP/1.1" 200 389 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:29:20 +0000] "GET /wiki/doku.php HTTP/1.1" 200 3570 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:29:20 +0000] "GET /wiki/_media/wiki:logo.png HTTP/1.1" 304 281 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:29:28 +0000] "GET /wiki/doku.php HTTP/1.1" 200 3713 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:29:28 +0000] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick_ltr.css HTTP/1.1" 200 3533 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:29:28 +0000] "GET /wiki/lib/plugins/issuetracker/datepick/jquery.1.4.2.js HTTP/1.1" 200 3679 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:29:28 +0000] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick.min.1.3.js HTTP/1.1" 200 3683 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:29:28 +0000] "GET /wiki/lib/exe/indexer.php?id=start&1446042568 HTTP/1.1" 200 389 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:29:28 +0000] "GET /wiki/doku.php HTTP/1.1" 200 3570 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:29:29 +0000] "GET /wiki/_media/wiki:logo.png HTTP/1.1" 304 281 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:29:54 +0000] "GET /wiki/lib/plugins/issuetracker/datepick/jquery.1.4.2.js HTTP/1.1" 200 3679 "https://www.firstyearmatters.info/wiki/start?do=recent" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:29:54 +0000] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick.min.1.3.js HTTP/1.1" 200 3684 "https://www.firstyearmatters.info/wiki/start?do=recent" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:29:54 +0000] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick_ltr.css HTTP/1.1" 200 3676 "https://www.firstyearmatters.info/wiki/start?do=recent" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:29:54 +0000] "GET /wiki/start?do=recent HTTP/1.1" 200 5176 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:29:54 +0000] "GET /wiki/lib/images/history.png HTTP/1.1" 200 490 "https://www.firstyearmatters.info/wiki/start?do=recent" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:29:54 +0000] "GET /wiki/lib/images/fileicons/file.png HTTP/1.1" 200 590 "https://www.firstyearmatters.info/wiki/start?do=recent" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:29:54 +0000] "GET /wiki/lib/images/fileicons//png.png HTTP/1.1" 200 860 "https://www.firstyearmatters.info/wiki/start?do=recent" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:29:54 +0000] "GET /wiki/lib/images/fileicons//pdf.png HTTP/1.1" 200 719 "https://www.firstyearmatters.info/wiki/start?do=recent" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:29:54 +0000] "GET /wiki/lib/images/blank.gif HTTP/1.1" 200 525 "https://www.firstyearmatters.info/wiki/start?do=recent" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:29:54 +0000] "GET /wiki/lib/images/diff.png HTTP/1.1" 200 531 "https://www.firstyearmatters.info/wiki/start?do=recent" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:29:54 +0000] "GET /wiki/lib/images/fileicons//pptx.png HTTP/1.1" 200 717 "https://www.firstyearmatters.info/wiki/start?do=recent" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:29:54 +0000] "GET /wiki/lib/exe/indexer.php?id=start&1446042594 HTTP/1.1" 200 389 "https://www.firstyearmatters.info/wiki/start?do=recent" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:29:54 +0000] "GET /wiki/start?do=recent HTTP/1.1" 200 5033 "https://www.firstyearmatters.info/wiki/start?do=recent" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:29:55 +0000] "GET /wiki/_media/wiki:logo.png HTTP/1.1" 304 281 "https://www.firstyearmatters.info/wiki/start?do=recent" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:30:04 +0000] "GET /wiki/linux:start HTTP/1.1" 200 4696 "https://www.firstyearmatters.info/wiki/start?do=recent" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:30:04 +0000] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick_ltr.css HTTP/1.1" 200 3699 "https://www.firstyearmatters.info/wiki/linux:start" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:30:04 +0000] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick.min.1.3.js HTTP/1.1" 200 3709 "https://www.firstyearmatters.info/wiki/linux:start" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:30:04 +0000] "GET /wiki/lib/plugins/issuetracker/datepick/jquery.1.4.2.js HTTP/1.1" 200 3701 "https://www.firstyearmatters.info/wiki/linux:start" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:30:04 +0000] "GET /wiki/lib/exe/indexer.php?id=linux%3Astart&1446042604 HTTP/1.1" 200 389 "https://www.firstyearmatters.info/wiki/linux:start" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:30:04 +0000] "GET /wiki/linux:start HTTP/1.1" 200 4553 "https://www.firstyearmatters.info/wiki/linux:start" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:30:04 +0000] "GET /wiki/_media/wiki:logo.png HTTP/1.1" 304 281 "https://www.firstyearmatters.info/wiki/linux:start" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:30:05 +0000] "GET /wiki/lib/tpl/dokuwiki/images/toc-bullet.png HTTP/1.1" 304 208 "https://www.firstyearmatters.info/wiki/lib/exe/css.php?t=dokuwiki&tseed=2cb5b229a761de98d43761336d42f70b" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:30:05 +0000] "GET /wiki/lib/images/external-link.png HTTP/1.1" 304 209 "https://www.firstyearmatters.info/wiki/lib/exe/css.php?t=dokuwiki&tseed=2cb5b229a761de98d43761336d42f70b" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:31:08 +0000] "GET /wiki/linux:x2go HTTP/1.1" 200 4590 "https://www.firstyearmatters.info/wiki/linux:start" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:31:09 +0000] "GET /wiki/lib/plugins/issuetracker/datepick/jquery.1.4.2.js HTTP/1.1" 200 3717 "https://www.firstyearmatters.info/wiki/linux:x2go" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:31:09 +0000] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick_ltr.css HTTP/1.1" 200 3716 "https://www.firstyearmatters.info/wiki/linux:x2go" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:31:09 +0000] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick.min.1.3.js HTTP/1.1" 200 3724 "https://www.firstyearmatters.info/wiki/linux:x2go" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:31:09 +0000] "GET /wiki/lib/exe/indexer.php?id=linux%3Ax2go&1446042669 HTTP/1.1" 200 389 "https://www.firstyearmatters.info/wiki/linux:x2go" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:31:09 +0000] "GET /wiki/_media/linux:screen_shot_2013-07-03_at_09.48.24.png HTTP/1.1" 304 281 "https://www.firstyearmatters.info/wiki/linux:x2go" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:31:09 +0000] "GET /wiki/linux:x2go HTTP/1.1" 200 4447 "https://www.firstyearmatters.info/wiki/linux:x2go" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:14:31:09 +0000] "GET /wiki/_media/wiki:logo.png HTTP/1.1" 304 281 "https://www.firstyearmatters.info/wiki/linux:x2go" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:15:02:36 +0000] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick_ltr.css HTTP/1.1" 200 3715 "https://www.firstyearmatters.info/wiki/start?do=recent" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:15:02:36 +0000] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick.min.1.3.js HTTP/1.1" 200 3723 "https://www.firstyearmatters.info/wiki/start?do=recent" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:15:02:36 +0000] "GET /wiki/lib/plugins/issuetracker/datepick/jquery.1.4.2.js HTTP/1.1" 200 3716 "https://www.firstyearmatters.info/wiki/start?do=recent" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:15:02:34 +0000] "GET /wiki/start?do=recent HTTP/1.1" 200 9062 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:15:02:38 +0000] "GET /wiki/lib/exe/indexer.php?id=start&1446044557 HTTP/1.1" 200 389 "https://www.firstyearmatters.info/wiki/start?do=recent" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:15:02:39 +0000] "GET /wiki/start?do=recent HTTP/1.1" 200 5053 "https://www.firstyearmatters.info/wiki/start?do=recent" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:15:02:40 +0000] "GET /wiki/_media/wiki:logo.png HTTP/1.1" 304 281 "https://www.firstyearmatters.info/wiki/start?do=recent" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:15:02:43 +0000] "GET /wiki/linux:start HTTP/1.1" 200 4705 "https://www.firstyearmatters.info/wiki/start?do=recent" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:15:02:44 +0000] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick_ltr.css HTTP/1.1" 200 3572 "https://www.firstyearmatters.info/wiki/linux:start" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:15:02:44 +0000] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick.min.1.3.js HTTP/1.1" 200 3722 "https://www.firstyearmatters.info/wiki/linux:start" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:15:02:44 +0000] "GET /wiki/lib/plugins/issuetracker/datepick/jquery.1.4.2.js HTTP/1.1" 200 3716 "https://www.firstyearmatters.info/wiki/linux:start" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:15:02:45 +0000] "GET /wiki/lib/exe/indexer.php?id=linux%3Astart&1446044563 HTTP/1.1" 200 389 "https://www.firstyearmatters.info/wiki/linux:start" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:15:02:45 +0000] "GET /wiki/linux:start HTTP/1.1" 200 4562 "https://www.firstyearmatters.info/wiki/linux:start" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:15:02:45 +0000] "GET /wiki/_media/wiki:logo.png HTTP/1.1" 304 281 "https://www.firstyearmatters.info/wiki/linux:start" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:15:03:03 +0000] "GET /wiki/linux:x2go HTTP/1.1" 200 4589 "https://www.firstyearmatters.info/wiki/linux:start" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:15:03:05 +0000] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick_ltr.css HTTP/1.1" 200 3572 "https://www.firstyearmatters.info/wiki/linux:x2go" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:15:03:05 +0000] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick.min.1.3.js HTTP/1.1" 200 3723 "https://www.firstyearmatters.info/wiki/linux:x2go" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:15:03:05 +0000] "GET /wiki/lib/plugins/issuetracker/datepick/jquery.1.4.2.js HTTP/1.1" 200 3715 "https://www.firstyearmatters.info/wiki/linux:x2go" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:15:03:05 +0000] "GET /wiki/lib/exe/indexer.php?id=linux%3Ax2go&1446044583 HTTP/1.1" 200 389 "https://www.firstyearmatters.info/wiki/linux:x2go" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:15:03:05 +0000] "GET /wiki/_media/linux:screen_shot_2013-07-03_at_09.48.24.png HTTP/1.1" 304 281 "https://www.firstyearmatters.info/wiki/linux:x2go" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:15:03:06 +0000] "GET /wiki/linux:x2go HTTP/1.1" 200 4444 "https://www.firstyearmatters.info/wiki/linux:x2go" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
10.99.193.52 - - [28/Oct/2015:15:03:06 +0000] "GET /wiki/_media/wiki:logo.png HTTP/1.1" 304 281 "https://www.firstyearmatters.info/wiki/linux:x2go" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.136.145 - - [28/Oct/2015:15:46:35 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 6141 "http://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [28/Oct/2015:15:46:35 +0000] "GET /page.css HTTP/1.1" 200 626 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [28/Oct/2015:15:46:35 +0000] "GET /favicon.ico HTTP/1.1" 200 3984 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [28/Oct/2015:15:46:47 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 2421 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [28/Oct/2015:15:57:53 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 6151 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [28/Oct/2015:15:58:03 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 2439 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [28/Oct/2015:15:58:10 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 2448 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [28/Oct/2015:15:58:14 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 2307 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [28/Oct/2015:16:13:56 +0000] "GET / HTTP/1.1" 302 4491 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [28/Oct/2015:16:13:56 +0000] "GET /cs HTTP/1.1" 301 668 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [28/Oct/2015:16:13:56 +0000] "GET /cs/ HTTP/1.1" 200 2914 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [28/Oct/2015:16:13:56 +0000] "GET /default.css HTTP/1.1" 200 1576 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [28/Oct/2015:16:13:56 +0000] "GET /switcher.js HTTP/1.1" 200 4995 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [28/Oct/2015:16:13:56 +0000] "GET /fym.css HTTP/1.1" 200 5450 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [28/Oct/2015:16:13:56 +0000] "GET /largetext.css HTTP/1.1" 200 1485 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [28/Oct/2015:16:13:56 +0000] "GET /highcontrast.css HTTP/1.1" 200 1537 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [28/Oct/2015:16:13:56 +0000] "GET /print.css HTTP/1.1" 200 4919 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [28/Oct/2015:16:13:56 +0000] "GET /uos.jpg HTTP/1.1" 200 6127 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [28/Oct/2015:16:13:56 +0000] "GET /ie6.css HTTP/1.1" 200 1730 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [28/Oct/2015:16:13:56 +0000] "GET /fuof.jpg HTTP/1.1" 200 10048 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [28/Oct/2015:16:14:02 +0000] "GET /cs/timetables.html HTTP/1.1" 200 2662 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [28/Oct/2015:16:14:03 +0000] "GET /cs/tt1-CC1.2.html HTTP/1.1" 200 3015 "https://www.firstyearmatters.info/cs/timetables.html" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [28/Oct/2015:16:14:41 +0000] "GET /cs/schedules.html HTTP/1.1" 200 2498 "https://www.firstyearmatters.info/cs/tt1-CC1.2.html" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [28/Oct/2015:16:14:42 +0000] "GET /cs/sch-CC2.html HTTP/1.1" 200 3928 "https://www.firstyearmatters.info/cs/schedules.html" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [28/Oct/2015:16:15:32 +0000] "GET /cs/sch-SEF.html HTTP/1.1" 200 3058 "https://www.firstyearmatters.info/cs/schedules.html" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [28/Oct/2015:16:15:36 +0000] "GET /cs/sch-WD1.html HTTP/1.1" 200 3801 "https://www.firstyearmatters.info/cs/schedules.html" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [28/Oct/2015:16:15:49 +0000] "GET /cs/sch-MIT2.html HTTP/1.1" 200 3048 "https://www.firstyearmatters.info/cs/schedules.html" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [28/Oct/2015:16:15:52 +0000] "GET /cs/schedules.html HTTP/1.1" 200 2360 "https://www.firstyearmatters.info/cs/schedules.html" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [28/Oct/2015:16:15:54 +0000] "GET /cs/sch-CC1.html HTTP/1.1" 200 4038 "https://www.firstyearmatters.info/cs/schedules.html" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [28/Oct/2015:16:16:04 +0000] "GET /cs/lists/cc1.groups.html HTTP/1.1" 200 3753 "https://www.firstyearmatters.info/cs/sch-CC1.html" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [28/Oct/2015:16:16:40 +0000] "GET /cs/stafftimetables.html HTTP/1.1" 200 2832 "https://www.firstyearmatters.info/cs/sch-CC1.html" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [28/Oct/2015:16:16:43 +0000] "GET /cs/st1-David+Newton.html HTTP/1.1" 200 3009 "https://www.firstyearmatters.info/cs/stafftimetables.html" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [28/Oct/2015:16:16:49 +0000] "GET /cs/st1-Andrew+Young.html HTTP/1.1" 200 3246 "https://www.firstyearmatters.info/cs/stafftimetables.html" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [28/Oct/2015:16:16:56 +0000] "GET /cs/st1-Chris+Hughes.html HTTP/1.1" 200 3278 "https://www.firstyearmatters.info/cs/stafftimetables.html" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [28/Oct/2015:16:17:00 +0000] "GET /cs/st1-Lee+Griffiths.html HTTP/1.1" 200 2993 "https://www.firstyearmatters.info/cs/stafftimetables.html" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [28/Oct/2015:16:17:09 +0000] "GET /cs/st1-Farid+Meziane.html HTTP/1.1" 200 3074 "https://www.firstyearmatters.info/cs/stafftimetables.html" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [28/Oct/2015:16:17:16 +0000] "GET /cs/st1-Christos+Papadopoulos.html HTTP/1.1" 200 3171 "https://www.firstyearmatters.info/cs/stafftimetables.html" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [28/Oct/2015:16:17:24 +0000] "GET /cs/st1-Chris+Bryant.html HTTP/1.1" 200 3286 "https://www.firstyearmatters.info/cs/stafftimetables.html" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [28/Oct/2015:16:23:23 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 6182 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [28/Oct/2015:16:23:27 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 2322 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [28/Oct/2015:16:23:31 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 2328 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [28/Oct/2015:16:23:34 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 2333 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [28/Oct/2015:16:23:38 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 2330 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [28/Oct/2015:16:23:42 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 2316 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [28/Oct/2015:16:23:45 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 2339 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [28/Oct/2015:16:23:47 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 2345 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [28/Oct/2015:16:23:50 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 2338 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [28/Oct/2015:16:23:53 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 2353 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [28/Oct/2015:16:23:55 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 2354 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [28/Oct/2015:16:23:57 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 2354 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [28/Oct/2015:16:24:01 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 2361 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [28/Oct/2015:16:24:04 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 2355 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [28/Oct/2015:16:24:07 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 2401 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [28/Oct/2015:16:24:09 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 2365 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [28/Oct/2015:16:24:14 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 2414 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [28/Oct/2015:16:24:18 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 2412 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [28/Oct/2015:16:24:23 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 2408 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [28/Oct/2015:16:24:26 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 2405 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [28/Oct/2015:16:24:28 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 2421 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [28/Oct/2015:16:24:32 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 2423 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [28/Oct/2015:16:24:35 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 2430 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [28/Oct/2015:16:24:37 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 2421 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [28/Oct/2015:16:24:39 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 2428 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [28/Oct/2015:16:28:12 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 2584 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.48.186 - - [28/Oct/2015:16:37:10 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 6304 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.48.186 - - [28/Oct/2015:16:37:15 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 2447 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.48.186 - - [28/Oct/2015:16:37:19 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 2449 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.48.186 - - [28/Oct/2015:16:38:58 +0000] "GET / HTTP/1.1" 302 768 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.48.186 - - [28/Oct/2015:16:38:58 +0000] "GET /cs HTTP/1.1" 301 668 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.48.186 - - [28/Oct/2015:16:38:58 +0000] "GET /cs/ HTTP/1.1" 200 2914 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.48.186 - - [28/Oct/2015:16:39:01 +0000] "GET /cs/timetables.html HTTP/1.1" 200 2524 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.48.186 - - [28/Oct/2015:16:39:02 +0000] "GET /cs/tt1-CC1.2.html HTTP/1.1" 200 3015 "https://www.firstyearmatters.info/cs/timetables.html" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.48.186 - - [28/Oct/2015:16:39:48 +0000] "GET /new/tt1-CC1.2.html HTTP/1.1" 404 720 "https://www.firstyearmatters.info/cs/tt1-CC1.2.html" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [28/Oct/2015:16:39:57 +0000] "GET /new/tt1-CC1.2.html HTTP/1.1" 404 720 "https://www.firstyearmatters.info/cs/tt1-CC1.2.html" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [28/Oct/2015:16:44:07 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 6325 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [28/Oct/2015:16:44:11 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 2465 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
46.208.90.171 - - [28/Oct/2015:17:18:41 +0000] "GET /portal/ HTTP/1.1" 302 4781 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
46.208.90.171 - - [28/Oct/2015:17:18:41 +0000] "GET /portal/login HTTP/1.1" 200 1472 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
46.208.90.171 - - [28/Oct/2015:17:18:41 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
46.208.90.171 - - [28/Oct/2015:17:18:41 +0000] "GET /portal/js/42be59c.js HTTP/1.1" 200 41370 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
46.208.90.171 - - [28/Oct/2015:17:18:41 +0000] "GET /favicon.ico HTTP/1.1" 200 3984 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
46.208.90.171 - - [28/Oct/2015:17:18:44 +0000] "GET /portal/dashboard HTTP/1.1" 302 878 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
46.208.90.171 - - [28/Oct/2015:17:18:44 +0000] "GET /portal/login HTTP/1.1" 200 1334 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
46.208.90.171 - - [28/Oct/2015:17:18:44 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
46.208.90.171 - - [28/Oct/2015:17:18:47 +0000] "GET / HTTP/1.1" 302 618 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
46.208.90.171 - - [28/Oct/2015:17:18:48 +0000] "GET /cs HTTP/1.1" 301 656 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
46.208.90.171 - - [28/Oct/2015:17:18:48 +0000] "GET /cs/ HTTP/1.1" 200 2914 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
46.208.90.171 - - [28/Oct/2015:17:18:48 +0000] "GET /default.css HTTP/1.1" 200 1576 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
46.208.90.171 - - [28/Oct/2015:17:18:48 +0000] "GET /print.css HTTP/1.1" 200 1058 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
46.208.90.171 - - [28/Oct/2015:17:18:48 +0000] "GET /switcher.js HTTP/1.1" 200 1272 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
46.208.90.171 - - [28/Oct/2015:17:18:48 +0000] "GET /ie6.css HTTP/1.1" 200 1592 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
46.208.90.171 - - [28/Oct/2015:17:18:48 +0000] "GET /highcontrast.css HTTP/1.1" 200 1675 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
46.208.90.171 - - [28/Oct/2015:17:18:48 +0000] "GET /largetext.css HTTP/1.1" 200 1623 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
46.208.90.171 - - [28/Oct/2015:17:18:48 +0000] "GET /fym.css HTTP/1.1" 200 1727 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
46.208.90.171 - - [28/Oct/2015:17:18:48 +0000] "GET /uos.jpg HTTP/1.1" 200 6127 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
46.208.90.171 - - [28/Oct/2015:17:18:48 +0000] "GET /fuof.jpg HTTP/1.1" 200 9910 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
46.208.90.171 - - [28/Oct/2015:17:18:51 +0000] "GET /cs/timetables.html HTTP/1.1" 200 2524 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
46.208.90.171 - - [28/Oct/2015:17:18:53 +0000] "GET /cs/tt1-CSF.html HTTP/1.1" 200 3043 "https://firstyearmatters.info/cs/timetables.html" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.136.145 - - [28/Oct/2015:17:46:52 +0000] "GET /cgi-bin/binary.cgi HTTP/1.1" 200 5155 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [28/Oct/2015:17:47:09 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 2582 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [28/Oct/2015:17:47:17 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 2585 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
94.15.185.221 - - [28/Oct/2015:19:02:25 +0000] "GET / HTTP/1.1" 302 4268 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
94.15.185.221 - - [28/Oct/2015:19:02:26 +0000] "GET /cs HTTP/1.1" 301 656 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
94.15.185.221 - - [28/Oct/2015:19:02:26 +0000] "GET /cs/ HTTP/1.1" 200 2914 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
94.15.185.221 - - [28/Oct/2015:19:02:26 +0000] "GET /default.css HTTP/1.1" 200 1576 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
94.15.185.221 - - [28/Oct/2015:19:02:26 +0000] "GET /switcher.js HTTP/1.1" 200 1134 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
94.15.185.221 - - [28/Oct/2015:19:02:26 +0000] "GET /uos.jpg HTTP/1.1" 200 6127 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
94.15.185.221 - - [28/Oct/2015:19:02:26 +0000] "GET /fym.css HTTP/1.1" 200 1727 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
94.15.185.221 - - [28/Oct/2015:19:02:26 +0000] "GET /highcontrast.css HTTP/1.1" 200 1675 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
94.15.185.221 - - [28/Oct/2015:19:02:26 +0000] "GET /ie6.css HTTP/1.1" 200 1730 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
94.15.185.221 - - [28/Oct/2015:19:02:26 +0000] "GET /largetext.css HTTP/1.1" 200 1623 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
94.15.185.221 - - [28/Oct/2015:19:02:26 +0000] "GET /fuof.jpg HTTP/1.1" 200 9910 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
94.15.185.221 - - [28/Oct/2015:19:02:27 +0000] "GET /print.css HTTP/1.1" 200 1196 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
94.15.185.221 - - [28/Oct/2015:19:02:33 +0000] "GET / HTTP/1.1" 302 756 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
94.15.185.221 - - [28/Oct/2015:19:02:33 +0000] "GET /cs HTTP/1.1" 301 656 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
94.15.185.221 - - [28/Oct/2015:19:02:33 +0000] "GET /cs/ HTTP/1.1" 200 2914 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
66.249.65.94 - - [28/Oct/2015:20:23:46 +0000] "GET /robots.txt HTTP/1.1" 200 5766 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"
151.228.18.252 - - [28/Oct/2015:22:19:56 +0000] "GET /portal/ HTTP/1.1" 302 4786 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
151.228.18.252 - - [28/Oct/2015:22:19:56 +0000] "GET /portal/login HTTP/1.1" 200 5183 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
151.228.18.252 - - [28/Oct/2015:22:19:56 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
151.228.18.252 - - [28/Oct/2015:22:19:56 +0000] "GET /portal/js/42be59c.js HTTP/1.1" 200 41232 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
151.228.18.252 - - [28/Oct/2015:22:19:56 +0000] "GET /favicon.ico HTTP/1.1" 200 3984 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
151.228.18.252 - - [28/Oct/2015:22:19:57 +0000] "POST /portal/login_check HTTP/1.1" 302 969 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
151.228.18.252 - - [28/Oct/2015:22:19:58 +0000] "GET /portal/ HTTP/1.1" 302 753 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
151.228.18.252 - - [28/Oct/2015:22:19:58 +0000] "GET /portal/dashboard HTTP/1.1" 200 1540 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
151.228.18.252 - - [28/Oct/2015:22:19:58 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
82.40.58.133 - - [28/Oct/2015:22:35:04 +0000] "GET /cs/ HTTP/1.1" 200 6564 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
82.40.58.133 - - [28/Oct/2015:22:35:04 +0000] "GET /default.css HTTP/1.1" 200 1576 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
82.40.58.133 - - [28/Oct/2015:22:35:04 +0000] "GET /fuof.jpg HTTP/1.1" 200 9910 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
82.40.58.133 - - [28/Oct/2015:22:35:04 +0000] "GET /largetext.css HTTP/1.1" 200 1623 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
82.40.58.133 - - [28/Oct/2015:22:35:04 +0000] "GET /ie6.css HTTP/1.1" 200 1730 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
82.40.58.133 - - [28/Oct/2015:22:35:04 +0000] "GET /highcontrast.css HTTP/1.1" 200 1675 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
82.40.58.133 - - [28/Oct/2015:22:35:04 +0000] "GET /uos.jpg HTTP/1.1" 200 6265 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
82.40.58.133 - - [28/Oct/2015:22:35:04 +0000] "GET /switcher.js HTTP/1.1" 200 1272 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
82.40.58.133 - - [28/Oct/2015:22:35:04 +0000] "GET /apple-touch-icon-120x120-precomposed.png HTTP/1.1" 404 4254 "-" "MobileSafari/601.1 CFNetwork/758.1.6 Darwin/15.0.0"
82.40.58.133 - - [28/Oct/2015:22:35:04 +0000] "GET /apple-touch-icon-120x120.png HTTP/1.1" 404 592 "-" "MobileSafari/601.1 CFNetwork/758.1.6 Darwin/15.0.0"
82.40.58.133 - - [28/Oct/2015:22:35:05 +0000] "GET /apple-touch-icon.png HTTP/1.1" 404 584 "-" "MobileSafari/601.1 CFNetwork/758.1.6 Darwin/15.0.0"
82.40.58.133 - - [28/Oct/2015:22:35:05 +0000] "GET /apple-touch-icon.png HTTP/1.1" 404 584 "-" "MobileSafari/601.1 CFNetwork/758.1.6 Darwin/15.0.0"
82.40.58.133 - - [28/Oct/2015:22:35:09 +0000] "GET /cs/schedules.html HTTP/1.1" 200 2360 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
82.40.58.133 - - [28/Oct/2015:22:35:17 +0000] "GET /cs/sch-WD1.html HTTP/1.1" 200 3939 "https://www.firstyearmatters.info/cs/schedules.html" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
82.40.58.133 - - [28/Oct/2015:22:35:59 +0000] "GET /cs/timetables.html HTTP/1.1" 200 2662 "https://www.firstyearmatters.info/cs/schedules.html" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
82.40.58.133 - - [28/Oct/2015:22:36:04 +0000] "GET /cs/tt1-WD1.html HTTP/1.1" 200 3013 "https://www.firstyearmatters.info/cs/timetables.html" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
137.116.71.170 - - [28/Oct/2015:23:08:19 +0000] "GET /robots.txt HTTP/1.1" 200 5211 "-" "CSS Certificate Spider (http://www.css-security.com/certificatespider/)"

View File

@@ -0,0 +1,317 @@
85.255.232.135 - - [27/Oct/2015:06:46:51 +0000] "GET /cs/tt1-WD1.html HTTP/1.1" 200 6662 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
94.15.185.221 - - [27/Oct/2015:09:42:42 +0000] "GET /portal/linux/register HTTP/1.1" 302 4928 "-" "Mozilla/5.0 (Linux; Android 5.0; SAMSUNG SM-G900F Build/LRX21T) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/2.1 Chrome/34.0.1847.76 Mobile Safari/537.36"
94.15.185.221 - - [27/Oct/2015:09:42:44 +0000] "GET /portal/login HTTP/1.1" 200 1433 "-" "Mozilla/5.0 (Linux; Android 5.0; SAMSUNG SM-G900F Build/LRX21T) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/2.1 Chrome/34.0.1847.76 Mobile Safari/537.36"
94.15.185.221 - - [27/Oct/2015:09:42:45 +0000] "GET /portal/js/42be59c.js HTTP/1.1" 200 41582 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (Linux; Android 5.0; SAMSUNG SM-G900F Build/LRX21T) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/2.1 Chrome/34.0.1847.76 Mobile Safari/537.36"
94.15.185.221 - - [27/Oct/2015:09:42:45 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1012 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (Linux; Android 5.0; SAMSUNG SM-G900F Build/LRX21T) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/2.1 Chrome/34.0.1847.76 Mobile Safari/537.36"
94.15.185.221 - - [27/Oct/2015:09:42:55 +0000] "GET / HTTP/1.1" 302 827 "-" "Mozilla/5.0 (Linux; Android 5.0; SAMSUNG SM-G900F Build/LRX21T) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/2.1 Chrome/34.0.1847.76 Mobile Safari/537.36"
94.15.185.221 - - [27/Oct/2015:09:42:56 +0000] "GET /cs HTTP/1.1" 301 714 "-" "Mozilla/5.0 (Linux; Android 5.0; SAMSUNG SM-G900F Build/LRX21T) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/2.1 Chrome/34.0.1847.76 Mobile Safari/537.36"
94.15.185.221 - - [27/Oct/2015:09:42:56 +0000] "GET /cs/ HTTP/1.1" 200 2996 "-" "Mozilla/5.0 (Linux; Android 5.0; SAMSUNG SM-G900F Build/LRX21T) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/2.1 Chrome/34.0.1847.76 Mobile Safari/537.36"
94.15.185.221 - - [27/Oct/2015:09:42:56 +0000] "GET /default.css HTTP/1.1" 200 1631 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (Linux; Android 5.0; SAMSUNG SM-G900F Build/LRX21T) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/2.1 Chrome/34.0.1847.76 Mobile Safari/537.36"
94.15.185.221 - - [27/Oct/2015:09:42:56 +0000] "GET /switcher.js HTTP/1.1" 200 1199 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (Linux; Android 5.0; SAMSUNG SM-G900F Build/LRX21T) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/2.1 Chrome/34.0.1847.76 Mobile Safari/537.36"
94.15.185.221 - - [27/Oct/2015:09:42:56 +0000] "GET /fym.css HTTP/1.1" 200 1808 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (Linux; Android 5.0; SAMSUNG SM-G900F Build/LRX21T) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/2.1 Chrome/34.0.1847.76 Mobile Safari/537.36"
94.15.185.221 - - [27/Oct/2015:09:42:56 +0000] "GET /largetext.css HTTP/1.1" 200 1712 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (Linux; Android 5.0; SAMSUNG SM-G900F Build/LRX21T) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/2.1 Chrome/34.0.1847.76 Mobile Safari/537.36"
94.15.185.221 - - [27/Oct/2015:09:42:56 +0000] "GET /highcontrast.css HTTP/1.1" 200 1760 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (Linux; Android 5.0; SAMSUNG SM-G900F Build/LRX21T) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/2.1 Chrome/34.0.1847.76 Mobile Safari/537.36"
94.15.185.221 - - [27/Oct/2015:09:42:56 +0000] "GET /print.css HTTP/1.1" 200 1280 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (Linux; Android 5.0; SAMSUNG SM-G900F Build/LRX21T) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/2.1 Chrome/34.0.1847.76 Mobile Safari/537.36"
94.15.185.221 - - [27/Oct/2015:09:42:56 +0000] "GET /ie6.css HTTP/1.1" 200 1808 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (Linux; Android 5.0; SAMSUNG SM-G900F Build/LRX21T) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/2.1 Chrome/34.0.1847.76 Mobile Safari/537.36"
94.15.185.221 - - [27/Oct/2015:09:42:56 +0000] "GET /uos.jpg HTTP/1.1" 200 6331 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (Linux; Android 5.0; SAMSUNG SM-G900F Build/LRX21T) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/2.1 Chrome/34.0.1847.76 Mobile Safari/537.36"
94.15.185.221 - - [27/Oct/2015:09:42:56 +0000] "GET /fuof.jpg HTTP/1.1" 200 10123 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (Linux; Android 5.0; SAMSUNG SM-G900F Build/LRX21T) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/2.1 Chrome/34.0.1847.76 Mobile Safari/537.36"
94.15.185.221 - - [27/Oct/2015:09:42:58 +0000] "GET /cs/timetables.html HTTP/1.1" 200 2596 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (Linux; Android 5.0; SAMSUNG SM-G900F Build/LRX21T) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/2.1 Chrome/34.0.1847.76 Mobile Safari/537.36"
94.15.185.221 - - [27/Oct/2015:09:43:01 +0000] "GET /cs/tt1-CSF.html HTTP/1.1" 200 3108 "https://www.firstyearmatters.info/cs/timetables.html" "Mozilla/5.0 (Linux; Android 5.0; SAMSUNG SM-G900F Build/LRX21T) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/2.1 Chrome/34.0.1847.76 Mobile Safari/537.36"
94.15.185.221 - - [27/Oct/2015:09:43:17 +0000] "-" 408 161 "-" "-"
10.99.180.138 - - [27/Oct/2015:10:36:35 +0000] "GET /staff/ HTTP/1.1" 200 4947 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
146.87.16.48 - - [27/Oct/2015:11:08:10 +0000] "GET /lectureres.txt HTTP/1.1" 404 4424 "-" "Wget/1.15 (linux-gnu)"
146.87.16.48 - - [27/Oct/2015:11:08:50 +0000] "GET /lecturers.txt HTTP/1.1" 200 7134 "-" "Wget/1.15 (linux-gnu)"
146.87.114.233 - - [27/Oct/2015:11:17:16 +0000] "GET /portal/ HTTP/1.1" 302 4817 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.114.233 - - [27/Oct/2015:11:17:17 +0000] "GET /portal/login HTTP/1.1" 200 1469 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.114.233 - - [27/Oct/2015:11:17:17 +0000] "GET /portal/js/42be59c.js HTTP/1.1" 200 41370 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.114.233 - - [27/Oct/2015:11:17:17 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.114.233 - - [27/Oct/2015:11:17:17 +0000] "GET /favicon.ico HTTP/1.1" 200 3984 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.114.233 - - [27/Oct/2015:11:17:23 +0000] "POST /portal/login_check HTTP/1.1" 302 1127 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.114.233 - - [27/Oct/2015:11:17:24 +0000] "GET /portal/ HTTP/1.1" 302 891 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.114.233 - - [27/Oct/2015:11:17:24 +0000] "GET /portal/dashboard HTTP/1.1" 200 1608 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.114.233 - - [27/Oct/2015:11:17:25 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.180 - - [27/Oct/2015:11:18:40 +0000] "GET /portal/ HTTP/1.1" 302 4817 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.180 - - [27/Oct/2015:11:18:40 +0000] "GET /portal/login HTTP/1.1" 200 1335 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.180 - - [27/Oct/2015:11:18:40 +0000] "GET /portal/js/42be59c.js HTTP/1.1" 200 45093 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.180 - - [27/Oct/2015:11:18:40 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.180 - - [27/Oct/2015:11:18:41 +0000] "GET /favicon.ico HTTP/1.1" 200 3984 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.180 - - [27/Oct/2015:11:18:42 +0000] "POST /portal/login_check HTTP/1.1" 302 989 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.180 - - [27/Oct/2015:11:18:43 +0000] "GET /portal/ HTTP/1.1" 302 753 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.180 - - [27/Oct/2015:11:18:43 +0000] "GET /portal/dashboard HTTP/1.1" 200 1397 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.180 - - [27/Oct/2015:11:18:43 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.197 - - [27/Oct/2015:12:06:37 +0000] "GET /portal/login HTTP/1.1" 200 5186 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.197 - - [27/Oct/2015:12:06:38 +0000] "GET /portal/js/42be59c.js HTTP/1.1" 200 45077 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.197 - - [27/Oct/2015:12:06:38 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.197 - - [27/Oct/2015:12:06:42 +0000] "GET /portal/login HTTP/1.1" 200 1341 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.197 - - [27/Oct/2015:12:06:42 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
213.205.194.173 - - [27/Oct/2015:12:08:25 +0000] "GET / HTTP/1.1" 302 4280 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
213.205.194.173 - - [27/Oct/2015:12:08:25 +0000] "GET /cs HTTP/1.1" 301 668 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
213.205.194.173 - - [27/Oct/2015:12:08:25 +0000] "GET /cs/ HTTP/1.1" 200 2913 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
213.205.194.173 - - [27/Oct/2015:12:08:25 +0000] "GET /default.css HTTP/1.1" 200 1576 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
213.205.194.173 - - [27/Oct/2015:12:08:25 +0000] "GET /print.css HTTP/1.1" 200 1196 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
213.205.194.173 - - [27/Oct/2015:12:08:25 +0000] "GET /highcontrast.css HTTP/1.1" 200 1675 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
213.205.194.173 - - [27/Oct/2015:12:08:25 +0000] "GET /largetext.css HTTP/1.1" 200 1623 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
213.205.194.173 - - [27/Oct/2015:12:08:25 +0000] "GET /fym.css HTTP/1.1" 200 1727 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
213.205.194.173 - - [27/Oct/2015:12:08:25 +0000] "GET /ie6.css HTTP/1.1" 200 1730 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
213.205.194.173 - - [27/Oct/2015:12:08:27 +0000] "GET /switcher.js HTTP/1.1" 200 1134 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
213.205.194.173 - - [27/Oct/2015:12:08:27 +0000] "GET /uos.jpg HTTP/1.1" 200 6127 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
213.205.194.173 - - [27/Oct/2015:12:08:27 +0000] "GET /fuof.jpg HTTP/1.1" 200 9910 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
213.205.194.173 - - [27/Oct/2015:12:08:41 +0000] "GET /cs/timetables.html HTTP/1.1" 200 2661 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
213.205.194.173 - - [27/Oct/2015:12:08:54 +0000] "GET /cs/tt1-CSF.html HTTP/1.1" 200 3166 "https://www.firstyearmatters.info/cs/timetables.html" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
213.205.194.173 - - [27/Oct/2015:12:09:07 +0000] "GET /cs/tt1-MITF.html HTTP/1.1" 200 2963 "https://www.firstyearmatters.info/cs/timetables.html" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
216.218.206.67 - - [27/Oct/2015:12:36:12 +0000] "GET / HTTP/1.1" 302 5780 "-" "-"
86.1.226.30 - - [27/Oct/2015:13:20:55 +0000] "GET / HTTP/1.1" 302 4435 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
86.1.226.30 - - [27/Oct/2015:13:20:55 +0000] "GET /cs HTTP/1.1" 301 746 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
86.1.226.30 - - [27/Oct/2015:13:20:55 +0000] "GET /cs/ HTTP/1.1" 200 3092 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
86.1.226.30 - - [27/Oct/2015:13:20:55 +0000] "GET /default.css HTTP/1.1" 200 1727 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
86.1.226.30 - - [27/Oct/2015:13:20:55 +0000] "GET /switcher.js HTTP/1.1" 200 1279 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
86.1.226.30 - - [27/Oct/2015:13:20:55 +0000] "GET /uos.jpg HTTP/1.1" 200 6218 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
86.1.226.30 - - [27/Oct/2015:13:20:55 +0000] "GET /ie6.css HTTP/1.1" 200 1936 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
86.1.226.30 - - [27/Oct/2015:13:20:55 +0000] "GET /print.css HTTP/1.1" 200 1408 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
86.1.226.30 - - [27/Oct/2015:13:20:55 +0000] "GET /largetext.css HTTP/1.1" 200 1824 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
86.1.226.30 - - [27/Oct/2015:13:20:55 +0000] "GET /highcontrast.css HTTP/1.1" 200 1888 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
86.1.226.30 - - [27/Oct/2015:13:20:55 +0000] "GET /fuof.jpg HTTP/1.1" 200 9994 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
86.1.226.30 - - [27/Oct/2015:13:20:55 +0000] "GET /fym.css HTTP/1.1" 200 1936 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
86.1.226.30 - - [27/Oct/2015:13:20:55 +0000] "GET /favicon.ico HTTP/1.1" 200 4090 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
86.1.226.30 - - [27/Oct/2015:13:21:02 +0000] "GET /portal/login HTTP/1.1" 200 1834 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
86.1.226.30 - - [27/Oct/2015:13:21:02 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1124 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
86.1.226.30 - - [27/Oct/2015:13:21:02 +0000] "GET /portal/js/42be59c.js HTTP/1.1" 200 41902 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
86.1.226.30 - - [27/Oct/2015:13:21:04 +0000] "GET /portal/login HTTP/1.1" 200 1577 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
86.1.226.30 - - [27/Oct/2015:13:21:04 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1124 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
86.1.226.30 - - [27/Oct/2015:13:21:04 +0000] "GET /portal HTTP/1.1" 301 762 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
86.1.226.30 - - [27/Oct/2015:13:21:04 +0000] "GET /portal/ HTTP/1.1" 302 1076 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
86.1.226.30 - - [27/Oct/2015:13:21:04 +0000] "GET /portal/login HTTP/1.1" 200 1770 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
86.1.226.30 - - [27/Oct/2015:13:21:05 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1124 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
86.1.226.30 - - [27/Oct/2015:13:21:16 +0000] "POST /portal/login_check HTTP/1.1" 302 1365 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
86.1.226.30 - - [27/Oct/2015:13:21:16 +0000] "GET /portal/ HTTP/1.1" 302 948 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
86.1.226.30 - - [27/Oct/2015:13:21:16 +0000] "GET /portal/dashboard HTTP/1.1" 200 1834 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
86.1.226.30 - - [27/Oct/2015:13:21:17 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1124 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
146.87.16.22 - - [27/Oct/2015:13:27:02 +0000] "GET /lecturers.txt HTTP/1.1" 200 7150 "-" "Wget/1.15 (linux-gnu)"
146.87.136.145 - - [27/Oct/2015:13:41:00 +0000] "GET /portal/login HTTP/1.1" 200 5250 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [27/Oct/2015:13:41:01 +0000] "GET /portal/js/42be59c.js HTTP/1.1" 200 45093 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [27/Oct/2015:13:41:01 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [27/Oct/2015:13:41:01 +0000] "GET /favicon.ico HTTP/1.1" 200 3984 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [27/Oct/2015:13:41:16 +0000] "POST /portal/login_check HTTP/1.1" 302 1036 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [27/Oct/2015:13:41:16 +0000] "GET /portal/login HTTP/1.1" 200 1979 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [27/Oct/2015:13:41:16 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [27/Oct/2015:13:42:29 +0000] "GET /portal/login HTTP/1.1" 200 1474 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [27/Oct/2015:13:42:29 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1062 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [27/Oct/2015:13:43:32 +0000] "POST /portal/login_check HTTP/1.1" 302 1127 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [27/Oct/2015:13:43:33 +0000] "GET /portal/ HTTP/1.1" 302 753 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [27/Oct/2015:13:43:33 +0000] "GET /portal/dashboard HTTP/1.1" 200 1532 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [27/Oct/2015:13:43:33 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [27/Oct/2015:13:43:34 +0000] "GET /portal/linux/passwd/162 HTTP/1.1" 200 1436 "https://www.firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [27/Oct/2015:13:43:35 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/linux/passwd/162" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [27/Oct/2015:13:43:49 +0000] "POST /portal/linux/passwd/162 HTTP/1.1" 200 1604 "https://www.firstyearmatters.info/portal/linux/passwd/162" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [27/Oct/2015:13:43:50 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/linux/passwd/162" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [27/Oct/2015:13:44:27 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1062 "https://www.firstyearmatters.info/portal/linux/passwd/162" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [27/Oct/2015:13:44:09 +0000] "POST /portal/linux/passwd/162 HTTP/1.1" 200 1625 "https://www.firstyearmatters.info/portal/linux/passwd/162" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:13:57:24 +0000] "GET /portal/ HTTP/1.1" 302 4781 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:13:57:24 +0000] "GET /portal/login HTTP/1.1" 200 1336 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:13:57:24 +0000] "GET /portal/js/42be59c.js HTTP/1.1" 200 41232 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:13:57:24 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 4769 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:13:57:24 +0000] "GET /favicon.ico HTTP/1.1" 200 3984 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:13:57:35 +0000] "POST /portal/login_check HTTP/1.1" 302 1016 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:13:57:36 +0000] "GET /portal/login HTTP/1.1" 200 1983 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:13:57:36 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1062 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:13:57:44 +0000] "POST /portal/login_check HTTP/1.1" 302 1016 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:13:57:44 +0000] "GET /portal/login HTTP/1.1" 200 1983 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:13:57:44 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1062 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:13:57:47 +0000] "GET /portal/dashboard HTTP/1.1" 302 878 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:13:57:47 +0000] "GET /portal/login HTTP/1.1" 200 1341 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:13:57:47 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1062 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:13:57:50 +0000] "POST /portal/login_check HTTP/1.1" 302 878 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:13:57:50 +0000] "GET /portal/login HTTP/1.1" 200 1983 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:13:57:50 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1062 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:13:57:57 +0000] "GET /portal/login HTTP/1.1" 200 1479 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:13:57:57 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:13:58:02 +0000] "POST /portal/login_check HTTP/1.1" 302 1016 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:13:58:02 +0000] "GET /portal/login HTTP/1.1" 200 2121 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:13:58:02 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:13:59:12 +0000] "POST /portal/login_check HTTP/1.1" 302 1016 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:13:59:12 +0000] "GET /portal/login HTTP/1.1" 200 1983 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:13:59:12 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:14:04:36 +0000] "POST /portal/login_check HTTP/1.1" 302 4723 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:14:04:36 +0000] "GET /portal/login HTTP/1.1" 200 1983 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:14:04:36 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1062 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:14:05:11 +0000] "GET /portal/login HTTP/1.1" 200 1479 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:14:05:11 +0000] "GET /portal/js/42be59c.js HTTP/1.1" 200 41370 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:14:05:11 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:14:05:16 +0000] "POST /portal/login_check HTTP/1.1" 302 1016 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:14:05:17 +0000] "GET /portal/login HTTP/1.1" 200 1983 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:14:05:17 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:14:05:41 +0000] "POST /portal/login_check HTTP/1.1" 302 1016 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:14:05:41 +0000] "GET /portal/login HTTP/1.1" 200 1983 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:14:05:42 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:14:05:46 +0000] "POST /portal/login_check HTTP/1.1" 302 1016 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:14:05:47 +0000] "GET /portal/login HTTP/1.1" 200 1983 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:14:05:47 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:14:06:07 +0000] "GET /portal/login HTTP/1.1" 200 1479 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:14:06:07 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1062 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:14:06:13 +0000] "POST /portal/login_check HTTP/1.1" 302 1016 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:14:06:13 +0000] "GET /portal/login HTTP/1.1" 200 1983 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:14:06:13 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.187.132 - - [27/Oct/2015:14:07:10 +0000] "GET /portal/ HTTP/1.1" 302 4781 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.187.132 - - [27/Oct/2015:14:07:10 +0000] "GET /portal/login HTTP/1.1" 200 1469 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.187.132 - - [27/Oct/2015:14:07:10 +0000] "GET /portal/js/42be59c.js HTTP/1.1" 200 41370 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.187.132 - - [27/Oct/2015:14:07:10 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.187.132 - - [27/Oct/2015:14:07:10 +0000] "GET /favicon.ico HTTP/1.1" 200 3984 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.187.132 - - [27/Oct/2015:14:07:17 +0000] "POST /portal/login_check HTTP/1.1" 302 1016 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.187.132 - - [27/Oct/2015:14:07:17 +0000] "GET /portal/login HTTP/1.1" 200 2118 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.187.132 - - [27/Oct/2015:14:07:17 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.187.132 - - [27/Oct/2015:14:07:37 +0000] "POST /portal/login_check HTTP/1.1" 302 1107 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.187.132 - - [27/Oct/2015:14:07:38 +0000] "GET /portal/ HTTP/1.1" 302 891 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.187.132 - - [27/Oct/2015:14:07:38 +0000] "GET /portal/dashboard HTTP/1.1" 200 1590 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.187.132 - - [27/Oct/2015:14:07:38 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.187.132 - - [27/Oct/2015:14:07:52 +0000] "GET /portal/logout HTTP/1.1" 302 1107 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.187.132 - - [27/Oct/2015:14:07:52 +0000] "GET /portal/ HTTP/1.1" 302 1016 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.187.132 - - [27/Oct/2015:14:07:52 +0000] "GET /portal/login HTTP/1.1" 200 1473 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.187.132 - - [27/Oct/2015:14:07:52 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.187.132 - - [27/Oct/2015:14:08:10 +0000] "POST /portal/login_check HTTP/1.1" 302 1016 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.187.132 - - [27/Oct/2015:14:08:10 +0000] "GET /portal/login HTTP/1.1" 200 2121 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.187.132 - - [27/Oct/2015:14:08:10 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.136.146 - - [27/Oct/2015:14:09:01 +0000] "GET /portal/ HTTP/1.1" 302 4619 "-" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)"
146.87.136.146 - - [27/Oct/2015:14:09:01 +0000] "GET /portal/login HTTP/1.1" 200 1353 "-" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)"
146.87.136.146 - - [27/Oct/2015:14:09:01 +0000] "GET /portal/js/42be59c.js HTTP/1.1" 200 41422 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)"
146.87.136.146 - - [27/Oct/2015:14:09:01 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 948 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)"
146.87.136.146 - - [27/Oct/2015:14:09:01 +0000] "GET /favicon.ico HTTP/1.1" 200 3994 "-" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)"
146.87.136.146 - - [27/Oct/2015:14:09:07 +0000] "POST /portal/login_check HTTP/1.1" 302 1045 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)"
146.87.136.146 - - [27/Oct/2015:14:09:07 +0000] "GET /portal/login HTTP/1.1" 200 2009 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)"
146.87.136.146 - - [27/Oct/2015:14:09:07 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1093 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)"
10.99.180.138 - - [27/Oct/2015:14:55:17 +0000] "GET /portal/ HTTP/1.1" 302 1074 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
10.99.180.138 - - [27/Oct/2015:14:55:18 +0000] "GET /portal/login HTTP/1.1" 200 1337 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
10.99.180.138 - - [27/Oct/2015:14:55:16 +0000] "GET /portal/login HTTP/1.1" 200 4963 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
10.99.180.138 - - [27/Oct/2015:14:55:18 +0000] "GET /portal/js/42be59c.js HTTP/1.1" 200 41370 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
10.99.180.138 - - [27/Oct/2015:14:55:18 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1062 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
10.99.180.138 - - [27/Oct/2015:14:55:24 +0000] "POST /portal/login_check HTTP/1.1" 302 1016 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
10.99.180.138 - - [27/Oct/2015:14:55:24 +0000] "GET /portal/login HTTP/1.1" 200 2124 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
10.99.180.138 - - [27/Oct/2015:14:55:24 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
10.99.180.138 - - [27/Oct/2015:14:55:28 +0000] "POST /portal/login_check HTTP/1.1" 302 969 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
10.99.180.138 - - [27/Oct/2015:14:55:28 +0000] "GET /portal/ HTTP/1.1" 302 891 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
10.99.180.138 - - [27/Oct/2015:14:55:28 +0000] "GET /portal/dashboard HTTP/1.1" 200 1637 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
10.99.180.138 - - [27/Oct/2015:14:55:28 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
146.87.136.146 - - [27/Oct/2015:15:04:53 +0000] "GET /portal/ HTTP/1.1" 302 4781 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:15:04:53 +0000] "GET /portal/login HTTP/1.1" 200 1334 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:15:04:53 +0000] "GET /portal/js/42be59c.js HTTP/1.1" 200 45077 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:15:04:53 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:15:04:53 +0000] "GET /favicon.ico HTTP/1.1" 200 3984 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:15:05:02 +0000] "POST /portal/login_check HTTP/1.1" 302 1016 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:15:05:02 +0000] "GET /portal/login HTTP/1.1" 200 1981 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:15:05:02 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1062 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:15:05:07 +0000] "POST /portal/login_check HTTP/1.1" 302 969 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:15:05:07 +0000] "GET /portal/ HTTP/1.1" 302 753 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:15:05:07 +0000] "GET /portal/dashboard HTTP/1.1" 200 1536 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:15:05:07 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:15:18:50 +0000] "GET /portal/login HTTP/1.1" 200 5234 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:15:18:50 +0000] "GET /portal/js/42be59c.js HTTP/1.1" 200 41232 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:15:18:50 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 4769 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:15:18:50 +0000] "GET /favicon.ico HTTP/1.1" 200 3984 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:15:19:12 +0000] "POST /portal/login_check HTTP/1.1" 302 1016 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:15:19:12 +0000] "GET /portal/login HTTP/1.1" 200 1981 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:15:19:12 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1062 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:15:19:24 +0000] "POST /portal/login_check HTTP/1.1" 302 1016 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:15:19:24 +0000] "GET /portal/login HTTP/1.1" 200 1981 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:15:19:24 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1062 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:15:19:28 +0000] "GET /portal/login HTTP/1.1" 200 1337 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:15:19:28 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:15:19:33 +0000] "GET /portal/dashboard HTTP/1.1" 302 1016 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:15:19:33 +0000] "GET /portal/login HTTP/1.1" 200 1337 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:15:19:33 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:15:19:36 +0000] "GET /portal/dashboard HTTP/1.1" 302 1016 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:15:19:36 +0000] "GET /portal/login HTTP/1.1" 200 1337 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:15:19:36 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1062 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:15:19:58 +0000] "POST /portal/login_check HTTP/1.1" 302 1107 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:15:19:58 +0000] "GET /portal/ HTTP/1.1" 302 753 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:15:19:58 +0000] "GET /portal/dashboard HTTP/1.1" 200 1536 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:15:19:58 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:15:20:27 +0000] "GET /portal/linux/passwd/182 HTTP/1.1" 200 1579 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:15:20:27 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/linux/passwd/182" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:15:20:59 +0000] "POST /portal/linux/passwd/182 HTTP/1.1" 200 1632 "https://firstyearmatters.info/portal/linux/passwd/182" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:15:20:59 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/linux/passwd/182" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:15:22:05 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1062 "https://firstyearmatters.info/portal/linux/passwd/182" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:15:21:53 +0000] "POST /portal/linux/passwd/182 HTTP/1.1" 200 1630 "https://firstyearmatters.info/portal/linux/passwd/182" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.187.27 - - [27/Oct/2015:15:22:44 +0000] "GET /portal/login HTTP/1.1" 200 5234 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.187.27 - - [27/Oct/2015:15:22:45 +0000] "GET /portal/js/42be59c.js HTTP/1.1" 200 41370 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.187.27 - - [27/Oct/2015:15:22:44 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.187.27 - - [27/Oct/2015:15:22:45 +0000] "GET /favicon.ico HTTP/1.1" 200 3984 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.187.27 - - [27/Oct/2015:15:22:51 +0000] "POST /portal/login_check HTTP/1.1" 302 1107 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.187.27 - - [27/Oct/2015:15:22:51 +0000] "GET /portal/ HTTP/1.1" 302 891 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.187.27 - - [27/Oct/2015:15:22:51 +0000] "GET /portal/dashboard HTTP/1.1" 200 1537 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.187.27 - - [27/Oct/2015:15:22:51 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0"
146.87.136.146 - - [27/Oct/2015:15:24:09 +0000] "GET /portal/login HTTP/1.1" 200 5186 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:15:24:09 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 4769 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:15:24:12 +0000] "POST /portal/login_check HTTP/1.1" 302 878 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:15:24:12 +0000] "GET /portal/login HTTP/1.1" 200 5828 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:15:24:12 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:15:24:19 +0000] "POST /portal/login_check HTTP/1.1" 302 1016 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:15:24:19 +0000] "GET /portal/login HTTP/1.1" 200 1983 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:15:24:19 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1062 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:15:24:21 +0000] "GET /portal/login HTTP/1.1" 200 1341 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:15:24:21 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:15:24:24 +0000] "POST /portal/login_check HTTP/1.1" 302 1016 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:15:24:24 +0000] "GET /portal/login HTTP/1.1" 200 1983 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.146 - - [27/Oct/2015:15:24:24 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1062 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
178.104.12.27 - - [27/Oct/2015:16:24:38 +0000] "GET /cs/tt1-MITF.html HTTP/1.1" 200 6475 "https://www.firstyearmatters.info/cs/timetables.html" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
178.104.12.27 - - [27/Oct/2015:16:24:39 +0000] "GET /default.css HTTP/1.1" 200 1576 "https://www.firstyearmatters.info/cs/tt1-MITF.html" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
178.104.12.27 - - [27/Oct/2015:16:24:39 +0000] "GET /print.css HTTP/1.1" 200 1196 "https://www.firstyearmatters.info/cs/tt1-MITF.html" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
178.104.12.27 - - [27/Oct/2015:16:24:39 +0000] "GET /largetext.css HTTP/1.1" 200 1623 "https://www.firstyearmatters.info/cs/tt1-MITF.html" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
178.104.12.27 - - [27/Oct/2015:16:24:39 +0000] "GET /highcontrast.css HTTP/1.1" 200 1675 "https://www.firstyearmatters.info/cs/tt1-MITF.html" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
178.104.12.27 - - [27/Oct/2015:16:24:39 +0000] "GET /ie6.css HTTP/1.1" 200 1730 "https://www.firstyearmatters.info/cs/tt1-MITF.html" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
178.104.12.27 - - [27/Oct/2015:16:24:39 +0000] "GET /fym.css HTTP/1.1" 200 1727 "https://www.firstyearmatters.info/cs/tt1-MITF.html" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
178.104.12.27 - - [27/Oct/2015:16:24:45 +0000] "GET /fuof.jpg HTTP/1.1" 200 10048 "https://www.firstyearmatters.info/cs/tt1-MITF.html" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
178.104.12.27 - - [27/Oct/2015:16:24:45 +0000] "GET /switcher.js HTTP/1.1" 200 1272 "https://www.firstyearmatters.info/cs/tt1-MITF.html" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
178.104.12.27 - - [27/Oct/2015:16:24:45 +0000] "GET /uos.jpg HTTP/1.1" 200 6265 "https://www.firstyearmatters.info/cs/tt1-MITF.html" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
146.87.136.145 - - [27/Oct/2015:16:46:36 +0000] "GET /wiki/doku.php HTTP/1.1" 200 6512 "http://firstyearmatters.info/cs/usefullinks.html" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)"
146.87.136.145 - - [27/Oct/2015:16:46:37 +0000] "GET /wiki/doku.php HTTP/1.1" 200 4190 "http://firstyearmatters.info/cs/usefullinks.html" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)"
146.87.136.145 - - [27/Oct/2015:16:46:37 +0000] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick_ltr.css HTTP/1.1" 200 4142 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)"
146.87.136.145 - - [27/Oct/2015:16:46:37 +0000] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick.min.1.3.js HTTP/1.1" 200 4142 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)"
146.87.136.145 - - [27/Oct/2015:16:46:38 +0000] "GET /wiki/lib/tpl/dokuwiki/images/button-donate.gif HTTP/1.1" 200 522 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)"
146.87.136.145 - - [27/Oct/2015:16:46:37 +0000] "GET /wiki/lib/plugins/issuetracker/datepick/jquery.1.4.2.js HTTP/1.1" 200 4142 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)"
146.87.136.145 - - [27/Oct/2015:16:46:38 +0000] "GET /wiki/lib/tpl/dokuwiki/images/button-dw.png HTTP/1.1" 200 907 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)"
146.87.136.145 - - [27/Oct/2015:16:46:38 +0000] "GET /wiki/lib/tpl/dokuwiki/images/button-php.gif HTTP/1.1" 200 554 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)"
146.87.136.145 - - [27/Oct/2015:16:46:37 +0000] "GET /wiki/lib/exe/css.php?t=dokuwiki&tseed=2cb5b229a761de98d43761336d42f70b HTTP/1.1" 200 27700 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)"
146.87.136.145 - - [27/Oct/2015:16:46:37 +0000] "GET /wiki/lib/exe/js.php?t=dokuwiki&tseed=2cb5b229a761de98d43761336d42f70b HTTP/1.1" 200 143195 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)"
146.87.136.145 - - [27/Oct/2015:16:46:38 +0000] "GET /wiki/lib/tpl/dokuwiki/images/page-gradient.png HTTP/1.1" 200 554 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)"
146.87.136.145 - - [27/Oct/2015:16:46:37 +0000] "GET /wiki/_media/wiki:logo.png HTTP/1.1" 403 683 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)"
146.87.136.145 - - [27/Oct/2015:16:46:38 +0000] "GET /wiki/lib/exe/indexer.php?id=start&1445964397 HTTP/1.1" 200 667 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)"
146.87.136.145 - - [27/Oct/2015:16:46:38 +0000] "GET /wiki/lib/tpl/dokuwiki/images/button-html5.png HTTP/1.1" 200 811 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)"
146.87.136.145 - - [27/Oct/2015:16:46:38 +0000] "GET /wiki/lib/tpl/dokuwiki/images/search.png HTTP/1.1" 200 666 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)"
146.87.136.145 - - [27/Oct/2015:16:46:38 +0000] "GET /wiki/lib/tpl/dokuwiki/images/usertools.png HTTP/1.1" 200 1786 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)"
146.87.136.145 - - [27/Oct/2015:16:46:38 +0000] "GET /wiki/lib/tpl/dokuwiki/images/pagetools-sprite.png?v=2 HTTP/1.1" 200 8122 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)"
146.87.136.145 - - [27/Oct/2015:16:46:38 +0000] "GET /wiki/lib/tpl/dokuwiki/images/button-css.png HTTP/1.1" 200 795 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)"
146.87.136.145 - - [27/Oct/2015:16:46:38 +0000] "GET /wiki/lib/tpl/dokuwiki/images/favicon.ico HTTP/1.1" 200 7770 "-" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)"
109.175.190.192 - - [27/Oct/2015:17:27:36 +0000] "GET / HTTP/1.1" 302 4268 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.175.190.192 - - [27/Oct/2015:17:27:36 +0000] "GET /cs HTTP/1.1" 301 656 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.175.190.192 - - [27/Oct/2015:17:27:36 +0000] "GET /cs/ HTTP/1.1" 200 2913 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.175.190.192 - - [27/Oct/2015:17:27:36 +0000] "GET /default.css HTTP/1.1" 200 1576 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.175.190.192 - - [27/Oct/2015:17:27:36 +0000] "GET /switcher.js HTTP/1.1" 200 1134 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.175.190.192 - - [27/Oct/2015:17:27:36 +0000] "GET /uos.jpg HTTP/1.1" 200 6127 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.175.190.192 - - [27/Oct/2015:17:27:36 +0000] "GET /fym.css HTTP/1.1" 200 1727 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.175.190.192 - - [27/Oct/2015:17:27:36 +0000] "GET /highcontrast.css HTTP/1.1" 200 1675 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.175.190.192 - - [27/Oct/2015:17:27:36 +0000] "GET /largetext.css HTTP/1.1" 200 1623 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.175.190.192 - - [27/Oct/2015:17:27:36 +0000] "GET /ie6.css HTTP/1.1" 200 1730 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.175.190.192 - - [27/Oct/2015:17:27:36 +0000] "GET /print.css HTTP/1.1" 200 1196 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.175.190.192 - - [27/Oct/2015:17:27:36 +0000] "GET /fuof.jpg HTTP/1.1" 200 9910 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.175.190.192 - - [27/Oct/2015:17:27:37 +0000] "GET /favicon.ico HTTP/1.1" 200 3984 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.175.190.192 - - [27/Oct/2015:17:27:37 +0000] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4242 "-" "Safari/11601.1.56 CFNetwork/760.0.5 Darwin/15.0.0 (x86_64)"
109.175.190.192 - - [27/Oct/2015:17:27:37 +0000] "GET /apple-touch-icon.png HTTP/1.1" 404 580 "-" "Safari/11601.1.56 CFNetwork/760.0.5 Darwin/15.0.0 (x86_64)"
109.175.190.192 - - [27/Oct/2015:17:27:43 +0000] "GET /cs/timetables.html HTTP/1.1" 200 2661 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.175.190.192 - - [27/Oct/2015:17:27:44 +0000] "GET /cs/tt1-MITF.html HTTP/1.1" 200 2825 "https://firstyearmatters.info/cs/timetables.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.175.190.192 - - [27/Oct/2015:17:27:50 +0000] "GET /cs/timetables.html HTTP/1.1" 200 2661 "https://firstyearmatters.info/cs/tt1-MITF.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.175.190.192 - - [27/Oct/2015:17:27:54 +0000] "GET /cs/timetables.html HTTP/1.1" 200 2523 "https://firstyearmatters.info/cs/timetables.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.175.190.192 - - [27/Oct/2015:17:27:56 +0000] "GET /cs/s2timetables.html HTTP/1.1" 200 2524 "https://firstyearmatters.info/cs/timetables.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.175.190.192 - - [27/Oct/2015:17:27:57 +0000] "GET /cs/s1timetables.html HTTP/1.1" 200 2524 "https://firstyearmatters.info/cs/s2timetables.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.175.190.192 - - [27/Oct/2015:17:28:00 +0000] "GET /cs/s2timetables.html HTTP/1.1" 200 2524 "https://firstyearmatters.info/cs/s1timetables.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
109.175.190.192 - - [27/Oct/2015:17:28:04 +0000] "GET /cs/tt2-MITF.html HTTP/1.1" 200 2752 "https://firstyearmatters.info/cs/s2timetables.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
213.152.162.99 - - [27/Oct/2015:18:50:44 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 5154 "http://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
213.152.162.99 - - [27/Oct/2015:18:50:45 +0000] "GET /favicon.ico HTTP/1.1" 200 3984 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
213.152.162.99 - - [27/Oct/2015:18:52:00 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1472 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
213.152.162.99 - - [27/Oct/2015:18:52:33 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1480 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
213.152.162.99 - - [27/Oct/2015:18:52:36 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1300 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
213.152.162.99 - - [27/Oct/2015:18:52:56 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1474 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
213.152.162.99 - - [27/Oct/2015:18:53:35 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1476 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
46.175.254.19 - - [28/Oct/2015:03:59:04 +0000] "GET /cgi-bin/forum/YaBB.pl?board=general HTTP/1.0" 200 78751 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?board=general" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.99 Safari/537.36"
46.175.254.19 - - [28/Oct/2015:03:59:05 +0000] "GET /cgi-bin/forum/YaBB.pl?action=register HTTP/1.0" 200 24439 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?action=register" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.99 Safari/537.36"
46.175.254.19 - - [28/Oct/2015:03:59:06 +0000] "GET /cgi-bin/forum/YaBB.pl?action=register HTTP/1.0" 200 24439 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?action=register" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.99 Safari/537.36"
46.175.254.19 - - [28/Oct/2015:03:59:07 +0000] "GET /cgi-bin/forum/YaBB.pl?action=register HTTP/1.0" 200 24439 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?action=register" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.99 Safari/537.36"
46.175.254.19 - - [28/Oct/2015:03:59:08 +0000] "GET /cgi-bin/forum/YaBB.pl?action=register HTTP/1.0" 200 24439 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?action=register" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.99 Safari/537.36"

View File

@@ -0,0 +1,375 @@
31.205.161.22 - - [26/Oct/2015:09:23:42 +0000] "GET /portal HTTP/1.1" 301 4509 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.10240"
31.205.161.22 - - [26/Oct/2015:09:23:42 +0000] "GET /portal/ HTTP/1.1" 302 936 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.10240"
31.205.161.22 - - [26/Oct/2015:09:23:44 +0000] "GET /portal/login HTTP/1.1" 200 1331 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.10240"
31.205.161.22 - - [26/Oct/2015:09:23:45 +0000] "GET /portal/js/42be59c.js HTTP/1.1" 200 41232 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.10240"
31.205.161.22 - - [26/Oct/2015:09:23:45 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 4769 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.10240"
31.205.161.22 - - [26/Oct/2015:09:23:45 +0000] "GET /favicon.ico HTTP/1.1" 200 7829 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.10240"
31.205.161.22 - - [26/Oct/2015:09:23:59 +0000] "POST /portal/login_check HTTP/1.1" 302 1075 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.10240"
31.205.161.22 - - [26/Oct/2015:09:24:00 +0000] "GET /portal/ HTTP/1.1" 302 753 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.10240"
31.205.161.22 - - [26/Oct/2015:09:24:00 +0000] "GET /portal/dashboard HTTP/1.1" 200 1401 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.10240"
31.205.161.22 - - [26/Oct/2015:09:24:00 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.10240"
31.205.161.22 - - [26/Oct/2015:09:24:06 +0000] "-" 408 3844 "-" "-"
31.205.161.22 - - [26/Oct/2015:09:24:15 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1030 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.10240"
31.205.161.22 - - [26/Oct/2015:09:24:22 +0000] "POST /portal/login_check HTTP/1.1" 302 1075 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.10240"
31.205.161.22 - - [26/Oct/2015:09:24:22 +0000] "GET /portal/ HTTP/1.1" 302 753 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.10240"
31.205.161.22 - - [26/Oct/2015:09:24:22 +0000] "GET /portal/dashboard HTTP/1.1" 200 1401 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.10240"
31.205.161.22 - - [26/Oct/2015:09:24:22 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.10240"
31.205.161.22 - - [26/Oct/2015:09:24:24 +0000] "GET /portal/linux/passwd/308 HTTP/1.1" 200 1551 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.10240"
31.205.161.22 - - [26/Oct/2015:09:24:25 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/linux/passwd/308" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.10240"
31.205.161.22 - - [26/Oct/2015:09:24:35 +0000] "POST /portal/linux/passwd/308 HTTP/1.1" 200 105 "https://firstyearmatters.info/portal/linux/passwd/308" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.10240"
31.205.161.22 - - [26/Oct/2015:09:25:06 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1030 "https://firstyearmatters.info/portal/linux/passwd/308" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.10240"
31.205.161.22 - - [26/Oct/2015:09:24:37 +0000] "POST /portal/linux/passwd/308 HTTP/1.1" 200 1602 "https://firstyearmatters.info/portal/linux/passwd/308" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.10240"
31.205.161.22 - - [26/Oct/2015:09:25:17 +0000] "GET /portal/dashboard HTTP/1.1" 200 1507 "https://firstyearmatters.info/portal/linux/passwd/308" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.10240"
31.205.161.22 - - [26/Oct/2015:09:25:17 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1030 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.10240"
10.99.180.174 - - [26/Oct/2015:10:24:50 +0000] "GET / HTTP/1.1" 302 4268 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
10.99.180.174 - - [26/Oct/2015:10:24:50 +0000] "GET /cs HTTP/1.1" 301 656 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
10.99.180.174 - - [26/Oct/2015:10:24:50 +0000] "GET /cs/ HTTP/1.1" 200 2912 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
10.99.180.174 - - [26/Oct/2015:10:24:51 +0000] "GET /fym.css HTTP/1.1" 200 1589 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
10.99.180.174 - - [26/Oct/2015:10:24:51 +0000] "GET /highcontrast.css HTTP/1.1" 200 1537 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
10.99.180.174 - - [26/Oct/2015:10:24:51 +0000] "GET /print.css HTTP/1.1" 200 1058 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
10.99.180.174 - - [26/Oct/2015:10:24:51 +0000] "GET /ie6.css HTTP/1.1" 200 1592 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
10.99.180.174 - - [26/Oct/2015:10:24:51 +0000] "GET /switcher.js HTTP/1.1" 200 1272 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
10.99.180.174 - - [26/Oct/2015:10:24:51 +0000] "GET /uos.jpg HTTP/1.1" 200 6127 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
10.99.180.174 - - [26/Oct/2015:10:24:51 +0000] "GET /fuof.jpg HTTP/1.1" 200 9910 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
10.99.180.174 - - [26/Oct/2015:10:24:51 +0000] "GET /favicon.ico HTTP/1.1" 200 3984 "https://firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
10.99.180.174 - - [26/Oct/2015:10:24:51 +0000] "GET /cs/ HTTP/1.1" 200 2912 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
10.99.180.174 - - [26/Oct/2015:10:24:55 +0000] "GET /cs/stafftimetables.html HTTP/1.1" 200 2829 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
10.99.180.174 - - [26/Oct/2015:10:24:57 +0000] "GET /cs/st1-Ian+Drumm.html HTTP/1.1" 200 3125 "https://firstyearmatters.info/cs/stafftimetables.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
10.99.180.174 - - [26/Oct/2015:11:54:00 +0000] "GET / HTTP/1.1" 302 4268 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
10.99.180.174 - - [26/Oct/2015:11:54:00 +0000] "GET /cs HTTP/1.1" 301 656 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
10.99.180.174 - - [26/Oct/2015:11:54:00 +0000] "GET /cs/ HTTP/1.1" 200 2912 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
10.99.180.174 - - [26/Oct/2015:11:54:16 +0000] "GET /staff/ HTTP/1.1" 200 4947 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
10.99.180.174 - - [26/Oct/2015:11:54:16 +0000] "GET /staff/csmt.ico HTTP/1.1" 404 578 "https://www.firstyearmatters.info/staff/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
10.99.180.174 - - [26/Oct/2015:11:54:36 +0000] "GET /lists/register.html HTTP/1.1" 200 1977 "https://www.firstyearmatters.info/staff/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
10.99.180.174 - - [26/Oct/2015:11:54:36 +0000] "GET /favicon.ico HTTP/1.1" 200 4122 "https://www.firstyearmatters.info/lists/register.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
213.152.161.181 - - [26/Oct/2015:12:35:28 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 5162 "http://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
213.152.161.181 - - [26/Oct/2015:12:35:28 +0000] "GET /page.css HTTP/1.1" 200 626 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
213.152.161.181 - - [26/Oct/2015:12:37:40 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1445 "http://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
213.152.161.181 - - [26/Oct/2015:12:38:27 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1463 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
213.152.161.181 - - [26/Oct/2015:12:38:45 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1484 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
45.55.133.245 - - [26/Oct/2015:12:51:57 +0000] "GET / HTTP/1.1" 302 4468 "-" "-"
146.87.136.145 - - [26/Oct/2015:13:03:13 +0000] "GET /portal/login HTTP/1.1" 200 5252 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [26/Oct/2015:13:03:13 +0000] "GET /portal/js/42be59c.js HTTP/1.1" 200 45093 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [26/Oct/2015:13:03:13 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [26/Oct/2015:13:03:13 +0000] "GET /favicon.ico HTTP/1.1" 200 3984 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.76 - - [26/Oct/2015:13:03:45 +0000] "GET /portal/login HTTP/1.1" 200 5247 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.76 - - [26/Oct/2015:13:03:45 +0000] "GET /portal/js/42be59c.js HTTP/1.1" 200 41370 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.76 - - [26/Oct/2015:13:03:45 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.76 - - [26/Oct/2015:13:03:45 +0000] "GET /favicon.ico HTTP/1.1" 200 3984 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.66 - - [26/Oct/2015:13:03:49 +0000] "GET /portal/login HTTP/1.1" 200 5254 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.66 - - [26/Oct/2015:13:03:49 +0000] "GET /portal/js/42be59c.js HTTP/1.1" 200 41232 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.66 - - [26/Oct/2015:13:03:49 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 4785 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.66 - - [26/Oct/2015:13:03:49 +0000] "GET /favicon.ico HTTP/1.1" 200 3984 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.76 - - [26/Oct/2015:13:04:03 +0000] "POST /portal/login_check HTTP/1.1" 302 1127 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.76 - - [26/Oct/2015:13:04:03 +0000] "GET /portal/ HTTP/1.1" 302 891 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.76 - - [26/Oct/2015:13:04:03 +0000] "GET /portal/dashboard HTTP/1.1" 200 1383 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.76 - - [26/Oct/2015:13:04:03 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.136.145 - - [26/Oct/2015:13:04:11 +0000] "GET /cs/portal/login HTTP/1.1" 404 4440 "-" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
146.87.136.145 - - [26/Oct/2015:13:04:11 +0000] "GET /favicon.ico HTTP/1.1" 200 3984 "https://www.firstyearmatters.info/cs/portal/login" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
146.87.136.145 - - [26/Oct/2015:13:04:14 +0000] "POST /portal/login_check HTTP/1.1" 302 1127 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [26/Oct/2015:13:04:14 +0000] "GET /portal/ HTTP/1.1" 302 753 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [26/Oct/2015:13:04:15 +0000] "GET /portal/dashboard HTTP/1.1" 200 1457 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [26/Oct/2015:13:04:15 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1062 "https://www.firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.66 - - [26/Oct/2015:13:04:16 +0000] "POST /portal/login_check HTTP/1.1" 302 1127 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.66 - - [26/Oct/2015:13:04:17 +0000] "GET /portal/ HTTP/1.1" 302 753 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.66 - - [26/Oct/2015:13:04:17 +0000] "GET /portal/dashboard HTTP/1.1" 200 1380 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.66 - - [26/Oct/2015:13:04:17 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.66 - - [26/Oct/2015:13:04:23 +0000] "GET /portal/linux/register HTTP/1.1" 200 1629 "https://www.firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.66 - - [26/Oct/2015:13:04:23 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.76 - - [26/Oct/2015:13:04:37 +0000] "GET /portal/linux/register HTTP/1.1" 200 1627 "https://www.firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.76 - - [26/Oct/2015:13:04:37 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.182 - - [26/Oct/2015:13:04:54 +0000] "GET /portal/login HTTP/1.1" 200 5252 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.182 - - [26/Oct/2015:13:04:54 +0000] "GET /portal/js/42be59c.js HTTP/1.1" 200 41232 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.182 - - [26/Oct/2015:13:04:54 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 4785 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.182 - - [26/Oct/2015:13:04:54 +0000] "GET /favicon.ico HTTP/1.1" 200 3984 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.182 - - [26/Oct/2015:13:05:02 +0000] "POST /portal/login_check HTTP/1.1" 302 1127 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.182 - - [26/Oct/2015:13:05:02 +0000] "GET /portal/ HTTP/1.1" 302 891 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.182 - - [26/Oct/2015:13:05:02 +0000] "GET /portal/dashboard HTTP/1.1" 200 1245 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.182 - - [26/Oct/2015:13:05:02 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.182 - - [26/Oct/2015:13:05:05 +0000] "GET /portal/linux/register HTTP/1.1" 200 1493 "https://www.firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.182 - - [26/Oct/2015:13:05:05 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1062 "https://www.firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.76 - - [26/Oct/2015:13:05:11 +0000] "POST /portal/linux/register HTTP/1.1" 200 1653 "https://www.firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.76 - - [26/Oct/2015:13:05:11 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0"
146.87.16.186 - - [26/Oct/2015:13:05:28 +0000] "GET /portal/login HTTP/1.1" 200 5252 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.186 - - [26/Oct/2015:13:05:28 +0000] "GET /portal/js/42be59c.js HTTP/1.1" 200 41370 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.186 - - [26/Oct/2015:13:05:28 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 4785 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.186 - - [26/Oct/2015:13:05:28 +0000] "GET /favicon.ico HTTP/1.1" 200 3984 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.186 - - [26/Oct/2015:13:05:54 +0000] "POST /portal/login_check HTTP/1.1" 302 1127 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.186 - - [26/Oct/2015:13:05:54 +0000] "GET /portal/ HTTP/1.1" 302 891 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.186 - - [26/Oct/2015:13:05:54 +0000] "GET /portal/dashboard HTTP/1.1" 200 1247 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.186 - - [26/Oct/2015:13:05:54 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.182 - - [26/Oct/2015:13:06:07 +0000] "POST /portal/linux/register HTTP/1.1" 200 1722 "https://www.firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.182 - - [26/Oct/2015:13:06:07 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.186 - - [26/Oct/2015:13:06:16 +0000] "GET /portal/linux/register HTTP/1.1" 200 1632 "https://www.firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.186 - - [26/Oct/2015:13:06:16 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1062 "https://www.firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.182 - - [26/Oct/2015:13:06:23 +0000] "POST /portal/linux/register HTTP/1.1" 200 1674 "https://www.firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.182 - - [26/Oct/2015:13:06:23 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.186 - - [26/Oct/2015:13:06:42 +0000] "POST /portal/linux/register HTTP/1.1" 200 1674 "https://www.firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.186 - - [26/Oct/2015:13:06:42 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.182 - - [26/Oct/2015:13:07:21 +0000] "POST /portal/linux/register HTTP/1.1" 200 1674 "https://www.firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.182 - - [26/Oct/2015:13:07:21 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.182 - - [26/Oct/2015:13:08:02 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1062 "https://www.firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.182 - - [26/Oct/2015:13:08:02 +0000] "GET /favicon.ico HTTP/1.1" 200 4122 "https://www.firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.182 - - [26/Oct/2015:13:08:02 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.66 - - [26/Oct/2015:13:08:04 +0000] "POST /portal/login_check HTTP/1.1" 302 1127 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.66 - - [26/Oct/2015:13:08:04 +0000] "GET /portal/ HTTP/1.1" 302 753 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.66 - - [26/Oct/2015:13:08:04 +0000] "GET /portal/dashboard HTTP/1.1" 200 1380 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.66 - - [26/Oct/2015:13:08:04 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.66 - - [26/Oct/2015:13:08:13 +0000] "GET /portal/linux/register HTTP/1.1" 200 1629 "https://www.firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.66 - - [26/Oct/2015:13:08:13 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.182 - - [26/Oct/2015:13:07:40 +0000] "POST /portal/linux/register HTTP/1.1" 302 857 "https://www.firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.182 - - [26/Oct/2015:13:07:42 +0000] "POST /portal/linux/register HTTP/1.1" 401 1104 "https://www.firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.182 - - [26/Oct/2015:13:08:00 +0000] "POST /portal/linux/register HTTP/1.1" 401 1104 "https://www.firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.182 - - [26/Oct/2015:13:07:51 +0000] "POST /portal/linux/register HTTP/1.1" 401 1104 "https://www.firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.182 - - [26/Oct/2015:13:08:03 +0000] "GET /portal/linux/register HTTP/1.1" 401 1104 "https://www.firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.186 - - [26/Oct/2015:13:08:21 +0000] "POST /portal/linux/register HTTP/1.1" 200 1674 "https://www.firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.186 - - [26/Oct/2015:13:08:21 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.66 - - [26/Oct/2015:13:08:22 +0000] "POST /portal/linux/register HTTP/1.1" 200 1672 "https://www.firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.66 - - [26/Oct/2015:13:08:22 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.182 - - [26/Oct/2015:13:08:27 +0000] "GET /portal/linux/register HTTP/1.1" 401 1138 "https://www.firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.182 - - [26/Oct/2015:13:08:34 +0000] "GET /portal/login HTTP/1.1" 200 1545 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.182 - - [26/Oct/2015:13:08:34 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.66 - - [26/Oct/2015:13:08:39 +0000] "POST /portal/linux/register HTTP/1.1" 200 1684 "https://www.firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.66 - - [26/Oct/2015:13:08:39 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.182 - - [26/Oct/2015:13:08:43 +0000] "POST /portal/login_check HTTP/1.1" 302 1127 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.182 - - [26/Oct/2015:13:08:44 +0000] "GET /portal/ HTTP/1.1" 302 753 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.182 - - [26/Oct/2015:13:08:44 +0000] "GET /portal/dashboard HTTP/1.1" 200 1537 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.182 - - [26/Oct/2015:13:08:44 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.88 - - [26/Oct/2015:13:09:25 +0000] "GET /portal/login HTTP/1.1" 200 5325 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.16.88 - - [26/Oct/2015:13:09:25 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 4785 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [26/Oct/2015:13:11:04 +0000] "GET /portal/login HTTP/1.1" 200 5254 "-" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
146.87.136.145 - - [26/Oct/2015:13:11:05 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
146.87.136.145 - - [26/Oct/2015:13:11:05 +0000] "GET /portal/js/42be59c.js HTTP/1.1" 200 41232 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
146.87.136.145 - - [26/Oct/2015:13:11:19 +0000] "POST /portal/login_check HTTP/1.1" 302 1127 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
146.87.136.145 - - [26/Oct/2015:13:11:19 +0000] "GET /portal/ HTTP/1.1" 302 753 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
146.87.136.145 - - [26/Oct/2015:13:11:19 +0000] "GET /portal/dashboard HTTP/1.1" 200 1244 "https://www.firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
146.87.136.145 - - [26/Oct/2015:13:11:19 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
146.87.136.145 - - [26/Oct/2015:13:11:22 +0000] "GET /portal/linux/register HTTP/1.1" 200 1489 "https://www.firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
146.87.136.145 - - [26/Oct/2015:13:11:22 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
146.87.136.145 - - [26/Oct/2015:13:11:27 +0000] "POST /portal/linux/register HTTP/1.1" 200 1533 "https://www.firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
146.87.136.145 - - [26/Oct/2015:13:11:27 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
146.87.136.145 - - [26/Oct/2015:13:11:33 +0000] "POST /portal/linux/register HTTP/1.1" 200 1671 "https://www.firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
146.87.136.145 - - [26/Oct/2015:13:11:33 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
146.87.16.186 - - [26/Oct/2015:13:11:32 +0000] "POST /portal/linux/register HTTP/1.1" 302 4614 "https://www.firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.186 - - [26/Oct/2015:13:12:12 +0000] "GET /portal/dashboard HTTP/1.1" 200 1538 "https://www.firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.186 - - [26/Oct/2015:13:12:12 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.136.145 - - [26/Oct/2015:13:12:05 +0000] "POST /portal/linux/register HTTP/1.1" 302 891 "https://www.firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
146.87.136.145 - - [26/Oct/2015:13:12:48 +0000] "GET /portal/dashboard HTTP/1.1" 200 1536 "https://www.firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
146.87.136.145 - - [26/Oct/2015:13:12:49 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
146.87.16.186 - - [26/Oct/2015:13:14:06 +0000] "GET /portal/linux/passwd/405 HTTP/1.1" 200 1581 "https://www.firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.186 - - [26/Oct/2015:13:14:06 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/linux/passwd/405" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.186 - - [26/Oct/2015:13:14:34 +0000] "POST /portal/linux/passwd/405 HTTP/1.1" 200 1608 "https://www.firstyearmatters.info/portal/linux/passwd/405" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.186 - - [26/Oct/2015:13:14:34 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://www.firstyearmatters.info/portal/linux/passwd/405" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
146.87.16.186 - - [26/Oct/2015:13:14:39 +0000] "GET /portal/linux/passwd/405 HTTP/1.1" 200 1581 "https://www.firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
85.255.235.23 - - [26/Oct/2015:14:01:19 +0000] "GET /cs/ HTTP/1.1" 200 6562 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
85.255.235.23 - - [26/Oct/2015:14:01:19 +0000] "GET /default.css HTTP/1.1" 200 1576 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
85.255.235.23 - - [26/Oct/2015:14:01:19 +0000] "GET /largetext.css HTTP/1.1" 200 1623 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
85.255.235.23 - - [26/Oct/2015:14:01:19 +0000] "GET /print.css HTTP/1.1" 200 1196 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
85.255.235.23 - - [26/Oct/2015:14:01:19 +0000] "GET /ie6.css HTTP/1.1" 200 1730 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
85.255.235.23 - - [26/Oct/2015:14:01:19 +0000] "GET /highcontrast.css HTTP/1.1" 200 1675 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
85.255.235.23 - - [26/Oct/2015:14:01:21 +0000] "GET /switcher.js HTTP/1.1" 200 1134 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
85.255.235.23 - - [26/Oct/2015:14:01:21 +0000] "GET /uos.jpg HTTP/1.1" 200 6127 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
85.255.235.23 - - [26/Oct/2015:14:01:21 +0000] "GET /fuof.jpg HTTP/1.1" 200 10048 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
85.255.235.23 - - [26/Oct/2015:14:01:24 +0000] "GET /fym.css HTTP/1.1" 200 1727 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
85.255.235.23 - - [26/Oct/2015:14:01:25 +0000] "GET /apple-touch-icon-120x120-precomposed.png HTTP/1.1" 404 4254 "-" "MobileSafari/601.1 CFNetwork/758.1.6 Darwin/15.0.0"
85.255.235.23 - - [26/Oct/2015:14:01:25 +0000] "GET /apple-touch-icon-120x120.png HTTP/1.1" 404 592 "-" "MobileSafari/601.1 CFNetwork/758.1.6 Darwin/15.0.0"
85.255.235.23 - - [26/Oct/2015:14:01:25 +0000] "GET /apple-touch-icon.png HTTP/1.1" 404 584 "-" "MobileSafari/601.1 CFNetwork/758.1.6 Darwin/15.0.0"
85.255.235.23 - - [26/Oct/2015:14:01:25 +0000] "GET /cs/timetables.html HTTP/1.1" 200 2522 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
85.255.235.23 - - [26/Oct/2015:14:01:25 +0000] "GET /apple-touch-icon.png HTTP/1.1" 404 584 "-" "MobileSafari/601.1 CFNetwork/758.1.6 Darwin/15.0.0"
85.255.235.23 - - [26/Oct/2015:14:01:25 +0000] "GET /favicon.ico HTTP/1.1" 200 3984 "-" "MobileSafari/601.1 CFNetwork/758.1.6 Darwin/15.0.0"
85.255.235.23 - - [26/Oct/2015:14:02:28 +0000] "GET /cs/timetables.html HTTP/1.1" 200 2660 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
85.255.235.23 - - [26/Oct/2015:14:02:34 +0000] "GET /cs/tt1-WD1.html HTTP/1.1" 200 3126 "https://www.firstyearmatters.info/cs/timetables.html" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
10.100.0.164 - - [26/Oct/2015:15:06:43 +0000] "GET /portal HTTP/1.1" 301 4314 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.100.0.164 - - [26/Oct/2015:15:06:43 +0000] "GET /portal/ HTTP/1.1" 302 936 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.100.0.164 - - [26/Oct/2015:15:06:43 +0000] "GET /portal/login HTTP/1.1" 200 1467 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.100.0.164 - - [26/Oct/2015:15:06:43 +0000] "GET /portal/js/42be59c.js HTTP/1.1" 200 41370 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.100.0.164 - - [26/Oct/2015:15:06:43 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.100.0.164 - - [26/Oct/2015:15:06:43 +0000] "GET /favicon.ico HTTP/1.1" 200 4122 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.100.0.164 - - [26/Oct/2015:15:07:13 +0000] "POST /portal/login_check HTTP/1.1" 302 1107 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.100.0.164 - - [26/Oct/2015:15:07:13 +0000] "GET /portal/ HTTP/1.1" 302 891 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.100.0.164 - - [26/Oct/2015:15:07:13 +0000] "GET /portal/dashboard HTTP/1.1" 200 1535 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.100.0.164 - - [26/Oct/2015:15:07:13 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.100.0.164 - - [26/Oct/2015:15:07:16 +0000] "GET /portal/linux/passwd/161 HTTP/1.1" 200 1439 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.100.0.164 - - [26/Oct/2015:15:07:16 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1062 "https://firstyearmatters.info/portal/linux/passwd/161" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.100.0.164 - - [26/Oct/2015:15:07:28 +0000] "POST /portal/linux/passwd/161 HTTP/1.1" 200 1618 "https://firstyearmatters.info/portal/linux/passwd/161" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.100.0.164 - - [26/Oct/2015:15:07:28 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/linux/passwd/161" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.100.0.164 - - [26/Oct/2015:15:07:43 +0000] "POST /portal/linux/passwd/161 HTTP/1.1" 200 1607 "https://firstyearmatters.info/portal/linux/passwd/161" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.100.0.164 - - [26/Oct/2015:15:07:43 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/linux/passwd/161" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.100.0.164 - - [26/Oct/2015:15:08:08 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1062 "https://firstyearmatters.info/portal/linux/passwd/161" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
10.100.0.164 - - [26/Oct/2015:15:07:58 +0000] "POST /portal/linux/passwd/161 HTTP/1.1" 200 1629 "https://firstyearmatters.info/portal/linux/passwd/161" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56"
146.87.136.146 - - [26/Oct/2015:16:49:36 +0000] "GET /portal/ HTTP/1.1" 302 4619 "-" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)"
146.87.136.146 - - [26/Oct/2015:16:49:36 +0000] "GET /portal/login HTTP/1.1" 200 1353 "-" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)"
146.87.136.146 - - [26/Oct/2015:16:49:36 +0000] "GET /portal/js/42be59c.js HTTP/1.1" 200 41422 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)"
146.87.136.146 - - [26/Oct/2015:16:49:36 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 948 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)"
146.87.136.146 - - [26/Oct/2015:16:49:36 +0000] "GET /favicon.ico HTTP/1.1" 200 3994 "-" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)"
146.87.136.146 - - [26/Oct/2015:16:49:49 +0000] "POST /portal/login_check HTTP/1.1" 302 1125 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)"
146.87.136.146 - - [26/Oct/2015:16:49:49 +0000] "GET /portal/ HTTP/1.1" 302 772 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)"
146.87.136.146 - - [26/Oct/2015:16:49:49 +0000] "GET /portal/dashboard HTTP/1.1" 200 1417 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)"
146.87.136.146 - - [26/Oct/2015:16:49:49 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1093 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)"
146.87.136.146 - - [26/Oct/2015:16:49:51 +0000] "GET /portal/linux/passwd/133 HTTP/1.1" 200 1465 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)"
146.87.136.146 - - [26/Oct/2015:16:49:51 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 948 "https://firstyearmatters.info/portal/linux/passwd/133" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)"
146.87.136.146 - - [26/Oct/2015:16:50:03 +0000] "POST /portal/linux/passwd/133 HTTP/1.1" 200 1584 "https://firstyearmatters.info/portal/linux/passwd/133" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)"
146.87.136.146 - - [26/Oct/2015:16:50:33 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 4603 "https://firstyearmatters.info/portal/linux/passwd/133" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)"
146.87.136.146 - - [26/Oct/2015:16:50:09 +0000] "POST /portal/linux/passwd/133 HTTP/1.1" 200 1674 "https://firstyearmatters.info/portal/linux/passwd/133" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)"
81.108.19.9 - - [26/Oct/2015:16:59:07 +0000] "GET / HTTP/1.1" 302 4280 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
81.108.19.9 - - [26/Oct/2015:16:59:07 +0000] "GET /cs HTTP/1.1" 301 668 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
81.108.19.9 - - [26/Oct/2015:16:59:07 +0000] "GET /cs/ HTTP/1.1" 200 2912 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
81.108.19.9 - - [26/Oct/2015:16:59:07 +0000] "GET /default.css HTTP/1.1" 200 1576 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
81.108.19.9 - - [26/Oct/2015:16:59:08 +0000] "GET /highcontrast.css HTTP/1.1" 200 1675 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
81.108.19.9 - - [26/Oct/2015:16:59:08 +0000] "GET /print.css HTTP/1.1" 200 1196 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
81.108.19.9 - - [26/Oct/2015:16:59:08 +0000] "GET /largetext.css HTTP/1.1" 200 1623 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
81.108.19.9 - - [26/Oct/2015:16:59:08 +0000] "GET /ie6.css HTTP/1.1" 200 1730 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
81.108.19.9 - - [26/Oct/2015:16:59:08 +0000] "GET /fym.css HTTP/1.1" 200 1727 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
81.108.19.9 - - [26/Oct/2015:16:59:13 +0000] "GET /uos.jpg HTTP/1.1" 200 6265 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
81.108.19.9 - - [26/Oct/2015:16:59:13 +0000] "GET /fuof.jpg HTTP/1.1" 200 10048 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
81.108.19.9 - - [26/Oct/2015:16:59:13 +0000] "GET /switcher.js HTTP/1.1" 200 1272 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
81.108.19.9 - - [26/Oct/2015:16:59:19 +0000] "GET /cs/timetables.html HTTP/1.1" 200 2660 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
81.108.19.9 - - [26/Oct/2015:16:59:28 +0000] "GET /cs/tt1-SEF.html HTTP/1.1" 200 3168 "https://www.firstyearmatters.info/cs/timetables.html" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
81.108.19.9 - - [26/Oct/2015:16:59:50 +0000] "GET /cs/tt1-CSF.html HTTP/1.1" 200 3171 "https://www.firstyearmatters.info/cs/timetables.html" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
81.108.19.9 - - [26/Oct/2015:17:00:03 +0000] "GET /cs/tt1-CSF.html HTTP/1.1" 200 3171 "https://www.firstyearmatters.info/cs/timetables.html" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
52.88.54.173 - - [26/Oct/2015:17:26:57 +0000] "GET / HTTP/1.1" 400 5957 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.2)"
82.16.40.116 - - [26/Oct/2015:19:16:38 +0000] "GET /portal/ HTTP/1.1" 302 4723 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
82.16.40.116 - - [26/Oct/2015:19:16:38 +0000] "GET /portal/login HTTP/1.1" 200 5186 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
82.16.40.116 - - [26/Oct/2015:19:16:38 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
82.16.40.116 - - [26/Oct/2015:19:16:49 +0000] "POST /portal/login_check HTTP/1.1" 302 1016 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
82.16.40.116 - - [26/Oct/2015:19:16:49 +0000] "GET /portal/login HTTP/1.1" 200 1984 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
82.16.40.116 - - [26/Oct/2015:19:16:50 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
82.16.40.116 - - [26/Oct/2015:19:16:56 +0000] "GET /portal/login HTTP/1.1" 200 1479 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
82.16.40.116 - - [26/Oct/2015:19:16:56 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
82.16.40.116 - - [26/Oct/2015:19:17:24 +0000] "POST /portal/login_check HTTP/1.1" 302 1016 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
82.16.40.116 - - [26/Oct/2015:19:17:24 +0000] "GET /portal/login HTTP/1.1" 200 1984 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
82.16.40.116 - - [26/Oct/2015:19:17:24 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
82.16.40.116 - - [26/Oct/2015:19:17:41 +0000] "GET /portal/dashboard HTTP/1.1" 302 1016 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
82.16.40.116 - - [26/Oct/2015:19:17:41 +0000] "GET /portal/login HTTP/1.1" 200 1341 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
82.16.40.116 - - [26/Oct/2015:19:17:42 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
82.16.40.116 - - [26/Oct/2015:19:17:43 +0000] "GET /portal/dashboard HTTP/1.1" 302 878 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
82.16.40.116 - - [26/Oct/2015:19:17:43 +0000] "GET /portal/login HTTP/1.1" 200 1479 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
82.16.40.116 - - [26/Oct/2015:19:17:43 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
82.16.40.116 - - [26/Oct/2015:19:17:45 +0000] "GET /portal/dashboard HTTP/1.1" 302 878 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
82.16.40.116 - - [26/Oct/2015:19:17:45 +0000] "GET /portal/login HTTP/1.1" 200 1341 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
82.16.40.116 - - [26/Oct/2015:19:17:45 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
82.16.40.116 - - [26/Oct/2015:19:17:47 +0000] "GET /portal/login HTTP/1.1" 200 1341 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
82.16.40.116 - - [26/Oct/2015:19:17:47 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.87.136.145 - - [26/Oct/2015:20:04:11 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 5091 "http://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [26/Oct/2015:20:04:11 +0000] "GET /page.css HTTP/1.1" 200 626 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [26/Oct/2015:20:04:11 +0000] "GET /favicon.ico HTTP/1.1" 200 3984 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [26/Oct/2015:20:04:19 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1371 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [26/Oct/2015:20:05:18 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1477 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [26/Oct/2015:20:05:43 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1485 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [26/Oct/2015:20:06:39 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1493 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [26/Oct/2015:20:07:52 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1514 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [26/Oct/2015:20:08:40 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1524 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [26/Oct/2015:20:11:47 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 5258 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [26/Oct/2015:20:12:19 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1546 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [26/Oct/2015:20:13:26 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1561 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [26/Oct/2015:20:14:01 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1564 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [26/Oct/2015:20:14:34 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1573 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [26/Oct/2015:20:15:21 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1584 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [26/Oct/2015:20:15:36 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1567 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [26/Oct/2015:20:15:59 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1626 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [26/Oct/2015:20:16:26 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1633 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [26/Oct/2015:20:16:43 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1632 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [26/Oct/2015:20:16:58 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 5370 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [26/Oct/2015:20:17:11 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1660 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [26/Oct/2015:20:17:46 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1663 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [26/Oct/2015:20:18:45 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1682 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [26/Oct/2015:20:19:13 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1691 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
146.87.136.145 - - [26/Oct/2015:20:19:33 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1703 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36"
82.69.59.236 - - [26/Oct/2015:21:11:14 +0000] "GET /cgi-bin/forum/YaBB.pl?virboard=modmat;num=1316302398 HTTP/1.1" 200 9242 "-" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.69.59.236 - - [26/Oct/2015:21:11:15 +0000] "GET /yabbfiles/Templates/Forum/default.css HTTP/1.1" 200 2502 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?virboard=modmat;num=1316302398" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.69.59.236 - - [26/Oct/2015:21:11:15 +0000] "GET /uos.jpg HTTP/1.1" 200 6265 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?virboard=modmat;num=1316302398" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.69.59.236 - - [26/Oct/2015:21:11:15 +0000] "GET /yabbfiles/Templates/Forum/default/index_togl.gif HTTP/1.1" 200 1270 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?virboard=modmat;num=1316302398" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.69.59.236 - - [26/Oct/2015:21:11:15 +0000] "GET /yabbfiles/ubbc.js HTTP/1.1" 200 2358 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?virboard=modmat;num=1316302398" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.69.59.236 - - [26/Oct/2015:21:11:15 +0000] "GET /yabbfiles/Templates/Forum/default/fymlogo.gif HTTP/1.1" 200 3393 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?virboard=modmat;num=1316302398" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.69.59.236 - - [26/Oct/2015:21:11:15 +0000] "GET /yabbfiles/Templates/Forum/default/tabfill.gif HTTP/1.1" 200 2098 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?virboard=modmat;num=1316302398" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.69.59.236 - - [26/Oct/2015:21:11:15 +0000] "GET /yabbfiles/Templates/Forum/default/tabsep211.png HTTP/1.1" 200 562 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?virboard=modmat;num=1316302398" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.69.59.236 - - [26/Oct/2015:21:11:15 +0000] "GET /yabbfiles/Buttons/English/sendtopic.png HTTP/1.1" 200 1302 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?virboard=modmat;num=1316302398" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.69.59.236 - - [26/Oct/2015:21:11:15 +0000] "GET /yabbfiles/Buttons/English/print.png HTTP/1.1" 200 1125 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?virboard=modmat;num=1316302398" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.69.59.236 - - [26/Oct/2015:21:11:15 +0000] "GET /yabbfiles/Templates/Forum/default/announcement.gif HTTP/1.1" 200 587 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?virboard=modmat;num=1316302398" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.69.59.236 - - [26/Oct/2015:21:11:15 +0000] "GET /yabbfiles/Templates/Forum/default/staradmin.gif HTTP/1.1" 200 903 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?virboard=modmat;num=1316302398" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.69.59.236 - - [26/Oct/2015:21:11:15 +0000] "GET /yabbfiles/Templates/Forum/default/xx.gif HTTP/1.1" 200 719 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?virboard=modmat;num=1316302398" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.69.59.236 - - [26/Oct/2015:21:11:15 +0000] "GET /yabbfiles/Buttons/English/login.png HTTP/1.1" 200 1237 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?virboard=modmat;num=1316302398" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.69.59.236 - - [26/Oct/2015:21:11:15 +0000] "GET /yabbfiles/Templates/Forum/default/ip.gif HTTP/1.1" 200 485 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?virboard=modmat;num=1316302398" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.69.59.236 - - [26/Oct/2015:21:11:15 +0000] "GET /yabbfiles/Templates/Forum/default/valid-rss.png HTTP/1.1" 200 1866 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?virboard=modmat;num=1316302398" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.69.59.236 - - [26/Oct/2015:21:11:15 +0000] "GET /yabbfiles/Templates/Forum/default/xhtml.gif HTTP/1.1" 200 562 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?virboard=modmat;num=1316302398" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.69.59.236 - - [26/Oct/2015:21:11:15 +0000] "GET /yabbfiles/Templates/Forum/default/css.gif HTTP/1.1" 200 544 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?virboard=modmat;num=1316302398" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.69.59.236 - - [26/Oct/2015:21:11:15 +0000] "GET /yabbfiles/Templates/Forum/default/perl.gif HTTP/1.1" 200 1454 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?virboard=modmat;num=1316302398" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.69.59.236 - - [26/Oct/2015:21:11:15 +0000] "GET /yabbfiles/Templates/Forum/default/sf.gif HTTP/1.1" 200 740 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?virboard=modmat;num=1316302398" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.69.59.236 - - [26/Oct/2015:21:11:15 +0000] "GET /yabbfiles/Templates/Forum/default/search.gif HTTP/1.1" 200 717 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?virboard=modmat;num=1316302398" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.69.59.236 - - [26/Oct/2015:21:11:15 +0000] "GET /yabbfiles/Templates/Forum/default/menutop.png HTTP/1.1" 200 466 "https://www.firstyearmatters.info/yabbfiles/Templates/Forum/default.css" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.69.59.236 - - [26/Oct/2015:21:11:15 +0000] "GET /yabbfiles/Templates/Forum/default/tableft211.png HTTP/1.1" 200 961 "https://www.firstyearmatters.info/yabbfiles/Templates/Forum/default.css" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.69.59.236 - - [26/Oct/2015:21:11:15 +0000] "GET /yabbfiles/Templates/Forum/default/tab211.png HTTP/1.1" 200 465 "https://www.firstyearmatters.info/yabbfiles/Templates/Forum/default.css" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.69.59.236 - - [26/Oct/2015:21:11:15 +0000] "GET /yabbfiles/Templates/Forum/default/tab_selected211.png HTTP/1.1" 200 476 "https://www.firstyearmatters.info/yabbfiles/Templates/Forum/default.css" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.69.59.236 - - [26/Oct/2015:21:11:15 +0000] "GET /yabbfiles/Templates/Forum/default/tabright211.png HTTP/1.1" 200 1290 "https://www.firstyearmatters.info/yabbfiles/Templates/Forum/default.css" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.69.59.236 - - [26/Oct/2015:21:11:15 +0000] "GET /yabbfiles/Templates/Forum/default/searchbg211.png HTTP/1.1" 200 481 "https://www.firstyearmatters.info/yabbfiles/Templates/Forum/default.css" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.69.59.236 - - [26/Oct/2015:21:11:15 +0000] "GET /yabbfiles/Templates/Forum/default/grad_bottom.png HTTP/1.1" 200 448 "https://www.firstyearmatters.info/yabbfiles/Templates/Forum/default.css" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.69.59.236 - - [26/Oct/2015:21:11:16 +0000] "GET /favicon.ico HTTP/1.1" 200 3984 "-" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.69.59.236 - - [26/Oct/2015:21:11:22 +0000] "GET /cgi-bin/forum/YaBB.pl HTTP/1.1" 200 5588 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?virboard=modmat;num=1316302398" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.69.59.236 - - [26/Oct/2015:21:11:22 +0000] "GET /yabbfiles/Templates/Forum/default/rss.png HTTP/1.1" 200 1849 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.69.59.236 - - [26/Oct/2015:21:11:22 +0000] "GET /yabbfiles/Templates/Forum/default/info.gif HTTP/1.1" 200 2657 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.69.59.236 - - [26/Oct/2015:21:11:23 +0000] "GET /yabbfiles/Templates/Forum/default/boards.gif HTTP/1.1" 200 2721 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.69.59.236 - - [26/Oct/2015:21:11:23 +0000] "GET /yabbfiles/Templates/Forum/default/lastpost.gif HTTP/1.1" 200 793 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.69.59.236 - - [26/Oct/2015:21:11:23 +0000] "GET /yabbfiles/Templates/Forum/default/online.gif HTTP/1.1" 200 3015 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.69.59.236 - - [26/Oct/2015:21:11:23 +0000] "GET /yabbfiles/Templates/Forum/default/login.gif HTTP/1.1" 200 1917 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.69.59.236 - - [26/Oct/2015:21:11:23 +0000] "GET /yabbfiles/Templates/Forum/default/catbg.png HTTP/1.1" 200 467 "https://www.firstyearmatters.info/yabbfiles/Templates/Forum/default.css" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.69.59.236 - - [26/Oct/2015:21:11:35 +0000] "GET /cgi-bin/forum/YaBB.pl?board=general HTTP/1.1" 200 7977 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.69.59.236 - - [26/Oct/2015:21:11:35 +0000] "GET /yabbfiles/Templates/Forum/default/sticky.gif HTTP/1.1" 200 703 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?board=general" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.69.59.236 - - [26/Oct/2015:21:11:35 +0000] "GET /yabbfiles/Templates/Forum/default/locked_moved.gif HTTP/1.1" 200 730 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?board=general" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.69.59.236 - - [26/Oct/2015:21:11:35 +0000] "GET /yabbfiles/Templates/Forum/default/poll_open.gif HTTP/1.1" 200 497 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?board=general" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.69.59.236 - - [26/Oct/2015:21:11:35 +0000] "GET /yabbfiles/Templates/Forum/default/exclamation.gif HTTP/1.1" 200 876 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?board=general" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.69.59.236 - - [26/Oct/2015:21:11:35 +0000] "GET /yabbfiles/Templates/Forum/default/thread.gif HTTP/1.1" 200 831 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?board=general" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.69.59.236 - - [26/Oct/2015:21:11:35 +0000] "GET /yabbfiles/Templates/Forum/default/paperclip.gif HTTP/1.1" 200 1355 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?board=general" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.69.59.236 - - [26/Oct/2015:21:11:35 +0000] "GET /yabbfiles/Templates/Forum/default/question.gif HTTP/1.1" 200 726 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?board=general" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.69.59.236 - - [26/Oct/2015:21:11:35 +0000] "GET /yabbfiles/Templates/Forum/default/hotthread.gif HTTP/1.1" 200 863 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?board=general" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.69.59.236 - - [26/Oct/2015:21:11:35 +0000] "GET /yabbfiles/Templates/Forum/default/locked.gif HTTP/1.1" 200 724 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?board=general" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.69.59.236 - - [26/Oct/2015:21:11:35 +0000] "GET /yabbfiles/Templates/Forum/default/stickylock.gif HTTP/1.1" 200 733 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?board=general" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.69.59.236 - - [26/Oct/2015:21:11:35 +0000] "GET /yabbfiles/Templates/Forum/default/veryhotthread.gif HTTP/1.1" 200 725 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?board=general" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.69.59.236 - - [26/Oct/2015:21:11:36 +0000] "GET /cgi-bin/forum/YaBB.pl?board=modmat HTTP/1.1" 200 7510 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.69.59.236 - - [26/Oct/2015:21:11:37 +0000] "GET /yabbfiles/Templates/Forum/default/poll_lock.gif HTTP/1.1" 200 586 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?board=modmat" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.69.59.236 - - [26/Oct/2015:21:11:37 +0000] "GET /yabbfiles/Templates/Forum/default/cheesy.gif HTTP/1.1" 200 1153 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?board=modmat" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.69.59.236 - - [26/Oct/2015:21:11:58 +0000] "GET /cgi-bin/forum/YaBB.pl?num=1424965150 HTTP/1.1" 200 6396 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?board=modmat" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.69.59.236 - - [26/Oct/2015:21:11:58 +0000] "GET /yabbfiles/Templates/Forum/default/starmod.gif HTTP/1.1" 200 904 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?num=1424965150" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.69.59.236 - - [26/Oct/2015:21:11:58 +0000] "GET /yabbfiles/Templates/Forum/default/starsilver.gif HTTP/1.1" 200 1216 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?num=1424965150" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.69.59.236 - - [26/Oct/2015:21:11:58 +0000] "GET /yabbfiles/Templates/Forum/default/rolleyes.gif HTTP/1.1" 200 2171 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?num=1424965150" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.69.59.236 - - [26/Oct/2015:21:14:10 +0000] "GET /cgi-bin/forum/YaBB.pl?num=1422968958 HTTP/1.1" 200 5601 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?board=modmat" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.69.59.236 - - [26/Oct/2015:21:14:49 +0000] "GET /cgi-bin/forum/YaBB.pl?num=1422820700 HTTP/1.1" 200 7291 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?board=modmat" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.69.59.236 - - [26/Oct/2015:21:14:50 +0000] "GET /yabbfiles/Templates/Forum/default/staradmin.gif HTTP/1.1" 200 903 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?num=1422820700" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.69.59.236 - - [26/Oct/2015:21:24:08 +0000] "GET /cgi-bin/forum/YaBB.pl?num=1413744591 HTTP/1.1" 200 9754 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?board=general" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.69.59.236 - - [26/Oct/2015:21:24:08 +0000] "GET /yabbfiles/Buttons/English/sendtopic.png HTTP/1.1" 200 1302 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?num=1413744591" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.69.59.236 - - [26/Oct/2015:21:24:08 +0000] "GET /yabbfiles/Templates/Forum/default/starsilver.gif HTTP/1.1" 200 1216 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?num=1413744591" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.69.59.236 - - [26/Oct/2015:21:24:09 +0000] "GET /yabbfiles/Buttons/English/print.png HTTP/1.1" 200 1263 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?num=1413744591" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.69.59.236 - - [26/Oct/2015:21:24:09 +0000] "GET /yabbfiles/Buttons/English/login.png HTTP/1.1" 200 1375 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?num=1413744591" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.69.59.236 - - [26/Oct/2015:21:24:09 +0000] "GET /yabbfiles/Templates/Forum/default/ip.gif HTTP/1.1" 200 623 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?num=1413744591" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.69.59.236 - - [26/Oct/2015:21:24:09 +0000] "GET /yabbfiles/Templates/Forum/default/smiley.gif HTTP/1.1" 200 1288 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?num=1413744591" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
82.69.59.236 - - [26/Oct/2015:21:24:25 +0000] "GET /cgi-bin/forum/YaBB.pl?num=1412160532 HTTP/1.1" 200 8362 "https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?board=general" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0"
87.113.94.85 - - [26/Oct/2015:21:50:20 +0000] "GET /yabbfiles/Templates/Forum/default.css HTTP/1.1" 200 6368 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
87.113.94.85 - - [26/Oct/2015:21:50:20 +0000] "GET /yabbfiles/ubbc.js HTTP/1.1" 200 6086 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
87.113.94.85 - - [26/Oct/2015:21:50:20 +0000] "GET /yabbfiles/Templates/Forum/default/fymlogo.gif HTTP/1.1" 200 3255 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
87.113.94.85 - - [26/Oct/2015:21:50:20 +0000] "GET /yabbfiles/Templates/Forum/default/tabfill.gif HTTP/1.1" 200 2103 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
87.113.94.85 - - [26/Oct/2015:21:50:20 +0000] "GET /yabbfiles/Templates/Forum/default/tabsep211.png HTTP/1.1" 200 424 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
87.113.94.85 - - [26/Oct/2015:21:50:20 +0000] "GET /yabbfiles/Templates/Forum/default/rss.png HTTP/1.1" 200 1849 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
87.113.94.85 - - [26/Oct/2015:21:50:20 +0000] "GET /yabbfiles/Templates/Forum/default/search.gif HTTP/1.1" 200 717 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
87.113.94.85 - - [26/Oct/2015:21:50:20 +0000] "GET /yabbfiles/Templates/Forum/default/menutop.png HTTP/1.1" 200 466 "https://www.firstyearmatters.info/yabbfiles/Templates/Forum/default.css" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
87.113.94.85 - - [26/Oct/2015:21:50:20 +0000] "GET /yabbfiles/Templates/Forum/default/tab211.png HTTP/1.1" 200 608 "https://www.firstyearmatters.info/yabbfiles/Templates/Forum/default.css" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
87.113.94.85 - - [26/Oct/2015:21:50:20 +0000] "GET /yabbfiles/Templates/Forum/default/boards.gif HTTP/1.1" 200 2726 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
87.113.94.85 - - [26/Oct/2015:21:50:20 +0000] "GET /yabbfiles/Templates/Forum/default/lastpost.gif HTTP/1.1" 200 798 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
87.113.94.85 - - [26/Oct/2015:21:50:20 +0000] "GET /yabbfiles/Templates/Forum/default/searchbg211.png HTTP/1.1" 200 481 "https://www.firstyearmatters.info/yabbfiles/Templates/Forum/default.css" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
87.113.94.85 - - [26/Oct/2015:21:50:20 +0000] "GET /yabbfiles/Templates/Forum/default/tab_selected211.png HTTP/1.1" 200 476 "https://www.firstyearmatters.info/yabbfiles/Templates/Forum/default.css" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
87.113.94.85 - - [26/Oct/2015:21:50:20 +0000] "GET /yabbfiles/Templates/Forum/default/catbg.png HTTP/1.1" 200 467 "https://www.firstyearmatters.info/yabbfiles/Templates/Forum/default.css" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
87.113.94.85 - - [26/Oct/2015:21:50:20 +0000] "GET /yabbfiles/Templates/Forum/default/grad_bottom.png HTTP/1.1" 200 448 "https://www.firstyearmatters.info/yabbfiles/Templates/Forum/default.css" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
87.113.94.85 - - [26/Oct/2015:21:50:20 +0000] "GET /yabbfiles/Templates/Forum/default/tabright211.png HTTP/1.1" 200 1290 "https://www.firstyearmatters.info/yabbfiles/Templates/Forum/default.css" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
87.113.94.85 - - [26/Oct/2015:21:50:20 +0000] "GET /yabbfiles/Templates/Forum/default/tableft211.png HTTP/1.1" 200 961 "https://www.firstyearmatters.info/yabbfiles/Templates/Forum/default.css" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
87.113.94.85 - - [26/Oct/2015:21:50:20 +0000] "GET /yabbfiles/Templates/Forum/default/xhtml.gif HTTP/1.1" 200 562 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
87.113.94.85 - - [26/Oct/2015:21:50:20 +0000] "GET /yabbfiles/Templates/Forum/default/sf.gif HTTP/1.1" 200 740 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
87.113.94.85 - - [26/Oct/2015:21:50:20 +0000] "GET /yabbfiles/Templates/Forum/default/info.gif HTTP/1.1" 200 2657 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
87.113.94.85 - - [26/Oct/2015:21:50:20 +0000] "GET /yabbfiles/Templates/Forum/default/login.gif HTTP/1.1" 200 1779 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
87.113.94.85 - - [26/Oct/2015:21:50:20 +0000] "GET /yabbfiles/Templates/Forum/default/perl.gif HTTP/1.1" 200 1454 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
87.113.94.85 - - [26/Oct/2015:21:50:20 +0000] "GET /yabbfiles/Templates/Forum/default/css.gif HTTP/1.1" 200 544 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
87.113.94.85 - - [26/Oct/2015:21:50:20 +0000] "GET /yabbfiles/Templates/Forum/default/valid-rss.png HTTP/1.1" 200 1866 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
87.113.94.85 - - [26/Oct/2015:21:50:20 +0000] "GET /yabbfiles/Templates/Forum/default/online.gif HTTP/1.1" 200 2877 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
59.163.254.53 - - [26/Oct/2015:21:58:26 +0000] "HEAD /a2billing/customer/iridium_threed.php HTTP/1.1" 404 5651 "-" "python-requests/2.8.1"
188.138.17.205 - - [27/Oct/2015:00:54:41 +0000] "GET / HTTP/1.1" 302 5964 "-" "-"
188.138.17.205 - - [27/Oct/2015:00:54:41 +0000] "GET /cgi-bin/forum/YaBB.pl HTTP/1.1" 200 29661 "-" "-"
188.138.17.205 - - [27/Oct/2015:00:54:41 +0000] "GET /robots.txt HTTP/1.1" 200 5699 "-" "-"
188.138.17.205 - - [27/Oct/2015:00:54:42 +0000] "GET /sitemap.xml HTTP/1.1" 404 5895 "-" "-"
188.138.17.205 - - [27/Oct/2015:00:54:46 +0000] "quit" 302 5555 "-" "-"

View File

@@ -0,0 +1,59 @@
86.129.42.161 - - [25/Oct/2015:09:49:07 +0000] "GET /cgi-bin/binary.cgi HTTP/1.1" 200 5136 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
86.129.42.161 - - [25/Oct/2015:09:49:15 +0000] "GET / HTTP/1.1" 302 768 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
86.129.42.161 - - [25/Oct/2015:09:49:16 +0000] "GET /cs/ HTTP/1.1" 200 2912 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
86.129.42.161 - - [25/Oct/2015:09:49:24 +0000] "GET /cs/stafftimetables.html HTTP/1.1" 200 2829 "https://www.firstyearmatters.info/cs/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
86.129.42.161 - - [25/Oct/2015:09:49:27 +0000] "GET /cs/st1-Yuhua+Li.html HTTP/1.1" 200 2916 "https://www.firstyearmatters.info/cs/stafftimetables.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
86.129.42.161 - - [25/Oct/2015:09:49:32 +0000] "GET /cs/st1-Lee+Griffiths.html HTTP/1.1" 200 3174 "https://www.firstyearmatters.info/cs/stafftimetables.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
86.129.42.161 - - [25/Oct/2015:09:49:39 +0000] "GET /cs/st1-Chris+Hughes.html HTTP/1.1" 200 3311 "https://www.firstyearmatters.info/cs/stafftimetables.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
86.129.42.161 - - [25/Oct/2015:09:50:03 +0000] "GET /cs/timetables.html HTTP/1.1" 200 2660 "https://www.firstyearmatters.info/cs/st1-Chris+Hughes.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
86.129.42.161 - - [25/Oct/2015:09:50:05 +0000] "GET /cs/tt1-CC1.3.html HTTP/1.1" 200 3016 "https://www.firstyearmatters.info/cs/timetables.html" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
66.249.93.167 - - [25/Oct/2015:10:39:23 +0000] "GET /portal/login HTTP/1.1" 200 5239 "-" "Google favicon"
66.249.93.167 - - [25/Oct/2015:10:39:26 +0000] "GET /favicon.ico HTTP/1.1" 200 3984 "-" "Google favicon"
128.199.95.16 - - [25/Oct/2015:16:03:46 +0000] "GET https://146.87.119.33/l12.tar HTTP/1.1" 404 5768 "-" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0"
109.175.190.192 - - [25/Oct/2015:16:54:29 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 5207 "http://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.175.190.192 - - [25/Oct/2015:16:54:29 +0000] "GET /page.css HTTP/1.1" 200 626 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.175.190.192 - - [25/Oct/2015:16:54:30 +0000] "GET /favicon.ico HTTP/1.1" 200 3984 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.175.190.192 - - [25/Oct/2015:16:54:37 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1493 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.175.190.192 - - [25/Oct/2015:16:54:57 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1498 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.175.190.192 - - [25/Oct/2015:16:55:02 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1371 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.175.190.192 - - [25/Oct/2015:16:55:05 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1356 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.175.190.192 - - [25/Oct/2015:16:55:12 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1555 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.175.190.192 - - [25/Oct/2015:16:55:51 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1563 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
109.175.190.192 - - [25/Oct/2015:16:56:01 +0000] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1571 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.90.81.219 - - [25/Oct/2015:18:47:39 +0000] "GET /wiki/doku.php HTTP/1.1" 200 7870 "http://www.firstyearmatters.info/cs/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.90.81.219 - - [25/Oct/2015:18:47:41 +0000] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick_ltr.css HTTP/1.1" 200 4098 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.90.81.219 - - [25/Oct/2015:18:47:41 +0000] "GET /wiki/lib/plugins/issuetracker/datepick/jsDatePick.min.1.3.js HTTP/1.1" 200 4109 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.90.81.219 - - [25/Oct/2015:18:47:41 +0000] "GET /wiki/lib/plugins/issuetracker/datepick/jquery.1.4.2.js HTTP/1.1" 200 4100 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.90.81.219 - - [25/Oct/2015:18:47:41 +0000] "GET /wiki/_media/wiki:logo.png HTTP/1.1" 403 535 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.90.81.219 - - [25/Oct/2015:18:47:41 +0000] "GET /wiki/lib/exe/css.php?t=dokuwiki&tseed=2cb5b229a761de98d43761336d42f70b HTTP/1.1" 200 27666 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.90.81.219 - - [25/Oct/2015:18:47:41 +0000] "GET /wiki/lib/tpl/dokuwiki/images/button-donate.gif HTTP/1.1" 200 528 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.90.81.219 - - [25/Oct/2015:18:47:41 +0000] "GET /wiki/lib/tpl/dokuwiki/images/button-php.gif HTTP/1.1" 200 548 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.90.81.219 - - [25/Oct/2015:18:47:42 +0000] "GET /wiki/lib/tpl/dokuwiki/images/button-html5.png HTTP/1.1" 200 647 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.90.81.219 - - [25/Oct/2015:18:47:42 +0000] "GET /wiki/lib/tpl/dokuwiki/images/button-css.png HTTP/1.1" 200 639 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.90.81.219 - - [25/Oct/2015:18:47:42 +0000] "GET /wiki/lib/tpl/dokuwiki/images/button-dw.png HTTP/1.1" 200 740 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.90.81.219 - - [25/Oct/2015:18:47:42 +0000] "GET /wiki/lib/exe/indexer.php?id=start&1445798861 HTTP/1.1" 200 526 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.90.81.219 - - [25/Oct/2015:18:47:41 +0000] "GET /wiki/lib/exe/js.php?t=dokuwiki&tseed=2cb5b229a761de98d43761336d42f70b HTTP/1.1" 200 142933 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.90.81.219 - - [25/Oct/2015:18:47:44 +0000] "GET /wiki/lib/tpl/dokuwiki/images/page-gradient.png HTTP/1.1" 200 550 "https://www.firstyearmatters.info/wiki/lib/exe/css.php?t=dokuwiki&tseed=2cb5b229a761de98d43761336d42f70b" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.90.81.219 - - [25/Oct/2015:18:47:44 +0000] "GET /wiki/lib/tpl/dokuwiki/images/usertools.png HTTP/1.1" 200 1771 "https://www.firstyearmatters.info/wiki/lib/exe/css.php?t=dokuwiki&tseed=2cb5b229a761de98d43761336d42f70b" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.90.81.219 - - [25/Oct/2015:18:47:44 +0000] "GET /wiki/lib/tpl/dokuwiki/images/search.png HTTP/1.1" 200 649 "https://www.firstyearmatters.info/wiki/lib/exe/css.php?t=dokuwiki&tseed=2cb5b229a761de98d43761336d42f70b" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.90.81.219 - - [25/Oct/2015:18:47:44 +0000] "GET /wiki/lib/tpl/dokuwiki/images/pagetools-sprite.png?v=2 HTTP/1.1" 200 8103 "https://www.firstyearmatters.info/wiki/lib/exe/css.php?t=dokuwiki&tseed=2cb5b229a761de98d43761336d42f70b" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.90.81.219 - - [25/Oct/2015:18:47:44 +0000] "GET /wiki/_media/wiki:logo.png HTTP/1.1" 403 535 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
146.90.81.219 - - [25/Oct/2015:18:47:44 +0000] "GET /wiki/lib/tpl/dokuwiki/images/favicon.ico HTTP/1.1" 200 7753 "https://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
85.25.185.173 - - [25/Oct/2015:19:12:49 +0000] "GET /wiki/doku.php HTTP/1.1" 200 15179 "-" "Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; WOW64; Trident/6.0)"
85.25.185.173 - - [25/Oct/2015:19:12:49 +0000] "HEAD / HTTP/1.1" 302 10878 "-" "Java/1.8.0_40"
85.25.185.173 - - [25/Oct/2015:19:12:50 +0000] "HEAD /cs HTTP/1.1" 301 10878 "-" "Java/1.8.0_40"
85.25.185.173 - - [25/Oct/2015:19:12:50 +0000] "HEAD /cs/ HTTP/1.1" 200 10878 "-" "Java/1.8.0_40"
2.102.8.211 - - [26/Oct/2015:00:54:12 +0000] "GET /portal HTTP/1.1" 301 4514 "-" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
2.102.8.211 - - [26/Oct/2015:00:54:12 +0000] "GET /portal/ HTTP/1.1" 302 936 "-" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
2.102.8.211 - - [26/Oct/2015:00:54:12 +0000] "GET /portal/login HTTP/1.1" 200 5182 "-" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
2.102.8.211 - - [26/Oct/2015:00:54:12 +0000] "GET /portal/js/42be59c.js HTTP/1.1" 200 41232 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
2.102.8.211 - - [26/Oct/2015:00:54:12 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
2.102.8.211 - - [26/Oct/2015:00:54:13 +0000] "GET /favicon.ico HTTP/1.1" 200 3984 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
2.102.8.211 - - [26/Oct/2015:00:54:25 +0000] "POST /portal/login_check HTTP/1.1" 302 1021 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
2.102.8.211 - - [26/Oct/2015:00:54:26 +0000] "GET /portal/login HTTP/1.1" 200 1979 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
2.102.8.211 - - [26/Oct/2015:00:54:26 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
2.102.8.211 - - [26/Oct/2015:00:54:33 +0000] "POST /portal/login_check HTTP/1.1" 302 1021 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
2.102.8.211 - - [26/Oct/2015:00:54:33 +0000] "GET /portal/login HTTP/1.1" 200 1979 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
2.102.8.211 - - [26/Oct/2015:00:54:34 +0000] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
66.249.67.157 - - [26/Oct/2015:03:04:05 +0000] "GET /robots.txt HTTP/1.1" 200 5766 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"
74.82.47.2 - - [26/Oct/2015:05:05:38 +0000] "GET / HTTP/1.1" 302 5780 "-" "-"

View File

@@ -0,0 +1,112 @@
109.246.124.182 - - [24/Oct/2015:09:42:54 +0100] "GET /portal HTTP/1.1" 301 4509 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:41.0) Gecko/20100101 Firefox/41.0"
109.246.124.182 - - [24/Oct/2015:09:42:54 +0100] "GET /portal/ HTTP/1.1" 302 936 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:41.0) Gecko/20100101 Firefox/41.0"
109.246.124.182 - - [24/Oct/2015:09:42:56 +0100] "GET /portal/login HTTP/1.1" 200 1471 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:41.0) Gecko/20100101 Firefox/41.0"
109.246.124.182 - - [24/Oct/2015:09:42:57 +0100] "GET /portal/js/42be59c.js HTTP/1.1" 200 41370 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:41.0) Gecko/20100101 Firefox/41.0"
109.246.124.182 - - [24/Oct/2015:09:42:57 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:41.0) Gecko/20100101 Firefox/41.0"
109.246.124.182 - - [24/Oct/2015:09:42:58 +0100] "GET /favicon.ico HTTP/1.1" 200 3984 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:41.0) Gecko/20100101 Firefox/41.0"
109.246.124.182 - - [24/Oct/2015:09:43:03 +0100] "POST /portal/login_check HTTP/1.1" 302 1107 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:41.0) Gecko/20100101 Firefox/41.0"
109.246.124.182 - - [24/Oct/2015:09:43:05 +0100] "GET /portal/ HTTP/1.1" 302 891 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:41.0) Gecko/20100101 Firefox/41.0"
109.246.124.182 - - [24/Oct/2015:09:43:05 +0100] "GET /portal/dashboard HTTP/1.1" 200 1402 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:41.0) Gecko/20100101 Firefox/41.0"
109.246.124.182 - - [24/Oct/2015:09:43:05 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:41.0) Gecko/20100101 Firefox/41.0"
86.134.109.149 - - [24/Oct/2015:10:01:54 +0100] "GET /portal/ HTTP/1.1" 302 4781 "-" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.134.109.149 - - [24/Oct/2015:10:01:54 +0100] "GET /portal/login HTTP/1.1" 200 5176 "-" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.134.109.149 - - [24/Oct/2015:10:01:54 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.134.109.149 - - [24/Oct/2015:10:01:54 +0100] "GET /portal/js/42be59c.js HTTP/1.1" 200 41232 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.134.109.149 - - [24/Oct/2015:10:01:54 +0100] "GET /favicon.ico HTTP/1.1" 200 3984 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.134.109.149 - - [24/Oct/2015:10:01:56 +0100] "POST /portal/login_check HTTP/1.1" 302 969 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.134.109.149 - - [24/Oct/2015:10:01:56 +0100] "GET /portal/ HTTP/1.1" 302 753 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.134.109.149 - - [24/Oct/2015:10:01:56 +0100] "GET /portal/dashboard HTTP/1.1" 200 1396 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
86.134.109.149 - - [24/Oct/2015:10:01:56 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
66.249.93.167 - - [24/Oct/2015:10:34:35 +0100] "GET /portal/login HTTP/1.1" 200 5235 "-" "Google favicon"
66.249.93.171 - - [24/Oct/2015:10:34:35 +0100] "GET /favicon.ico HTTP/1.1" 200 7829 "-" "Google favicon"
66.249.81.139 - - [24/Oct/2015:10:34:36 +0100] "GET /portal/login HTTP/1.1" 200 5236 "http://www.google.com/search" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko; Google Web Preview) Chrome/27.0.1453 Safari/537.36"
66.249.81.135 - - [24/Oct/2015:10:34:36 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 4769 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko; Google Web Preview) Chrome/27.0.1453 Safari/537.36"
66.249.81.143 - - [24/Oct/2015:10:34:36 +0100] "GET /portal/js/42be59c.js HTTP/1.1" 200 45077 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko; Google Web Preview) Chrome/27.0.1453 Safari/537.36"
82.40.58.133 - - [24/Oct/2015:13:25:35 +0100] "GET / HTTP/1.1" 302 4280 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
82.40.58.133 - - [24/Oct/2015:13:25:35 +0100] "GET /cs HTTP/1.1" 301 668 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
82.40.58.133 - - [24/Oct/2015:13:25:35 +0100] "GET /cs/ HTTP/1.1" 200 2914 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
195.194.213.9 - - [24/Oct/2015:14:11:07 +0100] "GET /portal HTTP/1.1" 301 4509 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
195.194.213.9 - - [24/Oct/2015:14:11:07 +0100] "GET /portal/ HTTP/1.1" 302 936 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
195.194.213.9 - - [24/Oct/2015:14:11:07 +0100] "GET /portal/login HTTP/1.1" 200 1332 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
195.194.213.9 - - [24/Oct/2015:14:11:07 +0100] "GET /portal/js/42be59c.js HTTP/1.1" 200 41232 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
195.194.213.9 - - [24/Oct/2015:14:11:07 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 4769 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
195.194.213.9 - - [24/Oct/2015:14:11:08 +0100] "GET /favicon.ico HTTP/1.1" 200 3984 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
195.194.213.9 - - [24/Oct/2015:14:11:30 +0100] "POST /portal/login_check HTTP/1.1" 302 1107 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
195.194.213.9 - - [24/Oct/2015:14:11:31 +0100] "GET /portal/ HTTP/1.1" 302 753 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
195.194.213.9 - - [24/Oct/2015:14:11:31 +0100] "GET /portal/dashboard HTTP/1.1" 200 1602 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
195.194.213.9 - - [24/Oct/2015:14:11:31 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
195.194.213.9 - - [24/Oct/2015:14:11:34 +0100] "GET /portal/linux/passwd/402 HTTP/1.1" 200 1503 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
195.194.213.9 - - [24/Oct/2015:14:11:35 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/linux/passwd/402" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
195.194.213.9 - - [24/Oct/2015:14:12:04 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 1062 "https://firstyearmatters.info/portal/linux/passwd/402" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
195.194.213.9 - - [24/Oct/2015:14:11:46 +0100] "POST /portal/linux/passwd/402 HTTP/1.1" 200 1692 "https://firstyearmatters.info/portal/linux/passwd/402" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
137.116.71.170 - - [24/Oct/2015:14:12:16 +0100] "GET /robots.txt HTTP/1.1" 200 5718 "-" "CSS Certificate Spider (http://www.css-security.com/certificatespider/)"
195.194.213.9 - - [24/Oct/2015:14:13:10 +0100] "GET /portal/logout HTTP/1.1" 302 1107 "https://firstyearmatters.info/portal/linux/passwd/402" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
195.194.213.9 - - [24/Oct/2015:14:13:10 +0100] "GET /portal/ HTTP/1.1" 302 878 "https://firstyearmatters.info/portal/linux/passwd/402" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
195.194.213.9 - - [24/Oct/2015:14:13:10 +0100] "GET /portal/login HTTP/1.1" 200 1336 "https://firstyearmatters.info/portal/linux/passwd/402" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
195.194.213.9 - - [24/Oct/2015:14:13:10 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
195.194.213.9 - - [24/Oct/2015:14:13:24 +0100] "POST /portal/login_check HTTP/1.1" 302 1107 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
195.194.213.9 - - [24/Oct/2015:14:13:24 +0100] "GET /portal/ HTTP/1.1" 302 753 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
195.194.213.9 - - [24/Oct/2015:14:13:24 +0100] "GET /portal/dashboard HTTP/1.1" 200 1248 "https://firstyearmatters.info/portal/login" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
195.194.213.9 - - [24/Oct/2015:14:13:24 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
195.194.213.9 - - [24/Oct/2015:14:13:26 +0100] "GET /portal/linux/register HTTP/1.1" 200 1496 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
195.194.213.9 - - [24/Oct/2015:14:13:26 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
195.194.213.9 - - [24/Oct/2015:14:13:36 +0100] "POST /portal/linux/register HTTP/1.1" 302 891 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
195.194.213.9 - - [24/Oct/2015:14:14:17 +0100] "GET /portal/dashboard HTTP/1.1" 200 1539 "https://firstyearmatters.info/portal/linux/register" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
195.194.213.9 - - [24/Oct/2015:14:14:17 +0100] "GET /portal/css/d1e33fb.css HTTP/1.1" 404 924 "https://firstyearmatters.info/portal/dashboard" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
91.200.12.99 - - [24/Oct/2015:14:31:08 +0100] "GET /cgi-bin/forum/YaBB.pl?action=register HTTP/1.0" 200 24440 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?action=register" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:36.0) Gecko/20100101 Firefox/36.0"
86.5.41.230 - - [24/Oct/2015:14:35:58 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 5087 "http://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:37.0) Gecko/20100101 Firefox/37.0"
86.5.41.230 - - [24/Oct/2015:14:35:59 +0100] "GET /page.css HTTP/1.1" 200 626 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:37.0) Gecko/20100101 Firefox/37.0"
86.5.41.230 - - [24/Oct/2015:14:35:59 +0100] "GET /favicon.ico HTTP/1.1" 200 3984 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:37.0) Gecko/20100101 Firefox/37.0"
86.5.41.230 - - [24/Oct/2015:14:36:57 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1462 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:37.0) Gecko/20100101 Firefox/37.0"
86.5.41.230 - - [24/Oct/2015:14:37:18 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1481 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:37.0) Gecko/20100101 Firefox/37.0"
86.5.41.230 - - [24/Oct/2015:14:37:39 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1481 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:37.0) Gecko/20100101 Firefox/37.0"
86.5.41.230 - - [24/Oct/2015:14:37:48 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1493 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:37.0) Gecko/20100101 Firefox/37.0"
86.5.41.230 - - [24/Oct/2015:14:38:18 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1504 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:37.0) Gecko/20100101 Firefox/37.0"
86.5.41.230 - - [24/Oct/2015:14:38:26 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1509 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:37.0) Gecko/20100101 Firefox/37.0"
86.5.41.230 - - [24/Oct/2015:14:38:55 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1503 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:37.0) Gecko/20100101 Firefox/37.0"
86.5.41.230 - - [24/Oct/2015:14:39:08 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1510 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:37.0) Gecko/20100101 Firefox/37.0"
86.5.41.230 - - [24/Oct/2015:14:39:16 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1532 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:37.0) Gecko/20100101 Firefox/37.0"
86.5.41.230 - - [24/Oct/2015:14:39:39 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1542 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:37.0) Gecko/20100101 Firefox/37.0"
86.5.41.230 - - [24/Oct/2015:14:39:49 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1542 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:37.0) Gecko/20100101 Firefox/37.0"
86.5.41.230 - - [24/Oct/2015:14:41:58 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1457 "http://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:37.0) Gecko/20100101 Firefox/37.0"
86.5.41.230 - - [24/Oct/2015:14:42:07 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1425 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:37.0) Gecko/20100101 Firefox/37.0"
86.5.41.230 - - [24/Oct/2015:14:42:10 +0100] "POST /cgi-bin/binary.cgi HTTP/1.1" 200 1294 "https://www.firstyearmatters.info/cgi-bin/binary.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:37.0) Gecko/20100101 Firefox/37.0"
91.200.12.99 - - [24/Oct/2015:16:10:32 +0100] "POST /YaBB.pl?action=login2 HTTP/1.0" 404 11478 "http://fym.cse.salford.ac.uk/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:36.0) Gecko/20100101 Firefox/36.0"
91.200.12.99 - - [24/Oct/2015:16:10:32 +0100] "POST /https://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?action=login2 HTTP/1.0" 404 11526 "http://fym.cse.salford.ac.uk/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:36.0) Gecko/20100101 Firefox/36.0"
91.200.12.99 - - [24/Oct/2015:16:10:33 +0100] "GET /cgi-bin/forum/YaBB.pl?action=viewprofile;username=6D676D2E2A2B1E0 HTTP/1.0" 404 24418 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?action=viewprofile;username=6D676D2E2A2B1E0" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:36.0) Gecko/20100101 Firefox/36.0"
91.200.12.99 - - [24/Oct/2015:16:10:33 +0100] "GET /forum/YaBB.pl?action=viewprofile;username=6D676D2E2A2B1E0 HTTP/1.0" 302 6107 "http://www.firstyearmatters.info/forum/YaBB.pl?action=viewprofile;username=6D676D2E2A2B1E0" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:36.0) Gecko/20100101 Firefox/36.0"
91.200.12.99 - - [24/Oct/2015:16:10:34 +0100] "GET /cgi-bin/forum/YaBB.pl?board=general HTTP/1.0" 200 78752 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?board=general" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:36.0) Gecko/20100101 Firefox/36.0"
91.200.12.99 - - [24/Oct/2015:16:10:35 +0100] "GET /cgi-bin/forum/YaBB.pl?virboard=general;num=1316302398 HTTP/1.0" 200 36731 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?virboard=general;num=1316302398" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:36.0) Gecko/20100101 Firefox/36.0"
91.200.12.99 - - [24/Oct/2015:16:10:36 +0100] "GET /cgi-bin/forum/YaBB.pl?virboard=general;num=1316419866 HTTP/1.0" 200 34792 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?virboard=general;num=1316419866" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:36.0) Gecko/20100101 Firefox/36.0"
91.200.12.99 - - [24/Oct/2015:16:10:37 +0100] "GET /cgi-bin/forum/YaBB.pl?board=general/60 HTTP/1.0" 200 69735 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?board=general/60" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:36.0) Gecko/20100101 Firefox/36.0"
91.200.12.99 - - [24/Oct/2015:16:10:38 +0100] "GET /cgi-bin/forum/YaBB.pl?board=general/30 HTTP/1.0" 200 77881 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?board=general/30" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:36.0) Gecko/20100101 Firefox/36.0"
91.200.12.99 - - [24/Oct/2015:16:10:39 +0100] "GET /cgi-bin/forum/YaBB.pl?board=general/0 HTTP/1.0" 200 78752 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl?board=general/0" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:36.0) Gecko/20100101 Firefox/36.0"
91.200.12.99 - - [24/Oct/2015:16:10:40 +0100] "GET /wiki/doku.php HTTP/1.0" 200 21910 "http://www.firstyearmatters.info/wiki/doku.php" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:36.0) Gecko/20100101 Firefox/36.0"
91.200.12.99 - - [24/Oct/2015:16:10:42 +0100] "GET /wiki/index.php HTTP/1.0" 200 21830 "http://www.firstyearmatters.info/index.php" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:36.0) Gecko/20100101 Firefox/36.0"
91.200.12.99 - - [24/Oct/2015:16:10:42 +0100] "GET /wiki/index.php HTTP/1.0" 200 21830 "http://www.firstyearmatters.info/index.php" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:36.0) Gecko/20100101 Firefox/36.0"
87.113.255.74 - - [24/Oct/2015:23:17:40 +0100] "GET /yabbfiles/Templates/Forum/default.css HTTP/1.1" 200 6368 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
87.113.255.74 - - [24/Oct/2015:23:17:40 +0100] "GET /yabbfiles/Templates/Forum/default/fymlogo.gif HTTP/1.1" 200 7121 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
87.113.255.74 - - [24/Oct/2015:23:17:40 +0100] "GET /yabbfiles/ubbc.js HTTP/1.1" 200 6086 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
87.113.255.74 - - [24/Oct/2015:23:17:40 +0100] "GET /yabbfiles/Templates/Forum/default/tabfill.gif HTTP/1.1" 200 1960 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
87.113.255.74 - - [24/Oct/2015:23:17:40 +0100] "GET /yabbfiles/Templates/Forum/default/tabsep211.png HTTP/1.1" 200 424 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
87.113.255.74 - - [24/Oct/2015:23:17:40 +0100] "GET /yabbfiles/Templates/Forum/default/menutop.png HTTP/1.1" 200 466 "https://www.firstyearmatters.info/yabbfiles/Templates/Forum/default.css" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
87.113.255.74 - - [24/Oct/2015:23:17:40 +0100] "GET /yabbfiles/Templates/Forum/default/rss.png HTTP/1.1" 200 1849 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
87.113.255.74 - - [24/Oct/2015:23:17:40 +0100] "GET /yabbfiles/Templates/Forum/default/tab211.png HTTP/1.1" 200 465 "https://www.firstyearmatters.info/yabbfiles/Templates/Forum/default.css" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
87.113.255.74 - - [24/Oct/2015:23:17:40 +0100] "GET /yabbfiles/Templates/Forum/default/searchbg211.png HTTP/1.1" 200 624 "https://www.firstyearmatters.info/yabbfiles/Templates/Forum/default.css" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
87.113.255.74 - - [24/Oct/2015:23:17:40 +0100] "GET /yabbfiles/Templates/Forum/default/search.gif HTTP/1.1" 200 860 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
87.113.255.74 - - [24/Oct/2015:23:17:40 +0100] "GET /yabbfiles/Templates/Forum/default/boards.gif HTTP/1.1" 200 2726 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
87.113.255.74 - - [24/Oct/2015:23:17:40 +0100] "GET /yabbfiles/Templates/Forum/default/catbg.png HTTP/1.1" 200 467 "https://www.firstyearmatters.info/yabbfiles/Templates/Forum/default.css" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
87.113.255.74 - - [24/Oct/2015:23:17:40 +0100] "GET /yabbfiles/Templates/Forum/default/grad_bottom.png HTTP/1.1" 200 448 "https://www.firstyearmatters.info/yabbfiles/Templates/Forum/default.css" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
87.113.255.74 - - [24/Oct/2015:23:17:40 +0100] "GET /yabbfiles/Templates/Forum/default/tabright211.png HTTP/1.1" 200 1290 "https://www.firstyearmatters.info/yabbfiles/Templates/Forum/default.css" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
87.113.255.74 - - [24/Oct/2015:23:17:40 +0100] "GET /yabbfiles/Templates/Forum/default/tab_selected211.png HTTP/1.1" 200 476 "https://www.firstyearmatters.info/yabbfiles/Templates/Forum/default.css" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
87.113.255.74 - - [24/Oct/2015:23:17:40 +0100] "GET /yabbfiles/Templates/Forum/default/tableft211.png HTTP/1.1" 200 961 "https://www.firstyearmatters.info/yabbfiles/Templates/Forum/default.css" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
87.113.255.74 - - [24/Oct/2015:23:17:40 +0100] "GET /yabbfiles/Templates/Forum/default/info.gif HTTP/1.1" 200 2657 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
87.113.255.74 - - [24/Oct/2015:23:17:40 +0100] "GET /yabbfiles/Templates/Forum/default/lastpost.gif HTTP/1.1" 200 655 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
87.113.255.74 - - [24/Oct/2015:23:17:40 +0100] "GET /yabbfiles/Templates/Forum/default/sf.gif HTTP/1.1" 200 740 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
87.113.255.74 - - [24/Oct/2015:23:17:40 +0100] "GET /yabbfiles/Templates/Forum/default/valid-rss.png HTTP/1.1" 200 1866 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
87.113.255.74 - - [24/Oct/2015:23:17:40 +0100] "GET /yabbfiles/Templates/Forum/default/css.gif HTTP/1.1" 200 544 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
87.113.255.74 - - [24/Oct/2015:23:17:40 +0100] "GET /yabbfiles/Templates/Forum/default/login.gif HTTP/1.1" 200 1779 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
87.113.255.74 - - [24/Oct/2015:23:17:40 +0100] "GET /yabbfiles/Templates/Forum/default/xhtml.gif HTTP/1.1" 200 562 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
87.113.255.74 - - [24/Oct/2015:23:17:40 +0100] "GET /yabbfiles/Templates/Forum/default/perl.gif HTTP/1.1" 200 1454 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
87.113.255.74 - - [24/Oct/2015:23:17:40 +0100] "GET /yabbfiles/Templates/Forum/default/online.gif HTTP/1.1" 200 2877 "http://www.firstyearmatters.info/cgi-bin/forum/YaBB.pl" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
184.105.247.196 - - [25/Oct/2015:03:10:16 +0000] "GET / HTTP/1.1" 302 5780 "-" "-"

View File

@@ -0,0 +1,30 @@
## Lecture 1 (10:00)
### Caesar Cipher
#### Dictionary
- Precalculate encrypted versions of likely words, and when one appears, test the key on the whole message.
#### Plaintext
- If you can see certain English commonalities in the cipher, you can make an educated guess. ex. If one letter appears alone, it is most likely an "A" or an "I".
### DES - Data Encryption Standard
- Cascaded Transposition.
- Substitution Ciphers.
- Initially proposed as 128-bit, US Gov enforced 56-bit. Wonder why????
- `2^128` - `3.4x10^38` combinations. `5x10^19` years to do half at 100 billion keys per second.
- `1^56` - `7.2x10^16` combinations. `4` days to do half at 100 billion keys per second.
### Current State
- (1999) Triple DES - 112bit -> 128bit standard
- (2002) AES - 128bit -> 256bit
# Assessment
## 4pm 27th Nov Deadline
- 50% of mark, questions on blackboard

View File

@@ -0,0 +1,93 @@
## Lecture 1 (12:00)
### Flow Control
If sender sends data faster than recipient can consume it, the recipient must store the data in a buffer until it is ready - in RAM or storage.
If this happens for a sustained period, the buffer gets full, and any excess data is discarded.
Flow Control is the mechanism that ensures the sender stops transmitting before the buffer is full to prevent wasted bandwidth.
- Full Duplex (Two way negotiation)
- Destination has received all frames sent so far
- Destination is ready to receive more data.
- Data and control info can flow simultaneously
- Simplex (one way) transmission system, we cant have two-way negotiation
### Packets
- Frame / Packet is a chunk of data with a fixed or max size.
- May stand alone or be fragments of larger items
- Dividing data gives us chance to send management info between frames.
- Extra overhead = Slight loss of efficiency.
- Propagation Time vs Transmission Time
- Propagation Time is the amount of time it takes for one particular signal to get from one point to another.
- Transmission Time is the total amount of data that can be sent from one place to another in a given period of time.
#### Sliding Windows Flow Control
- Every packet is numbered in sequence.
- **Window Size** defines the number of packets that can be sent by the sender without needing an acknowledgement from the recipient
- Amount of space recipient reserves for buffer space to be used for conversations with this particular sender.
- Recipient will periodically tell the sender the start of the window
- This way , the sender can send packets up to (windowStart + windowSize - 1)
- Used in the TCP protocol on the internet.
![](Pasted%20image%2020231030122822.png)
![](Pasted%20image%2020231030122739.png)
### Error Correction
- Fix the Error (FEC)
- Ask for the frame containing the error to be re-transmitted - Automatic Repeat ReQuest / Query (ARQ)
- Throw away the frame containing the error
- Usual, and ARQ requires it
- Ignore the error
- Useful for low quality streaming multimedia data
- Dangerous in networking, as it often matters where the error is.
#### Forward Error Correction (FEC)
- Represent something using more bits than needed. An error results in an invalid value that can be rounded to the nearest valid one.
- The more extra bits, the better redundancy gained.
- Simple ex.
- Majority Voting:
- Transmit each bit 3+ times (000, 111)
- For the recipient, 001/010/100 are rounded to 0
- 110/101/011 are rounded to 1
#### Re-transmission
- If we cannot fix the error, ask for retransmission
- We need a return channel to ask, so we cannot do this over simplex channels ( ex. TV )
- Must be unicast ( cannot be performed over broadcast / multicast data )
- Data must be time independent ( cannot be used for realtime data such as multimedia )
#### Go-Back-N ARQ
- Pairs with Sliding Windows Flow Control.
- Recipient discards a packet if it contains an error
- You notice you have discarded the packet when you receive the next packet with an out of sequence number.
- When noticed, discard packet and request sender to backpedal to last correct packet.
- Sender re-transmits all packets started from missing packet.
- Sender polls for a response if no acknowledgement is received (assumed lost)
- Recipient re-sends last acknowledgement.
## Lecture 2 (15:00)
### Sliding Windows Flow Control
#### Parameters of Communication
- **A** will send 8 packets to **B**
- Transmission time (time to put on network) for a packet is 1 "time unit"
- Transmission time for acknowledgement is 0 "time units"
- Propagation Time (time to travel through network) is 2 "time units"
- **B**'s packet processing time is 1 "time unit" (then acknowledges)
- Initial **Window Size** is 3
#### Legend
- Thick border (yellow bg) = Sliding Window
- Black number = in process of send
- Red number = sent but no acknowledge
- Green number = sent and acknowledged
![](Pasted%20image%2020231030152517.png)

View File

@@ -0,0 +1,175 @@
Arman Arshad:cc1
Mark De Souza:cc1
Mihai Raul Blaga:cc1
Michalis Kefalas:cc1
Alweh Almohsin:cc1
Naser Alrashidi:cc1
Timea Kereszturi:cc1
Santiago Vassoler:cc1
Arif Khan:cc1
Babacar Ba:cc1
Akram Alsaleh:cn1
William Coulson:cc1
Abdullah Ali:cc1
Michael Campbell:cn1
Joshua Cherian:cn1
Harry Page:wd1
Mohemmed Sitab:cn1
David Davies:cc1
Mohammed Ntambiye:cc1
Alex Chrisham:cn1
Ruby Miller-Lawson:wd1
Josephine Mullally:cc1
Emma Cudworth:cn1
Ilsan-Ul-Haq Khan:cn1
Adal Khan:cn1
Salman Shah:wd1
Sara Nejad:wd1
Qaiser Hussain:cn1
Deming Meng:cc1
Ayubalayefa Fitzgerald Ebieritei:cc1
Liam Croft:cc1
Robert Dobson:cc1
Matthew Hargraves:cn1
Nabeel Iqbal:cc1
Dean McAndrew:cc1
Liam Middleton:wd1
Georgios Pilavas:cc1
Ussama Qadir:cn1
Marc Reed:cc1
Matthew Smith:cc1
Nathan Thornton:cc1
Robert Adams:cc1
Nadeem Ahmed:cc1
Dan Brown:cc1
James Burgess:cc1
Dylan Eckersall:cc1
Jindrich Gorner:cc1
George Jemison-Bates:cc1
Akab Khan:cn1
Darren Maguire:cc1
Michael Manville:cc1
Lee Moore:cc1
Zabir Patel:cn1
Umar Raees:cn1
Daniel Rutherford:cc1
Ivan Totev:cc1
Umar Adam:cc1
Ryan Bailey:cc1
Cameron Campbell:cc1
Dilli Chhetri:cn1
Tony Deverill:cc1
Joseph Fleet:cc1
Andrew Gilluley:cc1
Timothy Hilditch:cc1
Joshua Kisler:cc1
Jack Latham:cn1
Will Lound:cc1
Liam Maguire:cn1
Sam May:cc1
Matthew McDermott:cc1
Muminur Rahman:cn1
Harry Richardson:cn1
Zaafir Salam:cc1
Reagan Turner:cn1
Robert Woolvin:cc1
Saman Abbas:cn1
Ityaab Ahmed:cn1
Joshua Cobb:cn1
Jarred Cranfield:cn1
Conor Glascoe:cn1
Jack Harris:cn1
Preston Leigh:cn1
Stanislav Miloradov:cn1
Adam Montgomery:wd1
Ali Nadeem:cc1
Jack Ormrod:cc1
Marcin Poneta:cn1
Georgia Rey:cn1
Lukasz Romerowicz:cc1
David Stubbs:cc1
Donatos Tassis:cc1
Matthew Wragg:cc1
Mohsin Akujee:cn1
Obaid Amiri:cn1
Sulaymaan Babar:cc1
Jarryd Bethune:wd1
Ellis Delaney:wd1
Jack Fielding:cn1
Igor Filipek:wd1
Tyler Kelly:cc1
Adam Lawson:cc1
Ben Monaghan:cc1
Jake Ramsden-Finnegan:cc1
Ollie Steer:cc1
Ryan Wallace:cc1
Brad Cantel:cc1
Shannon Beswick:cc1
Mohammed Shah:cn1
Kris Gibson:cc1
Yazn Achtar:cc1
Mahir Ahmed:cc1
Pedrom Ameli-Savehchi:cn1
Georgina Beckett:cc1
Stephen Carr:cn1
Mark Chaffer:cc1
Ben Evans:cc1
Roberto Graham:cc1
Ksistof Grunt:wd1
John Jackson:cn1
Martin McCourt:cc1
Jamie Orchison:cc1
Fizan Saddique:cn1
Michael Sutton:cc1
Alex Hopkinson:cc1
Konstantinos Papa:cn1
Ali Shah:cc1
Milad Yahya:cn1
Josh Catterson-Reid:cc1
Isavella Chrysanthou:cc1
Jill Dacanay:wd1
Shelton Madire:cn1
Hussein Mohammed:cc1
Kane Stephens:cc1
Ahmad Wali:cc1
Shakeal Mahmood:cn1
Daniella Middleton:wd1
Nawal Saheb:cc1
Charles Packman:cn1
Noman Ghous:cc1
Reece Matthews:cc1
Jayed Miah:cc1
Mohammed Zakariya Kalang:cc1
Hani Samir:cc1
Ryan Davis:cc1
Mohamed Shehata:cc1
Omar Aljewari:cc1
Mohammed Ullah:cn1
Atif Hassan:cn1
Ryan Sharkey:cc1
Irfan Jamil:cn1
Aroba Waheed:cc1
Safwana Mohammed:cc1
Edward Robertson:cc1
Mohamed Ibrahim:wd1
Helly Liking:cn1
Azham Syed:cc1
Daniel Turrell:cc1
Connor Scott:cc1
Alexander Dawson:cc1
Sajid Jan:cc1
Adebanjo Adegboye:cn1
Navin Bajgai:cc1
Ansoumane Konde:cc1
Justyna Rodzevic:wd1
Karl Sparham:wd1
Hassan Buyondo:cn1
Minhaj Patel:cc1
Leonel Dos Santos Muzobo:cn1
Matthew Spafford:cc1
Mushir Faisal:cc1
Arslaan Qadus:cc1
Amit Budhathoki:cn1
Umar Ali:cn1
Hamdraza Rana:wd1
Adam Ulanowski:cc1

View File

@@ -0,0 +1,6 @@
* David_Beckham_(1996-2009),_115_Caps
* Bobby_Charlton_(1958-1970),_106_Caps
* Steven_Gerrard_(2000-2012),_100_Caps
* Bobby_Moore_(1962-1973),_108_Caps
* Peter_Shilton_(1970-1990),_125_Caps
* Billy_Wright_(1946-1959),_105_Caps

View File

@@ -0,0 +1,25 @@
#!/bin/bash
if test -d completed/; then
rm -f completed/*
else
mkdir completed
fi
cat level1.txt | while read LINE; do
name=$(echo $LINE | cut -d : -f 1)
course=$(echo $LINE | cut -d : -f 2)
firstname=$(echo $name | cut -d " " -f 1)
familyname=$(echo $name | cut -d " " -f 2-)
outputfile="$course-$familyname.txt"
if test -e completed/"$outputfile"; then
outputfile="$course-$familyname $firstname.txt"
fi
cat template | sed -r -e "s/^NAME/$firstname/" \
-e "s/COURSE$/\U$course/" \
-e "/:/!p" \
-e "/^.*($course|everyone).*:/!d; s///" \
> completed/"$outputfile"
done

View File

@@ -0,0 +1,15 @@
NAME
Assessment dates
================
This is to remind you of upcoming assssesssssment dates for COURSE
cc1: CSIL around 14th December 2015
cc1,wd1,cn1: Databases - some time 11th-22nd January 2016
everyone: PD&P - some time 11th-22nd January 2016
cc1: Java - some time 11th-22nd January 2016
wd1,cn1: Invented module - Invented date 2016
Please don't ask if you don't have any questions
Programme Leader

View File

@@ -0,0 +1,2 @@
## Lecture 1 (12:00)
### sed

View File

@@ -0,0 +1,52 @@
{
"folders": {},
"connections": {
"postgres-jdbc-18bb8d14e3a-4b7a96932eaa0782": {
"provider": "postgresql",
"driver": "postgres-jdbc",
"name": "postgres",
"save-password": true,
"show-system-objects": true,
"configuration": {
"host": "localhost",
"port": "5432",
"database": "postgres",
"url": "jdbc:postgresql://localhost:5432/postgres",
"configurationType": "MANUAL",
"type": "dev",
"properties": {
"connectTimeout": "20",
"loginTimeout": "20",
"escapeSyntaxCallMode": "callIfNoReturn"
},
"provider-properties": {
"@dbeaver-show-non-default-db@": "false",
"@dbeaver-show-template-db@": "false",
"@dbeaver-show-unavailable-db@": "false",
"show-database-statistics": "false",
"@dbeaver-read-all-data-types-db@": "false",
"read-keys-with-columns": "false",
"@dbeaver-use-prepared-statements-db@": "false",
"postgresql.dd.plain.string": "false",
"postgresql.dd.tag.string": "false"
},
"auth-model": "native"
}
}
},
"virtual-models": {"postgres-jdbc-18bb8d14e3a-4b7a96932eaa0782":{"postgres":{"NHSBT":{"@properties":{"erd.diagram.state":{"serialized":"\u003cdiagram version\u003d\"1\" name\u003d\"empty\" time\u003d\"202312041909\"\u003e\u003centities\u003e\u003cdata-source id\u003d\"postgres-jdbc-18bb8d14e3a-4b7a96932eaa0782\"\u003e\u003centity id\u003d\"1\" name\u003d\"donor\" fq-name\u003d\"\u0026quot;NHSBT\u0026quot;.donor\" order\u003d\"0\" font\u003d\"Segoe UI:9:0\" x\u003d\"340\" y\u003d\"400\"\u003e\u003cpath name\u003d\"NHSBT\"/\u003e\u003cpath name\u003d\"postgres\"/\u003e\u003c/entity\u003e\u003centity id\u003d\"2\" name\u003d\"hospital\" fq-name\u003d\"\u0026quot;NHSBT\u0026quot;.hospital\" order\u003d\"2\" font\u003d\"Segoe UI:9:0\" x\u003d\"600\" y\u003d\"40\"\u003e\u003cpath name\u003d\"NHSBT\"/\u003e\u003cpath name\u003d\"postgres\"/\u003e\u003c/entity\u003e\u003centity id\u003d\"3\" name\u003d\"operation\" fq-name\u003d\"\u0026quot;NHSBT\u0026quot;.operation\" order\u003d\"3\" font\u003d\"Segoe UI:9:0\" x\u003d\"20\" y\u003d\"180\"\u003e\u003cpath name\u003d\"NHSBT\"/\u003e\u003cpath name\u003d\"postgres\"/\u003e\u003c/entity\u003e\u003centity id\u003d\"4\" name\u003d\"organ\" fq-name\u003d\"\u0026quot;NHSBT\u0026quot;.organ\" order\u003d\"4\" font\u003d\"Segoe UI:9:0\" x\u003d\"380\" y\u003d\"180\"\u003e\u003cpath name\u003d\"NHSBT\"/\u003e\u003cpath name\u003d\"postgres\"/\u003e\u003c/entity\u003e\u003centity id\u003d\"5\" name\u003d\"patient\" fq-name\u003d\"\u0026quot;NHSBT\u0026quot;.patient\" order\u003d\"5\" font\u003d\"Segoe UI:9:0\" x\u003d\"380\" y\u003d\"280\"\u003e\u003cpath name\u003d\"NHSBT\"/\u003e\u003cpath name\u003d\"postgres\"/\u003e\u003c/entity\u003e\u003centity id\u003d\"6\" name\u003d\"transplant_unit\" fq-name\u003d\"\u0026quot;NHSBT\u0026quot;.transplant_unit\" order\u003d\"1\" font\u003d\"Segoe UI:9:0\" x\u003d\"340\" y\u003d\"60\"\u003e\u003cpath name\u003d\"NHSBT\"/\u003e\u003cpath name\u003d\"postgres\"/\u003e\u003c/entity\u003e\u003c/data-source\u003e\u003c/entities\u003e\u003crelations\u003e\u003crelation name\u003d\"did_fk\" fq-name\u003d\"\u0026quot;NHSBT\u0026quot;.operation.did_fk\" type\u003d\"fk\" pk-ref\u003d\"1\" fk-ref\u003d\"3\"/\u003e\u003crelation name\u003d\"hid_fk\" fq-name\u003d\"\u0026quot;NHSBT\u0026quot;.transplant_unit.hid_fk\" type\u003d\"fk\" pk-ref\u003d\"2\" fk-ref\u003d\"6\"/\u003e\u003crelation name\u003d\"oid_fk\" fq-name\u003d\"\u0026quot;NHSBT\u0026quot;.operation.oid_fk\" type\u003d\"fk\" pk-ref\u003d\"4\" fk-ref\u003d\"3\"/\u003e\u003crelation name\u003d\"pid_fk\" fq-name\u003d\"\u0026quot;NHSBT\u0026quot;.operation.pid_fk\" type\u003d\"fk\" pk-ref\u003d\"5\" fk-ref\u003d\"3\"/\u003e\u003crelation name\u003d\"uid_fk\" fq-name\u003d\"\u0026quot;NHSBT\u0026quot;.operation.uid_fk\" type\u003d\"fk\" pk-ref\u003d\"6\" fk-ref\u003d\"3\"/\u003e\u003c/relations\u003e\u003c/diagram\u003e"}}}}}},
"connection-types": {
"dev": {
"name": "Development",
"color": "255,255,255",
"description": "Regular development database",
"auto-commit": true,
"confirm-execute": false,
"confirm-data-change": false,
"smart-commit": false,
"smart-commit-recover": false,
"auto-close-transactions": true,
"close-transactions-period": 1800
}
}
}

View File

@@ -0,0 +1 @@
{"resources":{"Scripts/Script-1.sql":{"default-datasource":"postgres-jdbc-18bb8d14e3a-4b7a96932eaa0782","default-catalog":"postgres","default-schema":"public"},"Scripts/Script.sql":{"default-datasource":"postgres-jdbc-18bb8d14e3a-4b7a96932eaa0782","default-catalog":"postgres","default-schema":"public"}}}

View File

@@ -0,0 +1,66 @@
{
"folders": {},
"connections": {
"postgres-jdbc-18bb8d14e3a-4b7a96932eaa0782": {
"provider": "postgresql",
"driver": "postgres-jdbc",
"name": "postgres",
"save-password": true,
"show-system-objects": true,
"configuration": {
"host": "localhost",
"port": "5432",
"database": "postgres",
"url": "jdbc:postgresql://localhost:5432/postgres",
"configurationType": "MANUAL",
"type": "dev",
"properties": {
"connectTimeout": "20",
"loginTimeout": "20",
"escapeSyntaxCallMode": "callIfNoReturn"
},
"provider-properties": {
"@dbeaver-show-non-default-db@": "false",
"@dbeaver-show-template-db@": "false",
"@dbeaver-show-unavailable-db@": "false",
"show-database-statistics": "false",
"@dbeaver-read-all-data-types-db@": "false",
"read-keys-with-columns": "false",
"@dbeaver-use-prepared-statements-db@": "false",
"postgresql.dd.plain.string": "false",
"postgresql.dd.tag.string": "false"
},
"auth-model": "native"
}
},
"mariaDB-18c7ce71acc-6d1e868e298d052a": {
"provider": "mysql",
"driver": "mariaDB",
"name": "localhost",
"save-password": true,
"configuration": {
"host": "localhost",
"port": "3306",
"url": "jdbc:mariadb://localhost:3306/",
"configurationType": "MANUAL",
"type": "dev",
"auth-model": "native"
}
}
},
"virtual-models": {"postgres-jdbc-18bb8d14e3a-4b7a96932eaa0782":{"postgres":{"NHSBT":{"@properties":{"erd.diagram.state":{"serialized":"\u003cdiagram version\u003d\"1\" name\u003d\"empty\" time\u003d\"202312041909\"\u003e\u003centities\u003e\u003cdata-source id\u003d\"postgres-jdbc-18bb8d14e3a-4b7a96932eaa0782\"\u003e\u003centity id\u003d\"1\" name\u003d\"donor\" fq-name\u003d\"\u0026quot;NHSBT\u0026quot;.donor\" order\u003d\"0\" font\u003d\"Segoe UI:9:0\" x\u003d\"340\" y\u003d\"400\"\u003e\u003cpath name\u003d\"NHSBT\"/\u003e\u003cpath name\u003d\"postgres\"/\u003e\u003c/entity\u003e\u003centity id\u003d\"2\" name\u003d\"hospital\" fq-name\u003d\"\u0026quot;NHSBT\u0026quot;.hospital\" order\u003d\"2\" font\u003d\"Segoe UI:9:0\" x\u003d\"600\" y\u003d\"40\"\u003e\u003cpath name\u003d\"NHSBT\"/\u003e\u003cpath name\u003d\"postgres\"/\u003e\u003c/entity\u003e\u003centity id\u003d\"3\" name\u003d\"operation\" fq-name\u003d\"\u0026quot;NHSBT\u0026quot;.operation\" order\u003d\"3\" font\u003d\"Segoe UI:9:0\" x\u003d\"20\" y\u003d\"180\"\u003e\u003cpath name\u003d\"NHSBT\"/\u003e\u003cpath name\u003d\"postgres\"/\u003e\u003c/entity\u003e\u003centity id\u003d\"4\" name\u003d\"organ\" fq-name\u003d\"\u0026quot;NHSBT\u0026quot;.organ\" order\u003d\"4\" font\u003d\"Segoe UI:9:0\" x\u003d\"380\" y\u003d\"180\"\u003e\u003cpath name\u003d\"NHSBT\"/\u003e\u003cpath name\u003d\"postgres\"/\u003e\u003c/entity\u003e\u003centity id\u003d\"5\" name\u003d\"patient\" fq-name\u003d\"\u0026quot;NHSBT\u0026quot;.patient\" order\u003d\"5\" font\u003d\"Segoe UI:9:0\" x\u003d\"380\" y\u003d\"280\"\u003e\u003cpath name\u003d\"NHSBT\"/\u003e\u003cpath name\u003d\"postgres\"/\u003e\u003c/entity\u003e\u003centity id\u003d\"6\" name\u003d\"transplant_unit\" fq-name\u003d\"\u0026quot;NHSBT\u0026quot;.transplant_unit\" order\u003d\"1\" font\u003d\"Segoe UI:9:0\" x\u003d\"340\" y\u003d\"60\"\u003e\u003cpath name\u003d\"NHSBT\"/\u003e\u003cpath name\u003d\"postgres\"/\u003e\u003c/entity\u003e\u003c/data-source\u003e\u003c/entities\u003e\u003crelations\u003e\u003crelation name\u003d\"did_fk\" fq-name\u003d\"\u0026quot;NHSBT\u0026quot;.operation.did_fk\" type\u003d\"fk\" pk-ref\u003d\"1\" fk-ref\u003d\"3\"/\u003e\u003crelation name\u003d\"hid_fk\" fq-name\u003d\"\u0026quot;NHSBT\u0026quot;.transplant_unit.hid_fk\" type\u003d\"fk\" pk-ref\u003d\"2\" fk-ref\u003d\"6\"/\u003e\u003crelation name\u003d\"oid_fk\" fq-name\u003d\"\u0026quot;NHSBT\u0026quot;.operation.oid_fk\" type\u003d\"fk\" pk-ref\u003d\"4\" fk-ref\u003d\"3\"/\u003e\u003crelation name\u003d\"pid_fk\" fq-name\u003d\"\u0026quot;NHSBT\u0026quot;.operation.pid_fk\" type\u003d\"fk\" pk-ref\u003d\"5\" fk-ref\u003d\"3\"/\u003e\u003crelation name\u003d\"uid_fk\" fq-name\u003d\"\u0026quot;NHSBT\u0026quot;.operation.uid_fk\" type\u003d\"fk\" pk-ref\u003d\"6\" fk-ref\u003d\"3\"/\u003e\u003c/relations\u003e\u003c/diagram\u003e"}}}}}},
"connection-types": {
"dev": {
"name": "Development",
"color": "255,255,255",
"description": "Regular development database",
"auto-commit": true,
"confirm-execute": false,
"confirm-data-change": false,
"smart-commit": false,
"smart-commit-recover": false,
"auto-close-transactions": true,
"close-transactions-period": 1800
}
}
}

View File

@@ -0,0 +1 @@
{"resources":{"Scripts/Script-1.sql":{"default-schema":"public","default-datasource":"postgres-jdbc-18bb8d14e3a-4b7a96932eaa0782","default-catalog":"postgres"},"Scripts/Script-2.sql":{"default-datasource":"postgres-jdbc-18bb8d14e3a-4b7a96932eaa0782","default-catalog":"postgres","default-schema":"NHSBT"},"Scripts/Script.sql":{"default-schema":"public","default-datasource":"postgres-jdbc-18bb8d14e3a-4b7a96932eaa0782","default-catalog":"postgres"}}}

View File

@@ -0,0 +1 @@
{"id":"5a1df5db-fd99-4fe1-af14-86d0f0327a9c"}

View File

@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>Assignment1</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
</buildSpec>
<natures>
<nature>org.jkiss.dbeaver.DBeaverNature</nature>
</natures>
</projectDescription>

View File

@@ -0,0 +1,88 @@
1. **hospital** Table
Attributes:
`hospital_id` (Primary Key)
`hospital_name`
`city`
`postcode` (Unique)
```SQL
CREATE TABLE hospital (
hospital_id CHAR(3) CONSTRAINT hID_pk PRIMARY KEY,
hospital_name VARCHAR(30),
city VARCHAR(15),
postcode VARCHAR(8) CONSTRAINT postcode_unique UNIQUE
);
```
2. **transplant_unit** Table
Attributes:
`unit_id` (Primary Key)
`hospital_id` (Foreign Key referencing Hospital)
`specialisation`
```SQL
CREATE TABLE transplant_unit (
unit_id CHAR(4) CONSTRAINT uID_pk PRIMARY KEY,
hospital_id CHAR(3) CONSTRAINT hID_fk FOREIGN KEY REFERENCES hospital( hospital_id ),
specialisation VARCHAR(20)
);
```
3. **organ** Table:
Attributes:
`organ_id` (Primary Key)
`organ_type`
```SQL
CREATE TABLE organ (
organ_id CHAR(3) CONSTRAINT oID_pk PRIMARY KEY,
organ_type VARCHAR(15)
);
```
4. **patient** Table:
Attributes:
`patient_id` (Primary Key)
`patient_name`
`age`
```SQL
CREATE TABLE patient (
patient_id CHAR(3) CONSTRAINT pID_pk PRIMARY KEY,
patient_name VARCHAR(10),
age INTEGER
);
```
5. **donor** Table:
Attributes:
`donor_id` (Primary Key)
`donor_name`
`age`
```SQL
CREATE TABLE donor (
donor_id CHAR(3) CONSTRAINT dID_pk PRIMARY KEY,
donor_name VARCHAR(10),
age INTEGER
);
```
6. **operation** Table
Attributes:
`operation_id` (Primary Key)
`unit_id` (Foreign Key referencing TransplantUnit)
`organ_id` (Foreign Key referencing Organ)
`patient_id` (Foreign Key referencing Patient)
`donor_id` (Foreign Key referencing Donor)
```SQL
CREATE TABLE operation (
operation_id CHAR(3),
organ_id CHAR(3) CONSTRAINT oID_fk FOREIGN KEY REFERENCES organ( organ_id ),
unit_id CHAR(4) CONSTRAINT uID_fk FOREIGN KEY REFERENCES transplant_unit( unit_id ),
patient_id CHAR(3) CONSTRAINT pID_fk FOREIGN KEY REFERENCES patient( patient_id ),
donor_id CHAR(3) CONSTRAINT dID_fk FOREIGN KEY REFERENCES donor( donor_id ),
CONSTRAINT comp_op_key PRIMARY KEY ( operation_id, organ_id )
);
```

View File

@@ -0,0 +1,39 @@
Key Phrases:
1. Transplant operations [are carried out at specialist transplant units. They] are never split across more than one unit.
An operation takes place at 1 Unit.
2. Each unit is based at one hospital only
A unit can only be in 1 hospital
3. Specialises in one type of transplantation
A unit has 1 specialisation
4. A unit can transplant the other types of organ which lie outside of its area of expertise.
A unit does not specifically have to transplant it's specialisation
5. Some hospitals host more than one transplant unit.
However some do not have a transplant unit.
A hospital can have 0, 1 or many transplant units.
- **Transplant Operation**:
- Involves a **Donor** [1:1] and a **Patient** [1:1].
- Encompasses one or more **Organs** [1:M].
- **Donor**:
- May be associated with one or more **Transplant Operations** [1:M].
- **Patient**:
- May be associated with one or more **Transplant Operations** [1:M].
- **Organ**:
- Is involved in one or more **Transplant Operations** [M:1].
- **Specialist Transplant Unit**:
- Is tied to one **Hospital** [1:1].
- Specialises in one type of **Organ** transplantation [o:1].
- Can handle other types of **Organ** transplants outside its specialization [o:M].
- **Hospital**:
- Can host one or more **Specialist Transplant Units** [1:M].
- Not all hospitals have a **Transplant Unit** [o:1].
`Hospital` -|---o-< `TransplantUnit`
- One hospital can have 0, 1 or many Units.
- A unit must have a hospital, and only 1.

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

View File

@@ -0,0 +1,90 @@
1. **hospital** Table
Attributes:
`HospitalID` (Primary Key)
`Name`
`City`
`Postcode` (Unique)
```SQL
INSERT INTO hospital
VALUES ('h01', 'Royal Infirmary', 'Manchester', 'M13 1AB'),
('h02', 'St James University Hospital', 'Leeds', 'LE6 6JX'),
('h03', 'Eye hospital', 'Manchester', 'M5 3AC'),
('h04', 'Wythenshawe Hospital', 'Manchester', 'M22 4XD');
```
2. **transplant_unit** Table
Attributes:
`unit_id` (Primary Key)
`hospital_id` (Foreign Key referencing Hospital)
`specialisation`
```SQL
INSERT INTO transplant_unit
VALUES ( 'u001', 'h01', 'Kidney (Renal)' ),
( 'u002', 'h02', 'Kidney (Renal)' ),
( 'u003', 'h01', 'Pancreas' ),
( 'u004', 'h02', 'Liver' ),
( 'u005', 'h04', 'Cardiothoracic' );
```
3. **organ** Table:
Attributes:
`organ_id` (Primary Key)
`organ_type`
```SQL
INSERT INTO organ
VALUES ( 'o1', 'kidney' ),
( 'o2', 'heart' ),
( 'o3', 'lung' ),
( 'o4', 'pancreas' ),
( 'o5', 'liver' );
```
4. **patient** Table:
Attributes:
`patient_id` (Primary Key)
`patient_name`
`age`
```SQL
INSERT INTO patient
VALUES ( 'p03', 'ben', 58 ),
( 'p04', 'jane', 27),
( 'p05', 'joan', 50);
```
5. **donor** Table:
Attributes:
`donor_id` (Primary Key)
`donor_name`
`age`
```SQL
INSERT INTO donor
VALUES ( 'd01', 'tom', 34 ),
( 'd02', 'dick', 45 ),
( 'd03', 'harry', 27 ),
( 'd04', 'sue', 60 ),
( 'd05', 'kate', 49 ),
( 'd06', 'rose', 34 );
```
6. **operation** Table
Attributes:
`operation_id` (Primary Key)
`unit_id` (Foreign Key referencing TransplantUnit)
`organ_id` (Foreign Key referencing Organ)
`patient_id` (Foreign Key referencing Patient)
`donor_id` (Foreign Key referencing Donor)
```SQL
INSERT INTO operation
VALUES ( 'op1', 'o1', 'u002', 'p03', 'd01' ),
( 'op2', 'o2', 'u005', 'p04', 'd02' ),
( 'op2', 'o3', 'u005', 'p04', 'd02' ),
( 'op3', 'o4', 'u003', 'p05', 'd03' ),
( 'op4', 'o5', 'u004', 'p05', 'd05' ),
( 'op5', 'o5', 'u002', 'p03', 'd01' );
```

View File

@@ -0,0 +1,52 @@
3. List the names of patients who are at least fifty years old. Your query should always generate a list in which the names are sorted in alphabetical order. The ordering must not depend upon the order in which you entered data into your database.
```SQL
SELECT patient_name
FROM patient
WHERE age >= 50
ORDER BY patient_name;
```
![](Pasted%20image%2020231204184010.png)
4. List the name of each type of organ, together with the total number of donations of that type of organ.
```SQL
SELECT organ_type, COUNT( organ_type )
FROM organ
INNER JOIN operation ON operation.organ_id = organ.organ_id
GROUP BY organ_type;
```
![](Pasted%20image%2020231204184814.png)
5. List the identifiers of hospitals where a transplant has been performed, together with the number of transplant operations at the hospital.
```SQL
SELECT hospital_id, COUNT( hospital_id )
FROM transplant_unit
INNER JOIN operation ON transplant_unit.unit_id = operation.unit_id
GROUP BY hospital_id;
```
![](Pasted%20image%2020231204191255.png)
6. Output the age of the oldest person who has donated in a hospital in Manchester.
```SQL
SELECT age
FROM donor
WHERE donor_id IN (
SELECT donor_id
FROM operation
WHERE unit_id IN (
SELECT unit_id
FROM transplant_unit
WHERE hospital_id IN (
SELECT hospital_id
FROM hospital
WHERE city LIKE '%Manchester%'
)
)
);
```

View File

@@ -0,0 +1,59 @@
1. **Hospital** Table:
Attributes:
`HospitalID` (Primary Key)
`Name`
`Address`
`City`
`Postcode` (Unique)
The Hospital table is in 1NF as values would be atomic with no repeating groups. It is in 2NF as all attributes are dependent on the primary key with no partial dependencies, and it is in 3NF as there are no transitive dependencies; all attributes exclusively depend on the primary key.
2. **TransplantUnit** Table:
Attributes:
`UnitID` (Primary Key)
`HospitalID` (Foreign Key referencing Hospital)
`Specialisation`
The TransplantUnit table is in 1NF as values would be atomic with no repeating groups. It is in 2NF as all attributes are dependent on the primary key with no partial dependencies, and it is in 3NF as there are no transitive dependencies; all attributes exclusively depend on the primary key.
3. **Organ** Table:
Attributes:
`OrganID` (Primary Key)
`OrganType`
The OrganType table is in 1NF as values would be atomic with no repeating groups. It is in 2NF as all attributes are dependent on the primary key with no partial dependencies, and it is in 3NF as there are no transitive dependencies; all attributes exclusively depend on the primary key.
4. **Donor** Table:
Attributes:
`DonorID` (Primary Key)
`Name`
`Age`
The Donor table is in 1NF as values would be atomic with no repeating groups. It is in 2NF as all attributes are dependent on the primary key with no partial dependencies, and it is in 3NF as there are no transitive dependencies; all attributes exclusively depend on the primary key.
5. **Patient** Table:
Attributes:
`PatientID` (Primary Key)
`Name`
`Age`
The Patient table is in 1NF as values would be atomic with no repeating groups. It is in 2NF as all attributes are dependent on the primary key with no partial dependencies, and it is in 3NF as there are no transitive dependencies; all attributes exclusively depend on the primary key.
6. **Operation** Table:
We need an Operations table to record / capture information related to the operations themselves. This should include an ID for the operation as a primary key, the ID of the unit it was conducted in, the ID of the organ type used, the ID of the donor and the ID of the patient. This allows us to establish proper relationships to the other tables, and allows for a comprehensive record of the transplant process.
This table also allows us to query easier, since all queries can be done on the one table to find essentially any information.
Attributes:
`OperationID` (Primary Key)
`UnitID` (Foreign Key referencing TransplantUnit)
`OrganTypeID` (Foreign Key referencing OrganType)
`DonorID` (Foreign Key referencing Donor)
`PatientID` (Foreign Key referencing Patient)
The Operation table is in 1NF as values would be atomic with no repeating groups. It is in 2NF as all attributes are dependent on the primary key with no partial dependencies, and it is in 3NF as there are no transitive dependencies; all attributes exclusively depend on the primary key.
In summary, the provided relational database model is in 3NF as each table has a primary key, and there are no transitive dependencies or non-prime attributes dependent on other non-prime attributes. This ensures the data is organized efficiently and minimizes redundancy.

View File

@@ -0,0 +1,15 @@
SELECT MAX(age) as oldest_donor
FROM donor
WHERE donor_id IN (
SELECT donor_id
FROM operation
WHERE unit_id IN (
SELECT unit_id
FROM transplant_unit
WHERE hospital_id IN (
SELECT hospital_id
FROM hospital
WHERE city LIKE '%Manchester%'
)
)
);

View File

@@ -0,0 +1,32 @@
CREATE TABLE hospital (
hospitalID CHAR(3) CONSTRAINT hID_pk PRIMARY KEY,
hospitalName VARCHAR(20),
city VARCHAR(15),
postcode CHAR(8) CONSTRAINT postcode_unique UNIQUE
);
CREATE TABLE transplantUnit (
unitID CHAR(4) CONSTRAINT uID_pk PRIMARY KEY,
hospitalID CHAR(3) CONSTRAINT hID_fk FOREIGN KEY REFERENCES hospital(HospitalID),
specialisation VARCHAR(10)
);
CREATE TABLE organ (
organID CHAR(3) CONSTRAINT oID_pk PRIMARY KEY,
organType VARCHAR(15)
);
CREATE TABLE patient (
patientID CHAR(3) CONSTRAINT pID_pk PRIMARY KEY,
patientName VARCHAR(10),
age INTEGER
);
CREATE TABLE donor (
donorID CHAR(3) CONSTRAINT dID_pk PRIMARY KEY,
donorName VARCHAR(10),
age INTEGER
);
CREATE TABLE operation (
operationID CHAR(3) CONSTRAINT opID_pk PRIMARY KEY,
unitID CHAR(4) CONSTRAINT uID_fk FOREIGN KEY REFERENCES transplantUnit(unitID),
organID CHAR(3) CONSTRAINT oID_fk FOREIGN KEY REFERENCES organ(organID),
patientID CHAR(3) CONSTRAINT pID_fk FOREIGN KEY REFERENCES patient(patientID),
donorID CHAR(3) CONSTRAINT dID_fk FOREIGN KEY REFERENCES donor(donorID)
);

View File

@@ -0,0 +1,63 @@
1. **Hospital** Table
```SQL
CREATE TABLE hospital (
hospital_id CHAR(3) CONSTRAINT hID_pk PRIMARY KEY,
hospital_name VARCHAR(30),
city VARCHAR(15),
postcode VARCHAR(8) CONSTRAINT postcode_unique UNIQUE
);
```
2. **Transplant_Unit** Table
```SQL
CREATE TABLE transplant_unit (
unit_id CHAR(4) CONSTRAINT uID_pk PRIMARY KEY,
hospital_id CHAR(3),
specialisation VARCHAR(20),
CONSTRAINT hID_fk FOREIGN KEY ( hospital_id ) REFERENCES hospital( hospital_id )
);
```
3. **Organ** Table:
```SQL
CREATE TABLE organ (
organ_id CHAR(3) CONSTRAINT oID_pk PRIMARY KEY,
organ_type VARCHAR(15)
);
```
4. **Patient** Table:
```SQL
CREATE TABLE patient (
patient_id CHAR(3) CONSTRAINT pID_pk PRIMARY KEY,
patient_name VARCHAR(10),
age INTEGER
);
```
5. **Donor** Table:
```SQL
CREATE TABLE donor (
donor_id CHAR(3) CONSTRAINT dID_pk PRIMARY KEY,
donor_name VARCHAR(10),
age INTEGER
);
```
6. **Operation** Table
```SQL
CREATE TABLE operation (
operation_id CHAR(3),
organ_id CHAR(3),
unit_id CHAR(4),
patient_id CHAR(3),
donor_id CHAR(3),
CONSTRAINT comp_op_key PRIMARY KEY ( operation_id, organ_id ),
CONSTRAINT oID_fk FOREIGN KEY ( organ_id ) REFERENCES organ( organ_id ),
CONSTRAINT uID_fk FOREIGN KEY ( unit_id ) REFERENCES transplant_unit( unit_id ),
CONSTRAINT pID_fk FOREIGN KEY ( patient_id ) REFERENCES patient( patient_id ),
CONSTRAINT dID_fk FOREIGN KEY ( donor_id ) REFERENCES donor( donor_id )
);
```

View File

@@ -0,0 +1 @@
16

Some files were not shown because too many files have changed in this diff Show More