line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Acme::Nogizaka46::NagashimaSeira; |
2
|
|
|
|
|
|
|
|
3
|
3
|
|
|
3
|
|
10
|
use strict; |
|
3
|
|
|
|
|
5
|
|
|
3
|
|
|
|
|
64
|
|
4
|
3
|
|
|
3
|
|
7
|
use warnings; |
|
3
|
|
|
|
|
4
|
|
|
3
|
|
|
|
|
57
|
|
5
|
|
|
|
|
|
|
|
6
|
3
|
|
|
3
|
|
8
|
use base qw(Acme::Nogizaka46::Base); |
|
3
|
|
|
|
|
3
|
|
|
3
|
|
|
|
|
334
|
|
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
our $VERSION = 0.3; |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
sub info { |
11
|
|
|
|
|
|
|
return ( |
12
|
3
|
|
|
3
|
0
|
17
|
first_name_ja => '聖羅', |
13
|
|
|
|
|
|
|
family_name_ja => '永島', |
14
|
|
|
|
|
|
|
first_name_en => 'Seira', |
15
|
|
|
|
|
|
|
family_name_en => 'Nagashima', |
16
|
|
|
|
|
|
|
nick => [qw(らりん せいらりん)], |
17
|
|
|
|
|
|
|
birthday => $_[0]->_datetime_from_date('1994-05-19'), |
18
|
|
|
|
|
|
|
blood_type => 'O', |
19
|
|
|
|
|
|
|
hometown => '愛知', |
20
|
|
|
|
|
|
|
class => 1, |
21
|
|
|
|
|
|
|
center => undef, |
22
|
|
|
|
|
|
|
graduate_date => $_[0]->_datetime_from_date('2016-03-21'), |
23
|
|
|
|
|
|
|
); |
24
|
|
|
|
|
|
|
} |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
1; |