ruby-nessus2 2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (50) hide show
  1. checksums.yaml +7 -0
  2. data/.drone.yml +51 -0
  3. data/.gitignore +5 -0
  4. data/.rspec +1 -0
  5. data/.rubocop.yml +4 -0
  6. data/.rubocop_todo.yml +124 -0
  7. data/.travis.yml +13 -0
  8. data/.yardopts +1 -0
  9. data/Gemfile +6 -0
  10. data/Gemfile.lock +75 -0
  11. data/LICENSE.txt +20 -0
  12. data/README.md +181 -0
  13. data/Rakefile +21 -0
  14. data/bin/recess +10 -0
  15. data/examples/example.rb +46 -0
  16. data/examples/example_bid.rb +28 -0
  17. data/examples/example_cpe.rb +28 -0
  18. data/examples/example_cve.rb +36 -0
  19. data/examples/example_v1.nessus +1 -0
  20. data/examples/example_v2.nessus +2076 -0
  21. data/examples/example_v3.nessus +7449 -0
  22. data/lib/ruby-nessus.rb +5 -0
  23. data/lib/ruby-nessus/cli.rb +126 -0
  24. data/lib/ruby-nessus/log.rb +84 -0
  25. data/lib/ruby-nessus/parse.rb +46 -0
  26. data/lib/ruby-nessus/ruby-nessus.rb +6 -0
  27. data/lib/ruby-nessus/version.rb +5 -0
  28. data/lib/ruby-nessus/version1/event.rb +85 -0
  29. data/lib/ruby-nessus/version1/host.rb +267 -0
  30. data/lib/ruby-nessus/version1/port.rb +84 -0
  31. data/lib/ruby-nessus/version1/scan.rb +404 -0
  32. data/lib/ruby-nessus/version2/event.rb +410 -0
  33. data/lib/ruby-nessus/version2/host.rb +522 -0
  34. data/lib/ruby-nessus/version2/port.rb +75 -0
  35. data/lib/ruby-nessus/version2/scan.rb +393 -0
  36. data/ruby-nessus.gemspec +28 -0
  37. data/spec/ruby-nessus/parse_spec.rb +40 -0
  38. data/spec/ruby-nessus/version1/event_spec.rb +69 -0
  39. data/spec/ruby-nessus/version1/host_spec.rb +75 -0
  40. data/spec/ruby-nessus/version1/scan_spec.rb +97 -0
  41. data/spec/ruby-nessus/version2/event_spec.rb +225 -0
  42. data/spec/ruby-nessus/version2/host_spec.rb +148 -0
  43. data/spec/ruby-nessus/version2/scan_spec.rb +96 -0
  44. data/spec/ruby-nessus/version_spec.rb +11 -0
  45. data/spec/spec_fixtures/example_v1.nessus +1 -0
  46. data/spec/spec_fixtures/example_v2.nessus +2080 -0
  47. data/spec/spec_fixtures/example_v_wrong.nessus +3 -0
  48. data/spec/spec_fixtures/xml.rb +15 -0
  49. data/spec/spec_helper.rb +7 -0
  50. metadata +190 -0
@@ -0,0 +1,148 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'spec_helper'
4
+ require 'spec_fixtures/xml'
5
+
6
+ describe 'Nessus Version 2: Host' do
7
+ before(:all) do
8
+ @xml = RubyNessus::Version2::XML.new(Helpers::DOT_NESSUS_V2)
9
+ @host = @xml.hosts.first
10
+ end
11
+
12
+ it 'should parse the host hostname' do
13
+ expect(@host.hostname).to eq 'snorby.org'
14
+ end
15
+
16
+ it 'should parse the host start time' do
17
+ expect(@host.start_time).to eq Time.parse('2009-12-11 02:57:52')
18
+ end
19
+
20
+ it 'should parse the host stop time' do
21
+ expect(@host.stop_time).to eq Time.parse('2009-12-11 03:25:29')
22
+ end
23
+
24
+ it 'should parse the host runtime' do
25
+ expect(@host.runtime).to eq '00 hours 27 minutes and 37 seconds'
26
+ end
27
+
28
+ it 'should parse the hosts open ports' do
29
+ expect(@host.open_ports).to eq 37
30
+ end
31
+
32
+ it 'should calculate the hosts total event count' do
33
+ expect(@host.total_event_count).to eq 35
34
+ end
35
+
36
+ it 'should calculate the hosts total event count with informational events' do
37
+ expect(@host.total_event_count(true)).to eq 47
38
+ end
39
+
40
+ it 'should to_s return the ip address' do
41
+ expect(@host.to_s).to eq @host.ip
42
+ end
43
+
44
+ it 'should ip return the ip address' do
45
+ expect(@host.ip).to eq '173.45.230.150'
46
+ end
47
+
48
+ it 'should mac_addr return nil if the address does not exist' do
49
+ expect(@host.mac_addr).to be_nil
50
+ end
51
+
52
+ it 'should os_name return the os name' do
53
+ expect(@host.os_name).to eq 'NetBSD 3.0'
54
+ end
55
+
56
+ it 'should tcp_count return the tcp event count' do
57
+ expect(@host.tcp_count).to eq 32
58
+ end
59
+
60
+ it 'should udp_count return the udp event count' do
61
+ expect(@host.udp_count).to eq 2
62
+ end
63
+
64
+ it 'should icmp_count return the icmp event count' do
65
+ expect(@host.icmp_count).to eq 1
66
+ end
67
+
68
+ it 'should not return the netbios name if its not in the example data' do
69
+ expect(@host.netbios_name).to be_nil
70
+ end
71
+
72
+ it 'counts events' do
73
+ expect(@host.event_count).to eq 35
74
+ end
75
+
76
+ it 'sends the ports' do
77
+ expect(@host.ports).to eq %w[0 123 21 22 25 443 554 7070 80 9090]
78
+ end
79
+
80
+ it 'gives the rounded percentage' do
81
+ expect(@host.event_percentage_for('medium', true)).to eq '3'
82
+ end
83
+
84
+ it 'gives the percentage' do
85
+ expect(@host.event_percentage_for('medium')).to eq '2.857142857142857'
86
+ end
87
+
88
+ it 'raises for wrong levels' do
89
+ expect { @host.event_percentage_for('toto', true) }.to raise_error('Error: toto is not an acceptable severity. Possible options include: all, tdp, udp, icmp, high, medium and low.')
90
+ end
91
+ end
92
+
93
+ describe 'Nessus Version 2: Host severity' do
94
+ before(:all) do
95
+ @xml = RubyNessus::Version2::XML.new(Helpers::DOT_NESSUS_V2)
96
+ @host = @xml.hosts.first
97
+ end
98
+
99
+ it 'should calculate the hosts informational event count' do
100
+ expect(@host.informational_severity_count).to eq 12
101
+ end
102
+
103
+ it 'should calculate the hosts low severity event count' do
104
+ expect(@host.low_severity_count).to eq 34
105
+ end
106
+
107
+ it 'should calculate the hosts medium severity event count' do
108
+ expect(@host.medium_severity_count).to eq 1
109
+ end
110
+
111
+ it 'should calculate the hosts high severity event count' do
112
+ expect(@host.high_severity_count).to eq 0
113
+ end
114
+
115
+ it 'should calculate the hosts critical severity event count' do
116
+ expect(@host.critical_severity_count).to eq 0
117
+ end
118
+
119
+ it 'lists all informational event' do
120
+ @host.informational_severity_events.each do |event|
121
+ expect(event.severity).to eq 0
122
+ end
123
+ end
124
+
125
+ it 'lists all low severity events' do
126
+ @host.low_severity_events.each do |event|
127
+ expect(event.severity).to eq 1
128
+ end
129
+ end
130
+
131
+ it 'lists all medium severity events' do
132
+ @host.medium_severity_events.each do |event|
133
+ expect(event.severity).to eq 2
134
+ end
135
+ end
136
+
137
+ it 'lists all high severity events' do
138
+ @host.high_severity_events.each do |event|
139
+ expect(event.severity).to eq 3
140
+ end
141
+ end
142
+
143
+ it 'lists all critical severity events' do
144
+ @host.critical_severity_events.each do |event|
145
+ expect(event.severity).to eq 4
146
+ end
147
+ end
148
+ end
@@ -0,0 +1,96 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'spec_helper'
4
+ require 'spec_fixtures/xml'
5
+
6
+ describe 'Nessus Version 2: Scan' do
7
+ include Helpers
8
+
9
+ before(:all) do
10
+ @xml = RubyNessus::Version2::XML.new(Helpers::DOT_NESSUS_V2)
11
+ end
12
+
13
+ it 'should version to be eql at 2' do
14
+ expect(@xml.version).to be_eql(2)
15
+ end
16
+
17
+ it 'should parse the scan title' do
18
+ expect(@xml.title).to be_eql('Ruby-Nessus')
19
+ end
20
+
21
+ it 'should parse the scan policy title' do
22
+ expect(@xml.policy_title).to be_eql('Ruby-Nessus')
23
+ end
24
+
25
+ it 'should parse the scan policy notes' do
26
+ expect(@xml.policy_notes).to be_eql('This is the ruby-nessus example scan using the .nessus version 2 schema.')
27
+ end
28
+
29
+ it 'should parse the unique ports' do
30
+ expect(@xml.unique_ports).to be_eql(%w[0 123 21 22 25 443 53 554 7070 80 9090])
31
+ end
32
+
33
+ it 'should parse the open ports count' do
34
+ expect(@xml.open_ports_count).to eq 51
35
+ end
36
+
37
+ it 'should parse the tcp ports count' do
38
+ expect(@xml.tcp_count).to eq 38
39
+ end
40
+
41
+ it 'should parse the udp ports count' do
42
+ expect(@xml.udp_count).to eq 11
43
+ end
44
+
45
+ it 'should parse the icmp ports count' do
46
+ expect(@xml.icmp_count).to eq 1
47
+ end
48
+
49
+ it 'should parse the scan total host count' do
50
+ expect(@xml.host_count).to be_eql(2)
51
+ end
52
+
53
+ it 'should calculate the percentage of low severity events' do
54
+ expect(@xml.event_percentage_for('low', true)).to be_eql('94')
55
+ end
56
+
57
+ it 'should calculate the low severity event total' do
58
+ expect(@xml.low_severity_count).to be_eql(47)
59
+ end
60
+
61
+ it 'should calculate the percentage of medium severity events' do
62
+ expect(@xml.event_percentage_for('medium', true)).to be_eql('6')
63
+ end
64
+
65
+ it 'should calculate the medium severity event total' do
66
+ expect(@xml.medium_severity_count).to be_eql(3)
67
+ end
68
+
69
+ it 'should calculate the percentage of high severity events' do
70
+ expect(@xml.event_percentage_for('high', true)).to be_eql('0')
71
+ end
72
+
73
+ it 'should calculate the high severity event total' do
74
+ expect(@xml.high_severity_count).to be_eql(0)
75
+ end
76
+
77
+ it 'should calculate the critical severity event total' do
78
+ expect(@xml.critical_severity_count).to be_eql(0)
79
+ end
80
+
81
+ it 'should calculate the total for all severity events excluding informational' do
82
+ expect(@xml.total_event_count).to be_eql(50)
83
+ end
84
+
85
+ it 'should calculate the total for all severity events including informational' do
86
+ expect(@xml.total_event_count(true)).to be_eql(69)
87
+ end
88
+
89
+ it 'should target_hosts list the target' do
90
+ expect(@xml.target_hosts).to be_eql(['scanme.insecure.org', 'snorby.org'])
91
+ end
92
+
93
+ it 'should find_by_hotsname' do
94
+ @xml.find_by_hostname('scanme.insecure.org') { |host| expect(host.hostname).to eq 'scanme.insecure.org' }
95
+ end
96
+ end
@@ -0,0 +1,11 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'ruby-nessus/version'
4
+
5
+ require 'spec_helper'
6
+
7
+ describe RubyNessus do
8
+ it 'should define a VERSION constant' do
9
+ expect(RubyNessus).to be_const_defined('VERSION')
10
+ end
11
+ end
@@ -0,0 +1 @@
1
+ <NessusClientData><Targets><Target><selected>yes</selected><type>hostname</type><value>scanme.insecure.org</value></Target></Targets><Policies></Policies><Report><ReportName>09/11/08 02:21:22 AM - Ruby-Nessus Example Policy</ReportName><StartTime>Sun Nov 8 02:21:23 2009</StartTime><StopTime>Sun Nov 8 02:31:29 2009</StopTime><Policy passwordsType="Mac OS X"><policyName>Ruby-Nessus Example Policy</policyName><policyComments>This is an example .nessus file for testing the Ruby-Nessus gem.</policyComments><uuid>17C8244B-9E79-4FDC-B48F-E49CACA3083B</uuid><Preferences><ServerPreferences><preference><name>ntp_detached_sessions</name><value>yes</value></preference><preference><name>language</name><value>english</value></preference><preference><name>server_info_nessusd_version</name><value>4.0.2</value></preference><preference><name>reduce_connections_on_congestion</name><value>no</value></preference><preference><name>kb_restore</name><value>no</value></preference><preference><name>stop_scan_on_hang</name><value>no</value></preference><preference><name>ntp_save_sessions</name><value>yes</value></preference><preference><name>optimize_test</name><value>yes</value></preference><preference><name>throttle_scan</name><value>yes</value></preference><preference><name>port_range</name><value>default</value></preference><preference><name>unscanned_closed</name><value>no</value></preference><preference><name>save_knowledge_base</name><value>no</value></preference><preference><name>use_mac_addr</name><value>no</value></preference><preference><name>stop_scan_on_disconnect</name><value>no</value></preference><preference><name>kb_dont_replay_scanners</name><value>no</value></preference><preference><name>slice_network_addresses</name><value>no</value></preference><preference><name>server_info_thread_manager</name><value>threads</value></preference><preference><name>plugin_upload</name><value>no</value></preference><preference><name>server_info_os_version</name><value>10.0.0</value></preference><preference><name>use_kernel_congestion_detection</name><value>no</value></preference><preference><name>silent_dependencies</name><value>yes</value></preference><preference><name>kb_dont_replay_info_gathering</name><value>no</value></preference><preference><name>safe_checks</name><value>yes</value></preference><preference><name>max_checks</name><value>5</value></preference><preference><name>checks_read_timeout</name><value>5</value></preference><preference><name>server_info_os</name><value>Darwin</value></preference><preference><name>feed_type</name><value>HomeFeed</value></preference><preference><name>kb_dont_replay_attacks</name><value>no</value></preference><preference><name>host.max_simult_tcp_sessions</name><value></value></preference><preference><name>non_simult_ports</name><value>139, 445</value></preference><preference><name>auto_enable_dependencies</name><value>yes</value></preference><preference><name>reverse_lookup</name><value>no</value></preference><preference><name>kb_dont_replay_denials</name><value>no</value></preference><preference><name>only_test_hosts_whose_kb_we_dont_have</name><value>no</value></preference><preference><name>max_hosts</name><value>40</value></preference><preference><name>only_test_hosts_whose_kb_we_have</name><value>no</value></preference><preference><name>plugin_upload_suffixes</name><value>.nasl, .nasl3, .inc, .inc3, .nbin, .nlib, .audit</value></preference><preference><name>auto_update</name><value>yes</value></preference><preference><name>server_info_libnessus_version</name><value>4.0.2</value></preference><preference><name>max_simult_tcp_sessions</name><value></value></preference><preference><name>plugins_timeout</name><value>320</value></preference><preference><name>server_info_libnasl_version</name><value>4.0.2</value></preference><preference><name>cgi_path</name><value>/cgi-bin:/scripts</value></preference><preference><name>log_whole_attack</name><value>no</value></preference><preference><name>kb_max_age</name><value>864000</value></preference></ServerPreferences><PluginsPreferences><item><fullName>HTTP login page[entry]:Login page :</fullName><preferenceName>Login page :</preferenceName><pluginName>HTTP login page</pluginName><preferenceType>entry</preferenceType><preferenceValues>/</preferenceValues><selectedValue>/</selectedValue></item><item><fullName>HTTP login page[entry]:Login form :</fullName><preferenceName>Login form :</preferenceName><pluginName>HTTP login page</pluginName><preferenceType>entry</preferenceType><preferenceValues></preferenceValues><selectedValue></selectedValue></item><item><fullName>HTTP login page[entry]:Login form fields :</fullName><preferenceName>Login form fields :</preferenceName><pluginName>HTTP login page</pluginName><preferenceType>entry</preferenceType><preferenceValues>user=%USER%&amp;pass=%PASS%</preferenceValues><selectedValue>user=%USER%&amp;pass=%PASS%</selectedValue></item><item><fullName>SMB use domain SID to enumerate users[entry]:Start UID :</fullName><preferenceName>Start UID :</preferenceName><pluginName>SMB use domain SID to enumerate users</pluginName><preferenceType>entry</preferenceType><preferenceValues>1000</preferenceValues><selectedValue>1000</selectedValue></item><item><fullName>SMB use domain SID to enumerate users[entry]:End UID :</fullName><preferenceName>End UID :</preferenceName><pluginName>SMB use domain SID to enumerate users</pluginName><preferenceType>entry</preferenceType><preferenceValues>1200</preferenceValues><selectedValue>1200</selectedValue></item><item><fullName>SMB Registry : Start the Registry Service during the scan[checkbox]:Start the registry service during the scan</fullName><preferenceName>Start the registry service during the scan</preferenceName><pluginName>SMB Registry : Start the Registry Service during the scan</pluginName><preferenceType>checkbox</preferenceType><preferenceValues>no</preferenceValues><selectedValue>no</selectedValue></item><item><fullName>Service Detection[radio]:Test SSL based services</fullName><preferenceName>Test SSL based services</preferenceName><pluginName>Service Detection</pluginName><preferenceType>radio</preferenceType><preferenceValues>Known SSL ports;All;None</preferenceValues><selectedValue>Known SSL ports</selectedValue></item><item><fullName>SNMP settings[entry]:Community name :</fullName><preferenceName>Community name :</preferenceName><pluginName>SNMP settings</pluginName><preferenceType>entry</preferenceType><preferenceValues>public</preferenceValues><selectedValue>public</selectedValue></item><item><fullName>SNMP settings[entry]:UDP port :</fullName><preferenceName>UDP port :</preferenceName><pluginName>SNMP settings</pluginName><preferenceType>entry</preferenceType><preferenceValues>161</preferenceValues><selectedValue>161</selectedValue></item><item><fullName>SNMP settings[entry]:SNMPv3 user name :</fullName><preferenceName>SNMPv3 user name :</preferenceName><pluginName>SNMP settings</pluginName><preferenceType>entry</preferenceType><preferenceValues></preferenceValues><selectedValue></selectedValue></item><item><fullName>SNMP settings[password]:SNMPv3 authentication password :</fullName><preferenceName>SNMPv3 authentication password :</preferenceName><pluginName>SNMP settings</pluginName><preferenceType>password</preferenceType><preferenceValues></preferenceValues><selectedValue></selectedValue></item><item><fullName>SNMP settings[radio]:SNMPv3 authentication algorithm :</fullName><preferenceName>SNMPv3 authentication algorithm :</preferenceName><pluginName>SNMP settings</pluginName><preferenceType>radio</preferenceType><preferenceValues>MD5;SHA1</preferenceValues><selectedValue>MD5</selectedValue></item><item><fullName>SNMP settings[password]:SNMPv3 privacy password :</fullName><preferenceName>SNMPv3 privacy password :</preferenceName><pluginName>SNMP settings</pluginName><preferenceType>password</preferenceType><preferenceValues></preferenceValues><selectedValue></selectedValue></item><item><fullName>SNMP settings[radio]:SNMPv3 privacy algorithm :</fullName><preferenceName>SNMPv3 privacy algorithm :</preferenceName><pluginName>SNMP settings</pluginName><preferenceType>radio</preferenceType><preferenceValues>DES</preferenceValues><selectedValue>DES</selectedValue></item><item><fullName>Cleartext protocols settings[entry]:User name :</fullName><preferenceName>User name :</preferenceName><pluginName>Cleartext protocols settings</pluginName><preferenceType>entry</preferenceType><preferenceValues></preferenceValues><selectedValue></selectedValue></item><item><fullName>Cleartext protocols settings[password]:Password (unsafe!) :</fullName><preferenceName>Password (unsafe!) :</preferenceName><pluginName>Cleartext protocols settings</pluginName><preferenceType>password</preferenceType><preferenceValues></preferenceValues><selectedValue></selectedValue></item><item><fullName>Cleartext protocols settings[checkbox]:Try to perform patch level checks over telnet</fullName><preferenceName>Try to perform patch level checks over telnet</preferenceName><pluginName>Cleartext protocols settings</pluginName><preferenceType>checkbox</preferenceType><preferenceValues>no</preferenceValues><selectedValue>no</selectedValue></item><item><fullName>Cleartext protocols settings[checkbox]:Try to perform patch level checks over rsh</fullName><preferenceName>Try to perform patch level checks over rsh</preferenceName><pluginName>Cleartext protocols settings</pluginName><preferenceType>checkbox</preferenceType><preferenceValues>no</preferenceValues><selectedValue>no</selectedValue></item><item><fullName>Cleartext protocols settings[checkbox]:Try to perform patch level checks over rexec</fullName><preferenceName>Try to perform patch level checks over rexec</preferenceName><pluginName>Cleartext protocols settings</pluginName><preferenceType>checkbox</preferenceType><preferenceValues>no</preferenceValues><selectedValue>no</selectedValue></item><item><fullName>SMTP settings[entry]:Third party domain :</fullName><preferenceName>Third party domain :</preferenceName><pluginName>SMTP settings</pluginName><preferenceType>entry</preferenceType><preferenceValues>example.com</preferenceValues><selectedValue>example.com</selectedValue></item><item><fullName>SMTP settings[entry]:From address :</fullName><preferenceName>From address :</preferenceName><pluginName>SMTP settings</pluginName><preferenceType>entry</preferenceType><preferenceValues>nobody@example.com</preferenceValues><selectedValue>nobody@example.com</selectedValue></item><item><fullName>SMTP settings[entry]:To address :</fullName><preferenceName>To address :</preferenceName><pluginName>SMTP settings</pluginName><preferenceType>entry</preferenceType><preferenceValues>postmaster@[AUTO_REPLACED_IP]</preferenceValues><selectedValue>postmaster@[AUTO_REPLACED_IP]</selectedValue></item><item><fullName>Login configurations[entry]:HTTP account :</fullName><preferenceName>HTTP account :</preferenceName><pluginName>Login configurations</pluginName><preferenceType>entry</preferenceType><preferenceValues></preferenceValues><selectedValue></selectedValue></item><item><fullName>Login configurations[password]:HTTP password (sent in clear) :</fullName><preferenceName>HTTP password (sent in clear) :</preferenceName><pluginName>Login configurations</pluginName><preferenceType>password</preferenceType><preferenceValues></preferenceValues><selectedValue></selectedValue></item><item><fullName>Login configurations[entry]:NNTP account :</fullName><preferenceName>NNTP account :</preferenceName><pluginName>Login configurations</pluginName><preferenceType>entry</preferenceType><preferenceValues></preferenceValues><selectedValue></selectedValue></item><item><fullName>Login configurations[password]:NNTP password (sent in clear) :</fullName><preferenceName>NNTP password (sent in clear) :</preferenceName><pluginName>Login configurations</pluginName><preferenceType>password</preferenceType><preferenceValues></preferenceValues><selectedValue></selectedValue></item><item><fullName>Login configurations[entry]:FTP account :</fullName><preferenceName>FTP account :</preferenceName><pluginName>Login configurations</pluginName><preferenceType>entry</preferenceType><preferenceValues>anonymous</preferenceValues><selectedValue>anonymous</selectedValue></item><item><fullName>Login configurations[password]:FTP password (sent in clear) :</fullName><preferenceName>FTP password (sent in clear) :</preferenceName><pluginName>Login configurations</pluginName><preferenceType>password</preferenceType><preferenceValues>nessus@nessus.org</preferenceValues><selectedValue>nessus@nessus.org</selectedValue></item><item><fullName>Login configurations[entry]:FTP writeable directory :</fullName><preferenceName>FTP writeable directory :</preferenceName><pluginName>Login configurations</pluginName><preferenceType>entry</preferenceType><preferenceValues>/incoming</preferenceValues><selectedValue>/incoming</selectedValue></item><item><fullName>Login configurations[entry]:POP2 account :</fullName><preferenceName>POP2 account :</preferenceName><pluginName>Login configurations</pluginName><preferenceType>entry</preferenceType><preferenceValues></preferenceValues><selectedValue></selectedValue></item><item><fullName>Login configurations[password]:POP2 password (sent in clear) :</fullName><preferenceName>POP2 password (sent in clear) :</preferenceName><pluginName>Login configurations</pluginName><preferenceType>password</preferenceType><preferenceValues></preferenceValues><selectedValue></selectedValue></item><item><fullName>Login configurations[entry]:POP3 account :</fullName><preferenceName>POP3 account :</preferenceName><pluginName>Login configurations</pluginName><preferenceType>entry</preferenceType><preferenceValues></preferenceValues><selectedValue></selectedValue></item><item><fullName>Login configurations[password]:POP3 password (sent in clear) :</fullName><preferenceName>POP3 password (sent in clear) :</preferenceName><pluginName>Login configurations</pluginName><preferenceType>password</preferenceType><preferenceValues></preferenceValues><selectedValue></selectedValue></item><item><fullName>Login configurations[entry]:IMAP account :</fullName><preferenceName>IMAP account :</preferenceName><pluginName>Login configurations</pluginName><preferenceType>entry</preferenceType><preferenceValues></preferenceValues><selectedValue></selectedValue></item><item><fullName>Login configurations[password]:IMAP password (sent in clear) :</fullName><preferenceName>IMAP password (sent in clear) :</preferenceName><pluginName>Login configurations</pluginName><preferenceType>password</preferenceType><preferenceValues></preferenceValues><selectedValue></selectedValue></item><item><fullName>Web mirroring[entry]:Number of pages to mirror :</fullName><preferenceName>Number of pages to mirror :</preferenceName><pluginName>Web mirroring</pluginName><preferenceType>entry</preferenceType><preferenceValues>1000</preferenceValues><selectedValue>1000</selectedValue></item><item><fullName>Web mirroring[entry]:Maximum depth :</fullName><preferenceName>Maximum depth :</preferenceName><pluginName>Web mirroring</pluginName><preferenceType>entry</preferenceType><preferenceValues>6</preferenceValues><selectedValue>6</selectedValue></item><item><fullName>Web mirroring[entry]:Start page :</fullName><preferenceName>Start page :</preferenceName><pluginName>Web mirroring</pluginName><preferenceType>entry</preferenceType><preferenceValues>/</preferenceValues><selectedValue>/</selectedValue></item><item><fullName>Web mirroring[entry]:Excluded items regex :</fullName><preferenceName>Excluded items regex :</preferenceName><pluginName>Web mirroring</pluginName><preferenceType>entry</preferenceType><preferenceValues>/server_privileges\.php</preferenceValues><selectedValue>/server_privileges\.php</selectedValue></item><item><fullName>Web mirroring[checkbox]:Follow dynamic pages :</fullName><preferenceName>Follow dynamic pages :</preferenceName><pluginName>Web mirroring</pluginName><preferenceType>checkbox</preferenceType><preferenceValues>no</preferenceValues><selectedValue>no</selectedValue></item><item><fullName>Nessus TCP scanner[radio]:Firewall detection :</fullName><preferenceName>Firewall detection :</preferenceName><pluginName>Nessus TCP scanner</pluginName><preferenceType>radio</preferenceType><preferenceValues>Automatic (normal);Disabled (softer);Do not detect RST rate limitation (soft);Ignore closed ports (aggressive)</preferenceValues><selectedValue>Automatic (normal)</selectedValue></item><item><fullName>Oracle settings[entry]:Oracle SID :</fullName><preferenceName>Oracle SID :</preferenceName><pluginName>Oracle settings</pluginName><preferenceType>entry</preferenceType><preferenceValues></preferenceValues><selectedValue></selectedValue></item><item><fullName>Oracle settings[checkbox]:Test default accounts (slow)</fullName><preferenceName>Test default accounts (slow)</preferenceName><pluginName>Oracle settings</pluginName><preferenceType>checkbox</preferenceType><preferenceValues>no</preferenceValues><selectedValue>no</selectedValue></item><item><fullName>Database settings[entry]:Login :</fullName><preferenceName>Login :</preferenceName><pluginName>Database settings</pluginName><preferenceType>entry</preferenceType><preferenceValues></preferenceValues><selectedValue></selectedValue></item><item><fullName>Database settings[password]:Password :</fullName><preferenceName>Password :</preferenceName><pluginName>Database settings</pluginName><preferenceType>password</preferenceType><preferenceValues></preferenceValues><selectedValue></selectedValue></item><item><fullName>Database settings[radio]:DB Type :</fullName><preferenceName>DB Type :</preferenceName><pluginName>Database settings</pluginName><preferenceType>radio</preferenceType><preferenceValues>Oracle;SQL Server;MySQL;DB2;Informix/DRDA;PostgreSQL</preferenceValues><selectedValue>Oracle</selectedValue></item><item><fullName>Database settings[entry]:Database SID :</fullName><preferenceName>Database SID :</preferenceName><pluginName>Database settings</pluginName><preferenceType>entry</preferenceType><preferenceValues></preferenceValues><selectedValue></selectedValue></item><item><fullName>Database settings[entry]:Database port to use :</fullName><preferenceName>Database port to use :</preferenceName><pluginName>Database settings</pluginName><preferenceType>entry</preferenceType><preferenceValues></preferenceValues><selectedValue></selectedValue></item><item><fullName>Database settings[radio]:Oracle auth type:</fullName><preferenceName>Oracle auth type:</preferenceName><pluginName>Database settings</pluginName><preferenceType>radio</preferenceType><preferenceValues>NORMAL;SYSOPER;SYSDBA</preferenceValues><selectedValue>NORMAL</selectedValue></item><item><fullName>Database settings[radio]:SQL Server auth type:</fullName><preferenceName>SQL Server auth type:</preferenceName><pluginName>Database settings</pluginName><preferenceType>radio</preferenceType><preferenceValues>Windows;SQL</preferenceValues><selectedValue>Windows</selectedValue></item><item><fullName>Nessus SYN scanner[radio]:Firewall detection :</fullName><preferenceName>Firewall detection :</preferenceName><pluginName>Nessus SYN scanner</pluginName><preferenceType>radio</preferenceType><preferenceValues>Automatic (normal);Disabled (softer);Do not detect RST rate limitation (soft);Ignore closed ports (aggressive)</preferenceValues><selectedValue>Automatic (normal)</selectedValue></item><item><fullName>Do not scan fragile devices[checkbox]:Scan Network Printers</fullName><preferenceName>Scan Network Printers</preferenceName><pluginName>Do not scan fragile devices</pluginName><preferenceType>checkbox</preferenceType><preferenceValues>no</preferenceValues><selectedValue>no</selectedValue></item><item><fullName>Do not scan fragile devices[checkbox]:Scan Novell Netware hosts</fullName><preferenceName>Scan Novell Netware hosts</preferenceName><pluginName>Do not scan fragile devices</pluginName><preferenceType>checkbox</preferenceType><preferenceValues>no</preferenceValues><selectedValue>no</selectedValue></item><item><fullName>Ping the remote host[entry]:TCP ping destination port(s) :</fullName><preferenceName>TCP ping destination port(s) :</preferenceName><pluginName>Ping the remote host</pluginName><preferenceType>entry</preferenceType><preferenceValues>built-in</preferenceValues><selectedValue>built-in</selectedValue></item><item><fullName>Ping the remote host[checkbox]:Do an ARP ping</fullName><preferenceName>Do an ARP ping</preferenceName><pluginName>Ping the remote host</pluginName><preferenceType>checkbox</preferenceType><preferenceValues>yes</preferenceValues><selectedValue>yes</selectedValue></item><item><fullName>Ping the remote host[checkbox]:Do a TCP ping</fullName><preferenceName>Do a TCP ping</preferenceName><pluginName>Ping the remote host</pluginName><preferenceType>checkbox</preferenceType><preferenceValues>yes</preferenceValues><selectedValue>yes</selectedValue></item><item><fullName>Ping the remote host[checkbox]:Do an ICMP ping</fullName><preferenceName>Do an ICMP ping</preferenceName><pluginName>Ping the remote host</pluginName><preferenceType>checkbox</preferenceType><preferenceValues>yes</preferenceValues><selectedValue>yes</selectedValue></item><item><fullName>Ping the remote host[entry]:Number of retries (ICMP) :</fullName><preferenceName>Number of retries (ICMP) :</preferenceName><pluginName>Ping the remote host</pluginName><preferenceType>entry</preferenceType><preferenceValues>2</preferenceValues><selectedValue>2</selectedValue></item><item><fullName>Ping the remote host[checkbox]:Do an applicative UDP ping (DNS,RPC...)</fullName><preferenceName>Do an applicative UDP ping (DNS,RPC...)</preferenceName><pluginName>Ping the remote host</pluginName><preferenceType>checkbox</preferenceType><preferenceValues>no</preferenceValues><selectedValue>no</selectedValue></item><item><fullName>Ping the remote host[checkbox]:Make the dead hosts appear in the report</fullName><preferenceName>Make the dead hosts appear in the report</preferenceName><pluginName>Ping the remote host</pluginName><preferenceType>checkbox</preferenceType><preferenceValues>no</preferenceValues><selectedValue>no</selectedValue></item><item><fullName>Ping the remote host[checkbox]:Log live hosts in the report</fullName><preferenceName>Log live hosts in the report</preferenceName><pluginName>Ping the remote host</pluginName><preferenceType>checkbox</preferenceType><preferenceValues>no</preferenceValues><selectedValue>no</selectedValue></item><item><fullName>Ping the remote host[checkbox]:Test the local Nessus host</fullName><preferenceName>Test the local Nessus host</preferenceName><pluginName>Ping the remote host</pluginName><preferenceType>checkbox</preferenceType><preferenceValues>yes</preferenceValues><selectedValue>yes</selectedValue></item><item><fullName>Ping the remote host[checkbox]:Fast network discovery</fullName><preferenceName>Fast network discovery</preferenceName><pluginName>Ping the remote host</pluginName><preferenceType>checkbox</preferenceType><preferenceValues>no</preferenceValues><selectedValue>no</selectedValue></item><item><fullName>Port scanners settings[checkbox]:Check open TCP ports found by local port enumerators</fullName><preferenceName>Check open TCP ports found by local port enumerators</preferenceName><pluginName>Port scanners settings</pluginName><preferenceType>checkbox</preferenceType><preferenceValues>no</preferenceValues><selectedValue>no</selectedValue></item><item><fullName>Port scanners settings[checkbox]:Only run network port scanners if local port enumeration failed</fullName><preferenceName>Only run network port scanners if local port enumeration failed</preferenceName><pluginName>Port scanners settings</pluginName><preferenceType>checkbox</preferenceType><preferenceValues>yes</preferenceValues><selectedValue>yes</selectedValue></item><item><fullName>SMB use host SID to enumerate local users[entry]:Start UID :</fullName><preferenceName>Start UID :</preferenceName><pluginName>SMB use host SID to enumerate local users</pluginName><preferenceType>entry</preferenceType><preferenceValues>1000</preferenceValues><selectedValue>1000</selectedValue></item><item><fullName>SMB use host SID to enumerate local users[entry]:End UID :</fullName><preferenceName>End UID :</preferenceName><pluginName>SMB use host SID to enumerate local users</pluginName><preferenceType>entry</preferenceType><preferenceValues>1200</preferenceValues><selectedValue>1200</selectedValue></item><item><fullName>Login configurations[entry]:SMB account :</fullName><preferenceName>SMB account :</preferenceName><pluginName>Login configurations</pluginName><preferenceType>entry</preferenceType><preferenceValues></preferenceValues><selectedValue></selectedValue></item><item><fullName>Login configurations[password]:SMB password :</fullName><preferenceName>SMB password :</preferenceName><pluginName>Login configurations</pluginName><preferenceType>password</preferenceType><preferenceValues></preferenceValues><selectedValue></selectedValue></item><item><fullName>Login configurations[entry]:SMB domain (optional) :</fullName><preferenceName>SMB domain (optional) :</preferenceName><pluginName>Login configurations</pluginName><preferenceType>entry</preferenceType><preferenceValues></preferenceValues><selectedValue></selectedValue></item><item><fullName>Login configurations[radio]:SMB password type :</fullName><preferenceName>SMB password type :</preferenceName><pluginName>Login configurations</pluginName><preferenceType>radio</preferenceType><preferenceValues>Password;LM Hash;NTLM Hash</preferenceValues><selectedValue>Password</selectedValue></item><item><fullName>Login configurations[entry]:Additional SMB account (1) :</fullName><preferenceName>Additional SMB account (1) :</preferenceName><pluginName>Login configurations</pluginName><preferenceType>entry</preferenceType><preferenceValues></preferenceValues><selectedValue></selectedValue></item><item><fullName>Login configurations[password]:Additional SMB password (1) :</fullName><preferenceName>Additional SMB password (1) :</preferenceName><pluginName>Login configurations</pluginName><preferenceType>password</preferenceType><preferenceValues></preferenceValues><selectedValue></selectedValue></item><item><fullName>Login configurations[entry]:Additional SMB domain (optional) (1) :</fullName><preferenceName>Additional SMB domain (optional) (1) :</preferenceName><pluginName>Login configurations</pluginName><preferenceType>entry</preferenceType><preferenceValues></preferenceValues><selectedValue></selectedValue></item><item><fullName>Login configurations[entry]:Additional SMB account (2) :</fullName><preferenceName>Additional SMB account (2) :</preferenceName><pluginName>Login configurations</pluginName><preferenceType>entry</preferenceType><preferenceValues></preferenceValues><selectedValue></selectedValue></item><item><fullName>Login configurations[password]:Additional SMB password (2) :</fullName><preferenceName>Additional SMB password (2) :</preferenceName><pluginName>Login configurations</pluginName><preferenceType>password</preferenceType><preferenceValues></preferenceValues><selectedValue></selectedValue></item><item><fullName>Login configurations[entry]:Additional SMB domain (optional) (2) :</fullName><preferenceName>Additional SMB domain (optional) (2) :</preferenceName><pluginName>Login configurations</pluginName><preferenceType>entry</preferenceType><preferenceValues></preferenceValues><selectedValue></selectedValue></item><item><fullName>Login configurations[entry]:Additional SMB account (3) :</fullName><preferenceName>Additional SMB account (3) :</preferenceName><pluginName>Login configurations</pluginName><preferenceType>entry</preferenceType><preferenceValues></preferenceValues><selectedValue></selectedValue></item><item><fullName>Login configurations[password]:Additional SMB password (3) :</fullName><preferenceName>Additional SMB password (3) :</preferenceName><pluginName>Login configurations</pluginName><preferenceType>password</preferenceType><preferenceValues></preferenceValues><selectedValue></selectedValue></item><item><fullName>Login configurations[entry]:Additional SMB domain (optional) (3) :</fullName><preferenceName>Additional SMB domain (optional) (3) :</preferenceName><pluginName>Login configurations</pluginName><preferenceType>entry</preferenceType><preferenceValues></preferenceValues><selectedValue></selectedValue></item><item><fullName>Login configurations[checkbox]:Never send SMB credentials in clear text</fullName><preferenceName>Never send SMB credentials in clear text</preferenceName><pluginName>Login configurations</pluginName><preferenceType>checkbox</preferenceType><preferenceValues>yes</preferenceValues><selectedValue>yes</selectedValue></item><item><fullName>Login configurations[checkbox]:Only use NTLMv2</fullName><preferenceName>Only use NTLMv2</preferenceName><pluginName>Login configurations</pluginName><preferenceType>checkbox</preferenceType><preferenceValues>no</preferenceValues><selectedValue>no</selectedValue></item><item><fullName>Global variable settings[checkbox]:Probe services on every port</fullName><preferenceName>Probe services on every port</preferenceName><pluginName>Global variable settings</pluginName><preferenceType>checkbox</preferenceType><preferenceValues>yes</preferenceValues><selectedValue>yes</selectedValue></item><item><fullName>Global variable settings[checkbox]:Do not log in with user accounts not specified in the policy</fullName><preferenceName>Do not log in with user accounts not specified in the policy</preferenceName><pluginName>Global variable settings</pluginName><preferenceType>checkbox</preferenceType><preferenceValues>no</preferenceValues><selectedValue>no</selectedValue></item><item><fullName>Global variable settings[checkbox]:Enable CGI scanning</fullName><preferenceName>Enable CGI scanning</preferenceName><pluginName>Global variable settings</pluginName><preferenceType>checkbox</preferenceType><preferenceValues>no</preferenceValues><selectedValue>yes</selectedValue></item><item><fullName>Global variable settings[radio]:Network type</fullName><preferenceName>Network type</preferenceName><pluginName>Global variable settings</pluginName><preferenceType>radio</preferenceType><preferenceValues>Mixed (use RFC 1918);Private LAN; Public WAN (Internet)</preferenceValues><selectedValue>Mixed (use RFC 1918)</selectedValue></item><item><fullName>Global variable settings[checkbox]:Enable experimental scripts</fullName><preferenceName>Enable experimental scripts</preferenceName><pluginName>Global variable settings</pluginName><preferenceType>checkbox</preferenceType><preferenceValues>no</preferenceValues><selectedValue>yes</selectedValue></item><item><fullName>Global variable settings[checkbox]:Thorough tests (slow)</fullName><preferenceName>Thorough tests (slow)</preferenceName><pluginName>Global variable settings</pluginName><preferenceType>checkbox</preferenceType><preferenceValues>no</preferenceValues><selectedValue>no</selectedValue></item><item><fullName>Global variable settings[radio]:Report verbosity</fullName><preferenceName>Report verbosity</preferenceName><pluginName>Global variable settings</pluginName><preferenceType>radio</preferenceType><preferenceValues>Normal;Quiet;Verbose</preferenceValues><selectedValue>Normal</selectedValue></item><item><fullName>Global variable settings[radio]:Report paranoia</fullName><preferenceName>Report paranoia</preferenceName><pluginName>Global variable settings</pluginName><preferenceType>radio</preferenceType><preferenceValues>Normal;Avoid false alarms;Paranoid (more false alarms)</preferenceValues><selectedValue>Normal</selectedValue></item><item><fullName>Global variable settings[entry]:Debug level</fullName><preferenceName>Debug level</preferenceName><pluginName>Global variable settings</pluginName><preferenceType>entry</preferenceType><preferenceValues>0</preferenceValues><selectedValue>0</selectedValue></item><item><fullName>Global variable settings[entry]:HTTP User-Agent</fullName><preferenceName>HTTP User-Agent</preferenceName><pluginName>Global variable settings</pluginName><preferenceType>entry</preferenceType><preferenceValues>Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0)</preferenceValues><selectedValue>Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0)</selectedValue></item><item><fullName>Global variable settings[file]:SSL certificate to use :</fullName><preferenceName>SSL certificate to use :</preferenceName><pluginName>Global variable settings</pluginName><preferenceType>file</preferenceType><preferenceValues></preferenceValues><selectedValue></selectedValue></item><item><fullName>Global variable settings[file]:SSL CA to trust :</fullName><preferenceName>SSL CA to trust :</preferenceName><pluginName>Global variable settings</pluginName><preferenceType>file</preferenceType><preferenceValues></preferenceValues><selectedValue></selectedValue></item><item><fullName>Global variable settings[file]:SSL key to use :</fullName><preferenceName>SSL key to use :</preferenceName><pluginName>Global variable settings</pluginName><preferenceType>file</preferenceType><preferenceValues></preferenceValues><selectedValue></selectedValue></item><item><fullName>Global variable settings[password]:SSL password for SSL key :</fullName><preferenceName>SSL password for SSL key :</preferenceName><pluginName>Global variable settings</pluginName><preferenceType>password</preferenceType><preferenceValues></preferenceValues><selectedValue></selectedValue></item><item><fullName>Web Application Tests Settings[checkbox]:Enable web applications tests</fullName><preferenceName>Enable web applications tests</preferenceName><pluginName>Web Application Tests Settings</pluginName><preferenceType>checkbox</preferenceType><preferenceValues>no</preferenceValues><selectedValue>yes</selectedValue></item><item><fullName>Web Application Tests Settings[entry]:Maximum run time (min) :</fullName><preferenceName>Maximum run time (min) :</preferenceName><pluginName>Web Application Tests Settings</pluginName><preferenceType>entry</preferenceType><preferenceValues>60</preferenceValues><selectedValue>60</selectedValue></item><item><fullName>Web Application Tests Settings[checkbox]:Send POST requests</fullName><preferenceName>Send POST requests</preferenceName><pluginName>Web Application Tests Settings</pluginName><preferenceType>checkbox</preferenceType><preferenceValues>no</preferenceValues><selectedValue>yes</selectedValue></item><item><fullName>Web Application Tests Settings[radio]:Combinations of arguments values</fullName><preferenceName>Combinations of arguments values</preferenceName><pluginName>Web Application Tests Settings</pluginName><preferenceType>radio</preferenceType><preferenceValues>one value;some pairs;all pairs (slower but efficient);some combinations;all combinations (extremely slow)</preferenceValues><selectedValue>one value</selectedValue></item><item><fullName>Web Application Tests Settings[checkbox]:HTTP Parameter Pollution</fullName><preferenceName>HTTP Parameter Pollution</preferenceName><pluginName>Web Application Tests Settings</pluginName><preferenceType>checkbox</preferenceType><preferenceValues>no</preferenceValues><selectedValue>yes</selectedValue></item><item><fullName>Web Application Tests Settings[radio]:Stop at first flaw</fullName><preferenceName>Stop at first flaw</preferenceName><pluginName>Web Application Tests Settings</pluginName><preferenceType>radio</preferenceType><preferenceValues>per port (quicker);per CGI;look for all flaws (slower)</preferenceValues><selectedValue>per port (quicker)</selectedValue></item><item><fullName>Web Application Tests Settings[checkbox]:Test embedded web servers</fullName><preferenceName>Test embedded web servers</preferenceName><pluginName>Web Application Tests Settings</pluginName><preferenceType>checkbox</preferenceType><preferenceValues>no</preferenceValues><selectedValue>yes</selectedValue></item><item><fullName>SSH settings[entry]:SSH user name :</fullName><preferenceName>SSH user name :</preferenceName><pluginName>SSH settings</pluginName><preferenceType>entry</preferenceType><preferenceValues>root</preferenceValues><selectedValue>root</selectedValue></item><item><fullName>SSH settings[password]:SSH password (unsafe!) :</fullName><preferenceName>SSH password (unsafe!) :</preferenceName><pluginName>SSH settings</pluginName><preferenceType>password</preferenceType><preferenceValues></preferenceValues><selectedValue></selectedValue></item><item><fullName>SSH settings[file]:SSH public key to use :</fullName><preferenceName>SSH public key to use :</preferenceName><pluginName>SSH settings</pluginName><preferenceType>file</preferenceType><preferenceValues></preferenceValues><selectedValue></selectedValue></item><item><fullName>SSH settings[file]:SSH private key to use :</fullName><preferenceName>SSH private key to use :</preferenceName><pluginName>SSH settings</pluginName><preferenceType>file</preferenceType><preferenceValues></preferenceValues><selectedValue></selectedValue></item><item><fullName>SSH settings[password]:Passphrase for SSH key :</fullName><preferenceName>Passphrase for SSH key :</preferenceName><pluginName>SSH settings</pluginName><preferenceType>password</preferenceType><preferenceValues></preferenceValues><selectedValue></selectedValue></item><item><fullName>SSH settings[radio]:Elevate privileges with :</fullName><preferenceName>Elevate privileges with :</preferenceName><pluginName>SSH settings</pluginName><preferenceType>radio</preferenceType><preferenceValues>Nothing;sudo;su</preferenceValues><selectedValue>Nothing</selectedValue></item><item><fullName>SSH settings[password]:su/sudo password :</fullName><preferenceName>su/sudo password :</preferenceName><pluginName>SSH settings</pluginName><preferenceType>password</preferenceType><preferenceValues></preferenceValues><selectedValue></selectedValue></item><item><fullName>SSH settings[file]:SSH known_hosts file :</fullName><preferenceName>SSH known_hosts file :</preferenceName><pluginName>SSH settings</pluginName><preferenceType>file</preferenceType><preferenceValues></preferenceValues><selectedValue></selectedValue></item><item><fullName>SSH settings[entry]:Preferred SSH port :</fullName><preferenceName>Preferred SSH port :</preferenceName><pluginName>SSH settings</pluginName><preferenceType>entry</preferenceType><preferenceValues>22</preferenceValues><selectedValue>22</selectedValue></item><item><fullName>SSH settings[entry]:Client version :</fullName><preferenceName>Client version :</preferenceName><pluginName>SSH settings</pluginName><preferenceType>entry</preferenceType><preferenceValues>OpenSSH_5.0</preferenceValues><selectedValue>OpenSSH_5.0</selectedValue></item><item><fullName>Kerberos configuration[entry]:Kerberos Key Distribution Center (KDC) :</fullName><preferenceName>Kerberos Key Distribution Center (KDC) :</preferenceName><pluginName>Kerberos configuration</pluginName><preferenceType>entry</preferenceType><preferenceValues></preferenceValues><selectedValue></selectedValue></item><item><fullName>Kerberos configuration[entry]:Kerberos KDC Port :</fullName><preferenceName>Kerberos KDC Port :</preferenceName><pluginName>Kerberos configuration</pluginName><preferenceType>entry</preferenceType><preferenceValues>88</preferenceValues><selectedValue>88</selectedValue></item><item><fullName>Kerberos configuration[radio]:Kerberos KDC Transport :</fullName><preferenceName>Kerberos KDC Transport :</preferenceName><pluginName>Kerberos configuration</pluginName><preferenceType>radio</preferenceType><preferenceValues>udp;tcp</preferenceValues><selectedValue>udp</selectedValue></item><item><fullName>Kerberos configuration[entry]:Kerberos Realm (SSH only) :</fullName><preferenceName>Kerberos Realm (SSH only) :</preferenceName><pluginName>Kerberos configuration</pluginName><preferenceType>entry</preferenceType><preferenceValues></preferenceValues><selectedValue></selectedValue></item><item><fullName>News Server (NNTP) Information Disclosure[entry]:From address :</fullName><preferenceName>From address :</preferenceName><pluginName>News Server (NNTP) Information Disclosure</pluginName><preferenceType>entry</preferenceType><preferenceValues>Nessus &lt;listme@listme.dsbl.org></preferenceValues><selectedValue>Nessus &lt;listme@listme.dsbl.org></selectedValue></item><item><fullName>News Server (NNTP) Information Disclosure[entry]:Test group name regex :</fullName><preferenceName>Test group name regex :</preferenceName><pluginName>News Server (NNTP) Information Disclosure</pluginName><preferenceType>entry</preferenceType><preferenceValues>f[a-z]\.tests?</preferenceValues><selectedValue>f[a-z]\.tests?</selectedValue></item><item><fullName>News Server (NNTP) Information Disclosure[entry]:Max crosspost :</fullName><preferenceName>Max crosspost :</preferenceName><pluginName>News Server (NNTP) Information Disclosure</pluginName><preferenceType>entry</preferenceType><preferenceValues>7</preferenceValues><selectedValue>7</selectedValue></item><item><fullName>News Server (NNTP) Information Disclosure[checkbox]:Local distribution</fullName><preferenceName>Local distribution</preferenceName><pluginName>News Server (NNTP) Information Disclosure</pluginName><preferenceType>checkbox</preferenceType><preferenceValues>yes</preferenceValues><selectedValue>yes</selectedValue></item><item><fullName>News Server (NNTP) Information Disclosure[checkbox]:No archive</fullName><preferenceName>No archive</preferenceName><pluginName>News Server (NNTP) Information Disclosure</pluginName><preferenceType>checkbox</preferenceType><preferenceValues>no</preferenceValues><selectedValue>no</selectedValue></item><item><fullName>SMB Scope[checkbox]:Request information about the domain</fullName><preferenceName>Request information about the domain</preferenceName><pluginName>SMB Scope</pluginName><preferenceType>checkbox</preferenceType><preferenceValues>yes</preferenceValues><selectedValue>yes</selectedValue></item></PluginsPreferences></Preferences><PluginSelection><FamilySelection><FamilyItem><FamilyName>FreeBSD Local Security Checks</FamilyName><Status>enabled</Status></FamilyItem><FamilyItem><FamilyName>Gain a shell remotely</FamilyName><Status>enabled</Status></FamilyItem><FamilyItem><FamilyName>Windows : User management</FamilyName><Status>enabled</Status></FamilyItem><FamilyItem><FamilyName>Default Unix Accounts</FamilyName><Status>enabled</Status></FamilyItem><FamilyItem><FamilyName>RPC</FamilyName><Status>enabled</Status></FamilyItem><FamilyItem><FamilyName>Databases</FamilyName><Status>enabled</Status></FamilyItem><FamilyItem><FamilyName>FTP</FamilyName><Status>enabled</Status></FamilyItem><FamilyItem><FamilyName>Fedora Local Security Checks</FamilyName><Status>enabled</Status></FamilyItem><FamilyItem><FamilyName>DNS</FamilyName><Status>enabled</Status></FamilyItem><FamilyItem><FamilyName>Mandriva Local Security Checks</FamilyName><Status>enabled</Status></FamilyItem><FamilyItem><FamilyName>Misc.</FamilyName><Status>enabled</Status></FamilyItem><FamilyItem><FamilyName>VMware ESX Local Security Checks</FamilyName><Status>enabled</Status></FamilyItem><FamilyItem><FamilyName>HP-UX Local Security Checks</FamilyName><Status>enabled</Status></FamilyItem><FamilyItem><FamilyName>Solaris Local Security Checks</FamilyName><Status>enabled</Status></FamilyItem><FamilyItem><FamilyName>SMTP problems</FamilyName><Status>enabled</Status></FamilyItem><FamilyItem><FamilyName>CGI abuses : XSS</FamilyName><Status>enabled</Status></FamilyItem><FamilyItem><FamilyName>MacOS X Local Security Checks</FamilyName><Status>enabled</Status></FamilyItem><FamilyItem><FamilyName>General</FamilyName><Status>enabled</Status></FamilyItem><FamilyItem><FamilyName>Service detection</FamilyName><Status>enabled</Status></FamilyItem><FamilyItem><FamilyName>Web Servers</FamilyName><Status>enabled</Status></FamilyItem><FamilyItem><FamilyName>Gentoo Local Security Checks</FamilyName><Status>enabled</Status></FamilyItem><FamilyItem><FamilyName>SuSE Local Security Checks</FamilyName><Status>enabled</Status></FamilyItem><FamilyItem><FamilyName>Windows : Microsoft Bulletins</FamilyName><Status>enabled</Status></FamilyItem><FamilyItem><FamilyName>CGI abuses</FamilyName><Status>enabled</Status></FamilyItem><FamilyItem><FamilyName>Windows</FamilyName><Status>enabled</Status></FamilyItem><FamilyItem><FamilyName>SNMP</FamilyName><Status>enabled</Status></FamilyItem><FamilyItem><FamilyName>Port scanners</FamilyName><Status>partial</Status></FamilyItem><FamilyItem><FamilyName>Debian Local Security Checks</FamilyName><Status>enabled</Status></FamilyItem><FamilyItem><FamilyName>AIX Local Security Checks</FamilyName><Status>enabled</Status></FamilyItem><FamilyItem><FamilyName>Finger abuses</FamilyName><Status>enabled</Status></FamilyItem><FamilyItem><FamilyName>Backdoors</FamilyName><Status>enabled</Status></FamilyItem><FamilyItem><FamilyName>Denial of Service</FamilyName><Status>disabled</Status></FamilyItem><FamilyItem><FamilyName>Slackware Local Security Checks</FamilyName><Status>enabled</Status></FamilyItem><FamilyItem><FamilyName>CISCO</FamilyName><Status>enabled</Status></FamilyItem><FamilyItem><FamilyName>Netware</FamilyName><Status>enabled</Status></FamilyItem><FamilyItem><FamilyName>Peer-To-Peer File Sharing</FamilyName><Status>enabled</Status></FamilyItem><FamilyItem><FamilyName>Firewalls</FamilyName><Status>enabled</Status></FamilyItem><FamilyItem><FamilyName>Red Hat Local Security Checks</FamilyName><Status>enabled</Status></FamilyItem><FamilyItem><FamilyName>Ubuntu Local Security Checks</FamilyName><Status>enabled</Status></FamilyItem><FamilyItem><FamilyName>CentOS Local Security Checks</FamilyName><Status>enabled</Status></FamilyItem><FamilyItem><FamilyName>Settings</FamilyName><Status>enabled</Status></FamilyItem></FamilySelection><IndividualPluginSelection><PluginItem><PluginId>14272</PluginId><PluginName>netstat portscanner (SSH)</PluginName><Family>Port scanners</Family><Status>enabled</Status></PluginItem><PluginItem><PluginId>10180</PluginId><PluginName>Ping the remote host</PluginName><Family>Port scanners</Family><Status>enabled</Status></PluginItem><PluginItem><PluginId>34220</PluginId><PluginName>netstat portscanner (WMI)</PluginName><Family>Port scanners</Family><Status>enabled</Status></PluginItem><PluginItem><PluginId>10335</PluginId><PluginName>Nessus TCP scanner</PluginName><Family>Port scanners</Family><Status>enabled</Status></PluginItem><PluginItem><PluginId>14274</PluginId><PluginName>Nessus SNMP Scanner</PluginName><Family>Port scanners</Family><Status>enabled</Status></PluginItem><PluginItem><PluginId>11219</PluginId><PluginName>Nessus SYN scanner</PluginName><Family>Port scanners</Family><Status>disabled</Status></PluginItem></IndividualPluginSelection></PluginSelection></Policy><Targets><Target><selected>yes</selected><type>hostname</type><value>scanme.insecure.org</value></Target></Targets><PluginSelection>10096;36218;36246;30318;31807;28279;36229;32198;22614;27515;39494;12977;37649;11543;39467;42261;23051;28747;38043;23165;39320;37972;12247;12382;31677;37374;21919;19905;36723;30125;16018;32499;33551;11744;29505;28717;26316;12010;32506;31727;18005;12059;27799;18669;34709;19849;21356;31345;28224;29571;18292;40142;26546;19888;21168;23404;42395;19956;37047;30829;14021;38078;25911;40804;10618;13170;34115;25520;37484;11829;12940;15609;14400;32394;26022;25874;35415;12637;19917;30834;23327;12976;28928;15539;24443;42189;39128;10661;15572;11906;39276;23270;33115;34589;27375;14771;39110;37844;28942;12613;24708;36694;36839;12692;31548;42143;13322;14199;10380;15558;31910;27759;35037;17363;39281;31963;31858;18952;28496;34594;30255;41320;39115;28944;23222;41521;18971;14502;28573;37140;41078;21701;31553;19736;40221;39655;23652;16329;34679;19957;11315;23407;15435;31915;16950;40758;16335;12208;20192;10848;40957;11187;16409;41217;24716;36199;40131;20900;16289;20062;24791;13820;28576;25107;18276;36693;39660;21839;29837;41547;35874;38967;38315;29052;36585;34769;21740;14357;40096;33309;16593;41599;18525;22349;27150;26530;26423;34111;23637;29009;25177;24221;13872;26275;35342;21644;35701;22601;41405;29866;35878;27292;38320;17098;29057;17520;33314;21402;13159;12698;21636;32678;19000;22959;19732;29014;32637;18073;15003;19911;29813;37145;28884;37559;27909;26212;18315;32565;13340;25651;33760;13851;30136;29136;23904;24012;37860;11979;16085;33224;16381;19558;25949;34573;26460;32683;18503;32113;34436;14729;33700;40547;32914;25173;20089;39857;21422;16263;28889;32570;22553;25228;10610;13339;27155;40192;34287;25892;19587;34578;25335;18407;17049;35637;13139;39246;33705;32919;27031;23323;35567;32017;27951;31730;41339;11549;16013;19813;27941;21447;20820;22460;35884;29363;41510;26286;14214;33320;37707;32110;21009;31160;42298;36071;39250;24812;20415;32743;29865;30792;19194;20545;10074;24593;24686;30747;35889;36245;11149;35505;22975;14004;31046;13868;24509;16041;13692;28910;32748;38433;33804;13555;22475;24500;27767;39685;10766;11985;14378;25002;34990;17372;20473;10928;18965;37532;21934;30752;41169;27703;23668;13217;22680;12216;34807;20755;38438;30921;38359;39690;36434;27707;30176;16693;35064;16223;33454;12347;25486;25301;25969;26619;21308;18420;34350;35315;14047;28286;20138;24781;21669;28006;41971;40182;30926;20594;20307;30218;37764;27271;19143;36207;19106;34252;34205;34414;11815;21092;32054;38174;32160;27960;21304;38733;26177;16317;28783;14995;21280;35381;42318;20637;33670;41151;20499;32840;34731;35550;11418;27183;37962;32347;21915;40716;10579;40114;11240;34505;41394;36006;40492;35547;17340;37960;39192;33675;14567;41941;32845;37620;24279;30540;17540;27024;18166;17541;32365;30120;33168;10828;30471;31755;18042;39932;41263;36526;21637;21555;36136;35791;30932;39197;13615;24183;29991;36525;35902;26463;30545;36946;11948;12775;39872;19327;20766;12063;25123;30476;17053;12386;17052;19156;10970;20133;27317;35276;13378;21984;41944;27315;12840;24406;24175;28784;37256;25701;30937;31131;17230;21336;34046;27740;36749;15080;18478;15949;34684;32232;34113;34001;11530;22291;17321;40964;10649;26693;12542;33373;15342;15476;11190;13257;26509;30213;19030;34006;22710;12688;33337;31338;28640;12909;42123;19677;19068;23854;19470;26364;29209;14773;24656;28373;34393;21802;29728;35436;27443;14606;20810;28645;11202;17112;15190;23183;35191;35453;25188;37721;25751;38188;26965;13797;13262;35292;25652;16709;12314;13154;16708;10203;23049;35759;20944;26501;12498;24109;21305;10866;29953;34501;24801;14069;21259;34906;21032;36501;42039;12552;34010;37759;18625;10252;14928;12393;37909;41450;22672;35658;25897;14640;28325;29362;24392;22247;22974;23667;38264;34943;25985;42304;22089;34911;39175;13129;24568;38102;14765;36958;38118;29981;34014;37454;26028;28285;23312;22821;37488;31974;11739;22242;33273;34116;36913;11275;40474;38269;16470;23732;35247;16062;41747;25508;10566;41949;29485;11129;34303;30334;17337;39926;37073;34494;14905;21425;23151;38064;20851;37229;40429;35815;12735;26070;19479;19007;10607;38518;21146;39942;41752;11442;19834;30335;35819;41465;38202;26737;21986;26738;29992;26308;40720;26912;22464;32432;36799;20854;21786;38523;38794;12323;14376;28307;32504;20148;12621;37480;18033;32487;18253;39892;18030;31818;39619;35597;21666;24254;27034;29849;25242;11686;25894;39334;40569;24262;38205;37424;24472;38852;10285;40212;13078;35469;39950;31599;32726;18595;27984;17542;28062;17543;17544;11220;16763;17545;13503;27541;12454;38042;25419;37829;21198;22607;21881;25297;32731;42406;29537;20692;27533;30246;39499;19468;23497;32888;40703;26660;15320;32886;16592;36025;23278;40497;20466;37555;21713;21714;39038;27067;13610;27144;24245;32378;22180;25919;31191;25390;26443;37629;21412;33595;32784;39477;42095;22191;32890;28610;17580;21319;13318;11024;31581;39901;26905;39043;16232;40282;24518;14994;14696;18592;38745;12852;19753;25893;38182;35937;32789;15600;37417;35411;38805;28615;19891;20190;32107;26039;37442;38631;36564;24566;17475;19464;24332;22868;24720;40341;19946;22757;24600;19802;36651;40151;13091;22722;40997;38405;21265;37344;13022;13604;16712;38636;25628;35842;39402;21937;19559;28021;18731;31011;28695;40357;14321;33079;36774;10500;29130;40233;10969;37881;38410;29122;28278;21941;12459;33293;40672;35847;36475;21750;23978;31016;28029;41970;14524;38586;27651;24902;37361;10800;37765;22741;14788;11374;29135;30175;41456;22366;42362;29903;29127;33298;23235;19452;30280;22399;30767;13300;21911;37185;38591;23182;16879;25826;18755;26235;15098;10693;33089;15286;21649;40670;41707;39754;23911;37531;23863;23592;11035;16201;34626;17028;12049;31426;29990;10480;33113;40250;12864;39555;21806;30772;41240;19862;15007;39940;23654;28291;20914;36687;31093;31869;28186;41712;14299;37382;40649;34631;28518;20542;25770;17149;28476;36556;40534;28038;39072;37467;13309;14565;26739;26740;38014;31822;18788;26741;11682;26742;26743;18923;13767;34343;34412;28032;23519;11434;31873;25638;41332;35935;13179;33731;42002;33609;10476;26053;34053;24393;24256;37936;28047;39077;15676;24956;32271;27300;41863;18295;37823;25082;41573;21143;28191;13034;39738;34980;28015;10674;27169;16163;33019;26012;28971;20663;38839;16720;36809;15527;15249;31335;32276;13070;19193;41868;36491;41227;17598;11643;22579;33874;30212;17546;24808;17547;23694;17548;35161;17549;33068;17550;39743;25824;26720;26721;11652;26722;28030;11069;26723;14278;21926;41185;22611;15648;11176;41338;14980;22632;23466;36607;22767;27709;28553;23633;32072;36129;41182;11053;17047;40190;18237;15823;41617;35166;36863;28111;23240;28818;21684;24662;29919;41328;32601;25592;19238;33279;31077;28854;13482;28558;12603;34039;22496;29602;38645;16657;28823;18186;36704;40769;33740;41612;14827;26219;41618;29918;24430;20587;32605;23612;18433;38858;23085;21964;10268;34042;36435;32459;31032;11569;24842;25410;21916;41147;15311;15519;41498;24177;38841;10317;38826;18809;14377;39767;27316;15956;18793;33749;17476;14581;30784;34254;25272;39338;24554;13231;14130;12701;37495;30115;31192;24310;27298;38788;37064;40150;11260;34523;21886;22804;11554;23748;36466;15675;15817;38986;20280;23593;37825;22833;26270;12787;22491;30727;23032;24508;41798;12785;30005;38019;40527;41579;13202;36788;41719;34528;21129;36846;33628;35489;16182;41047;14285;11651;20212;13811;27661;26774;21623;41803;13974;26211;15155;38245;41724;27093;31486;16119;19402;35948;28767;10063;37593;24417;18442;29402;26159;35180;12683;15616;18850;13315;28956;34467;21549;41482;37398;17027;40824;38208;37297;21876;12807;25434;41292;10803;17026;17025;38250;27098;31491;37812;20830;19235;29290;41347;34271;31698;29649;30396;25945;17086;34268;39525;24157;30862;15494;41471;15032;27507;31729;27897;21218;41315;29772;20811;27521;13342;16468;38873;30145;29654;39557;41301;36239;12507;22457;35414;25299;13345;33510;16821;17382;13922;15137;12631;31812;32314;34043;22670;27550;39230;29740;24223;15106;12813;37263;19008;30576;36370;15710;29461;19163;36667;25724;41976;25364;41977;40768;35423;18200;15629;20735;38684;27871;22970;33241;29845;19398;21302;36602;27609;15245;30581;23452;30865;37077;10161;16904;13807;15034;19268;29424;32057;25398;39350;34810;15719;33480;37807;18552;33109;29660;18375;15498;38002;34154;30869;41297;10064;14324;40369;29554;13096;28382;14561;18367;19477;39946;29965;39701;33869;28719;17244;19828;14722;11100;41397;25179;28323;31125;23197;18065;36220;29665;22953;10947;30025;36379;21945;18426;31692;13563;28753;16241;24073;36368;37528;13867;28679;18000;13850;26332;36354;14293;11808;13411;23409;11893;15157;13085;23014;42363;24581;20875;24479;16205;30836;13143;35768;18936;28684;31186;19667;31783;21635;41995;40990;35946;13684;27048;19760;40237;32521;21930;12330;10696;26824;30839;18773;40023;21351;19117;13525;41585;15335;26413;41205;16420;40920;11303;22493;21490;21225;14919;39134;24408;39284;20604;37747;31801;32526;10837;34597;12500;34748;11519;10679;25955;37786;35266;12252;13238;20275;35124;12928;23294;27566;27351;15108;24858;25693;39289;14877;18765;13391;10569;24355;24145;34602;12806;14206;25343;25226;35593;36490;12999;27163;18630;29891;10128;35651;10494;16395;36279;27310;40664;39440;26363;36943;21373;12480;24359;39407;28360;27245;24715;40858;11591;22658;31733;22096;20932;24069;31980;25565;13979;40978;24200;35622;19929;23888;20881;22122;13754;26888;37513;22136;25214;23522;24712;13945;17357;29139;26151;42294;38328;14328;29064;27177;25597;24595;14525;35096;35290;14906;42091;16142;29023;12108;40178;22227;16732;21139;18049;28302;21727;21489;35334;26744;38983;27108;13852;13007;30886;40921;24066;14196;23263;25653;29862;24773;38333;18685;31825;41566;22936;13077;11541;32691;41978;25104;36154;26975;32922;17172;17203;12379;28897;10550;31713;22056;22809;35760;42408;24525;41365;35632;33581;37469;23237;32693;35966;38868;24701;39253;32927;28180;23401;18190;36722;22928;27068;28902;21477;32581;33797;24357;15210;21904;26302;27467;25620;20617;19717;21695;21702;11520;35892;17044;15041;19637;37346;10573;39258;30819;32751;36161;19913;14592;34697;41183;30798;23636;28586;21340;33476;23664;15864;21749;12747;41907;22382;30755;28253;35897;13916;29075;21992;30170;26839;27043;35513;23695;32996;25429;32212;27732;38828;24045;19794;40057;32756;28588;39693;22157;38658;16923;14513;23023;16922;16921;15673;22327;41912;30760;27820;33899;39810;16157;18473;30985;29080;12691;17222;14163;27407;35518;40007;17281;25971;38546;40081;29915;19857;32216;36365;38446;36267;38367;16550;35630;23184;11306;35269;40940;31233;36457;35045;18992;27114;24709;37738;23081;36209;21671;33585;39505;28016;34441;38551;33261;14191;15593;23747;38372;37689;29085;18313;26414;28712;38897;14651;36765;31238;10037;25380;22877;26415;24663;22163;40470;12086;29686;25236;37330;16710;10542;14270;18134;19829;38857;38088;29090;26287;21662;41029;18653;23771;19335;35714;20368;24432;11270;11196;33553;23624;34817;39007;26632;12947;28764;25080;12017;41170;22780;15540;32853;23358;42078;37487;29150;40601;24774;11624;30479;36201;21732;26317;22789;41615;21958;40640;37260;21650;15567;39204;15940;29316;23951;37726;12971;20088;25582;29155;34253;13301;37642;21999;24877;19748;24401;30673;41821;12285;30483;21968;12548;15062;40658;40916;29428;23192;18559;18727;19772;37342;16173;26152;35018;10908;38973;32236;27167;30676;41826;31826;29266;24292;16980;17558;41603;40077;21063;27119;21948;37266;21004;24994;25038;18328;36582;34396;20345;18087;33120;25606;21171;25026;32239;36430;38748;31834;41055;27132;16033;28741;24076;33345;32323;20266;17227;21526;37845;42161;29950;24017;34445;11195;33799;28958;29694;34424;21033;38947;11605;28523;10691;36992;24320;27112;27672;22192;37364;34176;21960;27877;33350;26112;11259;27290;10558;36293;19989;34696;14407;37129;25306;33381;27643;41588;18320;22871;16202;19206;37783;19756;25366;21355;28528;28410;25358;38757;29289;19116;20996;17234;18277;27699;27336;29603;34942;14644;28796;33409;15016;16873;33282;16872;26987;22624;22983;34914;29245;28123;24683;35561;30616;13347;36353;31175;16324;12562;34017;15680;14607;39502;13837;28414;33784;13372;14018;35024;30256;39579;31433;36528;18540;33351;38156;16104;38272;35072;34798;27785;23558;33499;38150;42263;34919;12850;30621;35928;10777;16584;37683;11811;31318;14042;24192;18568;40908;41281;19478;34018;33501;34302;20819;35782;27468;21450;28154;14734;33356;15317;11421;35559;38277;40668;32374;13542;37687;17354;37420;18032;33427;26295;19053;33161;18624;27945;24201;15618;19149;37640;17148;22296;28290;21301;16344;34185;27517;32469;30226;39792;12610;22002;15850;29504;41760;19622;28023;39848;35382;12503;10699;38700;23675;18716;15011;20794;40977;24166;30341;31388;26416;36221;21217;38890;16226;16403;17456;36462;17457;33488;17458;10481;17459;32540;36880;17460;34037;17461;16356;38531;41765;41427;24061;38452;40278;23727;34925;30428;24544;21179;13876;41201;31780;10495;30372;41518;10516;14804;21632;29251;14858;21352;37503;13307;38536;19368;16444;37712;36389;38283;21485;38457;13738;29969;34930;27347;30433;29970;14447;24614;39591;30375;38972;41940;19536;26094;21324;40922;13218;29758;30111;29751;34395;14053;33275;27415;37184;11462;26266;37756;12989;42240;37037;37378;26283;10985;37231;38736;33598;15488;18649;12264;31700;32893;14365;36632;15908;40647;36156;39998;14795;31843;13080;15413;33944;17288;37191;24592;29921;36644;33603;22931;34641;32898;28618;11800;16726;20869;10473;10673;24862;37368;17977;16819;26568;12272;39051;21291;16820;27730;27610;20548;12652;26464;18775;32797;19055;21403;34646;40889;37195;33284;36452;37939;13177;12929;41005;18712;36916;32064;24260;39056;18835;10843;35869;32802;18955;18321;22678;18682;37321;42296;27330;35850;34462;12839;14902;31018;14662;28700;40895;26042;27115;16120;21643;20974;34186;33608;31134;22856;36320;38418;17602;32904;14098;16265;34383;14161;35050;34854;34230;40628;31023;17247;28703;30008;30961;27383;10554;19660;40268;42203;37103;19099;19922;38423;24454;37097;13679;12349;32909;28090;37153;26488;26489;28072;20040;33537;11719;30775;18498;18618;10189;28065;42368;38599;19175;37254;25192;30113;24326;11881;17521;17522;12897;16334;17523;27663;32035;10139;38147;12037;37898;15916;30780;18574;41046;26510;27277;26511;38604;40515;11081;19855;33821;18747;16867;25662;20798;37693;41369;27803;41464;18808;25277;35314;41173;34740;35208;29280;39080;28155;21790;14339;11913;12674;24424;18725;24697;41894;31986;22218;34047;26441;25996;31880;35943;35258;14909;19541;37748;40226;25095;22338;23370;38779;40210;28625;16116;39085;34275;28107;28560;34188;37637;18422;26470;16011;41871;11628;10198;38605;35322;37092;15178;36743;31885;14188;19991;36132;24281;35473;16064;34726;28483;33027;19224;19528;10293;23072;28563;33221;32284;41098;26456;41876;32165;39867;38610;11096;34945;16520;25039;35169;11768;22883;22146;13764;35189;14619;32419;21570;19514;13114;20530;33031;13687;28979;35223;12072;33857;17024;19779;32289;21859;17023;31392;22371;10821;10058;31770;42330;24149;33004;19115;38290;23238;35379;15620;19317;37839;24702;14202;32650;23044;16340;37518;28984;32608;42064;37244;21200;28859;20517;27216;33394;22569;25567;20152;25709;36931;13381;10656;29213;18668;31590;35044;19313;34545;14600;21625;32655;34421;16725;12263;32613;16724;38044;40185;20002;28863;23944;18879;23319;25161;23137;22293;34389;18334;37695;37595;39573;20072;34550;11753;12432;25025;22202;42278;35046;29310;11353;25670;41887;17143;24747;34728;40246;41808;13445;29986;33894;22602;20364;39858;27341;16347;16579;25068;16578;16577;35188;23710;30735;31441;23569;41805;40956;15745;11911;41727;36971;34536;12519;23939;35499;33636;25852;15356;29378;35495;25062;19714;22450;21580;36121;35728;33176;10591;18513;31305;13097;18048;18652;14770;39961;18771;28289;41732;31494;25505;13940;20132;31972;14012;32011;23029;19504;24477;33641;17038;12773;17037;33518;15171;42169;15065;17524;38770;12866;27980;27833;28319;14441;12849;31499;23301;27232;35262;36527;26962;29177;15340;27076;30402;13883;30599;16905;15020;24646;10808;25230;10257;16549;19110;24865;16548;18778;39819;24981;36856;27670;35682;30648;29536;21284;20609;23026;30407;16417;25577;15088;32482;30603;24704;13468;34780;13658;30290;22633;34174;22608;23890;10900;20688;10962;30709;32335;11873;16270;22499;13074;26108;29225;41648;12879;20440;35112;30584;41214;13845;14295;37903;30139;33922;28059;35799;23757;28189;19712;42255;12732;41653;16160;36648;25829;12484;20696;33754;41063;35117;30589;26457;22548;30871;36636;29727;38077;20019;23289;10583;25455;24521;25926;42159;30451;37200;10595;12759;13864;25497;18409;30160;37118;26005;29668;11042;17261;30187;41416;40523;16868;35733;30874;27966;21178;20406;11637;29275;23386;17175;17158;37061;33565;32509;22559;25983;31071;11250;41493;30225;18418;10588;27171;27821;29673;20524;27299;24059;14157;10846;15359;33571;30297;22653;11159;31694;23004;21693;25924;34197;28204;41242;15652;20921;10692;26495;42333;19359;11807;28725;11101;24982;23743;10526;14949;28687;30355;39544;34822;26745;17559;10948;17560;13576;22511;11065;21186;11452;37284;15534;31375;13580;28210;38478;14751;30358;32310;17350;37876;12514;22960;10922;22194;23191;13271;32529;26000;33100;19105;17001;17653;29418;14009;19596;31763;35257;32412;38483;26674;25595;11153;20599;15750;36425;16576;37538;24736;39871;12766;34877;39466;36962;41686;37602;42225;32534;39317;29966;18110;33858;20356;33419;37546;27266;12903;37389;19137;24057;35132;21024;12303;15831;11566;39145;34882;30003;40900;41691;18521;15149;24491;33866;24482;15997;15136;19952;28503;36857;34799;15144;13284;11391;36054;38706;17035;14419;33391;17034;35137;26661;22729;37631;37600;12608;29367;16233;39150;23858;26428;38995;19251;29827;21039;14717;31110;29386;22139;37809;12778;20701;17623;14684;11340;11408;39956;35040;29748;39937;17308;11496;39369;25274;25498;16547;28442;19311;23650;18916;10361;21546;41954;40998;39372;20160;21579;14185;13597;37003;15460;38336;14011;24441;22671;15055;26643;31857;26644;19048;19101;25842;30285;31073;22078;32077;40912;31653;33938;18288;11687;10300;19854;40400;30040;19023;30894;27973;22480;36303;14115;27473;16707;38341;14908;26201;28202;29756;41376;19491;38863;35653;32696;42375;16277;14201;37450;24325;32584;17982;41272;42286;27736;11032;36874;24435;25563;37295;27259;24422;37811;32701;31679;11109;40509;36661;33133;23976;41273;32935;20372;34367;28954;32589;24169;11414;26793;14190;26794;19565;34382;42250;19540;29439;35900;21233;17586;24211;13635;14965;41470;32832;11126;32940;13480;15666;10254;11840;25581;19138;10396;34485;10802;25613;17367;27308;29421;19665;39813;29769;18986;33124;39013;29419;22707;16452;34933;35521;22702;27338;37886;39568;22226;32762;30363;42399;13873;20119;30808;33460;12462;41457;12815;35577;23523;18776;41920;10580;15395;22453;31803;22586;23431;34809;17561;27930;40918;17562;13586;35857;21539;17563;35526;38173;20644;29030;16756;22465;36603;17385;16401;16083;13099;16198;16582;19497;20199;25534;17277;34187;38375;19566;36348;29715;18154;41925;21242;38349;10091;20775;28246;21620;16114;39869;34020;32153;40321;38559;12041;25309;13786;33060;19597;38380;17601;37069;13276;23930;31246;17160;38354;16295;30989;22350;11969;35235;31199;38564;40318;28656;17162;40005;26352;36237;36639;33064;21343;29097;38710;31251;27193;10434;38194;40982;11364;31203;29549;16235;15789;19903;40501;14140;34041;20816;29319;33267;14981;32860;19037;29158;23482;42100;37510;41327;33411;24881;40496;24252;19049;18871;31917;29373;35985;21316;33156;39322;20593;19901;16250;19212;31466;22081;36040;39212;16920;29324;35735;31623;12744;23210;26949;32865;29163;18679;35601;40613;15524;21126;31732;31274;23730;24031;21501;19142;22605;42210;35463;35367;39215;40013;36393;13254;32476;31837;14429;13704;38722;36933;20279;32241;30682;41834;30494;30658;33764;20297;36086;16762;39708;37885;12624;19699;20037;36837;20038;29016;10716;40080;37709;36084;20170;21053;26369;40614;24267;38664;32423;15019;18998;25704;40970;32246;32067;41839;38830;12464;23848;19109;13857;36599;22016;12983;11387;24573;12572;23343;21491;39713;14036;32148;36312;40296;39545;29021;32180;40106;19047;32114;32964;25737;39489;40417;38036;34681;25558;28531;10575;14745;23478;27896;12550;38943;29518;33920;14288;34070;28798;37511;33232;32969;13111;19904;27675;20041;15302;31978;11365;19533;20388;11894;18870;21185;12473;24179;34443;36057;19734;36174;22055;37659;15627;37413;29257;23320;13622;30623;18289;33824;40782;19221;35278;23461;41981;28417;37635;17312;40298;26549;34337;22641;30049;28428;20883;38697;28792;39348;30628;32398;18437;10301;30196;22826;16581;13955;32422;26359;38669;40139;34405;40171;24863;26746;33953;14801;39403;17386;27591;20568;32026;14593;37271;36674;24111;21176;33387;27824;32543;24027;33958;34312;41768;25404;38176;28921;39514;13960;23152;30344;20952;12544;26927;11943;30189;24489;40389;21300;11242;36733;14756;33513;32548;25833;16190;38539;17290;41773;25579;20493;18911;14142;38460;10289;38215;19112;30436;28359;30348;40726;36683;14625;12630;37713;13633;12564;20911;37621;37592;18963;21610;37744;34721;22926;16789;16461;18380;38465;38220;37415;14635;22898;18287;37049;31589;42332;22581;22591;14359;31998;34859;29623;30380;17033;31946;25932;20465;23256;13935;19859;12936;37905;41275;15510;11778;26386;11846;35472;37319;37680;35075;26010;16405;37735;29291;27587;29626;18285;30179;40841;10725;17978;24879;41440;19704;35757;37400;10382;36963;26979;38768;17270;24492;22580;18512;31371;26462;24468;12019;14123;30551;11703;16761;34649;25048;25521;19064;26645;20857;33586;21718;25532;12268;31961;14520;27218;42204;32805;30556;31329;37205;34654;24636;29379;25627;41377;40704;19912;12436;36420;35378;13669;16698;30052;32404;13337;37857;15084;27279;17686;40235;17630;13699;18504;10657;35810;32810;31983;20167;32736;18319;19544;33428;31845;15712;11400;40144;40813;34177;11731;23248;31516;41448;25838;15574;30964;39299;34136;22303;37950;20520;37644;16796;17022;30118;32377;22991;21278;19814;31521;19815;27145;33132;22124;30969;27946;24131;35570;33741;29703;13547;19672;38758;18985;24643;22431;25786;22432;13691;14527;31217;12814;27332;39903;25195;19091;22885;18091;40702;13118;11994;18546;23842;32002;27937;13259;29776;30106;36428;31222;31593;20200;41897;21883;12410;34045;25685;25918;29178;19337;33523;41068;19253;27212;31028;37757;20291;10027;12373;24458;20239;21348;37197;36584;24672;40421;25371;39088;11564;30233;14709;14210;22324;31527;42360;41902;16649;26077;33225;17500;39912;30975;31888;17501;10026;20770;17502;36886;17242;28377;17503;39578;16294;40184;21070;27318;13609;25389;28628;12886;35923;19726;39093;28182;27800;28565;37273;13929;27130;31532;14023;23742;32166;39442;31723;22993;30980;31893;31108;19360;33830;24607;22384;34454;11156;13587;23608;11210;25908;31293;21547;18396;33034;23728;29792;24887;21548;23143;32292;38877;29382;41884;24414;39638;39929;41504;29357;16091;25118;14979;33007;24797;33378;16132;10205;37877;27455;13229;25975;33038;22663;28987;11966;25686;19050;11344;35619;39643;19081;26713;27439;23862;33011;38298;27828;17427;30098;25935;42227;27899;36166;32982;29560;28992;10160;20560;14158;11674;23069;27827;22617;22985;27165;11704;40132;22156;29040;38303;33798;21442;32662;27219;21329;42111;23867;32621;25917;26646;31583;10076;14613;25511;19129;41890;27840;23093;25726;15365;29344;41811;22198;14055;15222;16517;18419;33087;31595;10530;27508;23169;34558;38023;16705;11438;12666;38005;33612;20263;37699;37320;15896;12772;32626;41546;18297;15128;33044;23008;21012;28872;32553;21923;24119;25640;17373;11097;14732;13582;23684;36308;21590;41577;41816;13155;26036;19348;25805;29959;34563;33617;37525;33688;21813;11150;33049;22976;26136;36767;11094;36449;31385;29196;29971;29972;29973;13769;23638;27816;22694;15579;18308;38682;27304;22437;26935;25216;22438;27463;19103;26592;19496;24249;23352;22439;10003;22440;25881;32362;20230;28080;14572;21389;23922;33644;15714;42055;39665;27265;39982;41166;13816;27185;24451;41490;15013;37850;30077;35769;11121;40036;13560;14842;38159;25321;19089;35038;12417;33649;36562;32191;27686;39670;26498;18926;25746;11413;21175;36049;22173;15536;16169;29327;32221;36848;24023;26967;27442;39822;15563;23498;31507;19955;36882;16385;18246;37107;23671;29372;30904;33255;30410;30606;36307;15970;21609;10356;14738;10093;11266;14859;30712;29332;21413;33259;39329;12257;39827;31512;27708;31710;30651;30909;32134;30414;10556;30611;37280;13866;21895;25158;41564;26390;11130;16648;35797;16306;16463;40887;13817;13420;10680;21748;19180;11427;35270;31061;37289;34787;29301;36140;23753;24949;35958;19863;33655;35104;11033;20017;32179;31323;39292;31572;15123;16937;34108;30523;28831;17610;37827;19763;41660;21426;29377;14467;28218;18226;15725;12901;33207;33660;35811;37421;24129;31577;36488;22051;30528;40305;15953;34044;17305;39960;20951;10095;30457;25899;25218;23059;12615;30055;36620;31355;10106;23690;17199;18890;22137;27861;29676;21263;20828;14443;28968;36093;31330;34334;39417;37597;27783;30299;37474;34304;22876;37149;24377;11722;30099;32516;32320;31768;25157;27089;26246;21102;22954;26247;26205;38191;15117;32177;27962;30303;39847;35621;19996;36281;33984;10119;13470;23220;37395;27066;19694;26647;23410;26648;19123;33519;22518;16516;22834;39571;12611;28299;28467;22912;31470;33989;32061;28730;27033;22941;19308;25504;30013;38703;37279;24285;36807;13357;35273;40364;25013;40365;40366;37613;27560;27701;29783;22752;19387;33872;32732;25795;26556;34784;30849;38491;21867;15125;14623;13875;11885;34885;33127;10410;39330;27992;23996;21897;24421;21001;28393;27590;18096;17998;25529;17020;40548;25203;38496;29840;13193;17019;17443;40359;12871;35140;17444;30853;19183;39856;22141;34890;39153;11043;11691;37024;36432;41699;26197;33213;24599;32455;17369;38142;35145;20172;23016;19155;24638;39158;23485;32415;19799;16605;16604;41704;16603;26550;32024;16964;28232;28510;23494;17262;19959;11689;40169;15911;15549;19915;25731;20149;12873;26950;30270;26361;13629;15194;22900;11487;26023;15177;12905;37063;21323;26337;28515;12054;22164;21890;20908;33154;19617;11455;38677;22758;10520;34128;24548;30288;27626;31356;13572;27025;20846;23518;21377;12442;28259;28350;24300;22563;31799;15352;12011;15064;15179;16936;13559;33487;25672;35185;11046;32704;20757;30322;15950;21679;36382;35659;14941;40428;39748;39994;35261;38106;38923;21487;10420;10567;17324;34795;29826;33418;38754;16787;39893;27189;14302;40684;21119;19537;18690;32709;30327;41194;11537;25696;32943;31434;16035;22740;23426;11252;25644;40229;39387;24594;34775;14523;13494;31040;36355;40952;25958;17536;26714;32948;17537;29516;26715;14016;34379;20480;17538;32500;37681;20444;17678;41180;36572;34984;17615;35456;13921;11227;10551;37282;15508;32025;12628;21940;16046;39021;18593;10352;20158;22805;32768;15296;18301;33776;28593;17254;40371;19673;37945;35312;11932;41928;27386;39583;39026;14723;34755;35865;35534;28012;16435;33470;29034;11424;13149;32772;42297;14976;12360;42364;22031;42382;15421;35417;25868;38615;36634;31557;25290;41933;38357;30992;18078;16878;13702;35538;38567;20729;29719;18554;33067;36860;12107;38388;12540;25411;37791;25041;18293;22280;31254;14940;32436;31562;26976;23886;39626;33511;30994;23505;28044;12509;18564;32393;31206;10578;38572;13833;27659;34152;40994;40549;33072;23873;38393;29105;36066;40242;31259;27073;28050;39947;31211;37627;18666;17216;18386;11877;42035;23450;37439;18175;19652;29110;40636;28058;27716;32868;12309;29166;23477;25596;21797;13949;19684;11726;32019;35604;15986;26895;26896;37478;31027;13971;21180;39862;31778;14725;34331;39218;42267;34609;12633;37078;27774;37390;22297;24289;32873;36994;29171;20834;10060;13994;25169;39558;11313;27906;40244;30684;34450;24126;20207;12627;31929;35502;30661;31282;40479;33080;37612;39774;31859;35438;19578;33709;42223;18233;39223;34614;11879;18533;41957;20937;39536;37961;36419;23945;27695;35736;23987;13911;30689;12414;41842;37281;31934;24979;14129;30500;34763;16956;10711;31287;30438;36442;19724;39716;10424;33714;23116;22642;24836;23228;37501;28474;34686;27620;40930;18294;32149;14074;19932;20607;38780;12076;13986;13814;18968;32254;41847;26886;26887;26617;36145;35915;14939;39721;11460;20283;25320;24367;19661;36087;32972;11051;18957;34761;35979;31129;40504;31153;19488;32259;24082;37948;22008;24394;29436;37770;32977;16124;32472;21564;15824;27203;15607;28846;35047;31361;28538;16432;37031;20896;30694;40783;26431;17539;30506;14562;29533;30443;41580;27546;19165;28431;31157;22476;15777;36529;29184;36037;19552;16393;38759;17582;40170;30199;10917;26473;28542;28422;12416;13793;22101;36531;19449;29947;30510;39500;20715;30247;30445;31790;32096;28807;28436;28787;12356;30634;29744;22309;27757;13144;20586;18538;13938;40195;22341;16341;15360;21407;33961;14198;28924;31309;11420;28759;17642;15417;33584;27781;23994;40351;35997;17255;19350;30016;11044;25449;22117;19698;33966;33090;30183;20790;41312;41776;29243;39988;17356;40042;33684;34166;30349;35792;23745;37563;32387;19590;32395;37564;22873;17187;11273;17169;26076;36288;22451;27731;24645;21069;41781;36615;38468;29908;22441;30941;38193;16472;42331;39589;30351;33236;32369;34511;27793;21664;35483;37836;16467;19823;40179;15295;37016;15974;40050;14341;41142;13176;18882;23678;28184;36109;35080;33181;38473;38228;33901;30946;42121;15312;35372;24338;24248;34867;29627;30383;18865;38103;35751;21997;13537;37824;41278;23596;25681;13981;34835;29482;32161;30201;27919;40765;19074;38233;41035;32318;12494;20887;34164;27349;23889;28762;30386;36923;34872;29632;16925;20228;34034;19848;33440;13662;18537;41231;11929;21358;34019;33522;24250;27032;21785;38171;15085;27004;13973;37785;34657;36465;41199;31308;40516;19970;39963;15898;30024;11927;39543;30216;19623;12563;24876;25150;33781;30560;33402;35654;18544;25981;36939;35631;10899;10214;38022;23212;23000;40152;36371;10954;31406;32816;29843;33782;10541;23437;18762;16786;29338;37426;37095;27786;33216;23755;34711;22039;13196;39396;20771;18799;40480;40679;40784;30021;22501;42410;18477;26059;11453;27053;13771;29545;37039;35102;29596;15542;17368;27934;32137;16095;29600;21470;19438;22650;36918;15188;26335;23541;28667;24087;16801;16800;12056;24356;14786;27616;32128;26346;26474;12556;10865;40567;29191;33939;11638;37817;37863;31225;10310;12287;14637;23912;37029;13668;13721;32497;24231;38959;40249;22355;15408;15001;34083;18844;16827;29497;25495;21902;41503;35478;31230;27040;20781;33370;20831;10665;39527;17225;34107;30090;40815;34782;28142;40561;23230;39263;23236;14268;40265;10053;41341;27360;13103;28367;19172;29781;42015;38667;14867;20227;38066;41298;25094;36684;31896;29503;18382;39119;10470;16415;26557;39268;26137;19656;36012;12968;32120;10256;15244;34580;13393;28316;22946;34247;39101;24925;18683;15695;28940;34983;36111;11174;28203;22228;20296;23589;14029;31540;36456;33768;38896;29278;14394;34339;31901;18722;13008;39124;15937;36730;35435;18371;32391;21189;22472;29298;34585;40639;25223;28492;39106;19743;13920;40482;10855;24910;20656;14048;42359;13348;39646;24943;27509;20916;23339;11852;23846;37987;23724;24150;14122;36816;42184;28995;19400;26499;31340;15219;26500;24806;25815;38761;28570;31464;11249;39651;21527;24543;24727;33186;34082;40972;29512;18520;21480;38306;29043;18469;26180;33300;24527;16656;26760;40535;11579;32990;33495;29000;28120;25773;20557;25629;13790;38213;34774;36606;10907;27462;16788;26115;41472;20018;12963;36843;16181;25998;18232;24617;14181;27903;26194;38311;10408;29048;11212;23959;39757;19177;28219;33305;28308;16008;32669;40946;32995;17299;13220;23942;35457;32628;15587;11641;11951;17331;40458;15786;28875;32556;35464;10462;21353;17217;18406;41280;32492;11224;42371;26432;34566;11215;32674;10931;33620;12848;14782;40593;33691;22417;16935;21065;24427;38941;33052;31068;32633;17364;22778;11775;22846;20806;28880;33262;32561;42350;15583;36590;27920;14591;30235;15808;22788;41678;34569;15493;18318;39237;33696;29380;37841;20462;32012;15839;21452;11281;27968;21503;25016;15384;15053;10978;41683;12645;10833;31332;12531;24670;25126;20702;26534;39242;34689;17051;26535;11910;25414;16357;41102;26387;23178;27578;17215;39673;15638;30071;20650;11495;35289;14223;35705;26716;11345;20452;16072;26448;27345;29411;23997;34674;29230;27044;16354;37373;41473;26449;20765;20997;31990;40312;26248;39493;26249;15045;13235;35086;31652;40334;38424;18378;40617;22373;32189;19320;37274;23971;23669;39677;25327;25254;14375;35680;33191;29394;32097;41178;30153;12016;32336;29335;32228;25882;33822;38117;31515;39379;18100;39380;38429;33542;30912;33223;30417;33950;31847;38726;40821;36778;13896;32373;33926;13991;17016;25186;34747;36164;25292;39835;21847;31992;12723;26083;25569;26687;11406;20403;26688;30917;30422;42327;37737;23849;19709;41419;40683;20446;26240;14952;33815;28833;16122;30725;25716;15659;39840;24895;36089;23417;27440;26184;30006;19276;34305;33663;33589;29885;41247;10615;19641;32835;36518;31043;11184;18578;16565;34457;24347;37144;13528;27461;26468;41668;41614;32083;28760;18907;27013;39183;33667;21257;25587;20706;25428;13753;20463;15403;23844;38709;30534;26218;32078;10712;30463;31722;18585;41673;41197;27393;19152;10455;28188;39188;28115;35039;39530;14893;30536;26761;37610;13575;26762;33439;15270;38891;13948;25207;41007;16750;16749;25196;22696;17438;22630;22007;18425;27418;12398;22368;32324;25614;22485;15773;40433;18310;13256;30306;37175;18072;42000;23954;15436;39746;17679;26168;22234;33992;28309;36504;16186;24874;13660;33325;12225;24103;31155;32303;21865;14876;29700;32065;29339;19424;42180;25296;40750;15626;31853;40138;14983;20641;33997;37066;31477;23347;17246;14401;37188;23574;33330;24831;32414;40362;37060;23346;31620;22907;10081;31094;18597;29404;32175;40891;27660;34206;26587;28636;25317;11582;32039;35977;38499;13278;37119;13127;34893;40396;37329;41074;16049;36366;28400;30053;33057;40857;38504;20759;12677;35148;21281;36176;18518;34228;18914;42151;13402;22040;38894;12978;39161;16626;19033;36864;14962;33250;16447;32088;32537;21778;33256;10625;25328;16684;16683;15193;31320;20640;17170;16682;25311;10183;29287;15581;27233;39885;16348;33148;35361;10087;35595;21021;13479;25139;39166;14356;32433;25029;12789;40338;19265;37438;14922;24748;35737;18007;23305;18284;15617;25687;29360;37099;28113;33766;27993;12958;30142;18399;17015;26529;10169;30289;28448;38137;17355;15118;26916;24296;11668;27139;38509;20057;41743;23545;23969;26121;12238;35079;30158;22616;18131;12833;20606;36495;31735;20027;34162;23037;42287;10687;23841;38514;32483;36825;10746;12319;26899;23424;34327;11135;40643;24141;35933;24237;23332;10147;30328;10703;39592;22416;40954;26634;28934;11361;22582;22530;41994;12801;36017;16339;25636;15160;28119;20961;40194;32717;24365;31121;32643;28452;35063;20078;41496;36915;40043;27822;26193;22770;28936;36225;16379;23568;24029;34027;22034;25733;25027;10398;31718;30002;13648;25081;32722;28108;21796;29796;32647;28455;41943;38960;17239;10260;16542;13540;26763;23334;10562;36334;27891;14287;25490;20510;39029;27190;14138;19383;37799;24163;19909;40273;17235;31450;13914;42357;39986;32775;11463;12774;24372;12265;39553;12740;28601;33195;37896;27051;33520;32329;25812;11092;21873;37979;15683;35111;41936;20904;21799;11376;12513;11382;19086;39034;13695;15022;36655;41373;38714;35541;39562;27881;25386;12307;23303;31864;32780;35406;36100;13619;25059;33832;28606;13446;28118;42383;29935;38622;24721;17097;31565;23537;39629;34371;15621;13117;18662;30997;16082;10430;31655;25499;42272;38678;21779;13823;18787;38396;40373;31166;40377;27924;23781;27278;38627;24021;35833;36133;31569;26071;31056;13422;31813;23052;11161;31002;14107;27446;14051;37777;28693;32495;19010;26943;40878;21154;36853;35066;35255;38401;29113;12578;20856;15484;11244;31301;31267;35838;38803;19803;19366;38577;24948;24621;27346;26610;13398;24900;22878;27384;29118;32501;24007;42392;33289;26402;17202;24690;38900;37062;37105;37464;22857;21166;25103;38582;13731;26250;13204;35172;21245;22744;25403;14652;18934;11865;25851;23869;34617;25688;21663;30027;15197;32375;35281;28621;32881;40675;13937;39058;37636;14320;12945;13614;28276;34050;40234;21325;31937;42144;31376;38164;40865;26829;33759;21066;27841;31290;37057;26375;36538;17014;26655;38094;17013;21506;33474;34622;26471;28623;25580;29934;24687;39063;11856;40379;19295;25590;10723;18497;31867;23474;36622;41309;13758;42288;39724;35368;13972;33722;21962;25489;33773;29923;16891;13299;37502;24990;35272;17662;37967;41346;14675;32262;41855;27164;24689;15082;32441;15926;39729;33727;34381;19948;28205;21538;16045;37816;23899;41500;21068;15672;36610;37112;16387;27987;21433;32267;22406;24907;11837;41859;33141;38912;36911;12753;32050;27127;10101;14630;11685;33269;13527;20738;19119;20143;24309;38813;15409;41004;26190;13859;25391;21019;14602;24660;23784;28545;22636;30513;42054;21254;24870;35157;14272;28439;37668;24975;24688;27437;11213;20236;36135;16229;32317;32593;25369;21597;16539;10532;15645;37722;11430;28851;23383;27454;12716;28549;19218;36969;14845;31141;30518;27307;14694;35338;16621;18179;37643;28814;37408;36044;22764;35648;21097;24390;32598;25914;17606;34997;22944;35359;23456;13237;42174;23919;13798;38025;32200;33139;25134;14487;26188;30123;40333;40526;40791;35955;19271;34430;31102;22886;11026;40405;39336;31607;22346;33129;36670;21826;34049;19284;33974;40685;32108;34514;16857;33847;19032;16856;35758;34745;34178;18715;25015;38842;19161;21435;35580;22414;20136;36147;40592;33979;27873;41789;29475;36698;19931;24188;34519;36263;35487;38161;39451;17117;42089;11500;40213;17464;42265;23778;16624;25384;35716;34181;10750;18074;41794;25858;10341;27411;18984;28283;38236;34163;30954;16934;21469;30389;31967;32140;32371;15663;35083;11527;38241;20384;16242;31482;12099;30001;28765;29640;30391;15115;30856;17971;41131;13473;37803;25575;42378;40715;13050;11296;36082;14261;17283;10477;12838;29236;20050;14063;16689;19501;16738;10117;16737;29645;23255;38739;15102;25810;22367;23659;15457;30314;30132;24152;30563;15371;38854;13130;40004;14924;33533;19483;18084;15467;30267;24226;33915;26191;41379;11131;16297;25625;22992;19899;21285;38734;21056;30568;15388;24783;34663;38119;34510;22106;11717;21877;39786;13522;21346;11390;22128;42369;37331;11165;14126;41009;36623;16972;24757;37618;16314;22003;42154;15101;15226;17185;37980;40255;19352;30163;40020;14131;21631;10518;23507;29427;28929;11735;29246;26110;40846;32829;16422;37187;38984;24265;41141;34196;24769;30093;34491;40048;31070;28746;38773;21673;39356;11548;18345;21088;24236;36401;18346;18347;14892;38679;31067;38680;36780;21795;20204;13926;25920;17116;40155;20365;20460;20892;28750;41425;23885;26234;38082;35710;41637;30597;34330;16078;40302;37214;23761;15267;40118;23576;35296;14799;36285;26061;24238;32001;28651;18331;27207;14424;12727;18783;10905;20572;20901;15501;34675;27022;18839;30828;10319;28676;13140;38670;26391;28652;40632;33849;35764;31058;15499;15142;14569;36048;26618;35617;18330;36105;27681;10604;24511;26938;30833;10253;37219;26254;17430;36095;37947;41386;10208;11526;21020;17431;39127;10145;14222;23877;39275;26936;31328;14612;23570;32517;42305;10452;23938;34588;11727;39109;10835;33112;11695;36824;13526;31547;18821;18822;25936;26988;41001;39763;31909;15942;17194;27809;39132;37490;42346;25141;26214;36257;11515;26611;38155;39280;35308;33531;16055;28634;34593;28495;36015;19729;29580;39114;20550;37294;22896;36477;11377;31552;14421;17676;20223;41271;28255;35215;16176;31914;40074;26584;10164;22085;29807;12634;26073;23315;27451;13992;38856;29459;15481;39659;13438;35873;25605;31440;37010;33308;22977;18777;19255;14809;19296;36601;25822;26165;29008;12949;36899;26830;11474;26831;16021;26832;17266;41361;31048;26141;20264;42226;35877;27662;38319;38104;29056;28019;41104;34057;38000;40071;33313;33471;22206;32677;22245;24868;10137;12465;20945;32196;29013;32636;27272;33556;28883;32564;40166;22923;17359;28129;18245;39490;38324;29060;36098;11058;21208;32027;27634;25385;34572;32682;41107;23351;40950;28196;33699;32913;12972;24181;28888;12994;32569;17472;28160;16866;36050;22775;27269;20556;27624;10594;36700;21932;29572;10347;34577;29435;39245;33704;32918;38099;37348;23441;35793;21216;28578;20986;22552;25946;21829;10509;42086;36313;40045;36680;25855;20982;35883;12622;11398;35053;34307;21414;12643;27253;33319;27234;37669;39249;36260;32742;27983;13885;14471;30791;28582;40817;21057;33515;22091;40924;33416;42059;39531;38681;30746;38729;35888;38730;19244;37498;29550;35504;21465;19429;31424;35106;18805;32747;40877;15486;11795;28909;23866;30796;24099;32186;39684;33456;32009;16838;16837;27012;33906;30751;16152;19045;28257;20515;11088;35509;31447;19508;16137;38437;37983;34195;18729;19638;30920;21374;10049;39689;20544;24039;18541;18962;22587;42137;23980;14255;13605;34803;19380;14943;36203;36162;19614;20894;39606;38442;26358;30925;35252;21456;38363;29479;37500;18594;39448;27839;26311;36233;35428;41497;12680;35033;33111;28782;10298;33527;14209;18764;35969;37745;15606;41629;22212;34321;11661;18647;18898;42384;26932;24228;35956;22916;22919;16623;15994;22917;16378;16622;23714;38160;23715;13562;39191;33674;39444;24932;14498;24655;19832;16336;37512;32844;24792;30539;16594;28837;17319;11812;17635;21272;32167;19647;25314;21253;24097;30470;41283;27641;27484;31618;30931;39196;33679;25373;37056;14986;22543;27682;30544;20768;10070;19692;36625;22035;18280;42007;30475;33777;36522;23557;31098;36505;15704;25467;41479;34819;26833;35907;26834;31298;11716;30936;34736;31676;10445;29395;37360;25870;25974;36900;36297;33285;14912;33243;34959;11368;34000;32454;37485;26689;27506;13713;14294;25024;22536;13963;27154;17426;33406;35399;29259;29870;27047;39911;27168;32234;32159;34005;10819;12036;27963;28639;17674;20071;33842;33336;12906;22205;20110;24623;21918;30129;23479;12729;40219;24952;37350;16423;35909;26635;12524;38764;25108;11146;15412;23651;21191;19984;37246;40869;24032;28644;40475;40061;19201;11014;36502;40799;35354;35753;18763;14967;10619;16606;11062;23438;33912;35613;42198;16406;27555;28404;25947;12964;34217;37052;24964;33173;33444;12559;35317;32478;27077;11784;41167;34905;34760;25439;36666;22576;40401;35065;10582;15678;26629;21892;16262;34237;15810;26362;13452;33873;12694;34314;36592;10483;38263;24168;28068;19407;39976;38080;23759;29831;34910;39174;23706;25799;12520;34013;11608;11622;15899;25659;42235;21852;35057;22404;35921;21700;10810;27870;38268;41746;39981;16073;38152;13424;13043;36148;39376;27808;32144;13059;14079;16358;30333;12986;40450;20151;24498;37741;42397;17569;27110;17570;21085;18866;17012;33808;40270;39332;38517;23703;17219;41751;31591;23946;42219;33390;12248;42370;27426;21051;20015;23095;41420;22236;35614;14828;32211;19213;22825;27366;13382;13030;29691;10047;25750;42040;38522;29952;10771;27755;25461;34741;10892;34069;34249;31955;24756;15644;30366;10811;41061;23579;14173;12534;36206;39392;40430;11524;23318;14874;25863;26030;15767;39570;22890;26491;14102;24622;26492;15116;13288;34294;31372;12892;18527;41189;16025;11110;21853;27621;15721;32725;36484;35004;25336;30369;13593;40850;24542;26732;15369;34127;32388;23769;33163;27655;18374;25800;35564;12453;19393;23894;40463;10545;30237;30114;23792;16221;10506;20193;32730;36719;36316;37991;34495;12887;20942;12050;18365;29250;32885;20144;10581;33807;16036;15893;23126;14422;23762;29583;27495;25748;13185;33780;33386;41446;10156;39921;33594;10546;22017;41223;42188;14137;26690;32889;28609;21369;19532;32194;26691;24992;26692;19495;31580;10790;39436;16730;24380;40473;22659;39042;15377;27585;40896;14006;34951;35772;33187;32788;13137;37432;24439;40840;37815;28614;29739;19944;23963;39480;35647;13321;13869;20564;28128;31802;39047;40102;18011;29956;42070;27522;31745;17996;32793;24613;40771;18369;23227;38404;36426;34239;20262;13719;24280;38635;17571;35841;17572;17573;19158;17011;16488;16487;36438;10729;16486;28694;19521;21034;16485;23015;31010;32208;40737;18234;32101;18826;38409;40735;42243;31819;40609;12479;20315;12369;38792;40457;38639;33292;35846;21823;19746;23501;27948;27778;13714;31015;11448;27725;28699;40572;38585;24940;35043;36197;15380;23871;34347;29134;18797;14865;23918;23872;17439;13664;17440;36056;29126;41358;23321;40589;33297;34110;30766;17304;36151;38590;33529;12201;26591;27713;30209;15038;24533;32218;35199;35565;12434;41706;21688;39753;24247;10443;37444;15111;18150;40537;33891;27768;14007;25758;26020;30282;20323;34801;30771;14989;31604;25481;18547;21212;37667;18401;10648;11318;13323;41711;34361;24794;36094;24476;34630;28517;13219;20313;36184;39071;21807;14932;19184;19267;20614;25820;27818;31872;13213;36247;14990;32142;33730;24811;28522;34635;23251;39340;28479;39076;20039;41862;21035;27835;24212;37739;20675;39737;24490;39420;38686;24034;26045;17032;33018;28333;36269;15138;26963;36865;32275;33945;20498;28269;41867;29695;23716;23717;15768;40984;13303;15094;35160;39742;12321;18949;36521;30194;13352;17229;19939;12851;18114;34109;33023;20028;21922;12877;37976;32280;22950;28552;19878;37215;36546;34192;39603;24993;42171;40484;25789;35165;27884;25756;41042;28817;13027;38123;41036;11412;23737;18157;39849;35957;40604;37269;29593;41250;19744;34026;37312;41193;28557;41613;28150;13279;27406;28830;26656;21510;28822;13328;26426;42310;40741;25432;10805;41492;11336;24743;32604;18360;18838;29708;41087;32489;28857;34035;20438;41393;29746;11276;37822;33458;40879;30667;25859;22964;42381;26970;37746;12236;41540;20235;24124;37696;15204;40554;37928;20409;25392;34134;23529;20601;19972;40360;36065;16197;34522;19792;19375;19003;40308;22064;31461;16602;28363;19440;15196;25635;13611;30726;27243;38905;34778;14677;40206;23354;11827;41797;12458;13415;41718;29892;34527;34483;35030;20389;37910;33627;38929;36011;15861;41333;19240;29200;36589;41802;35076;29897;26478;41723;31485;15562;23458;30641;13634;33405;36635;35285;12095;35493;24000;28955;21058;39773;10830;30958;15795;25959;19443;25762;12443;24786;33220;15594;27949;38249;25234;31490;19840;33757;35827;36338;35765;29648;30395;41218;41948;11921;40187;19382;28957;14385;38888;21647;41436;16475;11106;36134;11914;37608;10769;38254;29846;20822;14720;26624;32049;29653;27235;25153;17448;18056;33902;40761;23083;26052;16618;35373;16617;15378;30066;33555;10458;12455;18567;35026;40936;26921;37407;22084;19013;39229;31189;25801;29916;11598;18307;12584;30575;28011;40186;11706;37566;39002;27294;41634;20394;41077;27935;29581;10294;16386;34324;30185;41313;33166;37752;38655;15685;20289;23718;19363;23719;23720;23721;16216;21898;30580;26864;30864;26865;37574;22712;29887;18326;21565;11616;39315;15692;41267;24463;10295;14822;26450;19421;23879;40135;11235;37338;38981;15477;29659;16067;25010;40620;30868;18491;35780;17366;36676;10297;14265;21219;28381;14318;28751;41418;31034;35657;39700;41536;17173;14248;14114;33496;37181;29664;12113;16243;27744;14203;20616;23233;11095;15591;19842;28752;19102;23483;34257;19881;18168;28722;23856;38688;18721;31603;10984;29993;18271;13487;38945;33493;13064;15021;40928;22102;15844;34507;10471;39452;14226;32488;24685;34328;24011;37784;24555;38668;12961;23535;38195;24666;30048;22150;16836;16835;38925;40707;28683;40837;16154;27923;33093;12353;15605;19031;23910;32520;35377;19825;35817;19826;26562;12002;23245;17480;21957;26815;41574;30838;19707;22193;18634;40503;14818;33152;39283;24776;32525;16178;36085;34596;35408;16601;18163;22239;41224;30596;18494;41000;40133;35123;22238;21981;39137;14671;25717;22967;22717;39288;19659;32091;20277;28125;26479;34601;22386;14070;10993;35929;15812;11203;26455;26009;37291;39509;11923;17682;16890;40915;24329;40243;29832;10008;25345;40146;35709;15736;18757;10636;24184;37278;28501;36268;35022;25154;19222;25351;10152;10640;24541;20694;13326;36961;27410;20600;42185;32821;20482;22313;15250;13374;18553;14627;27514;18801;11160;19907;14243;13730;40606;16384;19812;22284;16123;11671;18556;18831;18981;40056;29063;38327;30086;24893;17449;36351;10046;25037;17450;17451;27648;40253;39802;29385;40017;30885;34965;37463;32168;26312;29143;23851;40808;38332;35803;20276;33525;27296;14217;32690;21753;14526;24813;18645;38695;23411;11724;17318;39971;28896;32577;21177;21331;30890;21661;19893;14856;11870;16284;31437;32827;14451;40937;24929;35474;41600;39252;32926;16933;37575;24142;26349;36953;28901;10695;32580;39990;15232;20626;14383;28234;22118;39529;35891;24772;21011;35904;21493;17154;39257;41421;16830;32931;17631;16829;32750;28585;22126;25804;15726;23643;30253;20910;38920;41906;15610;30754;18796;34375;34484;35896;39801;29074;40661;12916;10806;29477;20946;35512;29026;29232;11013;25312;13481;15576;20636;26845;32755;39788;14227;27482;10121;25522;41401;39692;14900;20793;41911;30759;33367;30984;29079;27918;19199;16313;38115;35517;38545;37353;36474;13659;32215;40099;16892;37324;38445;25329;38366;24220;33429;10639;28233;38063;34826;22927;23427;18591;19225;23964;12335;12456;25270;38550;23512;11443;11446;28000;42391;25448;25559;39909;38371;27720;37858;26047;29084;17481;19982;32106;16782;17482;31237;26419;17073;24379;32403;19988;35061;18754;19767;38946;29685;18500;24092;40687;21998;17452;24286;17453;32316;15857;38017;36934;29089;25023;28716;23897;25557;31242;35747;22358;11593;12450;41331;13367;35462;31195;38743;25064;16044;32338;26913;13705;13308;22794;12898;13344;31150;11610;27230;24644;19582;15076;15820;32852;25479;29149;22562;17664;36038;20269;32351;29588;37433;30478;13676;11970;27545;34263;11045;34419;33743;15152;39203;42325;25416;22285;23585;22261;29315;32857;14868;29154;25339;36628;35602;25379;18753;36754;41284;16282;30672;22208;20137;12717;20226;41565;42087;26281;40154;10934;39325;39208;19484;36712;14736;16052;24724;10517;40295;16141;29733;15387;38859;21028;36705;20419;33744;32235;38098;28839;41825;36081;10904;15584;12808;30164;13376;22360;40344;33516;22762;36842;41556;34499;30184;15091;11650;19191;38109;40843;27434;39576;15316;26255;11535;11258;32462;41830;36079;20443;28740;33344;25689;25421;10107;15381;28135;25976;17183;35667;27392;25163;27178;18151;39864;28242;22403;23722;23723;26389;34346;28744;33349;30117;11426;14895;17275;35293;10173;36593;14408;19467;13375;12788;16535;27498;41633;10358;25543;11586;28527;28409;31173;38696;12396;15592;42115;18938;21542;37143;37760;35279;34464;35356;34913;16125;24869;30615;18851;17147;34016;15392;22978;15483;28413;21614;12363;16428;42311;19417;36627;40340;38271;14504;16968;10783;15744;15564;22235;34918;40038;12234;30620;40819;18189;26427;14308;25132;21363;12585;31687;21123;14345;15042;25221;13409;21676;27438;17535;36537;14803;14484;40047;39948;33355;12843;38276;11048;18604;41549;40432;34508;30336;35425;19868;32117;10014;39805;42036;29438;40934;37530;21500;13088;33360;24565;41759;23046;29856;20082;40801;41975;10940;21468;40770;30340;27894;12966;14931;17276;22347;28274;33081;21653;18147;13126;34151;28036;32539;22734;14309;23128;38530;41764;22323;28213;38451;42021;25284;39918;18017;38086;27303;36299;34924;35186;20013;32040;30427;23901;30371;12951;15030;15328;26060;33796;29417;23189;37128;23217;12784;38535;20778;38282;38456;11111;15972;33426;22467;34929;30432;13723;21152;41489;29743;16521;16133;30374;16889;10011;25260;15103;15797;23617;14426;20836;21755;28905;21347;37379;28126;12311;23378;27599;37449;21651;18351;26787;20380;22750;36594;33900;34767;20020;27174;41965;40648;19390;19042;26262;29487;33597;11931;39778;32461;15700;20590;35796;36378;32892;27140;16718;21174;21641;15580;21131;11838;37209;37966;23304;33745;31959;25719;15697;28245;22980;24164;33854;10719;36563;27627;36448;19741;22023;13934;33602;40959;22408;41635;13855;32897;34640;35349;16111;19233;27035;25814;34183;19781;15552;11696;29763;19518;41524;37151;39050;37523;23562;25004;37479;25468;41145;10964;27117;36137;18539;34971;17685;17339;22761;32796;34700;34645;10897;18441;24749;24545;36663;36957;40019;25873;10645;14410;37714;36362;34158;39055;19797;22957;11038;35868;24173;11086;32801;36423;10391;13222;35786;37437;40663;36481;24574;20981;34702;42322;39879;16680;15759;10553;37135;36893;31180;20464;22905;24108;37978;25906;38166;23234;27745;35756;33607;24746;38417;13682;32903;36831;15145;25790;35854;15059;41514;18376;31022;27464;12626;28702;19690;29466;14242;30960;20657;39333;35732;42352;19302;38422;17401;32908;29767;40425;13962;39550;22321;29704;22282;22182;12714;30774;24944;28705;14177;28223;38598;15364;40258;25119;16252;29755;22777;33579;23342;31820;39411;39595;24547;12590;35666;15322;21515;11004;40175;37211;39928;14580;22855;18833;26472;30779;29532;27023;35320;38603;24004;37946;20953;11136;29465;37834;37448;14534;23701;24800;22913;31037;37891;28095;20036;39079;24665;40231;27613;10523;40276;31082;41893;27922;17483;40644;36583;17484;21963;20255;10092;17634;31879;18803;34351;38053;36972;31137;24275;14486;11194;26596;26420;39615;23249;22277;11251;39084;20742;15847;26597;27573;13000;21971;27812;27530;11479;41870;16174;11833;31884;37826;39745;37223;42217;18555;31051;20391;28482;33026;40293;15766;36586;37558;31948;28562;32283;41875;11301;16888;24038;38609;13900;28270;20565;28271;20838;16887;34543;18933;31621;14134;15517;10515;12654;14128;33030;26788;28978;29823;27991;35989;22052;23780;24962;14290;26320;32288;39634;21629;19056;17136;34021;33003;38289;33155;23928;31304;39486;40018;33271;10447;12885;19657;34338;32649;18636;28983;32607;37781;12703;22068;18896;40605;24580;14411;15031;23514;29914;23405;26496;23979;23925;33506;38294;34309;19634;34544;36130;41137;32654;17402;26008;16484;32612;15660;21320;42128;20935;42041;28862;14796;15962;26755;24425;13039;19727;18861;22340;20084;33083;36331;14631;14219;26992;29543;34086;33239;34094;34549;11245;22405;22889;27340;40698;29745;26906;23665;13506;11802;20400;37599;17126;10974;38032;36226;31976;28239;39449;37272;17125;17124;33750;41807;11600;30245;21410;24820;13287;14322;29434;15074;35201;11298;25212;29368;37865;22111;21434;22851;20575;35032;35725;36776;30734;14910;32178;15625;11577;26616;27813;23392;34535;26982;13258;13407;33635;22662;20571;35494;39577;35421;22379;31422;24703;21533;33446;30739;38134;18501;35333;14545;40000;19083;22643;16365;34208;35588;41731;31493;34539;17361;35914;24586;41591;33640;18929;36463;42170;15837;16994;25589;16993;36007;13198;37927;29570;24318;20643;11787;16189;15840;35318;40435;40168;22200;18405;41736;24628;31498;27176;24251;25459;11182;30401;16722;40064;29176;25514;30598;41396;39370;40656;15696;12575;19289;29795;35103;23506;24204;15463;12591;17597;30704;12320;37127;19861;39818;20153;23553;18782;28771;15509;30406;36346;27531;20370;38737;30602;13449;17666;19188;26563;23880;33492;33403;39875;11366;30708;18335;16781;41435;14802;23340;36409;27343;27394;41647;12824;16032;37833;29458;26598;29585;42013;28298;30583;34243;39959;37308;17330;20969;42133;26100;40033;24832;17628;11909;16264;15023;11324;30448;20068;29944;10902;41527;41269;26226;41025;41652;11639;34974;35116;14791;10910;30588;30870;14475;23921;16886;35695;37009;16885;13432;19182;30042;30522;15262;25533;11140;28384;20705;28272;30450;13450;41190;14621;18421;34418;22046;19186;25755;12604;29667;35121;12817;29445;24551;20998;27865;20966;35302;36800;37580;22142;12865;29562;22402;34683;28099;31334;32508;11287;38725;20164;42328;33140;15852;19319;19635;40671;41469;31797;41967;29672;18217;13317;14653;37670;11335;30296;18983;11118;10066;12346;30204;14608;13508;15954;27061;20628;40086;29901;26203;24919;36854;33927;19798;39983;36813;15762;28686;30354;40082;27376;38110;16185;39980;33194;23534;27257;37157;24830;22292;18381;18278;37914;40844;32467;22945;12023;17123;20509;15224;17122;16591;22100;11863;10431;38928;37387;23105;29517;32528;23112;26900;16060;21699;31772;38847;14015;19057;14956;29483;38777;38187;38482;37545;18956;34279;24214;40410;33131;34876;15641;18393;37570;32533;20209;13924;35962;11917;11490;31311;21668;38012;27435;15298;30846;38487;37138;27143;25452;35328;35131;21495;42256;12497;36977;37268;10888;42098;34881;39144;36369;18392;26303;41690;30060;21517;27673;18988;18588;27072;20817;22011;11295;13186;23985;12931;20055;20624;22388;21101;37773;12402;35136;37582;26142;23627;13106;12802;39149;22513;27082;14266;41695;11728;19870;36761;20774;31851;12313;42006;26126;22345;16305;26220;14314;34468;27030;18050;31791;25675;25164;25370;17313;30241;22771;40888;11178;35202;27551;30068;28441;28506;21277;33443;37591;37288;29761;18014;11835;10345;40565;21322;14110;15988;38335;41235;20016;37529;38921;42045;31764;13959;12834;34806;13052;27215;37447;19453;30893;21720;26825;26946;22683;20397;16600;20325;34975;38340;25342;26178;32695;25420;16668;10258;18094;35432;11436;29599;32583;22481;15373;35301;15051;36555;10389;11228;34753;34719;19169;17302;32700;22713;34953;13251;32934;13440;29977;41122;27904;37508;20678;32588;33813;31395;10820;40746;13750;21142;39309;12124;24143;20726;36591;27513;10906;13069;41249;34992;27967;32939;25601;15978;25307;32170;20595;35813;24225;20456;10626;25665;29481;29753;37862;23361;39812;39012;34998;29082;35566;16715;11060;37283;20045;26236;17286;23975;14826;26090;35520;29027;24242;34201;10111;36688;32761;19531;30362;19886;20447;30807;18945;32056;19640;27902;41366;22411;17278;41919;40941;20655;39017;19397;22786;37995;35856;13903;35525;25957;25084;28091;24297;22436;36890;22698;26404;20382;30222;32765;36798;14151;20046;42317;26999;36392;38374;30812;41056;12240;36357;40236;34776;22735;30180;27444;41027;11861;31049;41924;27102;12623;38348;38018;33509;24908;34783;38558;42301;28653;12870;34758;12325;33059;17218;22867;12681;34317;38379;20355;20475;31415;15464;17110;27480;31245;15288;38614;15214;32122;19159;36249;38353;19016;16679;31198;19500;14563;38827;20621;38563;28655;12120;18400;31628;32359;14373;17465;16374;22660;15072;29096;24315;13236;22947;31250;34407;10701;20584;11677;40863;40065;10390;40667;31202;28907;39795;40350;41163;19283;34478;31076;14220;27280;32392;36833;29101;18105;29318;39363;32859;22062;29157;32206;17360;12934;31916;32041;10405;22666;23628;39881;25114;14152;22125;25431;21760;39211;21761;15729;36928;21762;13223;29323;26702;26703;18846;19966;32864;18719;29162;13349;40861;13020;36232;19682;15402;30678;27798;17349;31921;30489;12371;22444;40222;29773;20381;19394;31273;18734;33774;36340;34135;39214;41625;22520;10185;18621;32193;35555;35025;25251;10197;30681;25694;41833;10720;26018;30493;25809;29199;37590;30657;40041;27929;39707;24826;23874;35176;41953;10651;35177;25438;29015;16439;37676;23725;27488;15321;26528;28960;24112;20342;17619;27425;11006;15834;32245;41838;34265;36732;23444;17303;21104;37270;10342;39712;21621;36373;14841;12381;20488;29020;31958;32963;15418;12089;28961;32136;13499;17370;32250;28530;27565;31418;15445;33809;21976;42075;33450;13049;35427;34417;27062;37496;24426;28797;37674;16070;13172;39985;35655;40493;39851;32968;31358;26947;13270;29601;17677;34148;27907;28533;21803;11489;29193;26789;26790;25355;26791;19399;14719;21100;20102;20284;28801;23965;37059;23855;20967;40822;10129;21820;23160;30151;36078;20115;12104;10994;22570;24713;22174;24351;15240;28427;26395;42343;13282;25261;29406;30627;25646;23107;22749;22827;19241;37723;33909;25240;13183;11154;18492;28212;13240;33952;26513;34323;13477;10400;28916;41395;26465;41447;34289;34198;36643;31684;24698;33791;33957;17109;41383;25624;36029;17407;38744;34229;17292;41767;14670;12419;23280;28920;40925;10778;27593;13466;14742;25194;30343;16978;29962;30146;15866;28110;33577;16678;30039;27684;14728;10402;19027;14972;36511;16677;10350;14283;18623;31777;13683;36286;10937;18203;32547;30137;20812;40390;38538;37359;41772;12219;41952;38459;21936;11073;15073;34932;30435;28009;32008;35340;34722;38647;18842;42303;35283;10871;15268;41039;12597;42320;36498;38181;18195;38543;10593;38196;25535;20581;38464;12545;35925;38219;29205;15274;26027;18561;10507;14435;34858;29622;20782;13626;32358;13115;26063;25337;19920;31145;31401;12553;13090;31717;18602;24661;14343;38224;27761;15362;36350;17604;19749;39800;13831;22649;13441;11531;26245;36193;33785;15399;36289;25673;16031;23153;22290;15283;36330;13354;15414;34290;33868;30550;42315;34648;32389;32390;33130;11644;38027;17683;30261;11972;26641;13233;29828;10482;18922;20709;21105;38919;21106;10592;32804;21107;38798;23173;30555;41133;25066;29855;34653;23269;29454;30034;10485;29591;27036;28064;22363;15060;24699;10913;10418;40953;20240;22374;32809;33193;27431;41478;16332;34410;10664;23155;32735;13727;13490;15658;25678;39532;35645;42132;20725;17182;38996;38966;24160;25813;33884;10886;25585;39933;10357;20215;39298;23691;25193;40183;19949;14235;14094;22592;10894;16767;12896;25857;30102;12126;28215;12997;42237;18880;16766;25791;26571;31520;21633;33905;40602;20745;33096;19098;30968;18282;38767;24273;12861;39476;40403;33928;29587;42335;24268;37704;33835;22783;36476;32444;13075;42088;12258;16248;10548;21994;31216;31525;39519;34481;28710;31425;30973;19307;35634;22474;14189;25883;10659;24480;26756;12241;24890;26514;15613;13649;26515;31310;31221;11705;30230;29535;13151;15806;29538;11020;41896;12855;15859;36974;34821;41123;42187;41622;22922;39780;24775;19012;29984;27747;38778;37617;19599;25676;26106;26167;10068;33548;34715;22123;31526;24835;40507;41901;22915;23127;35002;30974;24002;31887;37856;27475;31452;40926;38157;35243;29979;39854;25609;30881;18427;11540;37547;36146;28627;28485;10991;27395;39092;13006;26453;36983;25346;36906;25363;41059;37998;13513;31531;15996;25162;32485;16037;30979;31892;14974;34390;19954;19671;40557;28488;33033;39097;40944;22044;10528;15753;14758;32291;41883;16179;11690;39637;21273;21617;10584;29790;15313;13369;16217;21222;22307;21953;11305;14207;16402;24339;33037;28986;15275;22881;20454;22523;18836;22635;12073;41335;26382;11599;36794;39642;33010;26609;38297;10861;11166;40528;15037;16658;15843;34189;16076;18667;34345;24970;12932;32981;20977;40759;34084;12439;28252;28991;39930;24227;16084;28375;21884;40098;22695;18766;20973;22539;15423;41172;26945;33015;38302;35974;11915;27978;29039;40472;23527;31942;15151;32661;36053;32986;36571;15398;32620;22787;11465;20722;28868;27448;11108;27378;21838;21724;20922;34557;32666;26272;33611;32625;33043;29978;35761;20489;28871;32552;24060;30121;10038;12796;33833;25714;27674;41815;18989;23914;33150;32410;34562;20929;33616;11851;27179;13874;24453;23984;33687;33048;28121;21801;24888;35947;12215;11710;40299;27080;27602;35306;12302;20286;41820;11693;11243;23145;25032;12045;21420;23598;35355;33865;19379;34541;16206;14548;32042;22583;23061;33643;12481;39664;31106;16990;12745;16989;19774;16988;35686;20603;37852;22524;26467;29717;40853;38954;25922;22335;10104;31064;40481;33648;39669;36142;37700;13507;15420;14971;14552;22183;33364;11550;22175;12280;41300;15985;29326;32220;33280;28173;37045;26516;35663;31506;20487;39954;35996;30903;30409;23362;11770;30605;37001;24937;17237;25853;26757;18274;13710;26256;26257;19894;35625;22168;31397;34482;21296;30711;29331;26466;14747;23795;17346;18176;40868;32225;39826;33436;15297;31511;12091;27631;13584;22316;15928;41262;30908;12689;30610;37022;11922;30165;31465;34119;27029;18958;40722;14714;10044;19384;19076;10327;42145;11891;21980;31614;30716;25817;39831;24652;19278;32092;13531;28149;13643;31159;33654;35940;10631;25545;39291;14685;18204;25616;16652;20965;18600;23538;30453;21150;29998;29851;41659;31956;22547;23246;14737;29366;33659;40795;30595;36228;31576;36757;36283;40619;14710;30527;12712;35766;31456;14393;24284;36027;30456;20481;12118;21183;12495;41664;35274;31156;40232;37147;39180;18987;39987;21520;36183;26127;31691;38029;40931;34226;22610;26140;22129;34428;11457;25867;33828;13700;33829;32515;18184;23493;39443;19626;23193;29680;20210;19631;16711;11354;28201;16924;19675;12368;40902;33983;13138;19261;14610;25956;36410;27646;25471;15987;40985;39008;24855;18003;19002;37430;20329;19853;22148;36321;28002;11204;22565;31469;33988;26442;39365;18982;28729;33365;11866;37307;31403;21008;18155;26576;36194;36980;38034;13385;19627;26329;27370;10029;41121;12357;18927;22135;39450;13821;12385;16249;28469;39913;31474;28390;19902;35236;18800;25807;40411;16320;10313;24854;38490;29179;27890;30848;10078;13913;22428;40623;10130;14556;18123;11623;34884;37697;36301;42212;11655;27372;41181;22998;28392;35826;21889;33472;34182;10114;38495;21868;23372;27459;41537;35139;26594;39152;34889;30149;11410;36727;41698;11797;40319;40459;14743;41567;23750;11022;42262;27913;23283;37953;35092;13116;20305;14871;21648;35144;13571;22921;41084;19151;12883;20733;24681;11502;39157;17638;12551;19019;25264;41703;21842;42231;31981;22176;34348;39326;28509;36499;39618;26552;28443;40177;20537;42228;24083;12039;14661;21210;40980;29770;11292;24125;31090;10421;41157;17273;15657;21007;36104;28084;27501;30286;12116;20053;28514;21534;42176;15415;16515;26338;24348;25661;20125;10039;41018;36235;18876;10227;37982;23929;35816;17107;20029;17106;19831;36822;30287;22620;35011;25972;37766;35348;25435;10305;26885;39435;35575;22879;17289;20477;29912;25938;13620;34100;16651;30321;17551;22806;17552;17553;17554;17555;17556;31969;21734;29890;20006;28931;13108;35823;39418;25263;26044;18279;23499;18654;17618;15248;19938;20023;23025;32708;30326;14832;21074;29197;32942;25507;22516;14159;34447;16028;25338;19376;39353;18390;10454;15355;36993;10025;10995;17997;34456;34804;10788;32713;33882;22966;31690;32639;32947;17036;26704;15230;24304;40248;17976;23905;26705;42083;26706;26707;18222;40743;34794;15471;18450;39020;23366;16440;12308;23915;13031;35563;32767;25003;11124;20558;28592;24567;42029;15546;14605;24577;24741;41927;13304;18474;29233;21832;29702;33935;39025;29836;21741;20069;35864;35533;29033;29544;40465;32771;39496;28597;15351;38719;30818;18695;34354;20369;40201;40446;12452;31556;23416;41932;27776;12675;23311;38356;21553;40284;29613;30991;29575;31954;32169;24935;29996;35537;38566;13780;16514;23073;16513;13174;16512;22127;35360;16511;14100;39904;20518;35256;19927;11751;27524;38387;30096;11708;23952;42147;19573;38619;31253;31561;13838;22934;39625;23511;23214;22036;15256;29724;13338;30993;14397;32164;19422;42205;35670;18904;34218;31205;40091;38571;12571;28225;35704;25954;33071;38392;29104;37298;39974;31258;36072;35829;25304;19639;27236;37938;23180;25973;40786;14715;31210;24630;32298;28662;37315;22850;33076;23865;17165;24086;29109;13101;18036;30229;39884;20852;36542;13252;40066;16714;37013;24705;12537;35344;16090;21818;27419;41356;36786;33524;19539;31177;16259;39217;34608;28294;17301;20165;32872;22990;38062;29170;41229;39984;27525;30276;21717;32105;31377;22042;24591;29495;13429;16607;30496;40358;31928;27883;31281;26258;25771;20697;12800;40979;35060;39222;34613;34172;31327;12612;10704;27728;40574;32877;27052;30088;36613;22845;25281;22033;15314;25904;30688;41841;40845;31933;30499;22080;16945;18944;14417;16944;41575;16943;31286;16942;25006;39715;29309;10412;15475;20827;27058;37018;33713;24999;36810;20554;26996;40101;36444;25265;23186;34352;19229;32253;30693;41846;37527;17557;26733;25441;26734;20056;41160;39423;27814;37548;27539;39720;23546;33718;37328;34262;19135;33889;22892;38199;11087;32971;11401;27334;31349;20791;19025;41184;24416;33244;32258;36118;12305;15619;13744;25544;26062;29364;12535;37303;15822;23141;13518;24306;24437;24344;23388;13918;41011;10602;32976;23229;14184;13469;11425;30095;14172;28845;36323;10678;28537;40686;24942;23898;28842;23876;18999;30505;24358;10264;22656;34960;30664;40316;24412;13241;26708;24205;21857;28804;28430;36829;29183;32379;14970;12012;24706;34713;10490;11620;11626;28541;28421;40540;33540;23131;28827;35418;33438;40906;10655;42385;40058;28806;28435;26297;40873;30633;27893;37577;40794;13650;27879;28214;42299;33469;37795;12098;28426;22369;14977;24677;41371;11774;33960;37648;33077;33748;31178;28923;21660;12874;14764;31600;12676;33489;21108;32437;21674;26826;33400;11646;16667;26827;24530;16666;11647;11557;28103;21109;15229;18990;13036;33965;11488;21388;31608;15326;22577;36375;18997;23974;33683;21604;10508;13606;38843;14245;13105;34256;40046;25422;12470;37916;18854;12339;41780;29838;25886;37990;26365;30940;13178;29381;13410;11007;18208;35058;10854;11093;24299;40134;38153;10898;41785;38472;28791;38227;19024;30945;39993;18658;35441;27250;24014;35351;12437;34866;19474;30382;17130;15863;34386;20918;36127;11171;15532;42316;15966;40174;14589;35055;38477;38232;19126;21508;12863;30639;41040;18596;21207;22674;14374;40368;34871;29631;16254;29732;14800;27363;20776;19556;14370;38940;20625;33863;22264;11930;10425;18691;29268;22276;26944;13961;24569;15860;25591;31788;42099;22483;18250;37482;18619;13987;10311;10728;11542;25330;29267;15293;16397;10606;35982;22083;23909;12975;10912;22732;23906;36734;30559;12281;14481;37366;27569;10075;36998;40876;20393;13665;36272;14306;12673;23443;17142;14568;11471;23704;14002;32815;18534;37108;16759;36836;40055;16758;26230;10613;35424;18913;36844;39604;19455;22716;39770;34693;40078;13887;19021;24116;41966;38747;36062;25594;32820;19550;18858;22560;35291;24973;29443;10957;18589;36509;24513;37787;14091;23208;26213;29811;35693;25864;28666;15386;31460;36868;37123;14921;23525;14120;14269;20623;34099;10125;20505;23656;35327;19530;37392;20467;31224;39973;10653;24137;28670;27267;11484;35633;33538;24388;19041;10393;17115;20241;36013;17114;13167;12031;19962;39560;37586;36234;15496;29522;27706;31229;37163;40690;13057;33937;21110;30232;21111;40462;35991;37968;40610;40442;40120;13782;22447;23484;42190;42024;12669;26290;20387;14579;14428;32087;33494;39118;25528;14250;10709;12472;25248;42246;30171;39267;26506;28631;19542;23089;39100;28939;33218;16911;14583;23571;14022;15611;31539;28238;37101;23531;10534;31900;26366;13055;16987;39123;39271;42016;19980;24976;19824;34584;11083;27817;27309;39105;23031;12420;31413;31861;25475;10784;22572;39790;31544;13673;39645;31299;22988;28066;31905;34388;21311;21421;17228;13147;20842;15650;25382;32081;28569;14945;16027;16575;26224;39650;14049;33268;38305;29042;33942;20351;13827;12044;34024;31945;18484;31748;24456;25310;32989;24133;10976;25512;28999;40806;26625;38212;16135;20299;14872;12750;40090;20802;12860;26407;12704;18862;16760;37460;26437;38310;29047;39756;28171;34723;29760;33304;17031;11037;32668;21344;23708;17434;20538;20734;32994;36617;42136;19475;29004;32627;27157;22426;41438;28874;35019;26278;32555;33368;14891;15615;14060;10360;26493;26279;10427;16501;32368;33424;22972;42119;25160;19759;36446;38090;10079;10116;34565;32673;23050;11854;33690;21423;21774;32632;22838;34291;16955;39524;40974;40611;10123;32560;28879;36407;33157;24974;16131;41129;19457;16299;13211;20093;20531;23794;25298;20495;16286;27016;13054;41677;37565;27928;33951;19633;39236;33695;13255;15057;29313;13825;18102;13549;35936;40292;41682;10896;35549;15784;15468;39241;31665;23683;18680;22067;25643;26430;41066;12557;18608;14192;33508;23503;26856;19935;25091;42131;36240;21342;40851;25931;23132;19889;19364;19961;30787;32066;11832;25058;39676;14092;41531;24843;12506;23262;38071;25593;21861;30742;15012;40266;29334;21087;12440;14493;34362;16413;29415;31514;38428;30911;39681;37082;15425;36172;19711;18012;13701;12493;35013;26040;12588;22676;39834;15180;10072;10815;11585;30916;14369;38849;30421;37557;27479;35798;21448;22772;37603;12970;28832;30724;12395;39839;19028;24391;35795;26093;40785;32062;31769;27534;16910;13362;10812;18434;35590;18022;10126;33662;10251;36567;12919;35918;36205;38769;16941;16940;16473;22484;28240;40875;20321;35938;14148;27612;31053;17251;35171;41667;41080;36180;23393;39182;33666;40699;21966;18726;13162;32837;31143;11300;14852;14390;22911;14459;12672;19860;24814;40510;40711;30462;22768;36699;19104;36342;41672;25206;16574;31809;39187;28131;11793;31979;20506;18044;23355;37313;27038;34140;36940;30535;24070;37323;26195;13603;37902;27175;20376;30467;21841;34432;26099;29784;19208;35358;25887;42043;15339;19389;29683;38833;41602;17145;19367;32116;29252;40913;34757;16371;25166;37883;17435;21910;33991;12352;35556;34212;12405;28732;33324;12560;20841;21339;35672;28075;23917;18448;32171;42061;29684;24051;15130;12969;14082;11536;14453;34062;42097;31645;28145;41529;23736;12230;27668;41979;39564;33996;19179;21745;20666;28736;33329;20863;14080;39575;27453;40681;22981;29254;14402;38835;14083;13746;41090;36872;19720;24215;41114;39371;13232;42302;29806;13640;17985;22314;42293;31481;40323;19227;28635;22257;38498;31642;17620;24825;11247;17210;27604;18354;18917;21444;21947;15461;23252;12279;14724;23729;28399;40164;22250;34065;40329;26024;41593;18088;21387;34724;38503;40103;36158;40847;35731;31605;32059;34897;33278;14683;36387;39427;15266;15665;27242;12383;19414;13134;35152;37405;36019;22032;34901;39165;23135;13112;23196;40829;15964;15439;36702;37102;22971;18717;40490;22682;29936;27400;13421;31448;25551;40797;12720;38899;20009;31991;37017;24844;38259;20525;41738;27288;12742;36517;39170;19960;20333;18673;29701;24495;24957;15771;20211;12711;13013;32033;17388;23390;19305;37887;13561;18490;14566;38508;37094;27692;41742;15279;14178;16765;37994;42183;14251;30331;17511;10379;17512;17513;17514;28451;13999;14170;41947;20401;30191;23552;29932;42249;42277;22541;16909;16908;16907;38513;26507;31451;24866;22196;31828;20975;24615;31062;11723;22550;40269;31753;16096;24612;26806;14225;25679;18758;35931;26807;25060;42004;32126;15284;17650;10103;35442;24785;19121;35743;19190;16754;23268;35419;11592;32716;40032;17663;23833;32642;41442;25896;40279;35316;21561;28935;40415;41958;28069;11439;27201;31737;29988;30067;20874;40419;12254;14766;10688;22720;14368;23154;16088;32721;33123;22433;31643;16573;32646;32311;42130;15590;12749;14735;39902;25674;29754;31315;22679;32058;27221;14200;39028;35085;18349;19630;18350;34098;20357;13024;33592;32774;23839;11351;33485;28600;22763;16261;29530;24418;31104;20233;17099;10021;10457;27485;12316;39033;28207;17632;38050;41558;35540;15597;38204;42339;11389;32779;11002;35388;11256;24598;29499;28605;16416;38621;41043;16434;22311;34503;35545;36005;27915;25903;39991;22619;31984;35248;40756;25574;37553;38395;36088;17593;16519;16518;36337;38626;35832;11884;32834;40374;31325;25997;19270;31001;26231;10306;16383;37234;21386;29248;24364;40823;19356;27905;19947;31661;20282;17581;13583;13187;38400;41306;29112;24410;37661;23900;36755;31842;23198;31266;25209;30041;23793;20035;16079;35837;24457;24399;31006;20134;25034;38576;25124;20980;28174;15427;18816;37044;26857;32016;29117;14472;11302;29693;21438;12764;16246;33103;31271;11029;14704;20723;14776;37941;41291;16871;16753;25318;20533;11729;18302;18947;38581;28162;11316;32135;39394;27246;41150;19977;34999;14056;28775;25740;37065;34616;10734;14811;28620;32880;40328;30278;37521;23396;16129;30762;21075;40631;35697;31144;15024;35698;31936;30701;37383;31289;33377;22654;28777;13927;34621;26933;19908;20925;14744;25536;23239;16665;18001;39062;27388;16664;41057;12217;19249;16560;24230;40380;14334;21162;37924;14061;31866;40383;11737;37701;33721;34064;39375;36746;17689;35468;30181;25990;34306;21850;19113;39067;37380;32306;16906;20301;18849;32261;33879;19715;41854;27689;22667;21381;15730;24852;39728;41038;31139;40739;23883;33726;16115;18109;21856;32330;24130;21464;18323;24647;37975;36160;35412;27772;36219;11707;11237;15975;32266;21461;41858;17102;17101;19471;25282;33407;14010;40793;35685;19581;40787;15588;31835;22199;40870;39733;10736;14701;29186;18823;14547;31462;29429;23185;23281;40803;25736;25847;40111;36668;29204;25354;22894;17389;31950;31148;17390;32457;20159;41408;36547;16392;40014;28063;37973;11200;39445;30512;28544;29376;24282;10975;35156;25238;22434;28327;28809;14768;36932;38999;15046;27938;25939;18467;40531;21036;28850;42387;28548;16562;16561;26570;37236;19231;34680;30517;28261;30154;40830;28813;29455;36888;25823;39970;28358;25324;21589;32597;10127;16029;38132;20021;18612;32481;25208;26280;27901;19185;40076;28035;16977;31975;16976;41096;22841;14667;27283;36322;19136;36020;33369;39399;11373;20809;38883;26547;32070;27996;29526;25388;10113;40348;11267;21275;34219;33973;40356;33837;16653;34513;27964;26309;13709;20559;33374;20561;17174;22888;40820;38958;21939;27377;41070;37911;30010;19778;30717;33978;13471;36671;41788;40705;41211;34518;42388;11441;32366;29705;18314;17622;25075;25933;40163;24838;13286;12721;26858;41403;41793;18196;27512;38235;41111;30953;25074;29425;16458;36908;12102;17594;25713;10497;30388;42348;37133;13203;37758;26583;25022;30251;18137;34236;22473;42201;31699;21416;38240;14239;30957;42114;40347;33208;17072;41374;33896;37692;24678;29639;32143;30855;30310;13762;41016;33827;22362;25293;36494;21810;12387;39497;15596;17987;36806;16662;14090;16661;16660;16659;22254;20459;13269;18908;29644;24885;29723;37418;24502;30313;25250;16134;13577;35906;34028;37672;28085;35726;34060;11359;15707;29341;37139;34292;21721;36242;24986;20582;20933;30567;37340;34662;13260;14570;27197;12212;21921;38904;27688;15892;41012;23402;39775;16818;16300;38035;18853;16986;16985;33245;32823;35451;30571;37971;37394;11662;37662;18902;12653;29555;39469;37237;30823;19171;40339;40197;38790;37889;23055;27727;40337;20795;11995;35192;26978;32828;39927;35059;35042;24025;30141;20707;41072;19654;13048;39853;13904;23266;33203;35673;36718;12842;20097;14436;26974;12914;32361;21155;35420;13908;26775;20104;26776;12376;28749;36633;36399;12618;37012;39495;16757;41268;37396;27676;24867;14810;24710;13493;21559;19090;25102;11820;31142;37516;22380;13148;11613;15489;21370;19269;23744;30000;11236;37142;30827;33881;19919;24056;28675;13505;25269;40890;18085;33892;36482;10177;24931;24873;10155;12536;17994;25302;30832;26355;15310;23360;33883;14664;39126;39274;16331;35070;34587;25246;39108;35068;13095;19519;38101;31546;10756;31754;16380;22099;31908;11984;39131;39279;34704;27364;34592;28494;29262;39113;16412;21159;42158;13558;36261;29844;10299;28572;24067;37690;25611;38079;19054;31551;20710;27520;14379;40342;31913;23564;20772;18404;12991;20676;20605;10761;12355;12423;41289;42192;15093;26068;20519;36793;35454;39491;39658;34209;24536;34952;35872;36535;31057;21345;33307;41424;33893;12362;41996;39006;29007;18848;23257;27592;26064;27944;14646;33421;20664;25787;11360;24837;26577;26179;38318;26202;29055;14830;20405;13370;33312;26034;20285;18827;29012;40622;33897;42094;20087;15119;34954;26243;18571;22824;11752;12061;38323;29059;23838;41480;23491;15906;20431;27075;27549;32681;36692;39346;13943;25113;32912;32638;24467;16717;16716;26942;28887;31996;32568;13123;40324;20367;15290;26808;13431;22703;22109;21571;17477;31957;10499;26809;16817;16816;26810;36649;16815;26811;34576;32686;10048;21440;41116;39244;33703;32917;24447;15754;30056;22706;23415;18915;28892;13212;32573;22442;20784;17298;36068;20258;16143;18872;21933;19884;35882;24784;30156;21079;26074;18878;12671;23379;33318;37164;16260;39248;33708;32741;33184;11309;42386;14658;30790;28581;40708;27583;41221;13591;30745;20804;14953;35887;16188;20522;16895;10561;25825;20539;13982;15923;35503;10110;32343;28908;22599;32746;12304;38750;35310;30795;39683;31598;11734;19038;27268;20319;12820;30750;38952;10158;40556;29070;14121;25142;32440;31190;35508;40354;27054;21954;27135;21436;42093;40544;28913;38436;22549;24071;11290;20991;36489;23549;37005;18428;11843;39688;37806;14660;16589;18057;21759;11625;15329;19770;40062;23556;41014;19705;15271;29689;38969;40445;21715;11444;25478;17141;29308;26620;38441;21027;35073;18214;30924;26923;19403;15156;38362;37357;32082;35557;37831;25077;35350;27715;26939;42156;42221;34246;40002;25413;31719;33085;25415;40816;35404;13853;12490;29958;30929;39367;22069;37926;18024;41586;31836;11349;27142;39977;18111;31714;41605;28369;27719;18728;37855;22216;35684;24134;14057;10374;15973;41675;10856;42051;10280;32151;39190;33673;41334;29834;15554;13501;32843;10181;30538;12510;30469;12826;27858;26399;13331;41256;25515;29883;11125;27223;39195;33678;30930;12570;19783;11332;23991;39766;32848;36359;29145;30543;17205;37854;11762;30474;37093;32406;31373;18119;13905;37080;21274;23045;30935;42220;20635;37351;26840;21161;26380;27875;12397;41645;11127;13878;37182;22955;15671;41246;39472;37015;29206;22769;35734;18480;34827;16975;41616;39405;22574;18723;31346;31352;25991;14521;40777;14483;26291;25400;19166;37965;25519;15982;22477;32233;34004;25928;28737;33335;19515;20300;20472;30050;26526;28472;34009;11750;16812;41236;16811;16337;28738;33190;33340;28643;16218;42337;36295;32430;36092;31823;36310;29192;10426;21205;34283;40674;23282;14806;23022;13454;14650;10513;35020;34669;20648;24088;36256;19994;23224;24019;10489;35409;28648;17647;33855;26288;35447;15521;17607;34904;21463;20366;31430;12902;36845;29876;25818;41357;22107;21764;18859;32331;29707;38871;31616;19708;26777;28407;26778;37033;23688;26779;37607;15257;27335;26780;35941;23394;25772;26781;38262;26782;22737;14727;39468;14267;34909;31751;39173;15688;19341;14067;37190;11886;36372;18646;15432;39296;34012;39458;10151;41045;28165;21955;16211;24444;35014;38267;25738;20814;20268;21195;10743;13919;16497;17508;30332;17509;17510;19282;30072;16588;13954;19325;24535;12087;27601;25988;13783;18779;15518;23447;32360;13403;37173;27645;18921;31116;11403;27743;41750;25841;24926;15825;10932;38907;12933;35649;28144;38762;27205;26588;33583;13341;34437;21975;19170;34399;23597;31612;19624;37782;38521;41755;16457;11786;23144;42355;20270;25767;27623;22535;23430;25860;40514;22348;12523;40112;36064;33366;38526;28301;24953;14917;15614;22937;16706;12641;17498;38447;15622;19141;21987;27499;32724;39549;30368;27832;14807;11942;31793;22858;34487;13733;42163;37275;20428;29420;40697;20332;20683;31184;38848;28027;36926;22566;18395;11163;15431;39964;37461;23927;38692;32729;19052;16346;19769;20957;37002;39381;37869;39382;13401;13770;12255;31111;39897;16865;19658;17347;16864;32884;38742;16105;21872;40052;29906;27124;28339;12391;14960;33593;14450;13795;13760;11864;19036;21270;33916;16138;10349;41590;10045;11137;28608;27542;36171;31660;24853;34297;14085;26694;37507;26695;26696;20234;38151;26697;27954;26698;20073;39041;40307;25072;32202;31707;11741;38091;40037;10277;21951;12679;23509;32787;37451;11138;15410;23201;34636;28613;16855;38980;16854;23207;38163;39046;12670;19316;19934;31294;32038;21360;11357;23513;10662;41154;15902;19866;13907;26639;32792;27505;13404;16465;23626;31407;22312;13556;14075;18263;21282;20521;11841;42033;35840;15189;13751;36611;38634;18599;35242;24961;31009;28231;11918;40724;26322;26323;41461;18170;14087;32447;15805;19543;42172;38408;10763;11607;26204;35585;36208;14418;22209;38638;33291;34093;21682;35845;41024;10705;35224;41610;31014;21805;28698;10600;19914;14574;20031;24478;27007;29133;35825;22177;38413;22022;29125;26633;24765;38908;20310;19990;21613;22178;33296;17466;31171;37932;34672;22179;41534;41008;41285;17128;30765;38589;40239;22859;10024;40009;18035;18171;36478;39752;28779;28028;21834;40070;11889;37336;12390;28070;20576;30281;16117;41261;42142;30770;24194;31431;38594;42120;36300;27848;24431;25831;36113;41710;19328;37343;18790;34629;16675;16674;36894;18781;12606;39070;41417;17232;30284;25008;12336;11657;35193;27021;20645;27559;21692;38910;31871;17127;41715;20449;37931;34272;18038;34714;33729;34634;28521;29496;11493;21338;21808;42254;39075;24041;12686;17383;13389;31089;23099;30014;15796;25180;10914;19160;41861;10036;25053;22929;36114;37654;16310;26048;39736;37290;18638;33734;21824;15278;19764;29825;10383;16464;20728;28480;33017;36869;11393;23010;37245;26490;29552;18855;22006;36493;11947;32274;41866;21163;26537;20741;38772;24833;39400;35159;39741;17639;18180;35745;16369;40872;31667;22782;27285;39515;33022;35945;13356;33379;20492;18840;37930;24602;29859;32279;23056;27422;28303;37802;11855;18924;33277;23561;11456;13363;35164;16068;36471;33214;31074;17171;37054;34104;18756;12066;28974;32600;34329;24455;28556;15036;32015;17030;18563;13066;22969;13557;20673;17118;36014;32043;26652;41168;15497;14144;26653;28821;23013;13305;17490;17491;40188;13779;14001;34985;15077;26087;32603;21247;39611;28856;25470;35466;33788;40867;34123;26187;10085;22982;30666;14897;17984;32344;19795;28001;35683;37657;22689;10827;11594;25660;21151;33441;15281;28169;35203;37915;15920;14992;15895;19523;15466;31744;29712;36385;13983;33180;40223;26914;23958;13809;20186;37154;21473;29747;27125;14050;21965;24553;14040;23543;14539;29863;26911;35627;14492;34813;24528;25695;27352;21488;17134;41796;12881;34137;16646;36850;16645;21973;16644;19806;33852;14861;41717;34526;23517;20344;39567;33626;10321;20507;26502;23473;24294;26225;18416;35444;23924;16570;14963;20543;11041;33534;25430;30730;13472;34153;36600;42149;41801;11596;26553;16127;40439;10519;41722;26783;34531;26784;19073;31484;10543;21887;18740;39882;33631;24208;26785;35492;26786;37406;11558;21022;30858;36641;41342;25325;18847;26033;19153;20808;35221;27359;28326;12726;32118;37477;14757;37884;29350;38248;10853;31489;22999;42079;32333;18260;11274;29647;30394;24864;24519;39397;25978;30861;23495;16058;10367;23547;15792;37515;36326;25112;25937;38916;38253;22822;22492;22505;15570;20000;30645;23662;41290;16194;29652;30397;27486;29590;40780;37779;12300;11777;29470;33423;20429;10362;19517;28263;15058;36597;12350;13350;35335;40917;10973;21118;34500;17564;39228;26589;10586;16075;16376;17315;29270;30574;19353;36318;36818;34668;35324;11828;25381;14303;36324;17992;18841;17167;21190;20511;17579;31973;20970;20318;13084;40615;31720;15544;22306;13675;30579;30863;33415;37160;19575;29893;15203;34420;21619;35401;23203;13639;40680;37458;40754;22364;32130;19211;27088;30244;24503;22077;20546;26170;15487;29658;42379;18860;18130;13182;24018;16553;30867;14065;13942;33445;24880;23767;28380;42194;39699;34698;28718;15731;20541;41238;27586;29663;21419;23335;12018;39898;27436;38708;29607;22987;23002;28335;35640;19535;17168;29515;36982;21816;39704;11803;24172;28721;33101;41631;36155;25469;42208;20095;39585;28678;26085;31625;23322;17164;32133;38724;22320;17082;11205;15478;24522;14034;38180;20711;29895;19097;22714;30135;37465;28248;23931;30835;37776;21544;28134;38653;14927;28682;14405;14490;29258;42347;16398;11779;26172;24696;32519;25657;28462;20580;11363;37888;38069;13892;15056;28933;13142;34708;21846;24202;23773;30177;40760;26016;26029;37913;10419;25394;33947;39282;39430;40881;14665;12619;34986;32524;12822;32416;35546;22823;25341;34404;22893;35965;41106;23770;35122;22828;17348;27999;17672;25093;39136;33913;24024;16569;39287;17253;25555;31316;41204;21931;12992;34600;37367;30004;38060;17995;22385;15903;36708;28315;27700;11348;34251;35127;12125;40027;12696;39140;23100;39533;22776;40625;19200;23421;34605;12337;27956;27696;13794;21990;37861;38652;34706;21268;24006;10844;24556;20185;40141;41989;13761;24856;25666;29595;11428;25128;14914;33933;40904;17238;27194;33119;38068;19476;38326;29062;19043;20777;36731;11528;29022;16919;36978;16918;18912;16917;21052;10138;19801;16916;15503;17200;26621;40406;34818;29473;30884;19670;37658;29142;19442;29507;27605;38331;29067;21736;10142;11732;12965;21138;11561;13523;42103;20815;19243;32299;32689;14825;15265;36759;23149;40095;22278;28895;17973;32576;22188;38165;30889;15126;27959;17577;21193;26199;21197;34092;26876;41210;15849;24334;11319;14112;32925;28951;11736;28900;32579;40763;21576;33919;35219;38927;24620;23260;32449;11514;28020;27087;24093;26348;14281;35890;24714;24016;12979;16748;40781;16747;36470;39388;35628;24140;39256;32930;23369;32749;26336;10511;35807;30797;20458;20176;36553;32188;38861;17333;37166;15681;30753;29799;35895;34311;41295;20923;29073;23363;19139;35511;12894;23399;39261;15052;42244;32754;18996;21905;30801;16183;39691;26578;35986;27483;10609;36588;41910;32029;26342;23677;26343;30758;37959;17398;17399;29078;20421;23840;34797;35396;35516;32999;19340;26014;38713;39425;32214;10727;17081;38444;32181;20184;34440;38365;30126;39696;25009;34124;41915;36534;30988;37040;19561;14464;38549;10768;13774;39972;14337;34734;28296;38370;37937;26527;29083;35624;10677;38862;12295;18361;18436;36717;31236;16808;13567;16807;23279;12333;23782;38554;22968;32431;10303;40634;13985;39894;26595;26972;14326;25948;24387;14013;23779;29088;35212;36436;39844;37775;28715;31241;23590;35074;21117;18863;11294;31194;36985;19509;29195;17336;37567;14500;28216;25457;35620;18973;10491;27037;20349;32851;29148;34425;17221;31087;13630;15553;27921;35755;13546;20787;36689;24042;14194;41410;11636;37870;33160;28766;21341;39202;24319;36573;21557;25376;35298;12441;25056;16870;32856;38039;15679;29153;40280;34936;15827;39003;28049;14039;11031;38799;30671;24366;30073;37655;30482;25116;10968;29791;37792;28146;11816;25930;18402;22082;32307;13483;21849;22510;39207;12448;38040;40792;18223;39943;35091;37838;36339;26548;37199;24381;13806;26153;29444;41824;15981;20940;30485;15741;14282;23693;26393;16672;31831;20523;21959;36930;18891;21127;21587;11208;27368;31682;15735;34080;38727;41999;35437;17211;40838;19314;36345;33266;33202;21025;22715;22000;24481;14948;32238;41829;37551;36241;28739;33343;11492;14003;26904;32439;14388;24493;22542;37762;24035;33188;12668;22515;12034;16149;33159;35963;42110;40370;41023;34204;27784;18510;20761;37780;13880;13678;28743;28650;33348;22880;14043;13755;21303;27367;34368;36867;21949;27589;18780;32959;12760;29260;38184;16745;36976;11469;16744;40860;26452;28526;11941;22503;26724;35677;39439;22361;21428;25426;19648;25273;27385;40932;17648;41337;27433;28795;33761;37754;17310;15029;35385;34912;30614;14851;28345;34015;39935;19605;40749;41158;33376;28412;36883;12921;21368;20187;34250;20681;38270;40039;26662;11327;39967;34917;42326;23205;21132;30619;22862;14117;37176;13680;14224;27714;11506;25418;12635;24501;13102;12805;14333;35951;28034;32028;33354;38178;26699;38275;17263;21763;19332;18305;22621;40807;15912;42319;18920;19924;24361;35599;11615;14609;11099;34802;20469;19594;23445;20183;33359;18940;34385;32337;13474;18018;41758;40059;33167;27867;38085;32100;30339;27319;21220;10781;15014;35598;34509;38831;37225;12218;25105;27656;26417;27878;19666;38529;21642;10132;41763;13444;37456;18678;38450;25405;22072;34923;30426;18021;22853;16239;10987;39373;23791;11998;34944;13693;23709;14936;33811;26196;18825;40677;19205;22351;13773;41177;38534;36696;38281;24397;38455;39393;42001;21417;34928;30431;26998;26458;35109;40306;19874;15543;18843;30373;16220;40122;30257;33240;39386;28904;15525;19469;36396;38712;13312;38286;14059;35230;20618;26928;11185;24711;36520;20837;26114;17096;11612;17095;33246;20064;36533;37386;17190;12411;16858;24642;15586;27880;40355;16103;10925;29462;25279;36801;25089;25423;22938;21067;17074;23572;24316;14938;30051;27608;40811;33601;22143;16670;42101;18054;10170;32896;34639;25268;25610;34147;33183;13215;34063;11508;22895;39049;42344;13888;32115;14907;36023;16546;38673;17421;12743;16545;32007;20214;33606;21125;11367;32795;18043;27838;32901;34644;23115;21698;27026;39538;35665;21429;39054;10785;34073;37798;41364;35738;26069;31170;35713;35571;37954;17079;32800;17668;10124;24219;15332;36871;15761;34401;11565;18610;17999;39457;14511;31017;19257;11265;14101;39434;33587;20767;41354;38416;32902;24941;41019;40725;14843;20261;35853;42356;25940;22701;19775;22705;22718;31021;25553;30959;20882;22325;32005;12793;16863;16862;37725;17374;42037;17375;25171;29817;21532;33851;38421;10577;22753;15241;32907;39408;34502;38185;22711;40555;16460;40189;16213;13858;30773;19830;20750;36125;28704;39413;38597;36984;19124;35069;33105;19883;38052;37180;24429;31404;37115;34677;18126;12224;41060;39842;21652;15382;13366;26700;38711;40762;41244;25322;15428;36814;23142;15800;29227;30778;33233;12232;35062;38760;38602;36473;35001;37434;27658;37727;20642;36265;27015;12827;32334;38944;20753;39078;18639;34820;31360;41892;14733;25707;26952;34764;19490;31878;36514;34969;37814;29566;34089;16805;40678;13520;30031;20783;39083;33395;28148;19264;15473;39915;17087;18083;24094;19583;18227;35762;18372;19187;36570;29460;31883;40051;39744;31398;26289;14403;15043;25682;16333;24882;41044;33025;24484;15699;26105;18969;24091;37403;21972;37035;29188;31366;15698;14146;32282;41874;27595;17316;18415;38608;39316;26079;20876;21364;26131;26132;41486;23616;31695;16287;13579;29365;29222;34542;14926;10919;36679;38936;19678;33029;30167;28977;27239;18353;30058;32287;17094;41879;17093;19598;13621;19625;38613;32201;22353;36659;12795;25692;13953;20145;20555;38288;38802;13462;41467;28982;11233;34452;17624;21512;36191;25754;21603;32417;13829;40499;10378;12798;14509;25375;29710;31364;38293;37404;11063;24610;12757;34269;32653;13849;26154;32611;26155;17338;34282;12075;36619;26360;24618;26747;18897;26748;29284;26749;10895;38197;26750;40204;17295;34548;32658;29343;35170;17654;32616;20532;20960;10194;24726;37514;19410;12922;17078;36115;17077;36736;20659;29426;25768;35952;28364;24604;34553;27942;21044;13320;25078;32346;41973;38785;14753;23455;29514;14958;22595;30733;17260;15337;13390;15067;13711;11272;34534;25097;14218;38643;29295;21090;33634;30198;19663;10498;18802;37316;11117;24611;12884;27795;33840;13552;30738;20024;40200;15814;39621;16861;35336;34477;34364;40156;33908;39975;41730;40455;34538;42283;25174;24442;10188;34444;16097;33639;35498;23623;36101;14247;18499;23436;12579;20627;12561;35056;15918;26663;23113;38836;13249;27441;35179;38256;41735;31497;42034;36394;29202;30647;36895;24804;29175;10439;22423;30400;18098;22343;35288;21371;26015;41938;12876;19520;17603;30703;10794;11255;39817;19498;11853;31502;18482;28770;23403;30899;30405;33389;24619;19554;35706;41113;35804;37038;40209;37647;37584;30707;29190;23202;19649;12408;13426;33867;11573;12554;35674;24135;35410;12301;21326;24015;34285;39861;29494;37820;39307;16228;21768;30582;14597;23133;16291;13799;27926;22410;36380;30020;34743;26993;39873;41651;15444;15573;30064;13819;35115;13092;27147;30587;28237;18511;13353;37216;37410;27953;16004;30521;25669;27735;35268;22354;31307;34771;28383;19133;37462;12093;36530;18383;37519;29498;11878;24905;28235;14412;29666;35120;12203;27855;30873;28004;10409;37008;30293;28386;21237;36924;34973;15505;24253;26284;37614;16437;36347;29671;40579;26285;13004;19093;30875;10816;30295;22810;29299;27754;28031;21099;41097;42324;28756;10838;19765;37233;19485;32511;28724;19872;22420;16139;40963;18889;40427;24839;26889;30353;25622;19592;28758;11450;12915;36630;33862;28689;30357;24751;42082;15287;20032;37630;20361;13976;19620;13706;25880;18275;28464;10988;24951;25706;25785;12685;39966;41411;11711;22584;31391;30843;40966;21645;16303;38481;30219;28691;23028;29271;23258;16224;22781;36294;11975;34875;36960;16316;31832;20427;27547;14389;33817;19737;31994;16366;32532;13735;13574;20634;31724;15492;36968;35357;39331;28937;25255;38486;27153;29274;40563;23702;35130;18509;23486;11238;32411;34880;39143;25537;41689;18951;29464;13535;14234;39475;33549;21612;22108;13298;13010;36715;35135;36965;22914;20649;33237;30361;23253;39148;34244;31393;14340;40866;32400;13975;26381;41694;29967;17592;15755;29848;19416;11435;17017;19318;12511;21229;40721;18792;41517;13294;24891;34939;26344;29690;25539;19062;11388;42400;40919;28505;31988;16240;22171;11522;20408;25109;26296;35108;31146;40562;11145;19754;40525;31341;30081;16237;11011;20455;27986;40125;27750;14097;35383;26649;25765;21601;30892;41452;30210;35689;24946;25144;27339;29456;38339;36210;18174;25923;32694;34308;14557;13870;10080;37673;14873;29805;17279;32582;19299;21041;41552;18708;11983;38344;40092;10733;18046;31656;27753;39771;32699;37334;20379;41495;16929;10536;12736;16928;20398;32933;38751;28953;30220;32587;28365;14033;10292;27572;12119;18403;37810;21260;26182;33182;36117;25231;32339;28127;33802;24354;23460;19306;34750;32938;39517;16038;26907;38837;18887;28589;11008;36711;20926;40568;22747;36703;20030;11887;39011;29081;27196;41176;25257;27470;33002;29904;33561;34125;10282;12565;30806;41462;13930;14415;27685;41918;39016;33200;16208;24413;36077;35855;35524;22943;29029;12123;25046;24755;26751;25253;34811;19406;26752;41382;16954;31086;16953;16795;30811;25578;16794;16793;34102;16792;22754;26569;34716;36797;40520;41923;25446;42056;38347;21451;27095;20597;35860;41508;35529;35390;38557;33058;22803;30211;10965;35297;29237;38378;21540;38951;22697;37221;19838;18228;37419;23042;23106;31244;15551;24537;18031;13632;34211;13689;38352;41501;14820;22154;33792;23698;38659;31197;38562;23902;19534;28654;32146;33063;39535;20189;40202;32463;32047;38383;25705;24546;33434;29589;13194;40034;29095;42312;31249;39599;34141;20217;14712;24081;12048;31201;25018;28906;17590;14833;11505;15389;35250;29100;29348;29317;11738;32858;28178;29156;28168;37058;40069;34710;24516;23681;10031;14702;21048;39210;29322;14978;26429;27724;32863;29161;14777;34372;26605;23019;30677;20091;40290;18918;17080;30488;31920;11919;18770;31272;27287;13993;12924;16451;27640;19642;11675;21782;38033;13756;18385;17326;11760;21573;19174;19839;31736;40943;36214;24718;41832;31924;30492;36574;22315;27206;21128;30656;29741;41092;31277;25734;37912;23887;15430;37459;39706;20298;16746;17487;36629;27374;14898;13585;36612;13511;23539;36091;37168;21240;32244;24633;36897;15324;41837;25412;21084;26370;26324;12941;31785;39711;37821;22155;36515;12605;29019;37393;17137;23457;23765;32962;40130;17670;30022;32249;35211;16162;16071;14787;13765;11804;37986;33848;26017;32967;11386;40740;33414;15181;12406;11611;42207;40227;12755;27182;12912;14416;33263;12372;16391;27008;36841;14601;26523;21582;36058;28800;36059;37113;20169;34398;14145;34831;35181;33949;20699;11758;24523;10184;21804;12651;24579;15166;31646;15277;25278;33528;26104;37864;27622;28802;10395;14959;30626;36329;21821;22615;26084;25501;29352;27985;40461;27476;18523;28419;14514;18047;33362;20516;27396;12582;41093;24154;23489;28915;10308;20622;23602;24151;19897;27982;18443;31427;13840;12065;41491;12952;13789;41237;22014;12426;21454;10202;36875;19796;33956;11107;17076;14180;20651;41766;17075;22048;11597;38074;28919;21049;18919;39765;24471;23577;36483;13716;34972;13581;40654;32546;12581;28051;23092;20730;31830;38537;24189;41771;40755;40387;38458;34744;40391;34344;42157;30347;31182;29714;21293;37562;28157;25642;39516;37906;21271;15711;23005;25621;18417;29874;38542;22318;40637;12399;18097;38463;21530;38218;29820;20727;17223;37204;14516;42014;29764;34857;29621;30379;25769;22819;37028;21794;25170;12042;29850;27687;35225;26664;23682;35194;16353;20552;11920;24327;39962;28167;29782;38223;14997;34791;22646;26445;28372;10004;29476;10204;34862;30381;26606;36624;34836;37842;24428;33270;40029;24559;39777;28249;32197;18337;11105;27810;18813;31999;41058;11590;19999;19236;11692;15049;25333;34730;11480;30549;34647;13383;21706;35375;14427;21314;36408;30260;18893;17488;40551;17489;40730;15205;11277;38913;12334;42179;40288;12568;23313;33098;30554;14208;26113;34652;19933;28262;37026;20832;26158;13565;38113;15252;22848;27274;34295;26325;32352;14518;42338;23357;29226;20630;40852;29610;14798;41950;39958;21767;32808;25076;27666;10798;28076;27864;32734;28098;11338;34765;15456;20033;24634;16927;12601;19892;42306;39916;18317;10172;31109;23158;13371;29388;31306;28046;28137;32811;28033;25087;17970;16832;16831;32739;26795;35422;27790;36453;26796;26797;22049;11609;31519;24659;28706;17092;22233;23018;13524;30967;15480;39302;37370;41523;13067;26439;11230;15565;18744;32060;10191;18979;41460;10809;29888;14781;31524;28709;21770;22387;12678;17651;30972;33800;28665;24570;42063;14647;25033;18019;21446;32147;22359;27972;31220;13459;32297;14512;38998;23446;31463;14955;13266;23956;26032;30231;25697;15235;37137;27090;35105;22840;40511;11632;39406;10762;23472;41900;17583;38140;13416;31846;14540;22743;31886;32502;22195;37573;24561;12880;18039;22507;20171;27773;39936;14396;31421;28206;18786;14739;28484;16640;39091;20864;24991;19392;11218;18531;15818;40635;31530;41905;40241;22392;13739;30978;36903;31891;27379;37963;40714;29910;23108;41307;35241;11924;31041;20425;28629;28487;38823;36169;39096;19525;12541;10200;31816;39459;31535;41882;12756;39636;18622;13195;13292;30983;32420;14882;18804;31158;20939;20608;27584;28170;41980;33036;39953;28985;12341;23653;26665;13412;22920;25648;39641;20853;34964;24934;33009;23857;38296;29036;16699;12064;21030;16828;27192;31445;11874;32980;24526;27460;33041;28990;14944;38988;35088;27829;10187;18329;24733;12475;38689;33850;33014;15169;38301;24947;16410;29038;38070;19281;31941;19419;21306;12468;23524;35578;40203;32985;26097;25623;32619;37851;15690;14546;40927;10325;32381;40211;29798;22540;32464;20100;40898;27452;11583;38879;22860;42403;34556;26602;32665;15856;36122;33610;22288;40172;26421;16700;32624;33408;33042;28870;32887;12825;32551;10601;25137;28087;41814;13128;15722;14413;34561;10346;15633;29821;35930;33615;33136;35400;14104;30186;29563;33047;20714;27191;11372;19125;34439;19427;14395;16255;22792;16926;14860;18479;41819;22153;40543;36879;10207;19293;34540;40744;26410;13359;33642;41094;36550;22639;15779;39663;39762;18686;37007;37541;36060;14713;25797;27397;40542;29229;27588;11221;10196;11370;41389;35101;30698;36768;11532;32475;21814;35036;13277;19522;21006;28903;27248;33647;16676;39668;41560;36631;11954;27988;35081;21567;32219;25090;11822;18643;13121;10166;31505;34234;31449;18572;30649;39807;11839;30902;30408;41165;16419;30604;37761;10867;13265;36291;40453;33099;25780;16572;42284;16571;29330;32224;24321;39825;36827;18205;16443;25664;22391;34117;21297;15028;10472;31510;38865;30650;11015;30907;31627;30413;13423;31586;30609;36328;35213;20897;27432;29277;41550;12682;28829;30715;33435;37882;36604;15131;39830;21194;26877;25229;15686;20577;33653;27722;13988;19215;12984;19330;39290;38917;24136;22502;11423;30720;34075;33559;30214;18006;26080;39478;16147;11199;37076;41658;27109;14025;21896;29400;15746;38641;25362;31369;33658;13847;37053;10051;31423;42253;30594;19969;31575;36979;20252;12101;30526;24054;25465;15718;24582;30215;29718;30455;15004;18124;10961;22395;14479;41663;24817;20994;38661;32319;39179;25488;30878;36230;30531;20995;15006;28229;23382;20578;12478;30460;32514;26122;10247;26123;29679;25987;22904;24499;30880;31798;13832;27466;30302;36070;26003;11715;33982;24906;11819;24898;11836;22138;19513;29681;20833;29709;12318;38057;40173;10529;16215;22837;15809;13414;15604;40336;14515;25999;19377;29951;33987;31368;31468;18099;41532;11429;32129;29729;28728;36748;39547;10603;18741;22249;38740;36196;26206;36760;34409;42139;24370;21133;28247;31124;24263;24123;12359;15251;39552;41030;42361;38177;33174;14386;14982;31473;14461;21602;24010;12829;28468;11317;20674;22736;26238;30847;27071;38489;36429;25493;34215;20668;15566;10597;34883;13061;38105;20054;37594;19669;40583;35681;23566;28471;28391;25303;40595;30852;38494;24288;19127;13491;35138;30254;37000;20411;10359;37027;34888;39151;26798;29440;36061;22246;37908;41697;26799;41992;41031;19505;33420;19589;37895;35374;39345;29409;28396;15910;14347;15437;21262;25656;25085;10590;33247;34850;27811;35143;11056;11003;18107;31637;39156;19329;23657;31716;41702;15720;27869;19085;10916;40180;13990;42048;28508;10935;14537;25986;37900;26551;21149;33162;20259;19347;30119;20260;31672;15379;23731;41576;42109;20679;16952;36766;16951;38720;19664;28513;25474;10422;21773;35750;22774;28280;30273;26086;14489;36386;23159;18193;27497;13228;40431;28092;18631;20248;26984;27000;19298;20442;24176;35911;11472;40127;26675;17504;34438;36152;21148;18051;17505;17506;11263;27611;35238;13060;18671;29815;24764;30320;26353;35739;13189;31814;40016;22430;39596;27950;25761;23195;30143;22951;12700;12957;32470;31072;25247;27291;16902;41466;24102;16901;20872;27186;13161;14019;32192;41255;11308;29405;36787;32707;33380;30325;28300;34033;15765;39751;18198;24127;19545;37835;35326;40689;10320;32131;16441;18081;27582;39934;35916;18545;34213;14454;14147;33234;42175;30043;15097;39513;15835;13028;32712;27057;22266;14875;17280;27247;32946;18439;29399;41991;21592;15237;35452;21848;12858;23680;14446;31414;34846;24328;22600;39511;15447;19562;39019;29940;34941;23435;38922;32951;32766;34180;35749;27677;16370;28093;25396;30814;16203;41620;28591;17983;29955;12085;30197;25407;25683;41926;13405;39024;39906;14507;42366;10274;35863;35532;38914;26092;29032;12719;17993;15391;13484;19821;26650;15842;30124;32203;37391;32770;25352;25960;25752;18235;35393;35416;32425;26951;30168;28596;22095;30817;34122;15706;22514;14616;20670;41228;31673;31555;27834;41931;38355;26371;30990;25905;34357;34088;23480;35536;38565;22304;15758;27322;37977;20407;28258;38386;12693;33142;27797;38618;31560;31725;19411;32458;39624;29800;25510;26902;18410;36519;23850;38570;37533;23878;15185;28660;16063;30224;14823;33070;34105;15957;17420;42155;38391;29103;11670;10654;31257;35828;38801;34691;32121;34752;20501;22054;21059;32401;31209;13745;33125;28661;23118;33075;37300;27805;16112;25645;27428;19441;18493;24878;29108;22281;35035;18272;16455;19621;18008;31262;39422;27664;13645;19730;24997;10686;11167;29218;35805;11019;21677;31214;41340;33253;25759;23036;13724;10796;36451;21743;37734;19710;20731;40208;34607;12235;11790;39945;36770;35660;32871;17045;17043;36440;30275;17042;17041;29169;17040;24589;17039;15855;17660;23981;31927;30495;26477;40818;35099;31280;24257;23353;22765;39221;41955;34612;26208;19844;19601;35206;32876;28297;38127;22486;24058;12846;28843;33497;30687;29779;31932;30498;34369;16098;27128;27263;27321;30662;35341;31285;16826;16825;31459;27561;19333;39714;13017;33712;25910;39226;21920;34423;13616;12529;29789;22419;15529;29927;36901;12244;37253;18733;31324;32252;19871;22687;18925;33398;30692;37106;24403;15416;13712;41845;23751;42066;13628;23449;32315;25088;32051;21349;21525;33517;41200;17212;39719;29999;18650;32080;33717;40748;12317;32970;36397;17643;36580;10644;19858;13519;25425;25608;32257;35010;41850;41513;22397;25735;37071;36284;11939;23462;21460;11747;11907;35284;37520;40645;32975;10698;36716;31761;19044;28965;15747;13290;21167;13019;25361;28536;20101;33399;12607;17268;37556;30504;13263;24420;14316;18125;30442;16136;28803;11546;28429;29182;37622;22488;19070;20534;20247;37772;14840;12476;18548;21081;26222;26848;12982;28848;33212;40729;28420;35669;40108;25782;24860;19128;35299;17208;10953;12938;25703;30509;23599;23982;16962;10514;28434;41156;36988;21160;24684;36823;23961;39809;35205;30632;29414;28277;15068;27228;16172;24834;20206;19974;28425;36276;19923;10067;14494;20242;24512;41570;13047;15124;41626;21295;21683;42281;30637;34982;42273;18784;20865;16620;20335;16619;35325;35214;24828;21046;19239;29300;28287;33964;36120;10259;41426;25199;38776;14847;15654;28927;35950;10120;33682;12791;20253;27362;39924;26990;24848;36536;33158;24779;11660;36163;41126;33969;42197;34842;41779;35724;37165;15233;25437;15491;27373;15242;35209;15568;34126;35482;21906;37605;11553;24190;27823;14590;10180;30015;34355;31295;41784;19431;20395;27049;12856;28790;38226;38471;30944;30638;40986;38662;34865;35485;35618;15682;13497;16673;18530;20334;41444;25866;38476;31796;40267;38231;41581;14044;17416;30949;40257;17417;34962;12566;19706;29511;28105;34870;29630;30385;23685;36008;27063;20907;24671;20686;36222;31750;41428;18262;10717;16735;26764;26765;14636;29231;23496;22248;16102;11028;25436;11141;37778;29635;23317;26406;41048;15174;29337;30557;40218;11871;41144;10747;25546;12690;22133;29615;38911;19120;41105;21466;36141;21952;42160;11667;40217;26098;39362;27598;14748;31047;15140;18806;36398;23464;18093;24788;24144;34310;30558;36826;34660;37943;29954;41961;42164;30100;31680;40836;23583;30265;14681;13989;22897;18264;27105;36947;16853;16852;15258;34504;37267;41134;32814;24167;33924;31115;37322;11568;29431;18672;23306;37715;13250;39438;17616;16780;16779;14648;16777;16080;27184;16776;20011;16775;16774;16773;41476;24903;14903;10073;41140;11694;10979;29948;11507;37729;29794;12040;42252;32819;16207;37309;17196;29786;18138;41483;22112;29922;12872;36259;36009;15153;21359;15211;18811;39582;28745;22727;26969;21837;32138;19580;11847;14420;14695;26922;13564;42062;14726;40587;26183;33940;41990;21317;18832;22104;18526;21780;18408;15922;12444;37705;35398;31223;12288;38172;19118;27642;13132;40642;36123;31128;15405;23687;15269;31402;15400;24796;35789;28017;10223;10754;15304;35477;31228;34448;26651;10946;23789;25063;21811;23003;21094;19435;18188;19082;14054;36167;26273;32413;21737;26603;39905;11225;29943;36966;31662;35480;31030;10467;19846;40532;33490;41360;14127;19351;12995;14883;39117;12293;24657;11834;39266;19809;24805;23999;15372;27325;39099;14221;29983;14038;11513;31538;41946;28037;16843;14241;26038;18108;23287;24415;14894;31899;24337;39122;16010;19551;15122;40035;25961;40001;39270;19216;34844;35976;10849;34583;40911;28491;39104;17010;17009;39917;17008;15202;17007;28566;39888;36618;31543;22742;22424;34259;27083;23986;28457;21605;42236;26340;31904;27305;24078;38962;22203;27739;20026;16671;23300;25115;32428;37634;10799;18322;38026;16459;18218;35729;12014;38209;28568;27064;20562;23439;10652;27065;29929;18095;39649;37259;25619;23091;21681;18324;27238;31944;33205;30084;26519;10685;26520;35742;35434;32988;25249;26766;28998;26767;31147;26768;26769;38211;20436;37736;14313;11702;23711;39654;25968;27275;12954;21513;14749;38309;11574;29046;33303;10757;40285;32667;29896;35932;40494;32993;18828;20823;37918;24950;29003;24314;39925;28873;32554;24674;23200;21196;13928;11981;21401;29051;25677;38314;39760;35978;13387;34564;18791;32672;38924;21071;15794;33560;33689;39895;32631;29448;26354;28878;32559;10839;23550;39860;27408;36486;36045;24341;10262;39416;41676;34568;23943;40145;33623;27526;39235;33694;16772;33055;42027;29597;15143;20633;15687;14911;31953;18252;33430;38822;13997;41619;12449;42229;39357;15086;15239;33753;24274;40753;41681;20340;21169;26960;15793;39240;18576;13554;16167;24105;25658;13899;22839;34956;10428;20672;29430;12763;23063;33775;29265;40961;16688;40252;34106;16687;22952;33887;12998;16997;38657;41568;24734;23735;12777;27403;25052;30741;29333;39997;11559;31513;15991;14754;38427;10009;42126;30910;35612;13749;39680;21471;16066;38992;10918;15348;34834;29810;10881;30069;19740;24627;38055;28346;31602;36188;25963;39794;39833;14814;15639;12354;31726;10456;40426;38644;38432;33483;19292;30915;24037;30420;35608;36431;23798;25205;14698;33737;28230;42046;23913;20120;39471;30723;33836;12923;22413;27159;29391;29305;39838;23125;38049;22924;22529;19301;15520;30178;32021;20873;36885;37425;23453;12029;15176;31578;13329;13666;27469;35403;28836;35740;34685;25576;20224;19077;22908;14106;21654;41666;40260;22461;39588;29238;26636;22949;21121;11098;22462;12948;41381;27741;22300;16394;42148;14896;12004;14633;33254;18867;30533;11057;24360;25057;38028;16992;15945;39542;26089;16404;18760;24050;41671;20116;11614;24571;28061;22283;39186;33669;22631;14312;37847;39004;19882;11379;10683;34241;27846;10646;26162;30466;12656;20474;16915;25862;27111;21385;16914;24440;26770;26771;22655;20245;22799;35277;39429;33491;23655;23995;35008;19369;11152;20308;38701;17365;12403;11595;36416;20821;22739;39610;29752;33990;32090;11997;12555;33547;33323;28292;10394;34143;32445;15977;40880;34299;12052;12492;40907;39488;30308;12412;33995;29361;34786;22784;12227;28735;33328;27760;18641;20704;40539;40460;30091;19017;25877;10266;42329;12595;34159;42065;33114;12482;32322;19069;11320;29467;31480;27381;11177;10960;20410;39306;18258;16400;39312;31033;34349;17179;25159;15495;12246;17371;17329;40422;34138;13818;20585;17224;38502;30193;18961;26107;19973;36790;34993;30062;31394;34896;15701;41987;25440;21017;20801;33230;26849;17600;39859;28403;11814;41399;22800;37920;11278;35151;11447;31321;37081;20844;27188;18829;34900;39164;40581;13915;17587;36200;35635;13834;34957;16567;26299;12776;35661;20743;15980;42300;35184;39313;31663;11606;29594;38258;14682;39303;41737;31827;39169;19294;21711;27107;23111;26376;33433;29945;40506;42270;41321;20646;11688;22333;19065;26181;37921;24739;25888;38507;41741;27091;11330;40700;20181;33578;17396;42003;13777;17397;14301;11892;40363;28450;27387;20208;11072;20362;41085;38512;24987;15907;40989;19971;38112;16367;34729;24308;21624;14076;40832;34746;42026;24988;16234;30144;25953;25671;40789;11297;16471;42404;35178;29354;39548;25101;20314;16912;10118;41233;26800;14673;30032;11974;40798;23697;21756;39574;26801;26802;26803;10479;15343;32715;39389;30330;18145;37526;13613;31787;41062;32641;14149;21913;25743;23356;10406;30138;37767;24139;31105;28370;37130;21400;13003;40552;13596;24626;29500;34097;10249;32720;40436;27952;32954;32645;28454;33746;13001;17146;20703;24398;15506;21037;27481;28054;18452;14280;31193;40026;31085;38047;29889;32022;10860;38731;33591;15363;10323;28599;38704;27101;16778;17231;36126;39032;18224;35539;36033;19461;40897;17133;12467;24682;33918;32778;18004;16631;35052;17507;28604;40060;41101;11164;21310;41067;13932;34095;37988;11845;39037;13386;22372;34336;26433;35226;34796;35544;26150;34170;19869;38690;32783;19087;12358;15234;13192;37414;36138;38394;27181;31860;19786;37638;32139;38130;38625;35831;31568;26305;39632;12809;14929;31000;40375;28692;20993;40378;33219;39808;21093;33787;38399;25584;13131;26909;25902;12447;37034;23565;31265;35836;38630;31571;16713;15159;13671;35773;19046;31005;24349;13788;38575;20803;20513;34699;20799;10958;16292;39793;20747;29561;18748;22965;29116;36010;31270;26451;39870;37014;14834;11888;33425;29946;15200;22170;38580;13332;10386;36021;40893;11064;16399;24402;20829;28774;38885;40067;30802;29121;22554;20430;21789;39437;36840;32879;18674;32034;36532;25225;29283;27417;14284;25014;37287;15015;13694;38961;21777;27721;16355;11362;17184;31935;41571;16256;31288;15905;31588;12782;38786;23689;20928;15472;31399;14176;34620;24884;24918;30128;17198;35263;40115;40437;23990;38901;28475;39061;39358;28328;16991;23275;31940;17207;18249;31059;37311;17119;34356;20166;33720;34359;40384;15865;10239;35240;34625;27807;26241;22013;12927;16930;27447;10857;20328;39066;10438;38093;35012;26037;11139;13210;12734;39761;26558;10307;36508;11516;41853;40443;15790;39727;38824;18772;14577;17991;33725;40965;39605;11039;26128;13461;37084;11226;13686;36785;39886;32265;12207;25729;24496;41988;36204;42167;15455;29872;39732;36096;25760;34281;29185;33459;29491;17454;24241;17455;34841;31742;15165;15612;16429;12100;17344;31163;42216;12428;36834;32270;13651;28543;33770;21188;11331;35616;20139;41251;27490;35155;12893;13747;25727;23465;28808;36367;26954;11207;35641;30109;11279;32592;41329;21568;40655;27208;28547;25129;21583;27647;30516;39923;39563;27018;34038;11809;12446;36949;21938;42196;28812;24821;20930;37524;34374;21408;20353;16894;16893;32596;35551;14973;28853;23277;37686;25372;20602;17050;32342;14008;10972;16396;29913;19489;40597;34823;27199;31326;13763;25332;11284;19896;27998;38186;18670;17201;13791;31982;42085;18291;27519;30206;19242;17264;33972;15147;10675;41317;35696;24787;27133;21586;38065;22506;25233;34512;36922;22449;12908;42053;35607;15833;38721;28840;12771;21558;26306;16165;15589;31081;33977;29210;36673;19560;25211;41787;37840;19210;14784;34517;30110;34416;10950;21230;35576;38200;21827;37604;18676;12687;39539;20453;41792;23147;19486;25599;11181;27576;30952;37632;41049;24487;30387;19564;23920;21944;21486;15054;22887;37830;40553;36306;20162;33574;21462;19885;26581;29412;15163;22525;22986;38239;36298;13980;13792;30956;29989;27607;31815;22973;29638;19827;23188;42134;42266;30309;27092;35794;22796;41234;33834;10324;20003;38244;20825;38092;12725;34779;29643;11123;26274;18976;23381;37702;34678;22271;25476;14639;21927;24283;40627;20122;19465;29618;41606;40008;30266;11229;36714;37207;23012;32020;37169;35754;35809;14300;13958;23937;34473;30566;15830;30076;38114;24552;38880;38121;34661;17362;20001;22719;18240;30269;19088;22843;24307;41316;20740;28347;23926;16556;14296;39521;16555;39855;34853;41627;40294;32822;29930;30570;18199;34666;20638;35282;16851;17473;29578;23834;29493;27487;36216;31302;24224;13199;34220;23648;29880;30822;14399;23215;40100;22567;40087;16771;23610;23221;23686;25720;25745;27084;37536;13448;36739;11486;21572;37277;35364;40512;13902;34149;17188;30317;20070;24563;17195;14886;14674;29698;35196;29774;38649;37158;27471;27979;30104;14899;28117;18704;12435;36956;29221;22409;36999;19602;21606;28673;34313;18370;20130;35573;27166;23084;27957;23586;24246;20879;13430;10496;39899;30826;14966;34255;41282;34397;40577;29612;35548;41400;11765;19181;34036;35774;28183;20800;18089;40612;35231;30082;37466;30831;10372;10933;27350;22652;23291;24162;17089;28074;15350;20010;39125;18053;27882;14505;13801;38076;23960;11422;39273;39887;18869;39622;29830;28633;34586;13841;33404;35271;14741;26964;14578;33393;29869;31545;33276;29878;10144;14985;13021;27669;15819;14088;39318;18298;31907;21406;18067;14688;39130;20818;25900;23226;39278;24560;10920;41155;36685;22057;34591;39112;23440;14603;28943;23555;22495;41103;28571;37796;32321;31550;22869;28460;11992;10807;26934;31912;31668;10157;16288;21184;10432;34245;28078;22398;25718;11445;28498;16996;25387;25122;12315;20992;25433;28575;23575;37411;12959;28177;21328;39657;41138;27251;32345;14522;35871;36404;13608;25054;31363;18153;39914;40849;25456;29006;10162;15647;12329;24043;22458;27262;26959;23591;30018;22664;39662;33264;19613;24371;15465;38809;40662;22119;12046;22699;35876;38317;29054;16615;18142;33311;35924;10040;25049;29011;17156;14216;38718;11658;20689;24411;25197;33582;22459;38322;12401;21792;26067;33316;38870;16326;32680;25700;13939;39355;27493;25305;15221;34981;18156;28886;25964;32567;18238;12327;31060;19131;41243;29138;24728;15442;34673;26637;18905;16849;12491;10392;41684;34575;32685;19148;12761;39243;33702;40691;12697;38994;23481;29726;32916;15636;22593;32450;28891;17409;32572;34233;41368;29605;36548;27399;17284;17088;26091;35881;38937;20540;23468;24601;22114;23057;33317;32326;27286;28208;36352;33707;32921;32740;19144;37381;30789;39609;28580;35961;10620;13787;32418;36356;30744;32397;15990;33151;35886;32183;33146;33322;18864;10099;18348;16814;21213;21543;41215;16813;18357;32745;26630;27836;13681;12451;30794;14536;10141;24170;21830;13553;26043;41601;12547;22984;14470;30749;21445;15599;38812;35445;16268;29069;15669;42259;27796;15976;42102;11742;21908;35507;22832;24171;20948;20371;28912;38435;40805;23649;37238;28361;39687;24153;36862;39952;18177;20870;25989;34843;35443;20191;14575;34727;27276;18286;41509;22273;12920;32468;15934;38440;26392;19965;24368;27229;15500;30923;20079;22899;38361;19230;36771;32348;35594;22232;35562;10930;25155;20238;18355;29818;27357;35814;41445;19354;14409;24930;13568;15936;32435;24514;39327;11783;16108;37675;19615;30928;28761;13748;19344;37708;40104;38707;11794;37070;40742;21563;18185;15952;25151;36251;18160;12030;34978;24766;15756;22755;16053;40313;33672;37203;23070;37347;12538;36116;41642;11897;32842;22098;26612;28199;16599;23563;38666;33898;16995;23475;35589;30468;12269;32010;22269;33260;27390;36751;11369;25865;11059;21073;21983;39194;33677;27851;32847;36728;18584;33575;30542;22223;37682;18569;33410;30473;27518;37258;37241;11458;31296;12718;27389;21124;33178;23384;21437;15255;15828;30934;39199;24578;21667;21545;36669;16128;40999;30546;39995;13836;32231;26377;29375;20336;36605;25941;16614;39446;16613;14850;28786;30939;29531;10012;24352;36244;23114;19688;40522;34788;41308;34003;37552;15772;12925;15959;33334;24040;25071;35000;22604;12812;36032;14292;34737;28357;35646;24761;21628;38081;34830;28008;24386;19722;24460;25846;24608;25562;26056;34008;42105;10752;40335;17474;26816;16848;28642;32312;26817;26818;33339;26819;30134;38056;14996;17236;42107;32103;19168;19811;31610;35802;31405;27639;23595;26200;22681;41353;14759;17353;17131;41022;11085;24915;36579;19277;34333;24977;28647;19910;36929;15734;39868;22865;31971;21153;15637;24008;34903;18536;37685;13772;15208;16979;21870;27355;30085;12935;23573;41220;14387;22628;28406;21615;38038;15411;24729;31026;15775;26163;35748;13882;25779;12636;38261;38073;37492;33149;34908;14708;39172;40633;41982;37228;39295;36737;31757;12344;11144;21608;36950;13594;41589;38266;30227;31977;14890;14821;15559;23213;26924;39177;34240;24752;16280;11776;14438;25130;18529;38011;21985;29286;20718;14691;40310;10547;21956;11673;24730;23500;39896;32442;41749;21029;21238;19916;40224;35568;11201;26961;38732;19262;30188;12549;32045;15631;34970;41225;18454;28102;10309;14081;18505;13033;23758;29802;41441;36332;38520;38642;14718;25485;28007;41754;23218;10353;37646;10340;25427;14496;20549;15225;34130;37958;18551;38021;17256;38525;24313;37788;26930;22213;37493;42049;27691;12112;33566;30367;33422;14987;38968;35934;10097;22330;27552;14975;36543;21482;37483;35461;35690;19571;17412;26300;33084;15433;26171;27764;10399;14497;32728;12400;14108;35708;24068;20346;19768;14089;10401;11234;12496;38203;24562;22121;25708;20288;15769;26532;13592;17425;23034;35703;10611;18560;42340;40196;31579;34300;27544;24985;31773;14434;32426;39040;40992;16721;26330;35715;21744;27671;38131;21091;13865;14558;23521;26078;32786;12487;22214;28612;16411;40731;15453;40903;35609;40238;20619;20773;18129;35220;33242;17633;20416;39045;25965;21172;34200;11562;21723;21554;35471;31100;33078;12365;13521;32791;37476;39342;15538;28617;20954;40300;21719;19983;38633;15577;25393;26021;35016;13500;31008;21529;24009;24089;25061;32073;19697;37402;36735;26412;19202;26341;16087;36935;15507;38407;29957;42096;29898;22190;12733;33290;36701;21712;35844;12786;14812;20924;23400;10077;27888;13529;21038;31013;41437;28697;12532;20420;13910;40225;15983;10671;29471;38939;29132;35392;22594;38412;41404;10929;29124;23420;33295;35849;22263;39846;29568;16269;29437;41161;30764;20218;16017;12574;38588;37222;38067;21581;21726;29801;27254;24557;29129;25503;21882;39324;15448;24897;24053;35939;37183;30769;25649;10503;26941;21115;38593;12882;31634;39314;40420;35584;40856;24590;18152;34030;19075;19742;41709;26282;36253;27657;21942;34628;22463;27780;21492;24847;13046;15535;39069;30283;25821;34789;29217;31870;41714;37664;28152;28520;40245;13569;34633;27667;30239;33752;39311;28478;17121;39441;17120;39074;17645;27523;34773;11701;15148;27474;41860;21541;40695;23962;18429;31875;36391;27195;10942;39735;26903;10721;33733;22498;40044;26232;19272;26233;10885;29884;21925;25005;37104;20721;32273;14014;41865;39344;19176;24740;15960;29340;26866;12790;27258;26867;37957;39740;11027;14530;36545;20107;10638;18935;33021;26347;36124;38096;36942;25725;32278;26301;20131;16054;19538;36552;14848;13502;12810;31416;10261;10288;35163;11898;37719;22294;41519;22497;18161;28973;32599;27014;26228;20141;28555;27600;17177;26378;18606;35168;30161;26533;36243;28820;12312;34489;16161;40291;14629;24373;25547;18379;25550;29976;11642;18824;27106;20004;11396;24159;41535;30665;26331;15965;14257;19547;33397;27580;41511;22092;32119;21135;12463;23674;25647;17611;36892;23933;20249;10966;15550;19646;23916;35347;33363;42138;37866;34988;15146;10478;26054;41277;34790;37797;26926;38075;33122;34055;36675;12092;20861;40022;35581;26482;35246;36248;26483;10486;39501;26484;28042;15845;34284;39580;18566;30786;39462;33514;21334;36333;25792;27737;29472;40747;34525;12823;39804;37446;21537;41406;30029;33625;41468;20976;20860;18461;22517;14391;37235;30729;34118;36468;30036;21136;30148;41800;15318;35777;42141;33479;12489;35719;18325;37569;31483;34530;41721;18794;26631;10986;20847;33630;35491;30045;22508;30046;36682;30047;31848;27581;25000;29721;29928;30127;37305;24911;18362;41804;11754;22093;38247;12199;23033;41726;19209;31488;35174;30642;33739;18635;22332;29646;24055;34408;30393;34264;30860;13225;32052;27852;33735;25943;38656;14778;20322;10071;37506;35329;14731;38252;10376;18076;18358;12229;20583;30644;10115;18453;29651;16086;14078;25191;37641;28959;31987;39341;22790;38699;13368;15272;23699;13184;36870;21860;11355;24933;31336;22638;15338;39227;14769;20359;39540;10163;18339;16150;30573;15917;42389;13897;28136;30037;31731;11999;21202;35927;25753;24883;33455;41296;25921;41135;39232;19219;18730;18447;30578;33258;34829;15971;37372;35994;29215;36775;14775;27129;38816;14672;11672;37445;29657;38167;42413;13504;15215;37653;17166;12433;36726;15958;10666;10368;12471;28379;38765;12737;15027;38141;13805;14491;39698;38206;14528;27401;26139;35265;31951;37314;27424;25615;29662;23609;27312;24691;14448;11560;11119;12779;39703;34378;13158;21269;35346;26657;28677;14998;17220;34051;20785;34431;31688;10863;27003;11544;33545;21432;40949;15608;41159;25530;18071;28461;13325;36849;41258;41020;28723;20620;22468;35307;35067;24028;39908;20114;31740;18487;28681;17596;26931;15961;14404;16877;16876;34950;31382;23907;18215;24346;23288;20526;13638;32518;36781;10007;34087;19800;36036;28932;39390;34377;21893;10927;19196;26820;26821;24824;20086;18267;12298;28355;16180;17585;26440;10570;32523;34459;41378;25879;34079;27630;14041;14571;16315;22836;27911;39135;41026;26103;42050;39286;34824;16304;10460;31042;31443;21995;29356;34599;29306;28947;14017;11253;35007;40416;35222;34202;28071;19245;36609;22613;15512;35126;15582;42162;27710;15603;37499;10365;39139;40524;41108;16050;37152;36388;41685;36621;29392;21817;34266;14634;33793;28500;34604;23223;40478;35558;11799;32354;21286;36925;29264;15742;27134;35727;21062;18795;22161;21082;14032;31435;13734;14686;34717;18798;35216;22454;22149;24971;20796;26957;35363;33580;35675;14930;23442;36035;21354;40121;33541;16204;36447;27635;11402;36852;36920;35204;38325;29061;13802;27535;36677;37125;33801;25554;33826;14808;11700;30883;19214;18886;29141;20156;38330;29066;31457;36319;25568;29024;38116;14878;32688;27511;39479;21078;41520;38892;34506;24782;28949;20752;35440;28894;32575;30888;41179;36838;41050;18582;29144;25408;13842;17233;21751;25723;37624;12888;10050;32924;15932;26868;28950;33535;26869;10702;26870;28899;26871;32578;26872;36250;15175;26873;26874;36292;15545;39354;25766;12094;13041;26476;33526;36131;37753;18146;39255;16210;12862;23502;32929;14371;32018;18486;24244;10206;18446;36202;13180;14752;34315;37956;17018;19695;33758;35894;29072;16881;35510;36211;13188;23122;39260;21504;32753;13881;15393;24972;31594;14617;30800;18082;14406;41640;11323;19689;41909;18881;30757;35899;29077;18629;27762;23345;32998;36955;39361;23785;35515;17463;37206;32213;26242;32758;38443;41596;30803;38364;39695;35426;13208;15901;10061;39507;36187;11209;28022;16258;11659;39520;41914;37601;30987;20081;11070;20949;16875;38548;16874;22162;19771;24118;31762;32486;25138;38369;40452;23692;17204;31235;16508;35992;26564;14643;26565;24803;26822;26823;19473;14361;31838;23989;24155;38553;18216;19280;41562;36695;29480;40010;19405;29087;28714;27295;22818;31240;20592;32104;30248;36454;34238;38189;29688;24072;14531;13181;25276;16564;16563;22344;22854;29092;11257;38895;30150;12526;15723;36413;23749;29147;32850;38932;39779;23604;13042;24287;24301;22622;14870;27564;12878;18133;39201;22113;15739;16971;22201;32855;26263;15748;28310;29152;34179;14836;10018;31365;20154;23936;12239;10731;37652;30481;20061;26264;12868;36645;29871;15121;40599;39590;33552;39206;36745;12593;29297;37208;39597;21843;35717;12409;23783;30089;10023;27847;13086;13453;30675;41823;24692;10215;36186;19687;26893;26894;12084;39874;20008;33192;18169;29293;35397;37497;13652;41402;12993;41336;25618;40311;38041;13442;42365;36157;19198;18132;36213;40136;18700;42323;41828;28282;17176;12665;34146;29854;12483;33521;14077;33342;27825;25185;10270;29390;11503;39526;22079;13245;30065;38818;21731;13175;32240;21869;19279;12521;28742;37571;33347;35352;29369;21455;30202;41052;30063;27532;26875;16005;35771;37156;20354;17249;26536;14445;32958;33401;19066;33126;14020;14668;24461;28525;27990;22383;12910;11483;13677;41372;22494;38876;17667;10891;35402;21844;28794;37302;24001;11654;37252;31314;14961;11868;16001;17248;35606;23787;30200;37868;21710;16810;19945;16809;20445;17378;17379;28411;20476;16151;36973;14622;28081;20317;23385;35926;34916;27939;14380;30618;42042;15089;20931;40564;29582;19444;42307;22063;34326;22158;26444;33353;41362;10449;20878;38274;34687;18273;40409;22001;23038;34921;19576;15738;30622;25348;41188;10589;15132;37042;27815;27017;12025;33932;20435;21909;33358;26116;27516;38279;14598;19162;41757;22564;30338;23068;37443;25747;19502;17609;27917;22731;17641;35664;20947;34248;42199;13846;36804;17588;22884;18517;15943;38528;29968;41762;18598;36995;38449;38198;14885;34922;30425;38716;29349;32294;30370;15938;40909;18368;32542;15674;14596;38533;38280;11383;23348;12457;21730;38454;35087;14863;11341;13495;24234;34927;30430;15390;41053;21235;26129;26130;13400;42213;21165;33844;40259;23451;22756;38285;11074;36097;36919;11264;28356;40394;15307;29282;18064;19918;14517;16824;27240;31766;13860;34160;21757;12853;15301;16823;18140;16822;31038;15802;29835;34851;30009;20348;40905;34712;39001;36282;32402;22531;24653;17307;20746;21704;40165;33475;20267;13742;18506;12657;14460;33600;13830;34638;32895;21551;31629;31400;21552;11805;37318;16537;37352;37989;16536;27633;15070;41095;36742;39048;24603;14957;19286;12256;25742;37561;24966;40220;33605;32794;30205;29214;19480;22443;32900;11222;34643;12438;15989;28190;22500;27449;42295;31681;13598;39053;27096;18557;40638;41453;35365;37873;32799;31804;33917;39308;11047;23241;33016;21459;35587;10539;15470;19412;38201;28139;19681;11271;14213;22189;14679;12937;22801;27791;26148;25869;18239;32123;38415;40040;24539;36411;38950;26585;31119;13460;35852;12944;23790;28073;33563;19004;25711;31020;28701;21531;29814;24433;16019;13012;33880;24605;24395;12650;37907;11409;40159;41646;38420;30033;38855;32906;25070;37751;36185;20059;31024;40660;29985;38596;31379;26846;30963;28663;21901;29557;23953;21858;33431;31084;18229;32911;11001;19636;24913;19662;21003;30777;15291;38601;11511;21970;24293;20698;15595;10136;37292;38016;11009;25007;34132;14452;18052;25730;36311;16418;30782;27255;27717;29541;18565;39395;35429;21453;22861;19001;25484;31877;31697;12762;37955;14947;31617;37804;12746;25453;24107;22532;40624;41051;38810;22815;14249;20198;39082;20402;40054;34193;33447;42260;10444;14444;10883;32325;18570;38001;40693;31882;42177;12831;40899;40938;15623;11451;35808;35280;37087;35824;33024;32350;39087;11730;24954;18221;36103;18332;24322;11169;12943;32281;41873;39461;38607;40049;40596;23162;18162;42309;31075;18528;13909;18617;20739;21221;40929;41270;30252;37609;33028;17599;28976;27831;25472;15173;32286;41878;24558;38612;19987;18206;24576;17317;38287;38931;36341;40464;24436;33465;40608;14474;21226;21656;26265;13884;20225;23634;34131;28981;34071;26901;21484;35458;42314;18449;24640;23788;37711;19845;11417;33006;38292;41034;41367;32652;11346;15462;15668;32610;28141;28861;29527;37801;25011;18269;18459;42354;24020;28250;37470;35554;25374;34547;37540;32657;24049;21290;13977;37363;32615;11191;28865;27749;14920;35232;20807;23071;30669;18885;29413;14762;19728;34552;11523;38698;19755;18769;21499;40923;34816;10629;31419;15161;10682;33859;22427;25044;22422;24886;41889;16414;41810;42241;23094;26673;37072;25244;30732;19446;21122;13274;31132;40848;34533;28781;16003;26025;39789;23337;39414;33633;19258;42012;18628;14469;30737;12558;41355;22378;40834;24737;41729;25808;16806;14329;14154;12580;35501;23950;33638;11147;35497;24096;11761;25517;24138;21394;18906;14037;24889;19322;26658;26915;26659;24916;26143;15799;16442;15984;38255;41734;31496;18359;25980;30646;29174;11411;30399;18104;23096;40855;24763;17021;16407;11091;38728;23310;13434;28348;30702;41983;33512;18815;39816;12658;37210;12345;31501;23578;30898;30404;22901;30601;10143;12364;27103;14186;28324;39852;30706;16362;39821;28267;10990;19887;26642;33463;20758;16445;30292;10938;37455;22708;19822;24062;10633;29924;40775;31703;21411;23058;23166;39401;30447;41544;31117;41650;40518;17105;17104;17103;36830;25496;35114;12599;20173;30586;21239;37304;21086;35369;30520;20862;40892;13171;22094;15426;39791;13343;25020;30449;14888;31817;19680;35295;23551;41655;31035;25148;31036;10453;35119;38148;21678;17320;30591;37934;30872;27698;11128;22455;21509;21657;18352;20484;10016;21658;34258;28385;13715;26409;36539;20724;18336;42018;22545;29525;35983;27644;27261;29670;13072;28306;40505;15733;28966;11905;11936;11996;11649;30294;11148;27202;21772;25294;11328;35303;37192;26081;33128;32510;19071;37025;26396;37619;11699;41488;29303;19644;12967;37217;25639;29675;19146;25204;41554;16634;39347;20243;15113;35623;29766;16377;34949;35779;33382;28757;34838;25220;35903;13804;24469;28726;37789;13109;10371;38207;26735;26736;15139;10465;16554;23536;14125;40653;26955;34768;29423;38024;13655;14372;24362;42401;28388;40006;17113;30842;21261;38480;28690;27311;34874;18752;25811;13707;16361;18950;20693;25357;24538;29793;32355;18789;32531;23567;32477;28466;13133;37901;34979;15050;11896;30845;26350;38485;40024;11075;13230;35129;38793;21064;27320;14478;25889;39142;34879;28164;24827;41414;41688;40825;23333;32536;40469;29463;13433;36569;30074;17605;22811;20150;31670;35134;15026;37213;30360;12663;12939;39147;16012;14716;33147;19758;29757;20450;15969;41693;22504;15212;22556;23364;35901;13291;29586;29490;32030;18818;25492;39473;34705;24998;26383;23611;33452;18820;10022;31066;38978;28504;21350;37585;34129;33371;34815;34293;33145;36779;40097;26227;13136;13098;19326;13743;13627;31759;22021;35944;26095;10192;40119;25966;23077;13113;12384;24333;40277;19609;36795;30891;10504;29302;14824;12198;13533;25994;35596;15133;27536;37750;38136;38338;25172;21140;15069;31989;20312;11669;38887;38135;29750;32408;25256;11756;11567;18481;27766;18040;17100;42292;40488;29269;30896;27213;13696;23170;27837;41265;12202;24272;15184;38343;23211;14604;17322;18857;40317;13822;34221;32698;29189;26176;25178;34261;32932;28952;42245;32586;34987;31065;31409;31839;25712;27868;33841;32703;23330;32937;19434;21694;26792;28185;37021;18121;31467;32590;39883;10245;21912;18759;15294;12748;39010;32053;42224;37423;20999;23129;33001;15345;12609;35286;31322;32760;37716;25631;28340;30805;29484;10759;11385;24270;14307;41917;36740;18112;37732;39015;16140;34935;35523;21365;40418;33550;21690;25525;40738;32764;30365;15150;33484;22334;26517;40772;30011;23847;30810;28590;34224;36944;18309;14844;33925;26259;13076;21055;17567;41922;38346;24777;41245;15063;13967;35859;35528;38556;27527;16298;19237;39470;26101;15816;12765;38377;27723;24483;31821;40271;31243;10730;38351;34762;39979;13355;16368;31196;38561;29235;33062;20979;23768;38646;38738;36459;38382;29094;25884;15782;29609;35692;40085;28371;31248;32079;34958;26049;21327;25258;22842;19300;18034;13813;41041;37114;23646;28658;16559;16558;16557;25641;20129;10146;15168;29099;24156;37481;13190;14532;24448;37371;28039;23406;10557;41443;20213;12780;12974;30699;20596;29355;13032;12206;31970;34322;26668;35775;12051;39209;25259;12005;31850;25680;21638;11867;29321;36153;22700;29559;32862;24549;29160;41028;25793;18743;16015;34828;20374;31919;30487;20375;26709;39968;28198;12900;35054;27650;37161;10415;35332;33210;40240;23998;22244;23515;28166;29446;23895;32867;29822;14035;29165;37572;27327;13543;30680;41831;11248;31923;30491;15207;30655;22352;35200;31276;29797;39705;16051;18106;40181;38158;37193;40646;17293;32074;32243;21630;30683;41836;26367;34474;21979;38977;38915;41037;30660;38817;39710;22766;40973;29018;32961;34461;17197;22597;19651;14046;36764;14968;32248;40214;24965;41539;36182;40476;30087;37004;34133;37660;12260;42251;42358;32966;15999;41065;33453;24572;37212;24609;11890;39510;38089;15815;24030;42285;34682;19059;38846;28799;36581;19130;15848;12783;25744;22578;42127;34274;28534;28416;24770;10098;22255;15449;40361;22466;19600;40682;34068;19998;30625;29524;18489;21145;25210;21924;32498;10971;34403;14382;40694;24722;15931;24063;12699;33361;38872;19993;28143;11656;11468;22061;28914;27146;30630;34054;23316;38956;11067;14942;17206;22075;26260;18342;32006;18343;11859;37694;14693;10538;41474;28077;18135;27503;21672;33955;34074;41515;31789;25480;20941;18785;12583;10989;23860;28918;40701;15309;35049;21204;27293;20295;10475;27615;11170;14064;12249;25668;32545;31381;24330;24959;10870;41770;18507;32304;18611;42178;30346;29294;40392;26351;26216;23065;25509;33199;25832;31685;12038;37981;10903;30152;14626;33570;25482;11432;25816;38541;14533;41775;17157;37242;19072;38462;38217;15469;23344;15601;40272;10488;14789;23679;23992;34856;26166;29620;14862;16804;30378;16803;35006;16802;26198;22669;20471;20895;36681;12310;17135;42233;10804;38467;24110;38222;13947;34754;34861;29625;25890;15044;23146;10510;14831;14618;12577;10926;13532;22045;14141;40454;39000;13360;11785;36102;26221;18139;37174;20237;27256;34415;41563;25349;21655;12035;40591;23150;18868;25830;24969;33771;36559;41287;41293;41311;31054;30548;29749;40541;24446;13168;14465;21246;36441;40412;37793;33226;13600;29803;30259;19591;41209;13516;20899;21313;17980;37717;12278;38003;42118;25570;30553;37656;10369;23544;34651;26185;40584;42289;28100;23613;10089;27553;28354;36290;11310;20956;26019;39572;17029;21112;35095;40709;23471;21113;33568;35465;26368;27494;30263;19676;19951;40796;27958;26120;40157;40942;22041;27652;25523;37136;40198;13427;32807;24052;22820;18993;13984;21476;34656;16913;32733;14175;24632;28304;42214;14495;41349;36472;37310;34940;38048;26072;11285;32145;41310;19343;21096;24909;41487;34227;32154;32155;32156;16094;36236;32157;22817;40884;32158;17342;12516;19096;33185;32446;32738;35746;21040;20178;21337;20331;20613;25055;37349;27138;16192;37999;26521;14819;31518;26522;19226;26109;30966;39301;29809;22131;31342;13110;36450;19114;36653;22603;27457;23463;36948;13856;36557;10466;24232;25181;13396;21739;11350;23530;27252;23492;29216;31523;16199;28708;17151;30971;27788;36363;24003;19409;21443;31088;20792;29909;33153;35190;35305;22684;13226;19195;25028;37126;12661;35579;31219;37576;26518;32296;41962;17568;24515;42280;27313;36802;25502;35093;24409;39996;20274;12962;10826;25200;20769;18522;12522;25871;23284;21279;19420;26006;35475;14156;13656;34406;24269;19197;13698;15764;33265;12517;41899;41118;38807;20383;13065;10435;37763;13273;13379;23120;20470;11231;29569;36467;14398;40719;25819;13757;39090;40466;15000;27358;40251;31529;41502;41904;13163;23835;20978;30977;31715;31890;18562;12427;21391;36758;23047;22393;39426;42017;23615;27742;27137;38095;23476;39095;39797;34091;42090;38971;41881;35960;31534;27756;39635;17429;10186;19782;30195;30982;35187;39366;29453;31895;19009;27751;15715;22940;25313;28490;25907;11993;39955;34360;37257;40766;35998;19546;16253;41886;21483;24504;16274;30240;39640;13718;33008;13736;38295;20422;19297;32979;33040;31824;13498;27241;28989;34688;40126;21680;24261;12068;24978;25732;15374;20290;33137;37663;38926;19968;26580;27976;26186;29608;33013;40864;25663;30166;29037;17614;13475;38300;26397;21173;31126;27402;29441;32660;32984;28994;32618;36277;21776;35254;28867;36986;31615;38168;29720;36480;15198;16276;21395;16770;25854;16343;17485;36812;31805;11946;23903;19079;17486;34555;25445;32664;37150;20943;14666;31675;41006;41525;42052;32623;21812;41222;29469;28869;31585;16719;38702;32550;11262;25796;11241;25350;11806;30670;41813;12525;36305;27568;40560;34560;15490;33614;40641;33046;18524;19460;34759;22793;29762;18023;42274;18974;23601;41818;28010;27617;14338;22948;33619;38829;33051;10437;26125;36811;11848;25326;29546;13439;20441;14763;25715;36150;11512;22331;11572;29539;10684;13392;11473;29982;18975;24005;22640;20690;19015;13417;24899;29219;21379;40810;33646;12819;14325;39667;38853;20677;38886;24789;14999;27041;24676;36231;33215;16630;12392;21815;22253;31504;12973;16629;21578;30901;25540;33651;14358;19819;11437;39672;37116;12841;39613;27078;19189;42276;15655;40657;14933;22215;27273;29329;32223;24404;38942;10724;39824;34845;25840;14349;33767;25549;24731;31509;41318;19731;26758;28236;13335;31630;30906;30412;15598;20106;34207;14193;37468;30608;28053;36415;29853;28828;30714;19349;32227;38705;39829;21626;37131;19780;36945;35395;27414;27575;23940;30416;35028;15780;30613;33652;29207;20494;12930;13759;30719;11116;23584;11875;15502;10641;31752;11499;35267;41657;15732;21518;14937;15703;28096;33657;12794;34751;40230;40137;14305;29311;12738;30593;21888;11481;31574;37332;16510;30525;16509;33056;16799;21103;17380;21045;41398;36772;13674;30454;12007;40692;41662;31702;14392;13394;18586;39178;29452;24861;26847;27548;26144;19833;30877;37473;37120;30530;37356;25152;26669;27619;31417;13944;14595;30459;22274;15951;18895;36568;14095;32513;18116;38985;34199;13871;10956;41359;18181;34805;27060;25243;29678;19339;28969;15201;31674;30301;21725;23660;11570;19645;22421;19385;33981;23086;16006;22295;28147;17314;12053;19567;42275;20737;29208;11030;37436;15724;39498;36658;24780;30305;37317;13253;34692;34150;29556;14119;33986;24517;29521;19342;11246;28727;27758;13578;36744;13844;21398;24815;13239;36587;36782;25424;10521;26599;27204;27614;10980;11180;17259;11326;23176;14330;31472;28938;38488;31654;31442;15349;34081;17138;20490;18959;13267;19549;25950;18338;17191;20337;17405;17406;29220;12911;24459;24723;28470;31476;35650;33171;33102;31317;31179;19035;35249;38493;18581;30851;33795;28209;14501;35922;26002;21996;39863;19437;34887;10069;25464;31833;12647;36469;42031;18471;41696;15259;31648;16430;13863;23614;21312;12620;18300;18532;28395;14298;40349;31779;23935;20871;38004;40545;35142;35629;34078;29995;12828;29565;39155;26217;25850;34892;15292;12077;41701;41451;16703;20848;13104;28507;22795;21472;21519;15541;21467;41385;11821;16627;11801;16034;12200;10818;34384;35147;15357;38763;12990;39160;41412;37688;18254;21600;27028;38874;20764;33468;26405;26759;36637;16424;28444;28512;30103;37194;18344;27297;23121;16478;17139;35744;17384;30272;13933;11501;14096;18283;29249;12267;12530;14162;31055;22785;15829;20311;31096;37517;23265;42191;25201;19154;35721;42202;29358;34781;19092;26543;35078;21595;41561;12845;32505;36710;18242;30319;29974;25086;15217;21479;21703;17578;20118;20417;42020;25844;32452;32453;26980;15341;32372;35259;10278;22813;37240;32706;12415;30324;15643;41125;13120;10627;39750;13040;34184;36561;32480;21747;16312;31829;27496;27782;25275;13625;17245;23666;18079;21214;41082;16742;20220;32711;40486;41533;24084;19511;14655;42380;32945;22204;20090;23836;20632;41972;26384;21042;37055;34168;22219;16144;24148;41253;30249;25176;33536;39018;18960;20327;11404;25198;39614;19921;37733;24680;11356;32950;26345;10484;19679;30813;11078;20109;22490;37096;14816;41081;22808;26977;39023;35386;15653;35862;35531;21439;23250;25984;38676;26004;32769;15993;11399;30816;15315;25710;28067;13877;28595;21514;10862;14455;26374;40424;14258;16059;41930;16847;22207;25764;35867;35535;40487;42008;20553;18899;41974;21072;42009;38385;14240;36756;36598;15858;36989;38617;10552;31559;37606;32111;42321;10468;41935;39623;22357;13595;29383;37522;38569;28659;22470;32356;41455;37075;38390;29102;13589;37899;38963;31256;23380;14457;31564;29937;39628;14792;25541;27872;30996;31169;18028;21164;28114;31208;22882;38574;10559;25167;25073;34735;27006;30223;14335;41350;33074;17150;11023;21018;33812;29107;23296;25291;34040;35820;31261;31592;16158;10159;24229;41324;27348;31213;40600;13536;24345;20684;21675;10487;34032;34606;35908;27281;32870;37933;29168;35237;37755;37625;22726;13661;27510;23088;15801;38128;22217;21516;27011;25600;31926;36706;23587;27079;22134;31279;25140;35077;39220;13160;34611;11547;12955;19373;19735;39806;41115;26261;32875;36544;29173;24046;25783;30686;38717;31931;30497;29408;26436;28825;15785;31284;23433;33711;19428;39225;37255;23267;28473;29398;25143;39057;38796;36881;28844;11206;23242;41475;32251;30691;41844;35990;28336;16382;30502;28151;23006;30440;18414;39718;20754;33716;39781;17209;18746;25365;35968;36783;31348;11311;38072;24465;11817;32256;20250;15246;41849;36626;38100;22625;15005;21875;12899;23672;39723;41219;23428;16798;21292;38989;26252;15434;14934;18115;19061;41494;32974;12715;26304;41192;11578;10565;13058;12600;13515;39424;41326;30503;20695;32068;27492;33088;30441;23244;24485;20392;36437;29181;25149;38774;34435;37859;34301;31696;12847;37475;25215;26710;26035;14084;26711;26712;29573;25121;28540;19723;30508;21566;26111;15327;39601;33845;23908;38882;15776;20135;28805;28433;36741;35954;34210;33500;15306;30631;20426;12617;28368;30075;25050;41484;28849;28227;15585;13150;14780;16081;28424;18460;20105;22060;15634;22065;13310;35071;18148;18027;12088;24584;26920;28138;15661;28438;21716;28789;23398;31429;34022;15826;29917;21392;30636;19472;21536;20272;10440;36215;19324;27226;26600;28838;31624;36047;25617;17394;32309;17395;33963;41431;22979;17681;28293;39368;28926;34340;36309;33681;35970;22377;27977;28322;26684;12589;37774;23425;33968;20126;41390;41778;25564;21182;24132;14656;18207;41998;31711;33686;38965;30350;22568;27361;12904;14692;23216;10193;36608;29256;38781;17441;41783;16293;17046;42407;28211;15095;16077;38470;38225;15406;17442;30943;12705;30352;10006;20654;34864;35484;26050;25235;25451;33895;17193;20959;34839;39328;27931;12015;14951;21405;38475;38230;19107;21524;28163;30948;41449;10959;39620;25912;22829;26918;34869;29629;30384;26497;18483;15325;16106;19312;31811;17272;12370;24065;37435;35574;19738;18438;38845;36650;31965;22452;35652;14586;10176;18364;14166;29634;10527;24629;23328;36937;20760;20414;26164;21409;18485;28314;22259;11588;22260;10464;24980;37808;41286;29852;19256;42376;37505;10065;18575;28273;27306;39565;18080;24507;29911;39503;37897;14229;13544;34659;25872;40012;31044;33794;30182;42166;24818;33106;22103;40075;29551;34223;39798;42122;41598;38031;40408;40573;21474;27398;37952;36455;12857;41254;27752;26051;30562;37146;25359;23603;23993;40451;31052;23588;35767;27416;22389;19936;11066;37429;21192;28241;29775;17381;19608;37919;14916;10512;32818;24707;27086;22807;38190;22268;36403;19018;13011;21917;41174;23777;40508;13966;10315;14346;36954;33876;40073;16007;40315;13056;40140;26223;26398;34498;37849;22030;41099;30023;33738;33544;19841;34427;37985;26446;36855;34411;21283;20826;28669;24378;11933;20339;41597;24767;40343;12388;33144;36018;25127;41088;22015;41522;35784;21366;21251;13812;35572;18977;41415;31227;14477;27916;19843;29839;27995;22627;16296;16171;21357;37226;37974;40734;25110;11788;37626;17111;35218;16408;24894;27943;10893;15624;20294;37846;39607;34286;10944;26601;35479;31232;16214;22076;40598;10105;21928;17515;41127;41555;38933;40287;23932;33396;36107;39523;35304;11155;37011;10433;12259;39265;32353;37422;39098;34242;32421;12895;40314;35639;11498;31176;25856;31537;16899;16898;15253;31898;14105;20077;15702;39121;28251;39335;39269;35380;20502;31172;38648;17325;36909;28632;34582;39103;28941;40352;13463;26268;26269;14582;27331;26321;31542;13125;36192;36938;27056;13016;12751;31903;18657;38015;36255;31701;40079;10088;34449;40616;25458;35017;10767;24945;28567;41186;19287;34402;39648;28459;36143;21181;11133;19668;36443;23414;31943;40283;11509;18128;13894;32987;28997;38672;28312;11575;35413;38210;16590;23367;15079;18037;20043;38694;42211;39653;19315;25603;38308;36725;29045;30028;25835;19875;33302;41259;11916;18455;32992;34732;29002;22526;41033;33946;34173;17300;40696;36287;12803;23054;25977;28176;22995;28226;38313;14028;29050;18495;39759;38691;36596;25406;38133;32671;18377;11990;27898;20573;32349;32630;35569;17657;39949;37296;28877;32558;23074;16175;11830;24768;27324;16641;38866;23285;29847;10884;18183;34567;15670;36861;32676;24464;23371;33622;39234;33693;38775;32635;22456;33054;23078;16273;28882;16869;32563;35228;15066;14005;22891;14649;23882;19880;31641;41680;34571;27965;13570;39239;33698;24616;19338;13964;38183;24859;19378;30061;14767;22527;26670;36198;26385;25353;20434;18060;14348;14615;19516;14113;26859;17671;26860;39537;11381;18261;26861;26862;16093;26863;27217;31151;23157;28082;19029;28094;12768;27895;26117;18117;39675;35345;23508;13995;26447;27792;33843;36022;31343;18953;30740;36565;20662;23741;17640;20378;35801;31784;27746;30700;25944;28268;34725;40559;23062;15182;23726;38426;22469;10463;11416;35287;14628;11589;39679;13464;22185;14793;25331;28353;36975;12741;40833;13313;15803;13690;39832;35300;20142;32460;22589;26058;32370;22996;38431;21299;16327;21618;30914;30419;37247;11766;32956;35560;21622;21862;27571;19111;34847;30722;22612;15944;20631;26292;26239;39837;25572;39782;40176;39337;30919;21232;30424;26102;32185;36252;26508;26189;36349;36577;35366;10273;28835;40955;33789;39938;35446;29731;11733;41665;17675;37286;33742;19178;42238;12127;39181;38953;33665;15851;20085;32836;21289;30532;16982;35638;21372;16981;37090;12421;25031;13815;12474;22675;30461;16639;19750;35603;16638;14721;38013;26237;35591;41670;20990;41542;14857;39185;15533;13153;28101;18751;36181;29548;32839;37678;41499;10281;17415;33861;11653;15107;10817;28159;30465;33819;33412;19345;12422;11798;27059;33274;29682;23138;21864;23001;29738;13539;14319;37611;22375;27819;33573;35770;26438;12832;29255;22356;36189;25993;25334;18002;22132;19568;41551;22748;18834;29619;29288;26082;19851;30307;12407;38840;39586;33870;19898;19396;33994;28156;20304;10943;28734;26995;33327;36016;29281;22665;27161;33558;11021;30012;34777;41345;11746;32209;14304;15370;42150;33286;36458;41206;30174;11767;28079;31479;31118;28140;33999;24963;32036;33287;15783;37196;24305;15947;33332;37427;17287;39385;35048;38815;25045;12722;14230;38893;41429;23554;39447;11860;26253;28398;18991;27804;27113;28638;23490;38501;39005;23432;25861;12767;22847;37509;16697;18714;34895;31840;37894;18883;16065;23299;20051;11844;11113;25806;33820;40831;23454;19254;11545;28402;26173;25586;29941;19395;14066;38506;14252;35150;19790;18397;34899;39163;24203;11880;26400;19507;18874;41559;12799;42373;12266;31136;15099;11857;32023;39787;24047;13618;11555;26215;24669;41380;38257;13164;24317;14657;21241;38881;24449;18244;39168;41506;35718;18431;13641;28260;29194;28013;28447;19629;12596;22110;14774;17328;28025;21211;13201;35003;12504;19362;17492;29867;14026;22588;41740;25992;18413;16650;36177;23308;28244;19926;14246;31844;13100;19603;40215;10246;22010;36777;25776;22342;40993;23273;41175;38129;32376;16939;20121;10283;37790;38511;41745;41149;19721;15127;14508;28005;19448;18388;11467;41583;20652;25781;11112;10690;25285;18103;14485;18173;13079;25100;40399;37325;38516;31135;21775;24637;23607;25079;13015;12326;20962;32714;25803;30329;34770;35679;18689;11102;27632;14785;12664;32640;21430;13200;36551;36889;27045;11395;28331;12926;19006;11789;32719;38663;23419;35376;29598;21634;32644;28453;32953;25970;16342;34278;35195;27284;25607;13261;18306;25876;19900;15452;12710;25962;23526;22019;12205;23314;18220;23988;35953;33755;10963;22225;20497;18122;20751;28598;41086;18255;19852;25487;14538;12324;19574;40790;13089;34341;13768;26313;37628;21686;18651;19078;23021;39031;24912;35389;30234;32777;12389;34161;17687;42165;19058;23219;28603;12204;16350;12859;27423;22903;10411;41407;39036;31428;26041;27845;38122;37110;21475;17265;35543;29410;13247;20866;20736;32782;27981;15740;36314;22956;33437;25583;22961;38624;35830;16507;31567;33846;21522;21854;39631;24967;10722;30999;31774;21054;27729;20591;31771;13197;34276;23090;37186;35912;25885;33803;40063;23972;34318;20194;16797;28349;16301;26310;10210;11415;38398;10084;37048;21874;27050;11684;34800;11151;38629;34833;35835;31264;31570;12835;33372;34048;36640;16696;40261;14228;29304;11407;23119;20629;31004;28116;19836;37457;22116;40402;10190;41572;22906;39404;29920;14855;25447;40297;11698;38403;21016;29115;25051;10663;20025;13227;31269;37121;40109;16477;12918;15154;17226;14027;39989;38579;15689;40945;22224;27027;29488;25165;10525;23845;16505;16504;16503;28773;16502;26298;29120;31739;15531;16568;32878;36487;21742;29933;35913;13653;26956;38584;35021;18476;12445;20671;10366;34619;11325;21855;32883;17665;39060;30279;42257;31856;18356;31606;31962;14946;12032;31939;21735;17617;36106;27070;25494;16307;31292;31947;25741;16755;31704;41128;22115;21969;33719;29994;34121;34624;26293;24217;26294;40381;27289;28624;40385;39065;23772;20972;36270;37050;20195;18412;19220;41852;18296;21511;25222;31868;16790;24667;23232;39726;22598;13906;39772;19365;33724;39999;25360;27683;23968;18681;14659;41302;40571;25500;34967;37996;16949;37232;16948;38955;15087;20188;38797;32264;24187;12587;40129;41857;42222;10248;40588;16321;34103;27771;17637;18749;39731;41112;10250;41304;10522;25300;35993;18172;11114;19232;16632;36405;36406;37202;32269;29960;11576;41196;31140;36576;35154;41639;15635;25378;34496;37067;15228;19459;20177;15781;11631;28970;32591;21640;21575;13509;24695;11061;21000;36175;15836;36464;20713;30515;14680;38903;10847;18257;38741;33066;20569;32102;19696;24983;38752;31313;40275;28811;36325;26948;21496;26986;11810;37893;32595;25654;31411;42073;28852;39776;34793;40346;28551;22673;24901;37853;16222;27264;27260;22140;14881;21707;14779;42072;27734;35183;37171;28816;23290;33503;16541;41984;35009;16540;13324;19773;11040;14291;18144;35711;18706;12033;40948;34849;23140;33971;40207;10668;12836;39944;21550;19358;14935;32098;18909;16244;22874;11431;13647;36660;13512;40665;28329;37949;33482;42010;22730;16153;16130;19784;27567;24968;33976;31347;13601;23752;41786;12111;22487;34516;35552;37749;29942;35486;33095;26209;22533;16695;33117;16694;18136;38006;34848;13025;21809;14212;20528;41791;29768;15925;15319;20066;34521;38787;36541;13952;30951;11849;30169;14837;36460;20669;23738;40882;14331;18158;25036;15446;26973;33227;40094;40751;38238;34387;31775;38671;24335;23756;21836;29637;15900;10436;15195;29547;32187;22317;32069;30696;18852;39612;10474;37818;13828;10469;10714;29616;12891;31806;24841;18312;38243;21267;31168;29450;22802;23104;13302;11454;14182;12466;29642;30392;41969;10171;19937;25828;10286;25531;20168;30312;26828;13063;21754;34171;19867;18165;33948;21015;39598;37534;17516;19612;17517;29725;33572;10681;10647;32364;17518;15331;13296;10054;41195;31297;19336;23891;30565;20067;22725;41294;12508;37041;15904;39506;35973;10911;25561;31350;34756;11937;37542;12128;40440;16360;21252;15285;26480;30569;17351;18535;25845;34665;36031;14669;15047;19981;14950;12614;30821;13358;16736;40444;25630;22394;18819;36713;18045;24984;33251;12960;34319;32826;33941;30316;40566;39360;21309;29841;35984;31120;38844;23606;22773;22088;21593;35806;38825;26055;30825;35636;42081;41299;11104;40828;25316;32831;33569;38097;14187;22902;14853;26454;35800;10153;23663;21722;10535;27371;28748;15105;40332;31079;36738;20845;22791;38783;33923;36212;31658;28672;16107;10005;41530;21231;27420;27085;25409;38746;12769;19506;27653;10614;16860;35481;19122;28930;22644;11497;16236;18677;16963;13917;35776;19426;17341;30131;28674;32357;22863;23661;24651;24989;26494;33936;23391;12261;13397;15199;22326;10042;40205;41375;40448;28132;26434;19752;30830;37874;18475;27227;36327;23775;34465;23896;39272;12731;28344;39957;28045;36224;23733;21798;15303;11397;10915;31906;35023;14849;39129;29777;39277;10977;18465;24407;41073;22561;34590;23642;23600;39111;11485;22322;13901;13826;33756;14437;37170;10563;24165;29276;28055;31549;39453;38126;34476;11521;31911;12512;10269;25463;16390;39133;29513;29211;36278;23797;28341;28497;22009;34595;23177;39116;28945;32491;18458;18241;29975;20413;21665;36970;28574;12477;23532;31554;20950;39656;39374;37588;20083;32086;32466;25120;41463;24340;35586;40467;40723;28313;18675;12284;20254;42345;34738;31650;14954;29005;24147;23831;28577;29881;34031;42193;23621;39661;13443;13996;42334;25368;37167;40447;21738;38316;35875;18626;29053;23488;18398;40582;25340;14559;33310;15933;37452;29010;15227;21362;41458;25849;17519;38982;24904;29553;15451;16496;35879;11900;17129;38321;29058;15243;40862;24276;32112;33315;32679;31432;15948;41557;15642;39310;32341;21375;15100;22240;22686;28885;32013;32566;21397;20984;19807;14790;22027;29137;21828;12209;25934;39891;11352;37261;38192;17478;34574;17479;32684;22407;26812;24675;11280;19487;21977;13667;33701;32915;26813;41352;15264;13566;10287;28890;32571;32190;29273;19877;27802;15441;24914;19585;10612;37867;11629;35880;31188;16946;35722;34579;15263;11464;39247;33706;34120;32920;17625;23948;10312;31997;27748;29442;30788;28579;22521;22028;20535;35626;30743;35323;35885;11940;15354;23957;25190;33321;15114;23349;25837;14542;39251;32744;24193;38869;16932;16931;33886;27927;30793;28583;39682;19309;15511;38009;32363;35592;30748;10131;14143;29068;16859;40712;23110;35506;22690;29025;41422;23934;31384;28911;26314;38434;13456;39686;21390;29785;20762;20265;34442;12728;24596;13631;36941;40988;16587;16586;29261;20373;16585;23156;13607;37589;38439;35311;33110;22693;40325;35610;30922;15419;42409;38360;37650;26622;30162;18304;40590;13862;25092;18516;16637;16636;42077;16635;10451;38544;32507;25655;21243;14430;27577;28197;20022;12987;32204;30927;34493;23528;37265;41985;41003;19288;17000;41413;16999;10041;16998;20912;20824;10083;37043;12375;10413;10335;31985;33257;31337;41241;25916;33671;34235;18750;16345;22596;13073;32841;14215;33281;20146;23970;24771;36024;41587;39454;16109;13697;35391;12429;39193;33676;36273;14642;32846;10057;37879;33786;30541;19413;17250;36377;21318;19766;30472;33385;41252;40859;27994;25184;18470;34701;24693;20324;39198;30933;34380;23171;36691;23035;15955;26531;36828;10735;21264;32230;25131;23243;17445;25788;17446;30477;32199;22418;19482;16474;35975;41091;15078;28785;30938;18113;12058;21223;34365;16495;16494;29964;28193;13541;17144;16493;40570;40441;18464;39391;40935;34002;35319;33838;32184;23264;33751;33333;13956;12539;24312;22029;15096;10505;18178;15236;17974;25491;15081;20858;27502;15394;34007;42242;24809;28641;33338;27843;42390;16257;11862;20658;34808;37337;36747;19388;31666;33448;14279;23467;17257;26001;10502;27220;10585;31097;28646;40491;30140;37376;39876;12006;11134;42092;34902;23504;22704;37724;36647;11584;21535;21685;32150;28179;24074;40105;28405;36080;42019;25834;20496;20884;15367;28266;22844;31396;41319;38030;38260;24438;21047;14244;35583;14323;34907;39171;19835;37940;36003;30236;37020;39294;34011;16552;14297;21871;29523;34353;27763;13848;28408;23580;36524;31597;29692;14689;12404;38265;17085;33165;17084;39176;36119;23053;18281;13435;25099;19618;24185;29389;23375;40976;23272;35778;20485;15537;10814;20905;13380;26997;21689;24664;28056;31149;41748;23594;32471;14197;16633;34690;32427;41343;26435;37388;35449;26890;23329;31786;20412;39951;13157;37794;31091;11763;41216;27874;14463;18090;38519;41753;18663;41119;14271;20536;15162;32384;24762;16118;26968;19020;39561;22685;22709;21170;33175;37276;34989;38107;37728;13835;22555;22849;20639;36657;38524;19553;38838;21141;21687;25287;30208;27866;16290;22692;25702;10284;16702;17240;22050;17499;24750;14433;12297;24960;21879;20708;24077;19067;25588;27556;18830;32048;30243;26671;19787;16643;22301;25699;16642;31964;11563;20117;23470;21227;20938;42068;29900;21199;14993;32727;14274;26119;21950;33172;16479;25262;13093;11477;34739;31968;19425;18705;12499;12667;20667;37326;19462;12518;40650;27637;20111;17152;16196;16647;15009;17447;33272;39039;40727;34695;15967;24958;16492;24807;11556;40607;26424;33596;27705;32785;20316;26685;26686;32891;24810;35656;28611;40193;38146;18814;31582;31611;22647;20182;24641;10090;35687;18659;39044;36859;33235;41582;17267;11552;31386;27789;20047;32790;37491;25227;31174;37598;41230;28616;36400;27413;35029;29987;42374;38632;15523;26210;22160;19371;42308;21978;24917;31007;27947;42057;36433;25442;16970;21010;12377;20987;34392;14706;32085;38406;40969;15485;27302;21833;38637;35843;38640;31012;28696;27354;13951;35251;11261;13209;29131;17669;23881;36672;40529;20219;38411;21577;29123;40728;42047;20147;21234;11197;33294;35848;11709;18939;13272;14499;30763;33121;21002;29510;13316;38587;41541;22181;31187;21607;17584;15561;13014;28778;40788;18648;26408;29128;15120;26590;38037;14913;19529;33299;18212;31728;32109;40089;32176;25721;10015;26315;30768;20174;12043;13766;36784;38592;38832;18768;24631;23397;41708;40995;39755;34488;36595;17214;23740;13573;34627;29735;30173;31800;16431;36099;33442;39068;16583;29737;21639;33222;20749;31112;33229;27200;41595;42411;42218;11478;26623;13038;27693;27537;41713;10028;37301;32210;21835;11666;28519;34632;38046;27649;28477;39073;40191;27554;30092;40558;37032;29842;10708;34232;20797;11380;38683;36492;27405;32063;36361;27369;22852;31874;15522;24342;28342;39734;27625;11188;33732;35015;24195;22738;12013;40812;18061;34090;36364;24209;40449;36512;16466;10689;32172;38059;12251;40320;32272;24995;41864;23009;24927;36510;28264;39739;22286;25217;16701;40031;21077;14462;18432;21228;23011;16195;33020;37239;36412;13053;37117;22623;32277;41869;17411;39339;16974;16938;16973;21885;36041;35162;33069;21825;14045;16225;42005;17140;33839;19818;31439;29899;19816;36873;28972;35905;31185;26229;28187;24115;28554;15396;34413;28040;35167;25315;28819;20849;20893;24298;42168;29829;34288;36090;26841;17091;23423;17090;32602;26842;27775;20835;21697;27562;14817;28855;40438;31635;26276;26277;15440;28559;41232;21599;14179;21080;27055;22265;35699;16752;26604;16751;24100;28824;31080;16146;16743;34994;41015;38771;38997;25156;13408;32313;29877;32606;20850;28858;39910;15717;18202;23130;21585;35949;20503;15728;30668;31758;38083;11581;10381;22546;12502;15261;41239;19207;31344;10676;19374;36376;22070;18664;40030;26814;32301;19285;37384;31303;22482;15946;22147;12117;34391;20451;30785;13243;23101;11645;16426;22648;31099;41578;18435;34524;18590;22012;14813;16903;33624;33914;22575;13206;36506;40713;14153;39349;36271;10001;23297;19703;38811;31960;13530;13207;30728;24343;12122;37616;41799;25794;32367;31389;37549;41720;15048;34529;13670;31362;25552;13447;29765;16883;33629;16882;36055;35490;20196;21766;17422;17414;26626;21899;26627;26628;17423;24921;15112;36891;11283;17269;11076;38246;41725;36266;31487;12821;27010;33747;23097;17083;10936;35972;30859;13478;20005;15404;18587;22053;16363;10997;15919;36046;37677;38251;39534;12469;40263;31492;40802;30643;11158;32429;17258;25271;40673;29650;27116;22571;14760;19527;35790;27344;40630;33763;23923;10670;23359;13931;11989;36073;29655;26356;31374;27244;30122;30572;21993;36964;42230;12752;20347;20074;19246;20780;40158;20343;39608;18620;39907;37098;39231;18411;27172;29347;27711;23254;41202;30577;14030;40538;37023;38675;18213;31095;37179;12950;38144;20574;21457;22267;22120;35460;12114;36936;34469;29656;30038;37718;24080;16734;30866;36540;42106;16733;36729;40110;29307;28378;38723;19986;12659;13879;25460;40603;39845;20094;18366;12028;39697;34156;16159;34947;41609;33736;39419;37132;23377;30105;19716;29661;18508;21989;36921;16846;28962;17376;13602;24266;16845;15220;22657;17377;11291;10901;19039;22086;24303;22609;21449;36914;23516;28041;13455;37651;32141;39702;28720;21031;33911;18941;32305;22090;15407;18519;33562;13517;35671;19733;37089;16212;28754;21900;12001;14690;37486;21851;22166;16453;37248;35448;28680;17627;25915;32031;40578;23673;41477;14072;36991;41146;13703;29882;25952;36987;21929;20113;30112;30837;36707;13297;39850;28685;18633;33779;40718;25443;20855;36149;40289;16791;27570;36575;32522;38674;38108;14432;32207;20527;31636;30840;19252;21236;31453;35787;32382;36507;39285;18903;16421;32527;16462;15183;14231;20098;34598;40262;15727;28946;41945;20358;13244;14468;36417;33086;31743;31689;35125;19401;27850;14506;17424;39138;32813;23620;25878;20103;28112;11504;23705;15075;20971;34603;28499;17467;13221;12340;17468;36884;19247;38867;33890;33823;15915;22585;19456;11678;19108;39421;26318;28175;22930;19432;25383;23082;28502;19718;12271;17621;40407;15334;40398;28254;28024;30133;17271;13485;30079;15894;22210;13778;14073;40779;34363;19693;13489;19650;40626;18707;11375;15757;26891;35720;33505;21991;16506;21396;40546;21894;18665;41120;30882;11743;20514;29140;25913;33783;31410;16704;12486;38329;29065;40733;34112;40968;11938;21098;20478;13087;29422;14901;29351;32687;13737;23448;24497;16322;40764;33907;28948;28893;32574;30887;20479;16490;16850;24753;33864;18549;38334;11282;35362;15708;32824;28057;24486;11681;32692;33831;31122;32923;24802;34167;20719;40413;26672;28898;27769;35233;18243;18542;26538;29228;19963;39965;40143;36709;26401;14594;15770;23832;22688;42206;26725;33413;41528;39343;14195;39254;32928;16089;26726;26727;36516;13685;12328;28584;11534;22760;25942;19579;28217;35343;25182;38753;41148;10628;35893;26989;24302;33481;29071;38991;36170;32094;39581;23870;39259;10660;32752;38804;28122;35470;12000;30799;28587;36384;12730;33134;29384;23027;14109;27933;21670;24505;41908;10135;30756;19928;20257;35898;27039;29076;31639;37892;23395;40666;26843;26654;35514;32997;16628;26088;32757;13135;15474;22241;13293;39694;12488;27854;23533;15071;26175;41913;37251;12804;30761;40397;39811;28295;27069;13890;20968;23117;30986;14730;36638;35519;38547;41608;25098;32217;18943;22910;15454;14093;21418;21203;34471;38368;33504;41054;37819;39978;15979;21380;13268;18761;31234;34342;25239;14289;41569;35455;27859;21376;28088;26481;21498;34433;20163;20504;16193;38552;11618;19593;12869;38373;21627;36642;29086;28713;31239;24759;38990;10568;16686;25542;16685;29687;39796;22918;28317;35245;28763;17418;35331;42032;22059;22864;17419;37006;19381;29091;21255;12576;22573;35999;32849;10658;15061;29146;23231;38909;27665;27074;34676;15172;26554;29873;41303;24271;17469;39200;37397;17470;24146;13891;29509;32854;19080;29151;38154;24849;16302;20330;29433;34792;41526;30480;15017;14864;40093;15110;42044;13081;19323;21728;39205;29449;24233;34837;37583;13886;29861;15206;19094;20570;20839;20588;23336;30674;41822;20919;30484;17181;27198;20108;19334;21788;41110;14585;14360;20390;21256;38124;33238;22073;37369;38766;37327;33464;15841;33177;27231;19632;36792;31333;25774;32237;14854;22130;41827;10715;11466;19022;29353;19404;33341;18742;26357;19655;34067;16126;24857;40404;32093;23331;27472;29534;29346;15170;19275;18656;28649;10059;27971;27504;27860;33346;38111;11198;29713;15353;37224;33288;11052;15424;37550;20058;32957;13248;25650;15914;12430;15513;36402;34190;28524;10154;10122;34937;29711;22381;10996;28793;38650;42058;36223;32383;25187;33164;18231;27391;18884;39297;17589;25021;34455;30094;11089;28529;24178;29824;13488;30147;15300;17334;37539;17306;27579;10387;12057;28181;34915;40939;15346;40809;30617;20563;24793;26971;11634;20221;26844;21914;26940;25798;22963;10850;13457;37377;12632;28415;27019;23676;40933;14183;33352;30026;21248;37878;10608;38273;19040;41432;23076;12985;34920;37769;41624;26118;19173;19140;33805;17161;34145;25267;25473;20598;40485;12770;29759;33357;16191;19820;22538;14414;42080;35600;41756;38278;35371;39931;24396;32503;19192;30337;40710;41439;37341;25106;17986;42084;11617;24754;37992;28003;26561;19084;16480;29234;27421;19291;27120;20687;23103;40148;38527;35041;19290;24470;20048;41761;32407;29949;31776;11433;38448;24013;20529;11143;30342;20877;27412;40162;40962;16266;29474;38687;36560;24955;42405;41032;32541;24819;18444;38532;27356;28288;40659;39922;38453;37428;40752;30429;22298;34926;17282;25083;21294;13663;18550;22299;41454;24474;38284;27862;26937;24466;41423;19950;15813;34931;30434;34222;24700;18068;35210;16900;20685;26096;30376;25183;25454;26026;20278;37742;23763;32089;19876;19014;29558;18640;37623;24475;36566;29312;19628;12431;36030;15867;16481;14466;33567;25566;42393;10441;17608;13893;42129;33599;13068;25030;22220;14342;32894;34637;39352;10951;18966;23670;15998;14794;29370;34394;37148;36803;11850;38007;26156;42028;36335;17358;10786;27849;25898;37922;29860;34742;42146;33604;13476;23843;40774;10195;28133;32899;28619;36665;22005;34642;40116;35615;16351;39052;11440;33092;36427;31351;17192;16489;26013;17432;32798;10423;17433;18430;16285;31808;19408;40517;14488;19157;25323;24423;15459;21562;36043;42396;35870;11120;18502;35678;13785;32803;28305;32424;27842;38414;36485;26192;41344;35309;35439;22058;35851;16616;27333;23168;25042;33530;31019;19423;41623;13510;42342;35694;27638;37537;25280;24311;42341;34703;39783;11183;19415;38419;12394;27104;32905;34855;36805;18735;15930;24719;32493;21244;34316;38595;38864;28338;35084;28194;30962;21441;34772;19906;18025;41187;24639;15383;36664;12367;42336;27628;32910;40107;40827;15628;31446;29223;30776;13205;42025;27209;38600;29387;36832;13141;27001;42234;28366;10404;17071;39304;21382;10852;20063;20099;27777;35763;38906;25395;41553;25189;15333;21378;14755;38795;10851;30781;34812;38814;22037;35783;41607;14133;15995;31876;41089;26485;19997;37079;36042;37665;40800;19451;10450;32465;14697;28481;39081;39377;25839;15530;12830;39378;15209;14564;11633;33762;25757;22412;13861;13898;41895;10797;18020;19992;31881;12707;20161;25146;37083;16625;19555;13124;15158;20955;37030;23341;24846;28626;39086;14456;23639;24829;40826;31721;23338;11533;23644;28561;42200;14551;41872;20065;38606;20433;11333;41538;11824;32099;27210;24799;16166;11749;13330;13486;21746;23632;19503;36996;28975;17471;24128;16491;13062;26459;24928;28564;31063;27690;32285;13725;36034;41877;23983;17291;15397;38611;31319;14062;41594;17574;39939;37085;24048;11358;26411;15941;23837;34139;32385;40123;21209;33877;24022;13005;39323;33772;33032;28980;10082;22097;14031;15526;40773;36302;40025;24597;32290;24735;36076;14584;28281;22478;34400;33005;10322;25043;22339;38291;21431;40835;14311;31626;15504;34023;22024;32651;19847;32609;39410;25135;28860;29519;27046;23298;26892;24064;40854;27224;13333;16500;21332;19132;30203;34546;32656;23048;19941;30035;19953;29272;32614;36614;24654;11223;28864;14086;38170;33138;39600;23734;12361;18059;13717;16844;41643;34058;25513;21089;41638;10549;34551;15709;35642;35643;12638;39865;18856;34707;13289;28362;14139;24790;24850;38735;41481;35275;20229;40414;32327;41888;13311;35370;29374;24575;24673;40395;30731;41809;11314;35090;19785;26925;33769;32076;36254;21521;11772;35197;41630;39428;34532;25667;28780;26728;33632;26729;18573;21083;18603;16483;26910;35430;37293;31167;11648;35387;30736;25136;20096;41806;41728;34537;35500;42291;23949;16842;23941;27170;16841;25598;24531;33637;35496;27863;41075;10576;27908;34216;36662;15774;24875;12942;16155;24871;37543;24529;18225;25319;36796;41733;29224;31495;15282;35244;18615;30398;40072;17525;11876;24534;17526;19204;35394;17527;24520;28275;17528;12781;26425;17529;40736;41644;17530;20271;10537;17531;15913;36002;17070;24650;36445;17532;16741;20491;17533;19930;39481;15927;39815;37471;23559;31500;13107;29279;41212;11587;24996;41409;42182;13275;25749;18616;30897;30403;27465;40254;40281;30600;14815;33871;24199;28256;31712;30705;11192;33910;31749;35182;40113;31792;37362;39820;33143;36108;19458;27726;21596;27121;39321;18424;23102;19674;21014;39992;37178;30291;13465;37768;20680;30710;40153;25444;11084;15167;36173;20432;41649;22221;17408;16598;16597;27712;14620;35113;16596;18070;16595;30585;11482;41257;36439;36264;25175;30519;34749;15929;13550;31632;18972;22287;41654;11343;35118;24923;22812;30590;20377;26908;28963;20744;36381;16170;27126;38008;41124;10086;15705;26031;25763;30452;13969;34114;29931;27342;11764;18713;17391;23325;36074;13957;36262;29669;18644;39487;33135;23389;39554;38875;11664;14549;30217;31078;14797;24506;13145;28755;28387;40530;27211;22814;29201;19260;13283;14439;36195;37587;41013;29674;36418;15788;18687;12706;30298;37639;40477;40651;27326;38179;10533;31949;10429;16499;37904;11791;39484;16498;13146;15141;21147;20042;29868;41274;37074;14614;31378;28688;30356;20034;20720;19526;19751;21307;15684;23295;42071;28228;32494;31647;15109;28463;16525;16524;17626;15556;13781;13023;30841;22551;38479;12598;33878;13968;14611;39456;30359;29734;35407;34873;36652;17658;11050;15231;26149;28124;14171;32530;30697;26539;19789;23640;28465;24668;26878;26879;30844;24550;38484;25347;36112;35128;11419;18066;42112;26730;34878;39141;26731;27136;11842;41687;16969;16967;16966;32535;33384;16965;20112;28389;26403;21878;15924;35133;13672;12528;37871;33196;23852;39146;15090;16251;24235;41692;12602;21907;31693;21591;42022;31359;14553;22429;24197;40301;22677;25224;35107;11510;37440;18543;13741;24385;35707;13467;31370;17534;17462;13224;41951;18086;36578;40618;20547;32127;16740;16897;15575;16739;41968;30108;22152;41153;31734;27636;29736;23647;18601;36851;31683;24036;15602;12854;28083;36690;27970;22590;42258;26640;22489;27337;15361;19134;38938;24462;38337;38964;16446;16283;42349;36159;28374;25377;10417;12243;21315;41017;40256;29407;24079;27328;27491;31383;30895;27382;11476;36656;15223;10112;36523;18394;38342;30054;29198;25548;22222;24588;32697;35995;18910;12625;22634;20197;16961;16960;29401;16959;25982;29212;15305;32585;13688;30258;41391;10531;31966;41388;37409;26555;34260;16448;14599;32702;18807;25001;39262;12586;32936;14165;27557;25684;31101;13071;23064;40996;29604;26124;31380;22302;24104;37068;22328;22329;26319;16187;39009;10829;37134;16834;18457;33860;10632;24324;33000;19995;32833;36762;30059;32941;13646;40521;32759;30221;30804;10831;38884;28284;41916;22243;32037;32300;26394;39814;39014;23700;14641;39431;20273;34165;34934;35522;20610;24383;29028;19701;27329;20424;33543;32763;42023;30364;17644;30809;38051;16016;24363;24606;24336;25065;13388;31113;38806;41921;20140;38345;16785;23206;34671;16784;35858;35027;35527;38555;25506;16783;24510;37155;37162;38660;24624;18577;11322;31050;37198;20246;42209;16523;19958;37109;38376;27409;17981;22151;27680;12501;17065;18930;15479;19739;35321;13377;38350;17064;13384;22939;11683;38665;42269;38560;13035;11082;10364;40304;12047;33061;14315;20886;34267;13514;38381;29093;15963;31247;23893;24376;27794;17576;38918;11394;39784;11676;15632;31200;12708;10109;42076;17595;28657;39566;33065;16020;18230;13165;24778;29098;11384;31252;33097;13314;35337;35920;25289;23060;42067;27156;10318;31204;23030;27558;31454;29239;12739;13451;37633;40910;21880;28768;34475;29320;22144;36769;30030;32861;22925;24405;29159;41322;27301;34968;23292;33502;36750;39351;31918;30486;19976;22519;21005;36075;24694;26057;20175;22751;10634;31127;29606;19804;18688;22509;32173;39213;17069;10501;17068;42279;29325;12660;16896;29520;36753;32866;32055;29164;22336;27097;13548;36001;37890;30679;16309;35676;18837;30490;31922;37385;41548;30654;31275;24206;40160;10544;35788;39216;25283;38020;15693;40274;16039;37581;19150;27912;26461;13970;26486;41207;32242;41835;25633;19234;25466;14984;30659;13726;25538;39709;33466;24120;12338;19217;22528;22724;35433;23365;10017;12071;29017;36179;32960;10669;40717;25308;15358;21769;38120;23194;12425;35034;32247;24374;41840;15787;14431;13029;31640;16958;21215;16957;14276;24434;24845;16014;15854;31671;23136;12245;42060;31993;34479;21752;16209;32965;25245;20251;20222;42135;30130;36479;26503;21819;26504;41959;23635;14124;12343;18964;28532;31746;39594;20423;33473;34946;33189;41964;13808;14829;29564;27249;18946;32182;41069;17180;37218;22025;37679;11663;10939;18120;21384;29963;22830;12695;28330;20880;12844;27173;40117;24106;15191;27629;20906;36051;18391;32328;16148;37771;33790;39455;21787;14923;10983;22651;30019;21116;30624;23271;10304;21415;11712;22071;21696;37250;12981;40981;21095;34066;25450;18579;28418;35313;14746;13351;31741;29203;37354;20927;41248;21574;18932;39412;40550;30629;42074;24186;13156;13002;35741;21758;42173;13280;39616;11757;18340;19145;12233;18341;33778;24210;31133;33954;13965;26981;11254;28917;19584;18327;12069;14367;23374;21822;37333;32003;31408;36763;10343;23080;27489;16449;32544;20712;33959;24044;41769;11780;28922;33249;26540;21502;30345;24494;12461;31952;38654;33209;41348;14273;40388;31678;36258;36721;40393;19940;37568;36390;18736;35700;40028;38540;15791;41774;25417;14425;38461;13740;38216;19011;30437;23977;20060;14879;15092;35217;30377;21800;41162;41611;24744;37666;21399;15276;32386;41507;38466;13399;38221;13843;21791;26666;22390;25526;22289;32484;27856;29816;10882;22629;27538;34860;41314;23326;29624;19372;34785;12594;35702;14699;31767;21988;15008;36280;17067;17066;10316;39920;26701;12515;26244;15289;33211;39305;21424;13889;25775;38820;35919;37335;41641;36067;31705;27118;32473;30547;15804;27353;37743;29506;16476;27697;18389;16330;20292;37494;36910;33451;18605;39546;13334;14233;13264;37177;24840;33765;36461;15555;34963;19837;23190;18194;35175;42271;30552;36678;35467;34650;22745;17392;17393;35005;26418;30262;30228;26574;27597;19873;10351;22370;38821;34376;10492;32806;21130;10822;34655;27801;31114;19967;40003;23259;24795;24625;24587;42069;19985;13406;18942;18970;27528;13998;10370;34169;10267;25527;25626;32737;10622;27603;17294;31517;13496;24255;15763;30965;39300;24369;23181;25202;30172;39843;13169;35207;26339;16245;14510;13418;40513;19095;19979;16833;36646;10858;18468;31522;31995;28707;16729;37970;16728;18299;18724;16727;16219;20885;17436;30970;14118;28664;33875;14480;27885;37706;24174;26897;29722;12424;26898;33467;12026;13728;27765;31218;16030;14550;27314;28711;32295;19355;41636;31130;10982;42353;17565;17566;26753;26754;16238;13545;17178;26065;35917;42124;34948;20080;37925;10923;16840;38934;22661;16839;41898;10605;11539;15921;34155;12533;21598;42186;18948;37917;20287;13800;19273;21287;20898;20201;19879;19466;20202;39089;15778;13191;20203;34157;26541;17345;26880;27787;12792;26881;23542;31528;26542;29508;41903;22270;39900;33252;15186;30976;31889;27187;19223;37088;20461;12080;19063;13413;24816;16538;38756;10967;24758;28486;39094;23286;26567;36791;15187;15514;19616;31533;41880;13729;35822;15640;18583;41288;15035;30981;31894;21771;14364;18311;22308;35098;35264;38889;39492;18614;18873;28489;33035;27694;38791;14964;15569;21594;32293;19499;17309;20653;41885;20205;39639;36110;28109;41632;20448;20256;34280;23187;42372;10167;27529;34991;33039;24278;15347;28988;34460;26607;23973;24350;39644;14632;18845;21393;40947;27925;33012;38299;20385;19391;36383;36654;21330;37172;32659;37051;32983;14915;30007;12485;28993;32617;34426;12713;28866;14286;29371;41021;15039;42215;38304;19643;29041;24742;34059;22958;34554;31357;29296;32663;14058;20913;12237;32622;28311;25397;18995;19793;15458;31584;32549;40883;32095;22797;12811;41891;32125;41812;11232;14846;35712;34559;33613;41939;40706;20350;33045;15366;15743;27826;27857;19610;10555;40247;41817;40983;21691;11538;11740;36513;10296;26133;26134;13327;11115;26135;27594;33618;37596;22835;11288;25722;15192;41100;33050;27158;40309;19943;14363;13657;29240;21201;18745;30078;16328;37124;23387;10055;20859;29457;33170;26267;32479;16352;40216;12988;12754;31622;25344;17327;13810;31412;36866;26966;20231;34072;33645;20232;39666;31669;18812;11792;19810;25556;27131;33943;31709;18472;38693;16092;19817;25012;16436;37412;31455;39541;31503;33204;40483;36905;26007;14904;30900;33650;22522;39671;20338;35988;14366;37671;25133;28172;35094;23350;13492;38149;17649;31631;29328;32222;36554;39823;37091;10999;30242;31508;18496;30905;30411;31181;30607;36876;18609;25017;29864;24649;42247;40814;19725;42264;31312;26929;13776;20486;30713;36724;27081;39878;21288;30238;32226;24635;17055;10921;37358;39828;23540;21729;19683;40901;30652;39409;37401;30415;13119;19805;11818;30612;36500;20934;17186;26676;10291;11162;42104;30718;36773;42113;18041;11955;12332;36144;41002;11018;31609;15134;41656;25145;23864;36503;33656;31619;30592;14918;19494;37285;39293;31573;30524;32443;21903;30107;34840;20012;14676;37100;11214;18384;38974;27718;39522;37560;41661;19228;23274;29879;22534;34718;25951;18182;22396;24033;27955;33661;33179;39559;37431;38993;30876;14164;34273;36296;14423;30529;41434;14211;27932;10302;29696;42248;40732;35051;35781;39383;14256;35582;25237;39384;27574;40676;17006;17005;30458;17493;10650;32512;40839;17494;17495;20566;19512;16074;37984;18265;14707;16566;37935;32032;29677;26566;26850;27151;37800;27002;26851;22230;30879;34203;19433;26852;26853;26854;26608;16669;26855;30300;31794;38138;36496;15557;36358;33980;41191;27094;29778;25232;19481;35353;16110;22169;35971;33392;33197;26011;20660;13642;29699;24822;42140;37345;26991;13166;40886;12816;14116;30304;19864;23067;36304;24026;14168;41485;21708;21060;33985;24389;34422;40971;18739;25891;41993;23786;33921;20843;24717;18316;25632;19791;12875;12890;36052;17629;23276;36422;12758;20309;34061;39415;16681;31471;37472;26271;26326;18197;28731;22197;21982;36317;21224;12980;21866;13720;16009;25929;38987;31161;11619;31475;12917;23892;35981;18607;12331;20363;30850;23605;21114;38492;20396;29501;26207;22668;22870;33417;16450;35910;23368;12027;13775;34886;10744;14449;27678;15308;28394;21765;22512;20157;40286;41505;16184;11872;24158;30854;38497;34366;41516;27478;24258;35141;17297;24191;15002;35089;41433;10363;34891;16723;39154;11378;17437;20127;29574;37339;41700;16000;19418;22446;22018;25691;20589;24798;24239;39432;11005;25875;35146;41143;14541;26994;17975;13824;39159;39460;11293;20647;16655;24198;41705;24243;10859;12505;28511;41387;22435;14135;34056;13722;30271;25979;24564;41997;24213;12797;21733;22448;40688;32380;20867;11635;27910;28097;33539;28445;28516;24090;23707;33856;42153;40149;22272;13437;24122;16318;14678;28320;34332;20306;11665;16271;20049;12374;26882;34995;41164;26883;41545;26884;13395;12889;25266;27430;13234;34670;34446;39556;27099;25612;41064;18251;16281;18009;22365;18937;14925;36752;13336;32705;30323;37399;25827;13285;41323;39749;40161;25802;16533;16532;13018;26586;17332;33498;20014;33853;15018;25895;14839;22626;29808;37813;23017;27214;31756;22279;21891;33462;32710;32944;17004;17496;19439;26667;35967;17003;20293;17497;36217;31183;16323;17002;17153;28104;40874;40960;23712;11602;34825;23713;40015;33198;26145;40757;30159;35964;27900;19895;32949;15450;24259;22942;12567;29819;27020;22047;23066;18954;31613;14544;22187;39022;23884;33486;22004;29716;23302;35861;35530;29031;42377;24452;22445;13246;30815;16482;28594;21206;28337;20386;21584;10924;27477;15713;27733;15401;28351;18141;41929;34832;37220;16267;39027;20404;26372;19570;35866;22962;40871;26327;32773;15033;38054;38384;16373;24218;37019;29576;38616;27148;31558;41934;36315;28026;38358;22252;38715;26075;36815;36069;12351;41956;15299;23161;29345;38568;15992;21134;23696;20917;14160;35229;38389;14969;15662;31255;14705;24180;12348;14887;32474;32205;31563;38620;11781;39627;16113;24375;30995;34335;41986;33082;31207;19569;38573;11518;20303;33073;16349;21249;24121;13364;21061;21646;29106;15677;11720;29187;26572;40498;31260;11329;10094;11217;39465;14071;23966;20551;42313;31212;26174;14442;21266;18013;28769;35031;19975;38850;29111;11745;25995;36697;24924;32869;42116;24540;35818;29167;30274;25927;20437;33507;41198;18888;29788;26983;32456;14136;16156;11980;31925;28052;32124;32152;18900;34472;18219;31278;23261;22256;16048;40975;24920;29397;22258;39482;39219;34610;37141;13941;16947;41305;18266;23754;32874;20244;37993;29172;27889;10459;40585;29529;39474;19100;30685;36907;19865;31930;18055;10981;23413;15344;31283;18642;36275;41152;28158;30192;33710;37579;38808;16272;36000;39224;34615;14991;12380;18016;29489;31152;37416;15260;37230;38139;11337;22275;15846;18456;21935;15691;14889;30690;41843;30501;18127;18580;30663;30439;16612;17636;20612;42030;39717;16611;16610;12684;16609;19788;16099;33715;34270;26677;26678;13624;12090;17403;27886;17404;22558;24182;35605;41203;39463;35980;11796;33116;10407;10052;40228;38125;41512;11173;19034;13361;26613;32255;10572;22237;41848;26614;35942;26615;18774;16534;37843;10760;16531;19436;16530;11142;18463;37703;34370;16529;16528;39722;21427;16527;19563;16526;26307;21611;42195;32973;11049;42125;34977;40495;28964;11627;24196;24679;10150;25111;20915;41543;31092;21478;32260;35730;28535;33375;21494;27458;14576;12294;32405;27180;11713;29468;37740;24585;29359;38045;34325;12226;37249;32044;29180;32978;42268;28318;12003;16731;13436;10564;19164;41083;28847;13854;36238;14988;28014;42152;34955;28539;23247;11714;19357;13803;33546;30695;30507;33091;33248;14535;30444;19321;28432;20756;36917;11908;29961;19942;10836;16884;20936;17661;37201;29787;27404;28423;40987;15811;14052;24648;15422;31781;32340;30511;22723;14805;36165;19653;27975;12115;30446;23175;28437;28788;10616;38935;17108;22994;23209;30635;36981;19463;33388;27596;12262;33934;14560;26422;27876;13365;11299;27445;26373;20123;36990;38949;33962;25356;24098;17387;26160;31708;17063;17062;40500;17061;29285;17060;37036;17059;28925;17058;17057;33680;17056;21404;15862;35234;34144;34486;16663;41117;13925;42038;19331;26169;14476;28130;40083;18248;13936;34142;21276;12946;10840;20439;14024;15368;33967;16230;11755;40489;12592;15548;41777;14503;34358;18466;17972;10002;33685;31420;27989;10801;41325;27543;17213;19604;27540;31154;30101;24658;36902;15528;36558;20320;20124;22721;18303;23225;13912;34225;41782;27563;16278;16551;11748;38469;19430;30942;33432;10493;26593;14880;15135;34863;40327;34996;28106;15238;23739;21321;25560;29567;37698;20788;23293;42117;40967;38229;38474;22105;37997;12818;29342;30947;10945;16692;28153;16691;18445;37828;22038;24290;16690;34868;29628;23412;33383;22875;13623;18363;14111;23134;27237;14167;25524;25286;38234;39518;26161;15656;27225;21783;17413;17285;29939;10667;20092;29633;24216;37122;20964;23179;10100;22471;16522;40576;11012;14344;21505;33904;33206;29812;29614;34194;12867;37159;11071;36168;20786;39602;38084;21616;28200;29833;25213;25848;39587;12953;22400;12655;39593;41963;19303;16438;38143;15807;34658;36817;35100;19510;40011;23582;26679;23947;13978;26680;12378;39877;16608;13319;23434;14232;11935;30264;24823;26953;35198;33228;26681;29730;25462;15218;11304;23164;26544;32812;30561;25637;27702;23619;10540;25040;37730;14099;25117;40068;34938;17673;18164;13599;40303;42181;12067;15280;35294;11000;29858;33557;13588;18817;42011;23774;36789;18440;17241;18290;32817;20508;16769;38784;16768;21367;27323;37951;39508;38970;15891;24114;17988;31387;20281;22337;12616;27914;40629;29540;11286;24382;29584;24161;16275;22691;29528;34296;31103;13637;39764;16456;23098;38957;19250;25909;28668;20661;20483;29416;36139;22251;17252;27936;18901;13732;24095;39919;22909;15838;17274;13796;25518;36360;41384;33885;25925;35476;31226;31587;28671;18010;17189;31331;23148;34733;41010;31390;31706;21845;22759;17979;19259;35239;13306;15630;19005;31231;36821;35405;26328;21137;21659;31339;20868;25634;26985;36898;15443;25288;27606;39264;17243;41960;14254;24939;28630;40264;15247;13923;27427;17163;26138;31536;13425;23459;10416;34434;31897;34720;39120;33888;21556;41584;37929;23204;10596;17311;19747;34581;39102;31810;38789;39866;12956;33104;33449;40533;31541;21507;29432;13122;34492;18075;31902;26804;26469;23040;29742;12074;24896;11334;36967;28493;31069;16026;32302;39107;20889;24400;38651;37944;37453;28060;11580;39647;41264;34298;28458;13037;13214;29902;15578;18892;25901;20352;16364;38162;24323;11912;28996;14332;23024;13538;13612;22779;22425;19850;14174;25967;16433;20457;31865;33588;19361;32332;35097;10035;39652;13009;23139;38307;29044;32046;22211;26772;26773;33461;12366;38685;34466;33301;18451;11928;22074;32991;27997;23520;16425;39969;29001;38214;13895;40767;17054;35611;38058;34320;38312;40958;29049;39758;35668;33306;31649;20611;36820;19572;36904;13784;32670;18877;12702;32629;29771;36720;23631;26682;28876;32174;32557;26157;31436;20963;23109;35691;25836;16359;22557;11771;12642;19719;15482;36952;25604;35227;35459;32675;33621;22544;33692;39233;32634;42290;33053;23307;34096;24085;28881;32562;22066;29393;27853;27380;11168;41351;37942;36128;40842;16372;20075;18980;41679;34570;23167;22728;14103;14473;39238;33697;24419;41370;27738;41363;41213;20789;22145;25069;41139;11392;29577;23629;27844;42394;23630;26388;27961;18069;32004;10758;24732;16319;39674;18703;29997;39528;36997;34029;14132;26717;19700;19310;15323;26718;26719;40586;14555;15547;24075;36927;38425;11601;36083;12322;39678;13346;15694;18931;34458;20902;15273;38087;25728;27222;41132;29336;32229;19577;40088;24745;10174;20813;20779;38430;30653;23776;32496;30913;26835;30418;15025;33477;26836;36274;26837;26838;32955;13419;12008;30783;25573;24113;41621;33532;34077;19524;35812;30721;40456;11976;41628;39836;19051;40367;34175;20155;29502;30918;30423;38145;21458;11640;19203;21863;15968;38782;20399;39398;15667;28834;38898;31367;24101;39841;42367;40331;19147;23087;13044;33094;21831;28195;18767;31039;33664;12270;40951;26805;36847;15385;36951;29579;27679;18247;11347;34814;11899;40434;21840;29905;40326;12907;11470;41669;23859;42282;10697;24277;28161;39184;33668;36819;32838;30207;32396;15010;24936;30464;23163;14772;29780;35431;37964;11080;41674;23020;29314;39189;19248;24473;37805;30537;33231;16325;38930;34052;22376;27830;29886;21967;25784;23746;11068;16984;18270;36686;14440;40745;31083;33108;34470;23645;39747;20326;33478;16983;27450;28089;27779;33993;17646;11604;28733;12913;33326;11721;12569;25399;40147;22415;20216;22816;22989;26683;11934;31123;27887;22537;24240;28321;31747;21946;27940;24450;15083;33998;12543;25168;23658;18333;31478;19607;21383;33331;32163;41276;23510;37731;21258;25125;18387;28265;23955;14638;15375;19691;25241;11882;28397;28637;31760;38500;31138;22020;40669;19619;30155;24222;41171;34894;24532;42351;39633;37615;18515;19776;28352;15104;42402;32448;31107;11017;40914;22872;28401;32409;38800;27618;10823;27141;37645;15935;34453;28220;36343;37262;40345;29253;38505;35149;18268;34463;24583;41604;18632;18558;41430;39162;34898;26579;23429;16040;12106;24488;14700;40330;39889;19167;41109;32538;23469;32490;11307;37355;16880;36887;32162;29492;16654;26582;15376;41136;37264;21781;20958;26251;19762;14384;18720;13428;39167;11010;23418;15216;22167;25019;25219;14000;28446;20732;34766;19611;40519;11831;23123;21709;27806;16544;41739;22935;27149;16543;18026;27456;23861;41459;14327;26575;12662;37086;28449;20700;15649;31659;36336;15429;37375;13534;17410;17048;11193;28243;23124;23487;20615;38510;41744;23174;27100;14654;27500;14529;20007;41392;41260;20805;14150;18928;28086;14482;11697;39512;41208;25067;26505;19964;39569;20682;42232;38515;14237;22932;11449;35785;37306;10034;20179;36616;27042;33554;18894;34966;39584;14645;18423;30070;29926;23622;30157;30057;11459;20717;11782;35723;30083;14573;13051;33903;32718;20512;36414;38061;19026;32952;25047;22637;19346;36344;32075;27892;20909;38819;21523;10700;31651;15909;11239;37046;37923;11895;32723;19386;37880;13946;32648;28456;36497;24445;18101;37544;29875;40991;25698;11054;19686;15760;39030;21250;40423;20665;40776;41130;27152;17989;24353;19890;18077;32776;21013;34076;19454;27969;24892;26917;28602;35553;41266;11339;37691;35450;31031;32399;13295;25401;41937;20128;39035;13242;27282;40778;38948;12083;25602;35542;41226;41076;22172;32781;12837;15646;22733;29447;26545;28607;27160;13026;24938;14458;12527;40084;11725;38623;31566;31765;19370;12996;18967;39630;17400;31782;39359;30998;23043;29894;13281;23766;12413;20044;29035;10949;15939;14264;40372;12418;32308;39504;40376;31029;35082;14588;38397;29542;31263;12110;38628;35834;18875;32195;34490;35384;29706;31003;31165;31633;31215;12709;25843;20500;22401;12629;37504;20891;21528;27162;22831;32434;14703;22645;19450;39890;34852;21497;25739;27654;29114;22798;11289;38402;31268;29263;35839;40536;26146;26147;28334;38578;13708;31164;39364;31596;40128;13094;13590;28772;12724;28018;29119;19856;14519;41330;24384;20985;11157;30277;33806;37441;16145;18732;37848;38583;32084;10574;16454;18488;40124;22186;40652;22229;22043;39799;16047;28776;35330;22479;33457;38749;20748;34618;24207;16427;23039;35253;24291;21793;32882;28622;39059;11077;35662;37111;37299;21158;14554;26046;40894;27770;31938;20567;10056;16375;27005;28332;31841;29697;23581;13152;11461;39941;36421;31291;21043;14624;40621;22746;20418;31438;28048;34623;11679;29403;21961;25367;34101;24331;39064;10149;13617;40382;22618;40386;20468;21298;30116;41851;31664;33217;18118;14761;22310;19925;26958;12546;26559;26560;29857;39725;10165;19274;31657;33723;19713;16200;40053;39483;38902;18062;13551;28192;36878;36424;14838;13458;36395;30250;18236;25252;35260;32263;33118;41856;37243;42239;24851;17591;28043;36835;15664;39730;22606;20716;21187;33728;12306;26573;14740;10637;40575;17656;34480;12646;18259;16311;41592;28967;37578;13173;16764;37684;19978;20691;32268;37489;13083;29396;35339;20920;21076;20076;12097;35153;11630;21588;18637;36227;37710;15560;39768;34085;24295;36877;40580;34429;11321;17680;34214;28546;31601;37554;21335;30514;34373;13373;13950;35158;28810;28440;27365;37720;12253;25096;15254;41071;14155;32594;20180;22319;25778;29611;28550;23373;29486;13045;12020;34694;21144;40502;39880;33825;28815;16002;20988;23199;35821;34451;36374;10263;38169;38175;23376;18029;23760;36026;19685;39433;19557;40353;30017;31638;36912;14068;17688;36808;33970;40468;18514;41079;29451;24117;39617;29292;18994;34191;18978;41942;42398;29592;33283;35959;36190;40021;27270;11973;12342;21943;27122;11952;33975;26512;20052;11825;34497;30097;28343;17575;36178;16338;15737;34515;17428;21569;25295;23324;29938;12573;37535;28841;34025;36896;14543;15129;37875;31162;41790;19702;12082;27704;35110;35752;34520;34976;30950;32071;30080;15164;35488;32014;22866;14336;36063;20579;32451;18159;29907;10329;27974;19447;23075;14310;19808;35173;41795;26475;12460;31644;38237;41716;30955;19745;25690;21481;37227;29636;30390;34231;37189;23007;23041;39803;25571;11769;15651;38242;18684;24264;31795;18462;40199;30640;27009;23079;35987;29641;12062;23875;30044;25777;26379;30857;30311;18627;26487;28826;23172;33107;36004;29617;38010;12096;36858;36549;15213;12060;42108;39485;22165;20763;14869;36039;26919;10397;31444;18373;30564;18201;40167;31738;14866;41279;21974;29244;10998;32000;17155;23641;30268;31458;32438;24524;15336;23309;15330;19060;27429;34961;13082;26524;26525;34664;24922;18143;10275;23853;13216;26638;20360;29478;14350;30820;37872;18613;18810;17684;25516;37832;16469;21784;17652;32825;36959;30315;34667;37837;22231;25477;17659;18655;19588;27123;31852;38878;22184;30824;23796;16580;21705;31854;14750;11371;37365;15040;37969;32830;22305;40322;</PluginSelection><ReportHost><HostName>scanme.insecure.org</HostName><startTime>Sun Nov 8 02:21:24 2009</startTime><stopTime>Sun Nov 8 02:31:28 2009</stopTime><netbios_name>(unknown)</netbios_name><mac_addr>(unknown)</mac_addr><dns_name>scanme.insecure.org.\n</dns_name><os_name>Linux Kernel 2.6 on Red Hat Enterprise Linux 5</os_name><num_ports>6</num_ports><num_lo>19</num_lo><num_med>3</num_med><num_hi>0</num_hi><ReportItem><port>ftp (21/tcp)</port><severity>0</severity><pluginID>0</pluginID><pluginName></pluginName></ReportItem><ReportItem><port>http (80/tcp)</port><severity>0</severity><pluginID>0</pluginID><pluginName></pluginName></ReportItem><ReportItem><port>domain (53/tcp)</port><severity>0</severity><pluginID>0</pluginID><pluginName></pluginName></ReportItem><ReportItem><port>rtsp (554/tcp)</port><severity>0</severity><pluginID>0</pluginID><pluginName></pluginName></ReportItem><ReportItem><port>arcp (7070/tcp)</port><severity>0</severity><pluginID>0</pluginID><pluginName></pluginName></ReportItem><ReportItem><port>http (80/tcp)</port><severity>1</severity><pluginID>22964</pluginID><pluginName>Service Detection</pluginName><data>A web server is running on this port.\n</data></ReportItem><ReportItem><port>domain (53/tcp)</port><severity>1</severity><pluginID>11002</pluginID><pluginName>DNS Server Detection</pluginName><data>\nSynopsis :\n\nA DNS server is listening on the remote host.\n\nDescription :\n\nThe remote service is a Domain Name System (DNS) server, which\nprovides a mapping between hostnames and IP addresses.\n\nSee also :\n\nhttp://en.wikipedia.org/wiki/Domain_Name_System\n\nSolution :\n\nDisable this service if it is not needed or restrict access to\ninternal hosts only if the service is available externally.\n\nRisk factor :\n\nNone\n\n</data></ReportItem><ReportItem><port>domain (53/udp)</port><severity>1</severity><pluginID>11002</pluginID><pluginName>DNS Server Detection</pluginName><data>\nSynopsis :\n\nA DNS server is listening on the remote host.\n\nDescription :\n\nThe remote service is a Domain Name System (DNS) server, which\nprovides a mapping between hostnames and IP addresses.\n\nSee also :\n\nhttp://en.wikipedia.org/wiki/Domain_Name_System\n\nSolution :\n\nDisable this service if it is not needed or restrict access to\ninternal hosts only if the service is available externally.\n\nRisk factor :\n\nNone\n\n</data></ReportItem><ReportItem><port>domain (53/udp)</port><severity>2</severity><pluginID>12217</pluginID><pluginName>DNS Server Cache Snooping Information Disclosure</pluginName><data>\nSynopsis :\n\nThe remote DNS server is vulnerable to cache snooping attacks.\n\nDescription :\n\nThe remote DNS server responds to queries for third-party domains\nwhich do not have the recursion bit set. \n\nThis may allow a remote attacker to determine which domains have\nrecently been resolved via this name server, and therefore which hosts\nhave been recently visited. \n\nFor instance, if an attacker was interested in whether your company\nutilizes the online services of a particular financial institution,\nthey would be able to use this attack to build a statistical model\nregarding company usage of that financial institution. Of course, the\nattack can also be used to find B2B partners, web-surfing patterns,\nexternal mail servers, and more...\n\nSee also :\n\nFor a much more detailed discussion of the potential risks of allowing\nDNS cache information to be queried anonymously, please see:\nhttp://www.rootsecure.net/content/downloads/pdf/dns_cache_snooping.pdf\n\nSolution :\n\nUse another DNS software.\n\nRisk factor :\n\nMedium / CVSS Base Score : 5.0\n(CVSS2#AV:N/AC:L/Au:N/C:P/I:N/A:N)\n\n</data></ReportItem><ReportItem><port>domain (53/udp)</port><severity>1</severity><pluginID>35373</pluginID><pluginName>DNS Server DNSSEC Aware Resolver</pluginName><data>\nSynopsis :\n\nThe remote DNS resolver is DNSSEC-aware.\n\nDescription :\n\nThe remote DNS resolver accepts DNSSEC options. This means that it\nmay verify the authenticity of DNSSEC protected zones if it is\nconfigured to trust their keys.\n\nSolution :\n\nn/a\n\nRisk factor :\n\nNone\n\n</data></ReportItem><ReportItem><port>domain (53/udp)</port><severity>2</severity><pluginID>10539</pluginID><pluginName>DNS Server Recursive Query Cache Poisoning Weakness</pluginName><data>\nSynopsis :\n\nThe remote name server allows recursive queries to be performed\nby the host running nessusd.\n\nDescription :\n\nIt is possible to query the remote name server for third party \nnames.\n\nIf this is your internal nameserver, then ignore this warning.\n\nIf you are probing a remote nameserver, then it allows anyone\nto use it to resolve third party names (such as www.nessus.org).\nThis allows attackers to perform cache poisoning attacks against \nthis nameserver.\n\nIf the host allows these recursive queries via UDP, then the \nhost can be used to 'bounce' Denial of Service attacks against \nanother network or system.\n\nSee also :\n\nhttp://www.cert.org/advisories/CA-1997-22.html\n\nSolution :\n\nRestrict recursive queries to the hosts that should\nuse this nameserver (such as those of the LAN connected to it).\n\nIf you are using bind 8, you can do this by using the instruction\n'allow-recursion' in the 'options' section of your named.conf\n\nIf you are using bind 9, you can define a grouping of internal addresses\nusing the 'acl' command\n\nThen, within the options block, you can explicitly state:\n'allow-recursion { hosts_defined_in_acl }'\n\nIf you are using another name server, consult its documentation.\n\nRisk factor :\n\nMedium / CVSS Base Score : 5.0\n(CVSS2#AV:N/AC:L/Au:N/C:N/I:P/A:N)\n\nCVE : CVE-1999-0024\nBID : 136, 678\nOther references : OSVDB:438\n</data></ReportItem><ReportItem><port>domain (53/udp)</port><severity>1</severity><pluginID>35371</pluginID><pluginName>DNS Server hostname.bind Map Hostname Disclosure</pluginName><data>\nSynopsis :\n\nThe DNS server discloses the remote host name.\n\nDescription :\n\nIt is possible to learn the remote host name by querying the remote\nDNS server for 'hostname.bind' in the CHAOS domain.\n\nSolution :\n\nIt may be possible to disable this feature. Consult the vendor's\ndocumentation for more information.\n\nRisk factor :\n\nNone\n\nPlugin output :\n\nThe remote host name is :\n\nsyn.titan.net\n\n</data></ReportItem><ReportItem><port>domain (53/udp)</port><severity>1</severity><pluginID>10028</pluginID><pluginName>ISC BIND version Directive Remote Version Disclosure</pluginName><data>\nSynopsis :\n\nIt is possible to obtain the version number of the remote DNS server.\n\nDescription :\n\nThe remote host is running BIND, an open-source DNS server. It is\npossible to extract the version number of the remote installation by\nsending a special DNS request for the text 'version.bind' in the\ndomain 'chaos'.\n\nSolution :\n\nIt is possible to hide the version number of bind by using the\n'version' directive in the 'options' section in named.conf\n\nRisk factor :\n\nNone\n\nPlugin output :\n\nThe version of the remote DNS server is :\n\n9.3.4-P1\n\nOther references : OSVDB:23\n</data></ReportItem><ReportItem><port>domain (53/udp)</port><severity>1</severity><pluginID>31658</pluginID><pluginName>DNS Sender Policy Framework (SPF) Enabled</pluginName><data>\nSynopsis :\n\nThe remote domain publishes SPF records.\n\nDescription :\n\nThe remote domain publishes SPF records. SPF (Sender Policy\nFramework) is a mechanism to let an organization specify their mail\nsending policy, such as which mail servers are authorized to send mail\non its behalf.\n\nSee also :\n\nhttp://www.openspf.org/\n\nSolution :\n\nn/a\n\nRisk factor :\n\nNone\n\nPlugin output :\n\nThe following SPF records could be extracted for insecure.org:\n\nv=spf1 a mx ptr ip4:64.13.134.0/26 ~all\n\n</data></ReportItem><ReportItem><port>domain (53/udp)</port><severity>1</severity><pluginID>35450</pluginID><pluginName>DNS Server Spoofed Request Amplification DDoS</pluginName><data>\nSynopsis :\n\nThe remote DNS server could be used in a distributed denial of service\nattack.\n\nDescription :\n\nThe remote DNS server answers to any request. It is possible to query\nthe name servers (NS) of the root zone ('.') and get an answer which\nis bigger than the original request. By spoofing the source IP\naddress, a remote attacker can leverage this 'amplification' to launch\na denial of service attack against a third-party host using the remote\nDNS server.\n\nSee also :\n\nhttp://isc.sans.org/diary.html?storyid=5713\n\nSolution :\n\nRestrict access to your DNS server from public network or reconfigure\nit to reject such queries.\n\nRisk factor :\n\nNone\n\nPlugin output :\n\nThe DNS query was 17 bytes long, the answer is 272 bytes long.\n\n</data></ReportItem><ReportItem><port>general/udp</port><severity>1</severity><pluginID>10287</pluginID><pluginName>Traceroute Information</pluginName><data>\nSynopsis :\n\nIt was possible to obtain traceroute information.\n\nDescription :\n\nMakes a traceroute to the remote host.\n\nSolution :\n\nn/a\n\nRisk factor :\n\nNone\n\nPlugin output :\n\nFor your information, here is the traceroute from 10.0.1.9 to 64.13.134.52 : \n10.0.1.9\n10.0.1.1\n76.43.128.1\n65.28.18.49\n24.94.160.102\n69.76.62.253\n66.109.6.100\n66.109.6.153\n213.248.76.97\n213.248.80.25\n80.239.193.126\n69.36.239.221\n64.13.134.52\n\n</data></ReportItem><ReportItem><port>general/tcp</port><severity>1</severity><pluginID>31422</pluginID><pluginName>Reverse NAT/Intercepting Proxy Detection</pluginName><data>\nSynopsis :\n\nThe remote IP address seems to connect to different hosts\nvia reverse NAT, or an intercepting proxy is in the way.\n\nDescription :\n\nReverse NAT is a technology which lets multiple computers offer\npublic services on different ports via the same IP address. \n\nBased on OS fingerprinting results, it seems that different \noperating systems are listening on different remote ports.\n\nNote that this behavior may also indicate the presence of a\nintercepting proxy, a load balancer or a traffic shaper.\n\nSee also :\n\nhttp://en.wikipedia.org/wiki/Proxy_server#Intercepting_proxy_server\n\nSolution :\n\nMake sure that this setup is authorized by your security policy\n\nRisk factor :\n\nNone\n\nPlugin output :\n\n+ On the following port(s) : \n - 7070 (0 hops away)\n - 21 (0 hops away)\n - 554 (0 hops away)\n\nThe operating system was identified as :\n\nNetBSD 3.0\n\n+ On the following port(s) : \n - 53 (13 hops away)\n - 80 (13 hops away)\n\nThe operating system was identified as :\n\nLinux Kernel 2.6\n\n</data></ReportItem><ReportItem><port>general/tcp</port><severity>1</severity><pluginID>12053</pluginID><pluginName>Host Fully Qualified Domain Name (FQDN) Resolution</pluginName><data>\nSynopsis :\n\nIt was possible to resolve the name of the remote host.\n\nDescription :\n\nNessus was able to resolve the FQDN of the remote host.\n\nSolution :\n\nn/a\n\nRisk factor :\n\nNone\n\nPlugin output :\n\n64.13.134.52 resolves as scanme.insecure.org.\n\n</data></ReportItem><ReportItem><port>general/tcp</port><severity>1</severity><pluginID>25220</pluginID><pluginName>TCP/IP Timestamps Supported</pluginName><data>\nSynopsis :\n\nThe remote service implements TCP timestamps.\n\nDescription :\n\nThe remote host implements TCP timestamps, as defined by RFC1323. A\nside effect of this feature is that the uptime of the remote host can\nsometimes be computed.\n\nSee also :\n\nhttp://www.ietf.org/rfc/rfc1323.txt\n\nSolution :\n\nn/a\n\nRisk factor :\n\nNone\n\n</data></ReportItem><ReportItem><port>http (80/tcp)</port><severity>1</severity><pluginID>11032</pluginID><pluginName>Web Server Directory Enumeration</pluginName><data>Synopsis :\n\nIt is possible to enumerate directories on the web server.\n\nDescription :\n\nThis plugin attempts to determine the presence of various\ncommon directories on the remote web server. By sending a \nrequest for a directory, the web server response code \nindicates if it is a valid directory or not.\n\nRisk factor : \n\nNone\n\nPlugin output :\n\nThe following directories were discovered:\n/error, /icons\n\nWhile this is not, in and of itself, a bug, you should manually inspect \nthese directories to ensure that they are in compliance with company\nsecurity standards\n\nOther references : OWASP:OWASP-CM-006\n</data></ReportItem><ReportItem><port>http (80/tcp)</port><severity>1</severity><pluginID>10107</pluginID><pluginName>HTTP Server type and version</pluginName><data>Synopsis :\n\nA web server is running on the remote host.\n\nDescription :\n\nThis plugin attempts to determine the type and the version of the\nremote web server. \n\nRisk factor : \n\nNone\n\nPlugin output :\n\nThe remote web server type is :\n\nApache/2.2.3 (Red Hat)\r\n\n\nSolution : You can set the directive 'ServerTokens Prod' to limit\nthe information emanating from the server in its response headers.\n</data></ReportItem><ReportItem><port>http (80/tcp)</port><severity>1</severity><pluginID>24260</pluginID><pluginName>HyperText Transfer Protocol (HTTP) Information</pluginName><data>\nSynopsis :\n\nSome information about the remote HTTP configuration can be extracted.\n\nDescription :\n\nThis test gives some information about the remote HTTP protocol - the\nversion used, whether HTTP Keep-Alive and HTTP pipelining are enabled,\netc... \n\nThis test is informational only and does not denote any security\nproblem.\n\nSolution :\n\nn/a\n\nRisk factor :\n\nNone\n\nPlugin output :\n\nProtocol version : HTTP/1.1\nSSL : no\nPipelining : yes\nKeep-Alive : yes\nOptions allowed : GET,HEAD,POST,OPTIONS,TRACE\nHeaders :\n\n Date: Sun, 08 Nov 2009 08:29:42 GMT\r\n Server: Apache/2.2.3 (Red Hat)\r\n Accept-Ranges: bytes\r\n Content-Length: 739\r\n Keep-Alive: timeout=15, max=100\r\n Connection: Keep-Alive\r\n Content-Type: text/html; charset=UTF-8\n\n</data></ReportItem><ReportItem><port>http (80/tcp)</port><severity>2</severity><pluginID>11213</pluginID><pluginName>HTTP TRACE / TRACK Methods Allowed</pluginName><data>Synopsis :\n\nDebugging functions are enabled on the remote web server. \n\nDescription :\n\nThe remote webserver supports the TRACE and/or TRACK methods. TRACE\nand TRACK are HTTP methods which are used to debug web server\nconnections. \n\nIn addition, it has been shown that servers supporting the TRACE\nmethod are subject to cross-site scripting attacks, dubbed XST for\n"Cross-Site Tracing", when used in conjunction with various weaknesses\nin browsers. An attacker may use this flaw to trick your legitimate\nweb users to give him their credentials. \n\nSee also :\n\nhttp://www.cgisecurity.com/whitehat-mirror/WH-WhitePaper_XST_ebook.pdf\nhttp://www.apacheweek.com/issues/03-01-24\nhttp://www.kb.cert.org/vuls/id/288308\nhttp://www.kb.cert.org/vuls/id/867593\n\nSolution :\n\nDisable these methods.\n\nRisk factor :\n\nMedium / CVSS Base Score : 4.3\n(CVSS2#AV:N/AC:M/Au:N/C:P/I:N/A:N)\nSolution : \n\nAdd the following lines for each virtual host in your configuration file :\n\n RewriteEngine on\n RewriteCond %{REQUEST_METHOD} ^(TRACE|TRACK)\n RewriteRule .* - [F]\n\nAlternatively, note that Apache versions 1.3.34, 2.0.55, and 2.2\nsupport disabling the TRACE method natively via the 'TraceEnable'\ndirective.\n\nPlugin output :\n\nNessus sent the following TRACE request : \n\n------------------------------ snip ------------------------------\nTRACE /Nessus1407599676.html HTTP/1.1\r\nConnection: Close\r\nHost: scanme.insecure.org\r\nPragma: no-cache\r\nUser-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)\r\nAccept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, image/png, */*\r\nAccept-Language: en\r\nAccept-Charset: iso-8859-1,*,utf-8\r\n\r\n------------------------------ snip ------------------------------\n\nand received the following response from the remote server :\n\n------------------------------ snip ------------------------------\nHTTP/1.1 200 OK\r\nDate: Sun, 08 Nov 2009 08:29:50 GMT\r\nServer: Apache/2.2.3 (Red Hat)\r\nKeep-Alive: timeout=15, max=100\r\nConnection: Keep-Alive\r\nTransfer-Encoding: chunked\r\nContent-Type: message/http\r\n\r\n\r\nTRACE /Nessus1407599676.html HTTP/1.1\r\nConnection: Keep-Alive\r\nHost: scanme.insecure.org\r\nPragma: no-cache\r\nUser-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)\r\nAccept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, image/png, */*\r\nAccept-Language: en\r\nAccept-Charset: iso-8859-1,*,utf-8\r\n\r\n------------------------------ snip ------------------------------\n\nCVE : CVE-2003-1567, CVE-2004-2320\nBID : 9506, 9561, 11604, 33374\nOther references : OSVDB:877, OSVDB:3726, OSVDB:5648, OSVDB:50485\n</data></ReportItem><ReportItem><port>general/tcp</port><severity>1</severity><pluginID>11936</pluginID><pluginName>OS Identification</pluginName><data>\nRemote operating system : Linux Kernel 2.6 on Red Hat Enterprise Linux 5\nConfidence Level : 95\nMethod : HTTP\n\n \nThe remote host is running Linux Kernel 2.6 on Red Hat Enterprise Linux 5\n</data></ReportItem><ReportItem><port>general/tcp</port><severity>1</severity><pluginID>18261</pluginID><pluginName>Apache Banner Linux Distribution Disclosure</pluginName><data>\nSynopsis :\n\nThe name of the Linux distribution running on the remote host was\nfound in the banner of the web server.\n\nDescription :\n\nThis script extracts the banner of the Apache web server and attempts\nto determine which Linux distribution the remote host is running.\n\nSolution :\n\nIf you do not wish to display this information, edit httpd.conf and\nset the directive 'ServerTokens Prod' and restart Apache.\n\nRisk factor :\n\nNone\n\nPlugin output :\n\nThe linux distribution detected was : \n - Red Hat Enterprise Linux 5\n\n</data></ReportItem><ReportItem><port>general/tcp</port><severity>1</severity><pluginID>19506</pluginID><pluginName>Nessus Scan Information</pluginName><data>Information about this scan : \n\nNessus version : 4.0.2\nPlugin feed version : 200911071334\nType of plugin feed : HomeFeed (Non-commercial use only)\nScanner IP : 10.0.1.9\nPort scanner(s) : nessus_syn_scanner \nPort range : default\nThorough tests : no\nExperimental tests : yes\nParanoia level : 1\nReport Verbosity : 1\nSafe checks : yes\nOptimize the test : yes\nCGI scanning : enabled\nWeb application tests : enabled\nMax hosts : 40\nMax checks : 5\nRecv timeout : 5\nBackports : Detected\nScan Start Date : 2009/11/8 2:21\nScan duration : 600 sec\n\n</data></ReportItem><ReportItem><port>http (80/tcp)</port><severity>1</severity><pluginID>39521</pluginID><pluginName>Backported Security Patch Detection (WWW)</pluginName><data>\nSynopsis :\n\nSecurity patches are backported.\n\nDescription :\n\nSecurity patches may have been 'back ported' to the remote HTTP server\nwithout changing its version number.\n\nBanner-based checks have been disabled to avoid false positives.\n\nNote that this test is informational only and does not denote any \nsecurity problem.\n\nSee also :\n\nhttp://www.nessus.org/u?d636c8c7\n\nSolution :\n\nN/A\n\nRisk factor :\n\nNone\n\nPlugin output :\n\nGive Nessus credentials to perform local checks.\n\n</data></ReportItem></Report></NessusClientData>
@@ -0,0 +1,2080 @@
1
+ <?xml version="1.0" ?>
2
+ <NessusClientData_v2>
3
+ <Policy>
4
+ <policyName>Ruby-Nessus</policyName>
5
+ <policyComments>This is the ruby-nessus example scan using the .nessus version 2 schema.</policyComments>
6
+ <Preferences>
7
+ <ServerPreferences>
8
+ <preference>
9
+ <name>use_mac_addr</name>
10
+ <value>no</value>
11
+ </preference>
12
+ <preference>
13
+ <name>plugin_set</name>
14
+ <value>36315;10003;20975;25954;20421;22612;12481;41012;20476;10574;23336;40284;41919;13203;38476;17463;25530;38721;18784;23180;32784;25202;34203;19251;33392;12573;41884;36196;29262;32117;12697;17253;19298;36542;19286;37508;37702;41023;22341;42558;16002;12031;40954;31539;30876;41467;10517;17156;36819;24191;43009;12936;27080;37743;29572;31407;13523;35044;40000;21574;34680;10962;12991;28398;23971;14291;16448;34979;33648;30739;42549;22017;10272;29099;30867;36083;36993;11223;15714;16373;24052;28752;20496;23406;24529;16674;32234;11235;33286;27508;34497;19803;31507;25368;11843;22059;42895;37714;12912;21618;26798;23898;27334;23841;42482;35432;38051;20211;21642;40491;19227;12841;36529;10172;24540;23540;34403;42859;23728;10501;23161;30513;26700;18171;39918;38947;25038;20178;39288;24547;21553;42272;11608;40762;30058;27487;35090;42658;41317;37762;23859;32476;25974;30083;19702;40373;31044;14934;18469;35692;35366;42061;23391;21724;13073;19951;42934;16059;42659;32185;35006;38856;10006;15400;16840;21446;34256;31828;27405;22604;37726;28987;35014;10192;35553;25941;20557;28656;23254;26963;26002;33967;27896;41637;39203;38461;40654;21659;11350;27618;35153;34992;35182;11881;20234;10248;28590;37274;29186;26632;33046;27132;13929;36332;15433;29801;40830;33621;37494;10380;23396;30197;11241;11470;36300;10509;14423;33541;26574;43032;39425;10917;22858;15547;20147;19541;38042;42951;41539;14316;17331;37320;21567;24980;26077;19123;15933;18269;42455;38073;24126;39542;26062;10487;27100;41929;15617;42181;26724;26499;26426;17394;29996;33070;25123;30317;12416;11130;35935;12918;42700;11114;37382;25163;24061;34827;34943;36833;30634;10717;22319;42881;29204;39574;29527;35168;14741;11496;28442;31717;14510;35792;23721;24648;32904;21252;30154;18394;12796;20129;12656;26920;25524;22610;28919;30258;28193;32596;28144;10493;10678;15748;12863;17118;34935;39069;25933;19899;33083;15160;42596;38712;24084;18825;39407;41430;41780;33474;30327;32194;26046;38673;29437;41755;40033;13527;12965;10052;26734;11448;40846;10207;19948;35059;23785;20073;26446;14044;29970;39528;40106;11370;27053;24412;38378;33076;23698;42727;18549;43046;18411;26947;33885;18087;10691;37208;41274;23283;29875;30995;27259;22929;15339;17601;25088;33249;35557;20214;22034;22451;14232;27576;16248;24994;35100;34430;41091;23610;19024;28041;37747;24162;18379;26042;21633;32451;18378;38752;11407;42114;33729;12950;39273;22712;15003;18240;21935;19416;39379;25310;15576;38035;37366;38278;36311;39034;11266;24923;40003;42172;36479;25657;15035;19732;23662;10562;34781;39707;39678;28600;26358;21453;24174;39603;41487;11667;28246;24600;33822;16572;14865;20417;15308;20858;34766;28727;40112;36826;22138;31925;35743;19115;27528;22378;41902;10495;25638;36537;33762;38535;39371;20592;28309;28751;40150;16276;34938;29006;32915;17133;15432;25452;34931;37313;27502;18295;31952;19326;30640;33192;16749;24795;25095;13725;38165;16329;19676;41627;27092;22583;19329;16968;20303;36277;39626;31942;30207;18985;30894;11579;16848;19583;12826;42165;33300;36188;40992;22101;18810;25984;14497;27860;16467;37593;24146;15493;42625;41393;39764;20908;16563;14420;14130;25405;37531;27086;26387;29467;37825;19644;24474;16096;19443;12839;14153;34057;37906;31133;39939;33614;29316;29101;33566;12423;19713;13355;21800;39097;23974;40932;41550;25002;24136;22163;15099;18283;41503;10619;15698;31872;11757;21812;42548;29992;32628;35879;36967;13325;35860;24247;35579;36240;16293;18073;20759;39094;12904;17667;31088;41325;14554;16428;15357;13081;37864;26169;37404;24018;15210;24153;33459;16218;38606;37334;39305;18447;36767;11141;42528;23258;16292;42038;35369;41488;24973;11140;29873;12847;25362;24984;32854;35910;27807;40571;12404;16333;33097;28383;10634;23861;32508;42169;15354;20025;15588;37670;15012;21856;39442;15215;40271;11488;25664;38833;20700;42183;36865;39244;41102;35336;20170;14150;36653;39841;31550;39412;25908;29738;29412;32350;39030;42684;29558;12409;17588;13771;15898;35921;16195;37851;29177;12734;21541;41051;24938;24869;24172;41951;20762;15858;37939;40059;13276;14788;41233;33142;25167;15747;21820;25969;41542;41135;12874;20397;36360;28363;37278;19274;21189;40119;32342;18722;31201;21575;40095;25087;38181;30731;13606;21484;38972;31634;23745;41860;13310;18375;32055;14963;28740;26709;29619;28013;28353;16583;36123;17114;24214;11862;17273;21917;12360;33669;24404;25546;21307;21083;30411;20989;37744;24803;32647;30198;25430;30564;15836;10676;32503;22466;14862;29944;42023;28546;33295;30485;29332;40118;30368;10191;34374;24906;23913;42376;10466;21080;40148;20196;20279;19029;42080;38707;34669;27842;37985;28913;30836;29090;19601;38146;27234;24668;17591;22454;36288;40232;26960;22343;12217;20736;19044;24626;27986;13190;36362;14252;26102;12924;29122;37506;15408;28397;21727;27921;37363;23904;11561;38398;15118;39982;29478;11315;19391;13504;22167;23537;12704;36629;36032;19226;12382;27954;18886;30744;22119;42436;30237;38453;22123;31475;10091;26192;11364;22052;33407;10340;42667;31645;39211;38590;40538;17669;35426;32285;15014;20737;26205;15891;14910;31502;29234;30761;38048;19510;36181;22461;27166;10784;18127;25698;13255;12978;17018;16027;35463;34236;37092;39480;33756;37661;26223;36785;19973;40837;12069;25033;37407;32631;40565;16533;34552;24761;31239;23424;25287;32947;27126;10214;38243;28997;12688;33872;36496;31160;37346;18122;36920;34336;21099;27186;24837;21240;33438;37642;24241;18421;18038;37285;32355;13628;28822;11060;15992;19694;40701;42379;11890;13447;32099;25115;35404;38916;14595;21756;24019;30670;18219;37934;27870;27207;20938;23358;34186;27105;39126;21193;28269;36077;23520;13885;22703;16669;37296;10029;15551;37623;26230;11395;32356;33066;40647;15521;30860;22902;18133;26649;35763;24775;12330;22273;24159;31629;32890;25539;21069;22339;15804;25184;24002;12000;21199;25997;28825;18337;20599;12462;17030;34544;32470;33194;27862;19816;24062;20190;12476;34107;31228;22779;20646;11086;32621;28428;16469;42822;26620;38508;38612;38576;40149;39510;22729;40681;19084;12742;20282;15683;35049;41041;16620;29589;37952;37866;29244;12349;16462;27304;19939;15967;14311;17093;21959;36645;30039;41827;40792;26995;14042;39630;38735;29206;12013;35442;19994;40113;41680;40391;27294;24947;19656;33492;37380;27460;17558;31219;10829;26101;10979;18863;29073;41509;21578;36290;13240;37157;22216;29918;33520;41128;35694;13708;27687;40410;15699;13108;36057;38164;10714;30256;17406;24997;16263;16750;27359;35872;36596;19897;11070;19593;40687;15145;19030;36289;28748;18557;19898;42946;37800;22010;34192;25549;20879;22403;29861;31389;10723;18241;21815;40412;15623;33536;21431;32254;42640;30534;11576;15181;29795;37813;31587;22558;29350;24799;17181;18334;11632;20624;41534;39007;34120;40102;40245;16567;38670;22694;27660;19478;40794;11951;32427;19003;32649;19319;11676;28450;42835;14124;35450;29282;41863;40986;33534;24388;21379;23993;35083;26795;28838;11045;15260;22664;38395;30456;24776;20633;11884;37241;16770;29451;38394;29053;23369;31287;30255;27041;21844;38638;28075;25347;28107;30135;12599;18322;15224;39889;24088;18357;14867;26959;26624;16049;23553;36552;15005;42352;24072;32774;28574;28964;30555;14678;33464;28033;40362;36070;42878;36066;13287;32165;14509;29994;34714;22596;41652;35643;12813;13002;24522;40826;20571;17106;21862;37008;14789;17988;23224;11458;36450;39647;15366;40713;28095;34991;25058;15342;36937;31197;22140;26556;25855;39231;36257;41423;31950;18268;15926;31369;19291;37458;23107;25108;11324;12600;31216;30265;31217;29041;24965;39176;40100;30891;35741;10995;20475;18413;22090;13731;12944;36202;16657;13544;37327;24917;38010;30213;30429;36456;16277;16940;42932;14147;28326;20318;25232;40881;29943;41400;37599;14924;31829;31749;25892;40759;27069;35176;12879;11111;20372;32825;37867;19142;19096;14372;39219;31252;28576;11012;41220;38085;22809;12881;13795;34389;17554;28598;16361;21771;16763;24441;15008;10156;31936;31817;26762;25601;38350;39142;16589;24319;11793;16079;33618;27039;19794;34055;18939;36946;10601;24306;14057;22877;29889;11302;18843;34871;18876;31150;11919;28738;20920;13111;13894;25491;21576;35952;22435;21392;42718;32205;37436;21200;20966;18342;34756;37309;38660;23489;11805;43071;13513;31742;36677;14145;30378;19769;11013;41656;32644;29772;41136;22259;40115;36608;24295;38006;16957;17326;34100;19720;40791;36387;11874;30985;41436;30748;16569;23179;14438;13188;14967;32443;23561;33216;20453;41448;36924;41149;39417;12351;26253;18115;21017;15662;37049;28637;36106;29684;28401;13347;37713;32957;20533;20615;15182;13052;25377;25025;25778;23612;10852;28564;21336;15974;25975;24070;18143;41330;12359;21513;21796;10395;22824;25522;38458;31892;20458;22860;25576;28198;39269;18300;41953;23673;12412;25760;29565;32062;34574;27315;35925;18224;16740;19080;31326;37490;34302;19205;37390;25800;29596;16503;34917;11894;27617;26735;31474;14413;29397;10892;12304;32849;19278;28890;11724;20174;23996;31454;42901;28396;15072;30387;20894;15252;33721;22600;18628;29455;35304;11220;18255;30016;22987;37460;33025;11354;27837;27213;37371;17546;19903;35747;36221;11938;29220;40184;19545;10641;29622;20207;19397;19912;38149;36164;13186;40696;16785;37566;14692;19143;28515;22999;13883;32281;35955;11803;25162;40922;31826;23846;32919;19199;33138;32618;22556;41376;21332;31861;31125;13076;14720;32521;41088;40446;28832;32104;41596;12859;22357;12915;11591;35866;21159;23777;18312;41392;18340;31495;23844;21313;41403;36137;22132;38608;24897;41101;32654;38101;19935;38599;35702;34569;13008;38157;20859;10781;33976;34023;10826;24493;35181;15233;11287;24376;34519;41081;17402;14031;22792;25523;27332;19008;17275;10610;32390;22219;36581;36795;33191;14228;25755;33415;22953;36816;12955;21824;25695;16062;28785;27200;31293;21050;14547;41828;21670;24676;38087;15591;22899;32619;36919;14635;29196;33369;25309;20140;25578;33049;41028;36230;16970;36445;31351;30594;40267;18745;36271;12761;31161;23789;25839;40916;15365;34854;38621;34691;14636;29217;12205;25263;11368;40395;28072;20392;31582;41460;42864;23921;38581;27461;10982;18641;26640;30733;42262;24387;35808;19941;30561;19904;20086;14989;18135;41708;40664;23614;14195;11782;32391;22663;33598;34849;23740;26307;37084;13264;14478;22945;17013;15258;40564;37123;29710;41085;20494;41560;13998;39800;21963;11293;11477;14340;35719;19901;11770;34244;20614;12380;26944;25978;29643;35293;28143;26766;34412;28542;32894;25876;12642;11771;31049;34243;13765;17023;17095;39350;20484;41130;12403;14648;32905;41112;24696;25114;40455;35943;29037;34863;15604;14860;39618;28952;16964;40161;29201;27325;40442;36715;31120;25149;22021;33396;29957;20971;38869;24410;18854;38145;21321;31004;28500;29693;19499;32498;20930;36092;26705;31711;21714;15307;11480;33851;27410;19738;32581;40580;26858;20718;17486;28474;10489;34179;22834;28102;12230;20896;28717;38004;18023;21253;21221;38446;21173;23255;30500;38611;17607;15200;24634;17357;11256;20154;28300;41251;13579;18200;38089;23058;13900;35021;34543;21216;32386;26313;27355;18675;33033;34498;14628;35837;25448;17084;31451;31090;32826;38138;40616;14465;23028;22335;17686;40629;27941;41694;36153;24898;21169;41045;19934;41478;23245;26794;10592;16742;12435;37191;16719;15169;27376;24363;36266;23798;40920;22588;29452;28897;17302;10577;24017;14625;28625;39770;37620;38023;23160;15627;32800;34092;39811;12651;17070;37031;31906;11077;20954;31937;17532;24013;31033;14406;37902;15952;41502;10960;17309;29080;20087;13120;31720;23572;12559;39926;24678;39965;11031;42154;40016;41433;41651;41649;35444;26439;40476;32378;11539;14207;38492;14134;24509;27535;17371;42593;35595;29870;42501;28181;34923;22340;32936;30437;38431;39846;32615;21434;20540;30698;38030;34174;37328;41336;34783;35414;41770;15640;23939;11063;13664;14617;18635;33461;29203;38238;11014;27227;29153;21799;34900;16141;23133;14021;17411;19754;29071;15602;19999;35589;40287;14200;38691;13616;37075;25169;27195;40083;12895;36551;22077;27750;20325;42142;29219;38853;20662;30490;28533;16807;16103;31545;14402;11686;40656;23247;18110;40432;26348;32300;16497;21224;39492;15303;34288;26699;36794;33096;15670;33031;30051;32273;36321;38251;22372;10805;13286;36041;12263;32175;11365;25670;21021;31483;20618;40549;40356;30941;31682;16594;40806;12083;36082;34078;24257;40238;39641;36572;27400;19578;20284;37802;18376;27306;28486;16458;11947;21031;16622;26074;36251;36691;36657;15142;32474;33115;27129;35605;26993;32529;18654;34478;18072;35195;37540;18574;37811;16932;27806;26506;35262;36130;42893;21662;24751;14688;25896;27621;32970;30521;36193;25692;31519;33457;40265;13383;15725;17436;30663;35687;19053;36772;14585;27218;35506;40139;38187;26717;25731;32425;19930;18121;30715;39815;28777;19520;12357;32512;13199;11327;37097;15854;18436;16522;42889;41862;14087;23831;21466;14908;42768;29271;36429;42581;35825;36683;18997;27917;42782;10005;15671;13811;29719;18500;11075;36064;10482;19031;41080;33535;34299;17091;32012;34653;32624;42383;32113;31231;12548;40075;35158;38244;25777;26027;29486;31243;25645;33575;40786;30868;19797;26229;29714;18731;29173;38551;38080;20716;25494;29238;38882;16382;25724;30579;15234;14100;34032;18618;19204;11099;15096;41771;31726;42656;36970;31901;20809;37497;27688;21516;19429;27416;38896;22444;37571;32272;35453;26982;31110;26363;41890;20239;33739;29274;37444;37640;36956;37349;20018;31594;41952;30554;32326;17209;30853;14026;23518;42234;35024;34698;21002;22555;42923;12200;29000;13526;30499;19707;16676;42938;25474;10614;22224;10350;17067;22364;26609;40804;36532;20413;23050;19563;28029;38997;33080;41063;30450;41294;41691;13743;23306;21716;13730;16136;23724;42197;19058;10306;36499;35667;23498;23963;15522;30233;42808;32765;34438;29509;26630;16343;11400;20230;12477;20145;17362;40693;12593;12523;19479;39710;31396;10511;42855;27051;13297;28924;34257;26380;13876;14569;25540;24144;36702;42489;27902;11914;29764;13106;20419;21249;14974;11726;16090;20420;20141;28071;25242;29352;16603;26527;12694;17530;28726;15351;31966;12451;41945;11263;27966;34069;31229;33250;12776;34447;10116;33174;38546;41955;18282;35863;31919;29469;20985;29449;19321;32736;38245;24094;19183;36453;16864;37791;42343;15477;35413;31729;39517;39215;40546;34749;24351;26258;43055;40182;30790;30377;14427;23277;29459;12961;23290;40199;25577;25729;26631;16068;12552;36720;14148;22738;27418;17203;12758;25097;35980;34493;18762;22116;41809;39303;18560;25142;37475;19150;34609;32670;25301;20607;35179;13691;14245;35048;28516;14037;40401;12583;20485;39725;37085;39838;21726;40462;28812;39983;32306;26214;23620;20382;14342;21879;17675;16030;25436;41040;32123;14994;10036;29998;39971;33112;23792;33036;38713;14868;33673;30826;36194;29126;28375;37413;37637;24598;26658;14695;14952;21945;20283;28219;37156;28028;15284;28831;25396;10105;38170;36549;36618;13871;12406;15574;27565;32694;40009;36639;18299;22165;24160;16482;12461;23663;34896;15948;19978;30819;33198;33785;12126;29869;29168;25323;40202;28804;13565;29035;24835;32493;31659;26565;26360;32299;41236;35869;32810;13530;31506;26871;27751;34164;17027;38210;35491;30371;28506;26492;38321;27075;42402;17282;13647;38815;40632;21128;26641;32358;12972;26874;27458;26373;32459;24057;40883;23720;25257;32485;37126;13912;21054;21445;17470;34397;13077;16495;14557;41382;12807;14954;11332;28666;19407;25921;15420;15046;39454;33917;15940;10851;36131;10654;39875;17976;28482;42755;21012;16681;22780;32695;30473;15360;37200;34274;26770;38290;32260;11543;23398;31618;42669;30008;37954;11834;15010;41468;23566;40503;15920;13098;42366;16165;13374;35631;13904;37817;26309;37787;15146;20744;37784;19243;10125;21550;26105;28315;12720;39272;32855;40553;30792;28910;16215;40049;36514;37883;23265;24543;32566;31436;32015;30094;40962;24758;37680;35530;12804;26956;14677;35685;17688;27548;14300;34762;30385;42585;27481;32209;39776;13045;11737;34500;16099;14725;42748;24921;12788;21286;41543;26365;13367;24513;10817;27324;18903;17446;41855;12100;23751;28606;14555;37956;22157;21753;39636;32544;43051;40705;33500;14358;34481;24217;31508;24193;17369;24148;35076;27435;15841;37558;20603;20525;20664;33867;31593;31741;32690;11375;17431;19528;29673;32183;32082;37347;28757;15894;28484;29594;33453;24130;30189;26279;34071;25164;34963;12396;36613;23016;29163;23027;21328;26228;40587;32402;30771;25066;43100;30271;12553;40097;28643;20984;12199;21689;40077;25706;35594;40468;33299;23786;31663;26512;16233;32861;41529;24797;42426;25441;29941;25628;38121;39613;34513;36589;32537;23110;23380;32050;16119;30440;24901;21750;14475;10729;26295;12778;21314;15902;18846;37356;41705;16127;42498;30764;34800;10555;32151;40316;25128;22745;32929;37909;11320;24541;14159;39220;13655;28316;30632;23762;32133;17151;25044;25935;38620;39248;18528;27006;24489;16709;15051;18553;38560;28157;34848;30979;27319;29209;13472;18483;18097;23911;14753;43027;43094;34573;13922;26765;35271;39615;26764;15100;41270;23622;13533;11522;22477;34772;28337;28150;32732;41164;42090;15423;34139;13121;28364;24187;31847;14162;38619;19337;40601;39072;33437;14757;16512;31000;33159;34671;20265;25071;22608;27240;15778;20348;19536;37474;19677;33040;37562;24173;28895;27296;27447;24141;41568;41209;31776;21476;15628;41364;18081;21739;29436;11621;15731;22579;31194;16498;32363;30813;36078;14467;25953;41493;18788;18422;35785;25124;36293;15676;32752;30399;14666;29542;14749;34953;31402;20266;26425;19257;39048;15001;40252;25273;31240;39365;34617;28043;34799;32837;37188;39863;36307;29413;16912;31393;27403;27955;27364;21399;34428;28068;23192;19103;38315;30320;22670;37259;39687;10668;41670;33982;25826;42598;26327;16477;42414;14828;12076;29005;34194;40755;15144;30806;40961;16555;10646;32152;39552;37385;19146;31923;30145;38447;23327;21837;16409;36474;10896;34977;32884;19460;30194;13135;19971;15095;24176;35682;35440;16852;16564;15595;10919;15221;20665;31963;19423;24523;16299;29085;32051;23855;16923;25994;42147;29255;29689;36792;21999;24814;27575;21046;18398;23544;31961;25669;29976;12384;42738;36089;22135;31959;17258;15643;41783;27187;26461;36963;40852;26244;10299;16397;32976;29435;39440;17226;42106;19689;13363;35458;39077;27025;41394;37610;32426;15787;27690;12716;34014;31269;28561;42438;37239;17995;29283;37524;24914;33348;40516;34325;25548;28031;31725;29313;33969;33894;19775;36573;18744;21300;34098;13939;25435;15644;33257;28826;24464;26185;31633;13875;24749;38391;20542;28355;18136;39042;36144;38340;30301;16892;25166;34456;37745;17223;41155;32728;32514;29526;29828;34094;11650;13637;22481;27050;42097;12905;42129;35614;38604;33079;20729;19734;21818;37980;11094;27967;22107;39050;39035;25506;25283;14834;18259;20837;41943;22502;25360;15965;12373;34795;36419;34220;41115;34593;32032;30597;14619;33528;15950;31328;19064;22370;36480;24454;29447;16897;14325;18477;27327;26739;30778;18453;25274;18815;33847;32569;40991;35566;16905;32796;40386;30518;31577;42787;26152;11397;16802;32734;21872;32759;10586;14646;32641;41044;29450;32571;14931;29715;18552;36374;19216;27120;24268;27264;15435;25505;36279;18226;21590;26456;38832;20568;15820;39659;41219;12843;34350;36913;29844;30714;30511;34555;20132;40906;10387;11952;28608;24405;37515;14603;33394;30866;40372;35332;29890;15543;20963;26929;30525;17682;10115;25608;37127;17573;11742;35556;25133;10999;25206;34994;40726;30948;12096;15329;14356;23387;32270;41754;33411;11852;25398;25902;20111;38580;18861;38467;18658;14972;30484;19841;26902;32677;42098;38358;35213;27852;34343;32561;20760;40076;30462;22336;30397;17580;41469;28161;23953;20286;32853;24403;16264;12902;15833;15398;16617;16253;33650;31320;14322;18619;33062;41592;24185;22102;32780;31778;35003;26986;38778;23833;25036;38963;21717;30586;30175;26346;18257;30419;20657;37548;28110;34250;11165;11886;39066;29088;13079;23167;42388;35159;30284;13327;29030;31926;20366;20084;26926;42950;23902;21921;21121;12829;18998;18707;37880;20106;18922;39796;10529;14705;38924;28191;29300;40405;29291;20637;15542;27016;24882;12968;12674;35151;34293;24762;19055;28475;37360;32528;36662;15379;41144;18190;24900;17348;25208;19685;33304;11047;19625;42492;32763;24552;10390;27125;24359;10025;28183;15060;12585;21371;14599;33389;16820;42285;13701;42017;40490;23870;17068;24623;12111;27787;23652;30630;23230;22963;22203;29696;40760;13495;26225;23494;32433;26805;21275;39589;23793;20719;33833;12520;15444;33404;15631;26319;26298;16455;26167;13243;20231;37546;38754;37485;25394;39729;18659;14502;11855;24576;10702;22883;38349;17063;31953;42269;27278;39372;24628;15052;23331;33413;27299;20735;18631;32094;29365;11306;18880;39090;33581;38309;17547;34002;22387;10412;25703;12478;26462;34505;20852;26745;24368;38898;23590;11482;11261;21551;22782;23991;18920;29430;31497;41173;19770;23144;37357;14091;18505;31703;16723;23366;20351;35499;13353;22955;10929;43068;14819;10258;20329;41515;16534;26245;37065;19434;20678;42463;13502;24310;39320;18050;35473;29439;19965;39332;21667;41141;39021;22462;35251;10086;26897;26729;35684;32881;18125;11974;42945;16294;19766;26211;42697;23433;25057;31466;39958;26675;24158;39649;10081;26163;29574;12833;38951;15323;36721;15318;16806;23843;35091;14918;36121;23321;15037;33786;41366;34076;19182;22776;15949;31005;38103;21941;20093;32679;20991;15213;14845;31397;26326;15956;38076;18262;29930;36526;39405;20976;27879;16084;24526;14261;16707;22294;28807;40146;40977;12894;14010;40387;37134;12385;16387;25062;43065;36821;24256;41411;28694;27495;11624;32224;37641;26016;14960;23316;24485;12216;25514;27613;31622;41785;30666;11705;14266;24233;34533;12026;43012;38521;13476;42553;24790;11720;22271;28248;41240;22131;11153;15498;43069;18769;16556;30882;22894;26670;12521;43038;17640;26502;38936;10288;37613;28042;22519;15283;22151;39239;18458;27223;25517;15197;29694;30180;19764;33527;13148;13692;33926;16004;13155;29152;12621;40474;38260;15867;19410;15239;14523;27768;15760;18848;15847;18735;19722;41050;17403;26393;27841;24494;15048;16180;24825;14998;30789;13057;12856;22310;17293;20390;11478;12268;13978;31905;37429;11053;20789;25570;16524;36091;34159;39460;25224;10913;22450;11570;36595;42757;27978;39642;21555;13470;13092;31398;21004;20813;25861;13251;31830;13464;22187;21053;16843;20301;36516;40495;39756;37603;31057;26385;30605;15025;10978;36687;27133;18812;25375;13791;26633;39829;33072;16981;34765;23680;12010;30617;27657;38077;22201;19380;24518;20455;41016;35534;41306;12117;33571;22288;14548;17523;33991;34650;28283;14902;13101;29819;36175;25529;34147;14900;29171;29845;23138;25972;37260;15977;26268;35127;33048;30315;12808;13678;21480;42367;31580;16325;40390;35300;17664;26099;13612;38020;28394;41462;13762;29567;13926;40306;37719;19835;11973;12338;19083;21212;41203;15960;30279;10463;36205;26953;29326;27188;32822;38221;11318;39184;27949;25312;15559;40615;16702;42761;38014;19534;37820;37536;32269;36336;18141;35164;42208;24673;36873;39229;32576;10040;27467;12235;35148;34530;11970;31675;11703;24788;22439;39861;35216;12447;38739;26031;25067;21107;27616;40944;11800;13202;20408;34406;13833;35544;34448;17540;20109;13763;22085;37547;34516;22592;32398;28742;36108;40814;30726;31258;42011;11017;13953;12101;13566;18227;19988;28404;37158;33483;10810;19250;34351;40930;28936;24839;32171;27668;32394;40301;34787;28381;11824;42837;30099;34408;16371;11044;17219;32924;18296;37962;27742;42294;18066;19519;41853;21269;36301;38764;16009;24085;13025;31448;11690;18178;26880;14006;19515;26855;39612;25046;29383;27602;32184;35327;16752;24239;10362;27772;41397;20658;31263;31164;14175;24266;42248;14760;17550;19180;28341;42907;20398;37689;27908;31810;12068;24769;10046;42562;38336;30168;39726;32027;40078;21492;25421;21231;22570;12962;34909;19679;28352;19825;33496;11105;22473;11061;16772;42985;12783;15007;20038;26975;42717;30847;17519;23865;24844;36753;23401;14187;34391;39783;41303;18542;12756;15518;35345;31379;28480;20536;29915;25392;25432;36134;23705;33817;28495;41563;32549;30638;16423;32091;33610;13391;10114;21089;16791;16926;31181;13085;22027;39143;22270;34270;24924;31775;33578;12872;33140;12750;26146;23538;29517;41107;42949;29384;37011;19969;35092;41103;34536;42465;40527;16311;22057;23658;21688;22638;40988;38347;16941;15015;33826;28583;41730;16631;12371;37036;31226;10712;37951;40399;18307;31304;38354;16904;33933;15762;22882;41910;25772;18150;37236;35846;34262;34091;24674;40608;16608;36255;34065;14650;39508;39237;40892;26412;26841;30741;30218;28230;32764;38524;18601;24491;42704;42304;33054;13422;26962;16102;16303;23399;28498;30918;28972;14347;30275;12673;38274;16200;23376;40383;39518;41098;24915;35198;37311;31812;28729;13253;34410;38518;36017;24832;15467;23644;25207;10520;35379;10320;38425;27301;11426;41097;39775;11333;32724;41996;21624;41674;40297;15158;29253;27627;26320;17566;20463;33633;35233;23024;41027;35718;10049;26381;34647;37628;34235;34566;34037;26359;17337;29516;40293;13356;13629;19952;36462;19779;25843;28036;40839;20379;36320;33180;13693;34776;24556;28360;23881;42847;42473;13738;22629;12664;21648;24378;17408;38192;38021;27667;28478;26137;28743;31306;21176;15668;38582;17358;41008;21686;35393;14337;23455;10507;29993;19500;20823;17183;24966;41296;16508;34782;33199;23390;40854;23768;16629;25802;18502;16552;16123;10142;20344;40230;23270;24270;21147;13419;19962;28211;12511;41997;23429;39317;29477;17484;17563;27857;23592;20291;26251;32005;23570;26942;10416;42983;23407;42776;38564;37507;19673;33352;40544;19283;14961;18954;36969;27748;40107;29614;15442;36897;10311;34993;28982;18980;39569;31104;30766;13246;23276;27733;23684;26050;29925;32052;34659;38719;43095;41874;18504;35812;36751;39857;22507;23849;40856;20314;19229;37465;36524;20726;24781;30719;22278;25511;27466;28362;13218;13577;39616;29788;20791;11005;27007;14887;23839;29482;41613;36229;36682;32496;14799;34046;19600;38263;10809;11341;21326;30141;30844;20341;21008;20235;16430;41599;38186;38438;26106;27108;29336;22062;17329;29595;11194;15955;12623;34189;34378;20306;24976;22934;41704;38281;25373;24086;24785;27650;42282;38327;29934;14144;36114;14143;33641;38799;31421;35273;23719;12006;30053;21722;23981;32918;33108;30522;41038;26414;42580;30625;17294;35297;16673;25471;37168;41975;32946;26404;40478;20867;41172;23430;16550;20187;35739;21538;18302;13546;37553;19465;19832;12108;30803;11371;16900;25429;20257;28990;34551;40418;31486;19147;41772;21957;38320;26638;19088;13319;40887;26370;22676;36621;30376;26389;24312;10863;33557;11715;15188;14935;17268;42485;23278;30502;18482;22793;29938;41990;25795;31312;12410;31068;19954;28425;29548;30344;24846;14396;15170;32848;26804;31256;41416;35016;19742;29803;10001;16199;41784;21694;14543;27795;20679;37209;28456;29239;29501;19983;18898;17231;36838;18090;33486;13220;14454;13087;20383;38036;16788;35960;25597;30703;28094;24207;31822;41808;33480;30405;23539;14192;33882;20296;29214;26555;15539;31771;42430;38049;34102;36935;17001;14660;18963;31081;30382;27561;13228;19989;22175;17603;39016;24618;37122;14863;18442;31043;17281;16492;27692;10585;35624;28088;30584;26653;21953;13559;30056;21360;32136;21344;33001;15299;37098;39913;28847;37692;12749;34845;34853;15156;39708;42323;37308;42358;20155;26698;23848;30413;24390;28322;18279;34420;16117;14723;41650;35258;20199;31934;13274;31956;32313;34491;15272;40807;42867;20611;41284;31857;32492;15455;32705;38025;26213;35051;10067;21414;27770;13100;34704;40029;38417;16383;34268;36776;20447;24736;34031;26291;25555;19166;38698;32863;30169;22967;16107;19871;22268;17220;14382;10988;12789;34834;42020;41491;21915;28653;18877;43076;35934;37235;23743;26877;18031;24495;40832;21901;13867;39178;18723;14780;37130;20260;27206;19958;22172;29426;22669;39547;29143;18562;26121;27704;16337;32627;37173;41836;31349;34771;42382;15065;40040;20227;40560;15401;27310;25269;29775;39985;33755;33330;37598;39837;18323;28756;20133;30273;38110;23015;14849;32563;16015;17178;21981;22707;29771;14107;28970;42568;39119;40117;29884;36427;27846;25785;35087;15523;21039;39193;28105;41140;11414;41801;34371;12712;12335;42041;28518;12934;24581;25639;19137;40926;12538;21967;21702;19544;10941;27229;14394;40176;21685;19812;37114;19296;28084;37048;26395;29837;26976;42221;12475;41947;14575;33942;17609;12522;35986;35209;42972;40319;29372;28368;10151;14007;24473;39931;30417;14346;20157;32044;39092;15903;34287;35447;40721;18965;18374;36863;26853;24171;42029;36000;33101;19172;18761;20007;31440;11210;40250;35721;18768;12400;33479;14513;39450;32709;15112;17677;19267;17090;42469;40831;30018;12943;26411;18429;40099;32292;13567;23300;17479;24682;33638;29381;18704;13388;17658;42845;26318;33202;40642;35604;15569;33465;36284;19784;16730;15924;11095;40164;24868;14976;39575;30121;13592;37629;40893;12745;42616;13405;34576;31543;16666;36440;19681;37394;26153;28898;32642;32116;25931;38111;13061;19033;27744;24099;12812;36679;35562;27920;22545;31727;24092;19245;13563;17092;39908;23873;15312;39991;23629;26236;12569;18168;35479;40510;14056;25011;19783;21013;13176;25189;36239;37582;15647;27642;21272;31985;16278;13410;33700;19221;24425;19363;40819;29733;39803;29278;19133;22024;37087;31853;43049;32226;25488;35026;14658;39316;15682;27534;41909;31804;11499;22927;22158;20923;14106;11833;40378;11779;24407;13204;39525;33015;31230;28232;12875;42613;10399;13948;40729;14066;16537;39033;13728;18096;40949;14494;19051;20213;36339;15845;14565;33559;30678;14808;36129;24646;14911;41157;42227;26718;20428;21766;33166;29164;15813;42926;35617;34568;36859;37826;23840;25349;23488;10190;31895;22973;26636;10486;22952;27625;39323;35558;37451;41843;16456;16274;35795;22992;10496;18043;39694;14283;21467;23714;18047;41967;19919;42161;35131;34804;39335;20740;15180;14001;29906;36994;12844;39191;27393;16978;41763;33812;21955;20838;38705;31006;26660;32150;19217;11142;25385;22204;31018;10660;24307;10568;31510;32548;30901;13591;26553;36003;31635;35477;16778;21692;11093;24816;42398;18298;24977;13124;15808;27085;26835;27232;15032;27640;40969;40707;29227;15392;12310;24005;23591;27771;26516;33408;23945;19202;17199;20855;34937;36781;21564;32792;31821;16113;34989;27443;14878;39954;28459;41022;26269;19063;35597;25215;26806;27444;17521;19359;39567;15337;26671;41686;30664;23412;27958;14858;26594;39761;12668;16275;26756;38197;15621;36222;26306;41883;29711;32046;28307;22324;39284;26535;27365;22459;20248;40603;23928;31997;43072;31531;23729;16598;18868;36718;14246;29375;41057;37117;31357;28617;23115;22623;20423;36703;20959;15298;29060;14127;33779;38506;23676;37808;32593;25374;39781;35932;34789;12650;10860;16746;34413;22332;35033;36460;14870;17584;38070;14983;30343;18169;39740;10564;36599;27165;29407;29389;22797;40697;18076;14601;34983;11802;31467;22862;24163;27903;32348;42136;36977;13981;25117;26384;23546;37369;41766;13631;41728;22552;15322;30435;42654;31281;12999;35378;23055;33270;36035;26581;18865;36407;31917;23252;15059;14288;16280;16640;13781;27510;39899;26968;31076;23043;31169;43070;26547;14054;14832;28983;36475;32850;28915;40162;12706;18758;18551;13046;18264;31302;20584;35261;24823;23177;41989;33445;38346;25306;14664;28799;38175;34054;22921;13996;22028;40220;19852;35732;14579;26763;12450;20602;30967;14713;38574;22195;23063;14544;35744;32675;36036;33584;23211;21671;32381;15132;22480;35671;25683;37162;18448;34667;29218;11600;36912;15176;27779;35335;16252;41689;41746;25171;18044;30675;37171;11175;27091;31009;40810;16829;23562;35374;23101;32755;21283;17531;36901;30565;28441;21329;29147;25098;36197;40168;40965;14191;42071;13905;19621;15159;10148;37026;42664;31233;19129;36659;22162;12571;35510;31271;22215;28642;37698;42454;20659;35899;29438;19907;38133;17029;23875;19038;17980;18202;10854;42936;31140;41654;30644;22400;42674;42643;41804;39252;34072;22249;18108;18404;25329;24154;36482;42283;25883;30020;35616;21411;41298;36248;18982;40855;41732;31257;42854;26912;30944;40141;41125;15143;30801;18057;21594;28797;26606;30767;17160;16283;40771;34745;11983;14442;37442;39277;30466;41351;19868;32923;27850;32857;42914;36326;31932;42686;39895;22937;26219;28816;30842;26189;38811;42922;30498;23900;42201;30971;41424;13338;20610;41545;26992;28584;27880;36037;23476;21029;37545;13635;30606;39955;27070;31331;17409;30048;30613;24465;15425;21746;18713;32939;19272;16326;23565;37898;22763;19432;19560;33278;33454;24706;33864;34499;31668;34654;24972;40186;42676;29333;10203;11231;28305;19782;36694;17149;36176;14740;22241;10537;11307;14377;38490;17439;29753;18585;16046;12754;38961;33918;34801;27116;21088;16196;20135;36761;19718;21042;18007;25823;11466;39438;27715;22591;38094;28839;13737;17972;13313;18968;32886;31694;30639;16581;40135;39160;42135;27028;25602;40433;29868;13517;32983;38984;22979;19721;31307;30246;11464;15164;21482;17644;41655;29776;21239;12616;36498;39927;16386;42316;41402;30470;35108;21137;40002;42434;29487;17241;13435;17004;20267;17205;42590;38405;12746;13955;23378;16413;39049;10421;28477;20363;22079;27979;15552;13482;16722;30427;36172;39667;40494;10325;24445;14764;22121;18395;10058;38325;32567;43031;42963;39787;18277;23481;33866;34898;20691;31581;32717;24059;42435;10139;18804;16867;32228;36791;34452;17324;42720;40443;38640;24657;12337;28563;19269;38791;33432;34449;40093;21225;36918;17215;16182;15416;11535;11006;23445;40203;40489;20143;27663;26708;38363;18286;27096;16014;27145;11765;26104;19152;14673;19961;34947;39428;13704;29462;30727;23361;28581;24588;24064;23669;14379;35528;27557;40428;25130;21178;38613;38505;24090;37443;13413;16667;19259;34954;18220;33777;11723;15150;28409;14249;41632;10861;40710;30951;40547;25256;12425;42652;20362;34764;38598;36905;31538;11734;41123;38312;30567;28685;28236;23465;26186;40068;20564;32629;12792;13783;40817;35722;10134;28074;21022;21131;33774;10973;25709;30735;37862;18525;13385;13200;41922;36820;31236;37373;29659;39500;36554;15410;14095;15257;42832;22358;22286;40536;27855;10719;28636;13354;24614;10701;30298;35368;17360;19224;24853;19109;24951;15830;22658;18456;28260;13481;15669;37070;31570;17175;24515;14208;40993;29605;38119;39943;32632;18082;39495;13610;42729;37748;29287;27114;30181;16775;28403;40800;37958;15739;31084;37977;21470;22855;35673;42079;41741;41589;22704;20488;22547;18016;41356;39537;40477;30335;26056;32389;19134;21795;14189;30478;24190;39977;42900;42915;10796;29012;34010;29896;28720;28562;38496;41350;28875;35221;19367;25212;12267;16851;16424;27428;39280;10837;25769;20460;25081;28865;30838;42357;33854;24722;30240;29003;41346;13705;39298;21706;34035;18242;24476;21323;39713;40744;42186;16557;32739;12215;27710;36932;36736;24611;16390;16914;28616;18936;32401;41001;25023;21882;20817;22366;19577;36771;13440;41976;26382;18214;20228;42175;13622;12388;31521;18931;29539;31488;23112;32084;41970;31422;15527;29740;36180;19463;14332;41254;12990;38411;16516;13289;17014;34741;34531;18193;13831;10855;15917;42982;40069;29121;17405;28332;34433;39089;37630;22065;13454;33209;16759;32535;23146;18438;34416;32606;41072;19427;15727;41533;27755;39453;41175;10310;11791;31555;37254;21152;27255;10596;27342;12837;25330;12729;24081;39502;37420;39060;32600;37368;11340;33409;19162;32159;34356;18866;26263;24886;29264;18056;34592;32280;27303;23266;25453;26054;31364;38383;10867;18787;26788;22868;16969;42321;36489;22125;29072;30686;35964;32092;35972;13938;19344;22815;35788;20269;10420;41316;33027;35740;13710;37869;36309;34594;26886;33944;13716;30923;32275;14610;42159;20400;27639;28782;37270;40328;13152;37323;36072;39554;35945;36860;13735;38414;31721;10990;33657;23097;21210;25112;37100;24357;39782;14128;16070;39744;13697;22844;41760;30042;27493;27225;13496;20818;27137;10716;21395;41443;26845;16128;19927;18463;42462;10455;24525;33553;29664;21561;27150;18938;11207;39164;37998;31153;27440;36054;26418;37266;22242;42396;22347;42177;32188;23748;39224;33347;37258;27033;11688;28314;29916;16901;10022;20972;17138;15709;37674;15776;23944;36342;32276;33995;28430;38929;33235;13174;37185;29708;24125;29178;34240;23123;13492;12806;13660;38333;36847;24820;26664;29758;31208;17641;32856;31116;18750;41571;19936;20820;30403;31119;41553;22536;13088;25303;29746;33783;10983;30930;37105;18017;33924;14971;23427;17112;27948;35360;31863;14474;15024;31619;32333;14098;28731;26238;16712;29964;34466;13807;21884;42045;33353;25412;18959;31766;14488;22377;42939;38680;20058;15519;15971;25478;15928;42019;30969;29490;23360;36056;18799;21650;19982;16874;36274;29969;19165;33416;37918;25159;20471;27849;20961;17057;27935;15525;37732;15026;34612;39940;41279;14562;11889;14070;17564;24492;33707;22617;22954;42542;21649;20078;22878;20172;15079;23852;32307;25623;36026;16767;32552;15294;40144;27564;38572;40380;37785;12564;39631;24116;34999;23293;10690;21743;25326;10167;18687;38626;15665;19481;25913;32595;29017;27349;30122;15744;24024;12590;35202;41941;18791;21605;23716;18025;30285;25139;36569;40567;41333;25872;26397;14968;16307;27609;28532;19271;12851;16728;21773;28070;34952;11486;42824;27361;36804;21616;18962;17970;18798;17271;24946;40990;39986;18987;32532;38167;24284;11033;17085;35621;42912;35259;24793;20950;29842;27433;14727;28955;28136;35622;21409;21701;20083;18830;29952;25811;26226;31769;35500;32263;28693;14327;37838;37029;31603;33179;23621;29507;33604;12417;11641;28879;39311;39842;29961;34761;13690;35705;39171;30935;18497;14522;36740;19957;28202;22397;39241;13813;19693;37930;13524;26608;30925;29460;15421;35319;12945;36294;42604;27401;13801;23053;25034;14991;27079;42919;27406;36797;23013;29575;30303;40577;14437;27854;36836;42230;15734;36235;18533;39310;22930;14997;41569;23088;32202;22590;28479;19106;32872;37584;40348;28860;13500;25558;17158;39076;30453;29390;20245;33523;30155;26932;11443;39831;37772;24399;25542;28387;22237;31514;36695;27128;40276;28235;37353;23087;37965;25209;30176;12582;20969;33417;19372;36518;15814;21500;36142;25298;38889;17316;26239;40863;12607;22478;31055;39172;11430;39366;11810;33210;39287;39859;24287;35823;30380;41764;35302;32676;24439;13282;34700;37396;34606;25871;21489;32357;31062;22879;16212;36357;30825;17111;34132;32145;41583;42921;41591;22471;12857;10300;20407;28571;42706;38370;31903;41011;20968;16148;30673;27156;25632;39312;23405;23297;15713;19449;30104;42801;11789;18991;11463;40212;19612;42810;31558;32833;38189;11032;15289;40973;21589;41271;33563;10434;30616;20134;33602;12794;15108;11581;23604;41288;16678;34710;26544;28882;23791;37417;38294;37606;27888;30784;22412;25045;40020;35361;20832;21146;35116;23207;27371;39682;11780;14898;13377;30132;37263;16989;22806;27305;29279;27839;26801;35609;13676;42192;29057;22634;22247;39959;36068;24653;25460;20300;20811;28149;36688;14308;36716;13346;39876;29166;34583;25116;35815;12910;13376;37013;41964;26537;38494;28889;17127;35240;30609;24026;10760;11290;33099;41713;15235;26583;25948;32466;14350;28850;11594;33010;25986;16758;20586;42082;21690;34753;42457;22464;20197;30260;12985;42369;17321;39301;22983;32819;42086;26299;11339;35212;26055;32061;40426;36434;13318;20399;16579;25745;31707;23568;12543;42601;23623;23400;23188;40248;33229;32419;15447;41549;32906;11226;32233;27231;34877;23025;12260;41504;22106;16825;20401;31793;39416;41594;29280;26515;15766;36585;42395;15476;31584;28660;10065;35695;22127;22182;23912;38357;19040;40423;17635;41892;41454;15587;16893;27058;21419;42569;12459;28978;24740;35806;27476;35771;23393;31376;21499;12818;10803;27762;26610;10408;19535;42108;18440;12465;15799;24309;34213;32751;32115;29199;28951;25646;28981;16644;15913;27739;19795;28502;33632;26598;28065;39095;23641;34476;26144;30055;37922;20724;21335;37118;31842;13688;24301;31128;41474;33580;32208;37915;37149;20336;20169;15041;20126;22573;10923;17040;21145;28083;14219;29561;40758;31222;22506;15424;35204;42942;13053;33910;37462;19400;21248;34012;36010;13390;18185;35881;33625;38120;35757;18426;34067;31050;19472;41089;33631;40096;25653;14804;35415;33765;40734;40241;37925;23493;29831;36458;35944;41300;34212;23216;41662;33102;38555;31489;29512;11292;32080;27275;13000;11243;18221;17071;38296;29235;26862;23998;36018;25759;28689;23239;19411;24824;12996;16155;24539;28974;29552;32931;36974;39015;35843;31845;27019;28929;13471;20182;35610;42386;24593;22562;10743;25008;29649;36497;40908;12116;33984;42734;30199;21755;41950;15622;26702;31012;34042;42785;17110;17278;18481;31095;26760;10903;42756;24905;22846;18926;17542;19322;11283;19191;33595;18329;17259;34739;14129;23475;21337;26834;16857;33612;24652;37900;24940;23070;11912;14099;41090;14361;24670;10883;24764;34832;32428;16703;18547;24743;15057;14879;11399;23741;19081;27123;31203;41450;11985;32316;16972;32483;13841;11041;41315;33891;22831;10632;40314;30896;33588;32119;38104;40711;30068;31085;29635;40065;24719;31154;14025;18425;27758;15769;39028;32913;37961;10505;27562;32703;40813;30919;28272;17034;31974;30290;31852;33686;33639;30409;19420;30563;27333;43084;26757;20365;33450;25355;30232;25203;14580;35354;22867;37255;37526;28323;16174;38685;13860;41738;31251;28917;36669;17557;35773;38188;40023;19087;36359;42896;37393;42566;32648;39290;25104;30277;36914;13677;24555;33741;16651;33670;42739;13335;19160;11567;11816;38955;32645;35434;16637;30710;41074;32484;25339;16979;41821;33844;21474;29729;13974;33383;21687;13671;33351;11214;16301;16764;15414;12627;26222;23139;33651;34521;35541;32687;28670;15153;23550;14460;39561;11204;22475;21762;18396;30012;12684;27151;14079;40524;22916;16351;11277;37064;30402;27396;18026;26008;16919;16178;32468;15461;42410;17143;34587;11384;19979;10971;42572;20629;38153;30975;35793;37331;24041;32793;23634;11572;29669;16315;31884;39885;35956;36264;24724;19680;14449;42612;22089;30798;36351;30474;34215;26823;19157;24737;32140;19975;33514;28867;37796;25930;22013;20667;16577;11605;27588;33456;19074;28735;26361;35603;22484;26071;17363;11181;19854;34964;21946;27999;12296;18042;14899;35979;19626;12329;27010;28592;34348;35400;19317;26540;41014;37578;35257;22384;32446;41108;16066;33587;34537;15564;26421;19357;41706;34395;29935;26623;26466;34148;30688;18907;13283;41840;33366;35939;13522;29779;37789;10523;16884;32163;35928;25536;41564;38647;37887;19953;25031;18663;33740;34468;40945;30821;14652;16588;25587;34361;21208;27421;20688;14109;25821;35080;31432;19635;37037;27119;19908;12966;17222;21115;34528;22840;41988;16060;42405;23037;37899;17053;16701;31700;41273;21077;12002;29160;10473;41956;36656;41207;22231;26980;38444;13518;30528;40180;16727;40996;42445;22457;25013;38364;13687;24662;18529;21281;27335;12057;28610;35243;35094;20869;26028;39281;24372;38622;25094;34960;27843;42831;14072;13812;32322;31275;22964;13400;37987;14920;11039;11521;37144;30770;15899;27512;30501;41981;35211;28663;25662;40689;11369;35494;32340;19364;15946;39266;30081;21798;36102;11135;25938;21737;39802;33259;19853;35536;22959;19406;16553;36112;38128;41507;10346;24878;15827;13420;30241;18370;13303;10551;16226;14033;29446;15306;29683;13266;21093;22732;26999;31833;37649;32760;40366;10687;27044;21754;37227;27718;27517;10853;42661;37112;32840;42143;36305;31612;12253;37423;40946;24856;37913;39777;13063;41134;18580;19792;11942;38570;38095;26538;25527;10526;36416;10189;17372;41501;31344;18874;19620;11174;38667;10684;32553;33359;16091;16948;11289;27933;19820;27812;40997;22733;39515;22112;39120;40341;36448;33928;24498;42236;41192;36980;34103;13820;36942;13652;18632;18757;17247;22293;20630;24356;24317;19915;13943;15000;23313;34316;37177;28296;29757;18752;14999;20449;22422;11655;35842;39088;27110;14817;23966;38840;21214;18415;17325;13043;33439;11626;21196;28007;28233;40672;41420;37782;28016;13865;21831;14339;41848;40488;33175;27465;23061;26255;22560;16980;33903;35045;12817;36654;40300;16672;15650;20617;21958;20041;25386;11777;32623;24201;27385;29492;35902;38563;39431;17185;16403;18909;38854;29348;14058;41923;12305;26941;19066;20163;13859;17078;31063;23555;27293;14250;41954;38761;37257;29530;20272;42534;24561;20996;41829;14237;20605;16953;37454;21791;19963;19931;12592;40361;34414;11457;39651;31882;13037;35826;32499;12508;12377;35865;35781;37580;34656;38376;27175;29358;36167;16743;11101;13769;39490;30600;11415;40290;31048;23977;37055;39177;16754;11658;38297;23439;40456;35914;39449;26948;15395;14959;12988;30276;34326;32146;18091;42199;35373;24194;18156;25780;28090;16081;11483;18870;22232;11427;30697;39979;16322;25688;38995;30296;35073;36237;16696;11278;29919;13306;30557;27873;26112;13395;28988;29603;35542;17673;27887;31806;22419;32261;39791;24519;13790;39762;11696;40633;21580;29914;23457;15865;15763;36876;25433;39673;24920;41267;38800;13732;12631;38567;30769;22675;36802;40529;19127;35698;26887;16996;27960;11336;22853;40751;30022;19414;21676;39373;28703;25305;32239;17274;28213;25595;41726;11328;43006;24504;19558;33164;13645;29796;13898;11809;27926;18512;35997;19864;11358;11169;12986;23648;36979;26622;19570;26080;23382;14376;38672;30570;10589;37943;39871;21435;13281;22206;21334;10709;18538;19585;30730;26084;39980;27076;25188;11155;28947;15355;40321;17379;21048;14856;29130;20919;38549;11701;41912;32198;40439;31241;39413;27398;23045;38662;35613;40243;12213;23418;41369;35172;13968;41053;13772;29835;13467;37988;17355;33447;26405;12887;13989;11379;38426;13797;29963;10188;30651;25675;29626;20023;15022;13818;26936;22989;39068;42609;39676;34104;20993;33665;21697;12014;32122;41427;39045;34015;36644;32406;27730;31695;22890;25630;37665;27155;20406;35220;11131;35911;19343;17131;43007;24049;23220;24353;10259;19297;17017;38872;40308;15214;11200;20534;36027;38708;39391;34666;13227;41344;23035;11643;26582;42533;31277;39395;29169;32417;35854;40041;14081;12800;34723;37861;23072;33824;34599;16105;41047;39925;41995;20572;27258;39668;19876;39253;38500;15743;10963;20970;34565;32696;39650;10944;22433;15812;13573;31644;10968;34821;21116;13594;39324;29481;38353;32375;11871;29741;10538;35988;29657;41163;31212;26262;17397;24983;10144;43073;40152;38932;15511;35543;21201;42046;19747;14676;40841;11873;25983;12959;40166;25425;12104;15755;18592;42606;33318;14318;13041;31730;18727;32207;40463;22920;16486;34082;30299;27357;39297;30137;39091;28986;28724;24558;34509;11351;11920;39987;16902;18311;29640;32859;15209;39158;40861;28466;16648;13602;41116;40318;34052;15189;15437;14724;29493;10088;23389;28719;31794;37833;24619;20924;11446;26000;29610;11416;18289;11699;39524;32927;25174;38999;41238;28582;40793;31715;37835;31348;22274;11792;42610;24101;35480;31052;15592;18460;26827;17401;12237;31585;32268;34085;27124;36469;19116;20097;33997;30885;31646;18890;30647;23130;42648;27995;23342;34517;29986;37500;36062;22907;32657;20730;32805;26773;33195;39807;16244;32105;38607;43014;35053;18309;34967;28165;25611;16484;39341;25507;34816;28690;16920;25834;18595;12123;32731;33573;23010;18712;26832;18706;27656;14922;41782;24929;12210;18933;19355;36050;27022;30163;31129;31994;37733;29260;33074;14125;14680;10582;14768;41435;40757;16935;14895;28593;39623;27395;18473;15693;22000;31564;35688;17113;30069;25236;43013;14132;25001;19239;41312;29867;38420;26068;23696;25992;37348;40407;24591;17380;20263;14140;33906;35289;33283;24420;32011;24299;12581;35657;37763;29334;28135;24726;33220;22035;28087;40842;29712;42862;33525;40266;20456;31273;31249;39666;10431;27912;12367;41551;18915;23749;10948;33713;31248;31740;30907;27858;35436;39122;37493;21536;38675;36379;18350;39390;22589;38838;30523;34200;12755;20031;36107;21155;26979;37166;12580;20814;31463;20885;39162;15113;13580;26114;25075;19000;12612;11476;14433;34940;19373;30728;30487;28718;16153;27274;42665;36711;39499;11637;42775;10280;34702;32862;15388;18130;22501;30078;15061;40618;17349;23477;30261;42842;16938;24080;15810;20578;16097;19482;18028;29174;18901;39411;33919;20767;39168;24392;24685;25021;41372;32878;18952;31856;14825;40936;23329;40797;25181;40374;18382;22885;18749;18373;16830;24651;22331;39062;11003;26893;19464;11168;29556;41009;34245;37215;29314;39276;39969;11994;27362;28699;28715;16332;17979;36545;21887;35759;40621;21635;19121;16296;29064;11402;35446;17412;28342;27600;41875;18088;34409;27439;26885;36097;26984;35970;36397;42448;20480;37602;38529;26149;15481;41879;30783;30428;20356;28294;28967;39386;16406;20856;21819;39622;34404;32823;37957;18116;14046;33237;35978;34690;41681;33823;30510;13207;37172;15413;29058;26301;20261;10579;11511;29345;21907;15973;17678;26881;20955;19212;31058;30334;12696;10993;13932;21220;27974;32749;19814;26427;21997;30745;37004;31500;14508;37896;20173;16114;29268;18201;33186;29343;22421;37219;11948;24587;28223;28519;33019;21972;35248;14782;36358;38969;27798;33165;35041;42929;23866;42798;38159;35431;30857;16520;24739;17066;21229;24615;42342;10750;18537;20385;11885;32542;41718;40032;30665;24936;23340;33452;34818;12008;19207;21028;17475;40953;11682;30723;22139;42270;25154;13736;40500;24192;38322;17026;28662;11004;12698;26529;26554;21223;39506;21015;27276;40773;19437;31630;30526;30556;34972;18883;33993;12421;33231;23449;15406;11698;19277;31024;26285;38132;13171;40159;10767;18589;40345;32971;15572;39052;14623;32279;23193;38374;10850;29349;24594;40185;29195;15070;38234;37704;21890;10375;33183;41324;24635;29979;27785;20181;37648;16297;11663;42622;15510;28416;17590;32024;37478;30047;21255;22530;22494;19568;22185;19607;20321;30737;17072;12846;10423;18984;25030;15405;30131;27947;33905;22537;25444;34488;20652;24810;12528;20580;14213;38066;40010;20697;34013;38457;22245;11741;25177;39598;25000;24636;28501;42204;35787;18871;28815;41338;30312;38152;13299;33373;21873;25999;38254;20101;29977;33579;28039;39145;28010;25317;20708;36535;39920;19485;30029;35166;27558;19654;37446;18291;33787;35753;30228;17195;30165;42904;25663;33422;17287;31530;19505;32039;23919;22099;17674;11846;18891;42750;39671;31579;13320;21522;33226;15274;36356;34080;15259;32808;30517;31840;20671;11835;15534;38935;13236;25959;35649;30034;14738;27521;20414;19181;34144;37720;35714;19834;23206;24683;23431;27614;16747;32126;22239;16491;39946;37790;10675;13235;22510;18522;15042;16398;14875;34064;18407;33370;29543;24860;10467;14490;18437;40303;16037;29911;36773;19254;34926;40919;21777;27606;35224;19860;16928;21071;22750;22790;15123;19056;17971;37059;41412;23997;15021;21857;19059;10940;36867;31595;24565;22551;26673;30691;31138;42449;13175;35197;28863;36812;31352;24053;22078;16468;15166;30365;32737;24047;43059;35451;41578;36786;38688;29424;21678;16507;31139;32680;42475;22810;19796;15817;27442;36737;30759;42884;11081;24746;23795;36651;35093;24212;24630;25656;23597;38538;31605;19909;20396;40207;16584;11931;17440;37358;12920;31107;31061;13337;32197;12525;11230;14629;23726;39135;31763;23490;14366;23735;15394;31188;16271;20416;35370;19210;11709;24851;12102;23432;25687;33664;38777;33344;16692;10309;24238;41849;11191;32255;35699;41213;42868;23215;28389;33895;36577;31411;18098;38940;41229;20387;25912;28579;38306;15430;26092;41980;13799;11646;41257;22222;35904;12785;18892;10506;14588;34936;31844;41352;16036;23365;18036;33857;13474;13946;36111;11019;32132;23606;29103;10612;13272;14448;13952;22350;38669;30541;42853;13493;15350;11078;12730;32243;15718;34128;43063;32991;12479;29685;29737;28047;16025;26044;40108;13433;24040;25964;29051;17981;20440;12353;23347;38259;30588;18905;15185;13358;32438;20285;32626;30855;14726;35344;30682;41523;41483;11146;28153;14992;36104;27519;10572;14393;38824;21994;38220;32362;32471;40339;22084;42968;21851;31468;36824;28758;43023;28190;31752;20892;17283;24397;21351;23906;10285;18495;31144;41793;39997;33421;18371;41221;39163;22019;30924;27844;25582;16612;42374;26350;42055;30756;26489;20986;13233;22671;37694;22371;13375;26652;11656;37937;10651;22655;22621;30364;23196;15192;14123;33767;39766;23965;26051;11240;25940;11628;37619;23787;16118;41844;34811;18474;23695;35283;30185;35912;19214;18347;16106;33143;26639;30230;10886;22730;27501;35767;31042;25238;29009;31428;28027;31918;26276;33382;42605;42312;24845;30024;30779;27950;20089;18367;34267;41904;38018;19158;16623;24222;38381;40650;38063;19233;29959;23691;25289;25176;34475;35512;11185;20461;37625;19345;21298;34130;20128;41295;35615;19968;15745;37570;11317;42002;11242;14180;37052;11966;15777;31278;21406;39821;40699;39236;15988;31121;22958;28492;30171;23522;25844;34524;37855;19389;37054;13291;10746;32897;36236;13371;25195;20474;15916;32607;36019;39181;22769;34826;39437;24975;26715;17208;27350;28594;10581;14040;25508;36943;22329;41263;25960;34902;23111;20273;33276;28125;39398;18402;20782;33349;41343;13643;41799;10548;21672;37891;25943;34108;34083;36915;11117;30286;43002;11867;13209;38664;19641;38334;10422;41580;23990;29585;32487;19071;19802;21160;25863;15367;15211;14484;22693;15801;30152;23307;42518;42153;38067;33830;28628;35437;17202;25357;17633;22458;38888;28557;38923;34496;25113;41971;24582;27608;33219;19027;11936;18508;41415;21362;38748;28111;29105;33420;17627;39912;20846;30595;23295;17310;22574;21864;29076;41585;42427;42577;25144;16285;11156;26504;22055;29990;18850;43092;27131;11057;34773;13049;27262;22016;38902;31714;21929;32071;13864;36242;31007;29373;28678;22391;39000;11839;17687;27814;15848;32914;24054;22445;18862;18506;12060;39112;25621;20497;10928;10080;30547;28609;35827;28164;35229;38578;14885;30059;18113;20506;10379;21531;38911;12082;35160;23513;34285;25708;29183;11681;22772;23694;32277;21596;38012;24037;12466;29958;20521;29983;21165;39313;33971;31533;21504;38663;27434;23202;25078;32212;27377;12519;37693;17311;39087;21389;40371;39808;10662;11389;41510;18027;28837;38286;34636;20676;28176;13861;40551;25619;41408;14156;19799;30049;34942;19194;34614;34229;36631;21251;37269;43035;42253;23619;32684;14278;16531;40808;20746;10202;22925;20049;20006;34385;35515;15599;36198;11133;30768;20081;37806;26308;18383;15934;33742;14528;31471;39086;21207;21462;17176;22950;12442;15980;38002;12524;14936;12823;33362;42974;31965;28638;16006;27713;38314;35236;18767;11882;12531;13962;30902;28418;19300;37426;21382;18485;37402;13983;10798;28379;30527;20663;30548;21948;16447;38699;15457;33788;12437;40396;33902;38468;13014;41618;42336;26865;37917;31200;26906;41867;25838;29097;42650;20796;29524;29676;23125;13342;28747;14500;27904;28543;11213;19126;24956;29521;18969;18543;39213;25165;11248;22365;42250;41186;40972;30229;39949;24638;15088;12003;42418;26967;12386;19032;16055;25629;13380;23421;21757;20764;39036;27547;33801;12633;25790;20364;40350;36844;33994;41138;42242;12663;37238;22051;23918;35032;42663;39793;21927;38993;19413;21544;42821;12567;41621;24796;22243;32636;24967;15039;43041;42491;10456;26988;22966;12516;26863;34425;10939;36152;15790;26972;11654;38326;32938;10165;18503;20013;15287;32504;15694;30472;33335;24896;36413;19709;31914;18131;41004;36508;12626;27503;25122;14139;24045;12426;10251;11419;18409;14811;27040;40085;13792;16335;20052;10018;19613;39057;40862;13466;13311;17652;33683;42687;38482;13050;18994;14515;12747;23742;32789;16082;30776;14241;30627;42401;36118;28256;38846;26442;23334;21327;13854;28262;21506;42883;10931;39029;16815;20910;18624;40125;38863;18101;28763;37073;15795;30982;29587;24016;28151;42582;14549;21494;19316;42944;16287;21185;38331;22431;42308;32048;23345;22798;30760;11355;11702;31988;18064;11258;42677;22841;24371;42441;11471;14661;31359;37624;23062;38768;29471;39130;27940;37461;38725;12752;40554;14679;32057;13987;37025;27139;19823;16260;34116;21354;38949;16161;10053;18392;30546;19602;41938;36769;36212;24075;32047;10914;36889;10699;35035;38814;11671;14986;21888;41519;35522;31089;13991;23383;37398;28461;31142;36814;17529;41120;35260;40982;32516;33093;25633;18893;42876;36380;14748;19513;19611;28472;27236;19384;22752;39660;42156;14182;20305;21279;17430;15245;20253;35449;30394;42817;25143;17264;21826;19974;36624;17572;11617;37669;39715;38460;39264;27279;10616;20290;15195;23357;38050;18827;26616;17165;18570;14158;10462;25200;11149;35503;30863;41993;37467;11309;31783;37069;17299;15580;22789;30677;25492;26171;24850;15107;32463;27928;42125;32173;43086;18055;29324;42292;40045;20913;26797;37217;39522;19533;12118;33960;27252;22074;38223;21112;35068;27578;13881;26103;39620;31604;12085;27212;38694;42903;31592;21816;36449;34969;17009;33120;41658;23282;39225;12445;35726;11669;16189;31184;25476;27962;32231;26494;22233;27239;15807;10609;28270;20060;26875;28496;20768;16659;24952;37810;31303;37756;41471;27221;23018;32059;14452;40515;38830;16687;19509;10480;19290;39543;29647;31382;35339;20997;18944;31019;19617;40752;31034;35484;37938;14430;42477;13642;19396;33789;21190;29331;27992;23114;42774;25761;40708;15652;30192;29113;32028;28817;16876;30007;27845;22736;16908;36758;40359;31450;37847;23242;19072;24711;25246;27013;15047;14538;34004;22593;24322;25564;31031;18344;13448;25073;21828;17121;25809;24731;30947;39204;28647;42834;26685;33121;34602;28086;42028;25413;34697;12110;35425;37944;20045;24065;33850;28423;18414;33716;38730;26336;20454;35136;28755;14101;26694;15696;23355;22416;27509;37042;41368;29290;14053;13245;36168;37391;15320;14882;28103;30156;31692;27099;29312;26810;42599;13463;33043;40129;39535;23428;17094;21481;12919;34005;28975;29652;19054;31493;34679;42018;12017;30414;38031;13415;35387;25910;33608;22795;33784;15381;29123;23263;37858;31939;24505;13838;24168;22002;12658;16086;10566;33386;19062;25437;40638;13402;32836;40105;18514;28781;11704;21932;28009;30822;18365;14995;40413;34696;29609;39153;34369;17681;40715;11997;21896;16850;13208;40722;36842;38842;25141;19714;38981;36556;22198;31316;15028;40956;32967;18450;13329;14776;16125;18764;32344;34738;20833;30571;35892;31375;11908;37691;33862;26242;21037;10583;18327;18432;42632;24033;34607;12853;14373;37438;27104;13252;32021;33206;19244;30743;11431;37535;35478;14073;37195;36597;26030;37882;14950;11143;21322;30959;11813;19358;27753;19089;42196;13055;40941;37643;28445;16675;26510;22136;22818;26447;27658;13589;41301;13211;17128;36206;36950;28432;18782;33131;24953;20944;24204;41701;12340;25797;13821;25860;39758;30350;26727;41250;31347;33750;10453;22699;39700;14784;14255;35483;33013;39994;17668;33732;26822;21387;40430;26668;40124;32531;15507;23227;35058;31442;36505;15859;27004;25520;11381;22008;23381;35755;17065;15171;15654;33041;36178;41178;14329;32477;40142;11026;34095;14765;34503;11555;10884;25898;12052;14305;38019;29050;21235;42216;28623;36226;22854;41320;13840;23772;14667;17233;20815;14669;22280;37633;36732;27740;36861;41033;20948;35082;12397;33530;34837;40042;21291;27529;28960;23955;14923;21661;33701;24912;27088;11465;16930;22636;19945;32304;20766;12075;35777;26614;16510;38901;23737;31209;33275;13615;13332;18111;40192;14606;12265;19353;35241;12679;42249;36591;21965;22191;40376;40533;11934;26991;21078;16228;23002;18859;10070;40614;13446;20765;19580;11102;34639;14790;13169;42268;29483;31392;43015;27859;11280;23214;31132;14364;39880;25947;22785;14301;40485;25052;20255;13144;20251;24959;28354;17630;33770;37775;24789;36698;29033;30014;24752;18807;17518;16144;37212;23385;33181;42137;25884;21793;29359;42713;29357;13488;41986;34051;12224;22225;30128;34571;29370;42007;15735;29355;20312;11875;41434;30222;29368;39755;10087;17216;31674;26001;33086;11066;19012;11672;36939;22327;29189;22595;11148;42843;37044;37850;41410;28783;34990;22453;29200;18974;18643;41227;37226;28082;21639;12039;36297;18878;23688;15957;10530;11239;38792;35150;32461;35748;35040;41536;31993;10068;38047;19521;40298;17423;23552;11366;14903;24108;31642;13210;29228;36825;34618;13475;15251;26246;22615;14164;16312;30076;32530;12897;34365;12467;34908;27924;18544;33562;35411;33837;26922;42252;22673;18058;14854;33768;15331;31086;33265;21420;27098;35519;16074;30777;22376;23150;26946;34387;22977;21010;36386;40367;36755;37969;35523;36530;28247;34434;32200;25423;38403;10563;31426;35774;21381;10030;27009;38943;18904;34392;19376;11387;15178;32756;35165;26369;27890;19307;28573;29116;31805;23004;35438;36314;11380;12071;22299;32442;24030;28242;22485;27826;30596;39992;33428;34729;26270;20713;36730;40627;16146;21315;31279;11906;28906;21712;29704;11406;35507;37966;26911;24315;34219;29191;19015;39149;22176;21390;28334;34657;12327;35730;36832;20468;26017;38493;26519;13855;13985;31854;27783;34578;41600;32056;27266;19856;13773;35223;19430;34878;23312;40438;20565;17670;26300;24475;16677;20016;35545;26663;21537;36002;24466;38655;36983;36225;20890;24206;11173;39262;22825;12515;22060;10536;42000;12779;22725;24996;15753;31313;25649;28285;11854;12810;19200;16314;16680;29363;10341;38319;38343;34600;40379;16393;31758;33399;30884;30253;21835;35454;32743;39773;16370;32486;34019;29677;16214;30512;24887;32556;24316;17354;39852;10655;30862;10152;41171;41994;21517;39839;11537;21684;34077;37151;34948;11911;26479;32186;28811;37435;27810;30043;11599;24643;40948;27701;23925;21597;23739;25845;12981;37001;21267;30347;25145;11314;33734;10720;12891;42753;18228;16931;10129;12255;41143;24570;22420;21150;29895;19285;39976;28350;33907;36766;33966;32372;15301;34358;10945;18071;41887;28905;12946;18317;37683;32227;22672;26182;36544;17008;26072;35521;36762;12594;39170;11303;36322;10130;38106;36827;22684;10269;37807;26064;16783;38435;37816;30280;36319;17455;36988;41386;28421;37955;28876;17575;36335;25457;26500;21447;15068;23891;19222;40947;10034;13744;20402;16381;28655;19332;37530;19436;41276;21062;17541;22972;25531;42203;20252;42495;34768;29330;35107;24331;33448;19807;37946;32964;14567;31542;14404;21944;15501;30454;35940;25805;13384;33680;10830;11187;27291;22817;10932;42673;23437;10066;17055;33188;36972;32601;30858;11660;35539;25125;14002;38600;12641;22622;14060;40360;33313;41179;10176;10735;30219;40073;15205;23583;21523;15452;40967;27631;19918;40874;18480;37038;21874;32388;36933;13361;35272;21600;42794;24237;41042;33820;39349;16003;38715;21607;34523;17243;20185;35708;30161;13684;23961;22526;11939;19987;30481;35311;35669;43053;33065;40458;23298;30575;17489;25226;29722;22248;38883;27515;40848;36269;38249;20882;38977;20651;24271;41000;35711;37936;24559;39422;40942;35845;10077;39712;28907;27048;15463;17482;24261;40606;29010;17384;42961;21871;25324;11872;39610;27235;14949;10907;23713;20226;37857;26723;17533;21558;14524;13779;23388;21532;18597;35005;39498;27047;34454;14590;25866;32916;36455;15494;19184;38899;32944;39763;17419;18928;16649;22922;26543;22129;31072;33052;38316;42909;26667;10121;14572;35502;34540;17270;40582;12793;39002;38408;28212;29156;33005;25314;15184;32598;24360;13479;16554;31151;40987;14665;28796;10818;14684;37244;22827;15506;16392;33455;21977;25568;31995;11275;25917;38966;16699;19564;25370;15863;40821;15328;34131;24849;42274;25465;41653;17626;28426;41005;12954;34903;19475;22505;37367;11844;22887;10044;23883;11902;42563;29997;35882;11378;35780;13661;30812;19218;10386;42291;27611;24448;32746;14938;10335;26135;31602;23992;17039;40966;29606;40120;10930;37448;33357;27167;40034;13222;32424;22770;30775;32267;35975;28801;33122;33877;18790;34112;27906;36415;16891;19155;37774;29523;28273;33361;31688;11411;20082;41541;37877;31704;20405;22821;20033;14712;36881;18452;15843;34675;27669;20334;18035;15204;32335;33761;34627;24327;20200;33900;23081;37715;37533;33810;42278;40743;17166;30755;40504;12073;38893;32652;20212;10353;16008;41281;36015;19512;26009;24704;30479;33747;38537;21469;25605;28874;21528;42330;39183;26041;27336;24215;10345;25854;28251;12246;22322;39039;35433;11255;34338;19888;36201;10075;37115;32242;16732;34383;36174;39195;42920;33733;27210;32482;11616;26014;19241;19405;21982;33338;18666;23926;22947;42856;39139;15740;14022;41114;42841;16645;37063;32456;14458;38786;27358;34662;37222;15216;12555;31476;13070;32922;40222;34978;31898;28177;30362;23857;13534;15462;22786;41958;25315;22941;20710;22410;19829;42152;34087;41486;41428;42309;23260;37321;33961;25237;17581;34237;30064;27747;26127;37427;23850;36182;39805;36487;30361;40902;29608;40195;14330;11227;15765;31859;32453;36494;22932;18380;36899;40628;27632;40110;12488;21187;41614;14857;22114;24766;26548;12589;33423;24263;25403;27367;30404;26501;18445;23271;41876;12278;42877;36365;13160;23784;40929;22587;41803;30475;29555;39679;39513;35096;39921;13386;26938;27029;32178;29025;33987;12865;10460;32435;39482;10177;18797;33114;39351;14814;38532;19970;34862;42126;24329;28241;17244;32349;39360;28008;22375;26588;34444;17592;24433;40121;33252;15173;42174;33606;31641;22975;21373;10844;13918;35399;23845;30179;28873;29272;25607;18353;17996;24038;33245;26753;31589;13937;13122;40393;12578;13126;14055;28026;15532;38517;13404;28525;24645;30962;13768;32339;16682;18260;16291;24888;29494;41110;14186;33672;29655;15788;33585;11601;36709;29910;25553;21427;16429;21876;32846;12892;16936;12898;21978;39221;22727;26485;28318;39742;35796;12798;29615;15549;38009;35642;27179;29039;12471;17046;36215;23888;14516;18446;21234;22635;15972;24528;19748;17449;39790;32565;23858;15824;42372;31820;41068;19745;27991;25290;32750;26486;15904;28893;34462;24798;33565;22711;15533;15526;38746;32742;37399;31020;18045;27265;30972;14064;32036;39867;35765;23462;17120;32222;16309;14335;41339;24164;12809;13333;42378;28943;12090;20051;33722;17642;26450;38941;30514;27571;30968;34692;14298;41359;20947;38271;10126;26950;27478;10468;35839;42574;20435;36234;19349;36707;39159;24044;27263;26659;16072;37378;37150;12259;25168;24083;22527;25401;19950;41475;27538;37041;32651;31541;38248;37104;37652;22381;38826;25270;20973;41546;42690;26701;42332;27257;32719;26364;42680;38740;11623;25272;12354;35244;41508;34644;40154;36438;32101;30004;14745;25743;22951;33927;22522;39568;40662;28750;38938;12482;22396;13054;40723;36793;16595;19893;11322;15083;32130;12763;38117;34318;32879;22218;22897;15085;37412;19861;35707;41807;39936;11113;28186;24460;41255;24962;32617;36941;23526;23379;22724;13971;36849;13619;10035;38228;11035;19716;36652;20915;14023;31299;21619;25327;24227;40984;29423;16160;20353;17500;13067;24942;13166;26878;24971;37058;22227;23646;23707;34360;19442;18849;20418;31182;40572;41241;34763;28632;20907;36962;14747;34199;35933;14574;40394;24285;33911;35829;10722;38373;26143;24763;12325;20632;24135;41788;32174;19743;31760;10696;24112;38451;41440;25051;37895;16859;28021;32972;36610;32430;19869;13164;31368;25129;26040;35279;31532;17206;32943;14036;11495;33297;36931;33403;17256;15618;13033;26821;19688;24029;18578;27246;28836;24999;28225;14681;14532;14711;11544;42626;26857;15111;37155;18120;33042;26599;32700;34463;25344;20310;29735;34417;25481;29926;29822;37947;15818;37453;12497;41162;13350;14185;30654;19323;20302;21290;40323;31949;32506;36503;18724;39521;38516;28054;14013;38877;31149;21045;28464;38645;21559;15155;42716;32161;29836;17448;38983;22652;26775;24078;42105;24345;21859;28901;23256;35591;38056;41820;42432;18470;33754;20005;33261;14096;29386;15168;12364;13960;21916;14450;31441;25055;27329;35761;13494;36892;12802;22691;23510;14577;40531;21402;17469;38390;35125;39684;15321;13742;35238;10532;37605;24828;18842;35030;26559;11348;29850;11764;11429;10657;10450;16187;15674;16586;21108;29705;11877;15489;39681;42805;13153;27766;26957;31522;16765;30200;30184;15581;26778;10989;30134;24516;21488;26147;14896;19019;19352;38429;30129;33385;13294;17451;40324;29231;30635;29849;20218;25584;25461;10458;37575;19658;37487;14113;29074;22427;10063;38878;20696;18455;28338;10276;40191;22260;14941;32638;24023;37888;36393;25014;28870;28228;23962;40663;37375;22468;21097;17350;19100;23246;17421;14615;30139;19483;37242;33469;40613;29245;16216;14927;20194;14642;35154;23675;27388;29581;16058;30999;18314;24918;16833;32404;34794;36146;28585;15513;21603;38007;27482;12424;10185;10071;27331;11050;33064;31064;28759;23671;40938;41015;25255;10761;19872;11176;22275;33056;40558;21246;31785;39180;13015;24096;25962;26126;41311;31690;40611;22656;34987;14431;12366;20409;21614;18439;29985;11763;17054;12737;12005;14763;31544;12491;13915;18239;12677;35407;25194;25341;37142;41893;39961;21968;15479;16602;19325;13947;29371;41087;13931;10197;37279;15675;37673;37926;19928;11675;24957;41767;33134;24512;12212;22762;22149;25191;21839;14231;19643;36630;38821;40389;41406;19067;36367;29086;19131;25968;24990;24104;27835;11301;40682;18316;33939;21987;36447;21869;35602;24575;32225;27544;28022;30996;19023;11583;37315;29109;15855;38628;28513;40843;25271;18733;14324;38477;22881;40201;33694;21608;18360;32637;40748;32095;27676;10109;30910;10291;22822;34377;33696;11021;11731;42538;15386;39699;23744;14312;13835;39175;20701;28834;36245;19362;16272;26241;25737;12665;33444;33434;34897;27720;34842;18401;17370;37846;17376;32539;15219;29701;31697;25155;34857;29138;15016;24639;32412;12654;42287;14704;10667;27046;10158;34445;30112;22764;37590;10406;34547;27615;23212;39017;15563;12866;28451;22411;14794;25015;24995;19826;28883;21861;41595;42365;28554;15409;19082;34322;14645;34620;25736;21641;18041;24804;39144;39470;12699;22095;37769;37045;23231;33605;16372;12427;42235;19148;15710;19094;38501;22980;33671;35629;33494;20369;29409;40234;34233;32131;20168;30658;38287;28220;42728;35306;41024;38861;40178;40465;33949;26783;10597;20519;25338;22142;32041;34856;32070;22743;32640;35312;19719;27286;10557;29392;17058;37550;15255;32928;38789;39582;35013;12617;24928;40513;38812;19710;21849;41558;24712;15573;38504;24422;18995;21920;36667;30348;30998;30839;21566;23778;15571;36965;41859;23529;41299;32501;21060;42999;21142;39768;14955;15411;25063;38401;29905;30593;35085;23788;18613;24320;27489;20872;32653;29297;38079;19662;22313;22290;22563;21810;33221;30374;10849;30873;25667;27450;12506;24633;34850;25661;42681;41857;36834;19360;10618;30114;18717;35572;33402;14624;17600;13198;21503;35314;19750;18137;25543;36811;11196;31272;26951;36481;22981;36955;40518;27763;35923;24224;32639;40924;29954;34703;29820;29378;29663;43075;28927;14985;24873;11279;22161;32932;39845;37999;16855;23410;38519;20469;33999;31839;19279;37984;16219;13205;22859;12655;21715;14464;36699;39873;16861;14320;34823;24362;33022;11479;19591;31080;19313;16033;42675;31074;19956;41147;29063;35999;23183;19819;15991;32517;10110;24675;25501;21996;15554;40683;17105;22032;31264;35809;20551;40167;35996;12740;39292;21663;23005;38078;14163;33280;15684;10700;16269;24871;17387;32069;28329;13564;19341;15605;37970;28945;15985;38247;38512;31420;39315;42359;39583;10179;29978;33466;33797;15149;38661;38534;18138;16432;34125;18297;28106;31409;41675;30854;27651;33600;33499;34572;20161;12715;10808;20175;14686;39256;30820;21309;25281;24843;38304;37119;10936;39533;21657;40365;26201;30050;36053;42887;28079;10635;22408;18600;26747;34676;31386;42825;31858;37290;12454;34090;37250;30108;22609;20297;20835;34155;27289;39161;17088;34143;14084;29136;35333;11518;27224;36389;18085;18653;18479;22603;38944;25216;33772;39606;38305;16773;10128;37182;20153;40957;26518;41292;26039;29205;35728;33317;23094;12766;32110;26420;35156;35253;19647;21620;29700;15994;32169;22682;42240;12820;18270;19350;13949;33236;19435;29488;32839;29932;38125;32816;34161;27749;13090;14827;26094;29686;28510;17426;38609;13036;32847;25831;17333;40039;28424;10736;17081;30266;40694;35113;32603;31115;24157;25622;33780;33268;38571;16134;26787;10674;39340;23051;30494;32925;12570;13429;42447;22613;24819;15227;33497;34668;28015;15545;36270;39157;13575;28109;37381;26433;33487;37749;23308;39654;16715;20960;37872;19867;36126;15550;26090;36361;40802;40056;10161;34157;19565;10205;40280;24411;37721;33892;32519;42579;30057;17662;41872;34777;39111;35890;34211;36067;15856;25867;26866;10946;24235;10799;21880;31739;11633;19818;26428;34292;32903;39098;12341;27062;11029;29475;24056;25963;18695;26316;12415;29832;33498;27251;37783;20612;42198;38760;37211;41638;32293;28344;28916;34980;28813;30101;16716;20467;40014;31401;37572;14621;22022;24408;26107;27084;17047;22399;41870;30994;12392;12735;18428;10083;19361;24366;35191;10371;35798;19090;27776;28406;37034;37854;24373;28167;35075;42315;22283;28991;21710;18229;24423;13056;18326;29339;22912;35710;24303;21867;42232;27875;20110;32895;14984;14093;11285;34279;32710;13438;31791;33501;42948;41077;10788;24562;10411;37355;11180;15343;29948;42551;22571;13501;38903;16688;42036;34859;33540;22515;14964;32829;12308;14539;31671;13134;35600;13123;24472;31798;14194;41901;34752;17096;10435;29496;37730;34342;23190;15614;35418;40317;35840;39200;36746;21454;25408;18021;16823;42778;30539;42362;19049;26221;22130;25083;37685;33484;13745;39869;31445;11578;34875;23856;24548;36796;20805;34183;32064;13324;38084;31661;28452;35315;16650;22965;17059;10360;22969;11815;19369;12027;38440;39772;28419;16517;18835;17319;16417;25782;41269;39296;36507;14919;10920;41259;42284;19132;11837;18109;33519;37060;24253;29756;22991;15663;41727;21163;34580;34727;37145;18953;20670;30689;38470;10170;37342;30270;12391;28117;22096;26243;12233;32787;16937;15508;16781;41878;20935;34424;18144;39081;31430;17577;33953;23501;15750;35571;37591;18518;15119;28243;31211;29600;39259;38481;41002;32120;33085;11331;25807;36473;38514;34459;25331;42502;36848;34376;41581;28330;16302;25068;20925;24229;36784;38511;17528;26488;10312;27944;16733;32689;28911;20790;34906;39972;16695;10377;22540;31046;28292;22118;19885;27373;15712;38038;37066;35441;10800;17050;27799;12816;15179;37636;27463;24978;24602;12369;22043;40411;14813;30359;25213;14473;16886;27937;41725;20191;30965;16464;32534;26994;33289;32613;17485;31827;27177;10492;40620;42490;21983;27030;39653;19603;36571;13729;30117;21883;29739;11849;28871;16882;36501;29233;21645;13940;20256;15009;42651;14988;35187;32016;42467;34473;10097;34522;38252;10037;30294;15529;12020;26784;43004;17983;30800;39778;40643;37754;36536;36354;17107;42984;33714;43056;16095;34223;35715;10724;42074;20797;20522;14947;33896;12251;41663;23651;38986;12549;19922;22919;12201;24213;29263;35492;26289;41710;37441;20459;31534;21680;25406;36161;39426;20583;39227;23038;29479;31891;19846;21565;10183;10002;26604;16150;26142;10112;41648;37317;34099;41789;18123;25477;20047;26203;38806;27994;31452;36985;13182;30251;26198;37569;18779;32206;19582;34802;37376;21070;30003;34932;12646;42228;30170;12565;11228;10897;13866;31041;24507;34770;16201;29717;31529;12044;13584;13640;15982;40419;36835;26970;20316;35144;21170;24848;20529;37030;12680;19501;29108;25084;41982;42631;40035;10846;31148;29631;11827;35301;31968;16860;19788;22683;23530;21734;19177;35971;28371;34173;15165;21458;15733;35807;41277;35690;10516;20606;34117;10821;40143;10397;24305;14958;40272;36216;12489;34624;18454;39590;38656;11067;31259;38803;25658;29172;33710;11526;27321;27142;13529;15666;29592;11361;18181;19540;19294;27736;31318;43026;28705;32933;23310;11363;41609;34160;43022;32436;19399;35835;38592;32465;32330;30846;29965;22426;22802;24933;37707;15642;33791;35355;27824;22923;40976;36799;40285;18494;19542;19179;26728;32066;42567;28145;10365;26522;28802;36116;32423;18024;36568;12772;16019;10991;36350;42289;32963;10145;20250;28930;30631;41197;22345;15356;37678;21343;16197;10471;37950;36324;25028;41866;33156;10146;40911;38728;26020;24107;41401;21415;21790;27174;17187;42429;34905;37556;24113;39966;18851;34043;35612;19991;39595;41811;26176;29878;32422;12598;39760;17295;29768;25534;35789;26677;36244;37666;36692;41458;38311;32319;16570;41286;21100;15609;34646;29723;42745;35665;23314;30086;14108;23243;20281;14239;12239;35525;35084;13062;41183;21103;35858;40001;16266;18817;33425;12579;19798;16501;32775;27292;21014;32714;35288;18967;35880;24612;27590;21569;39945;20343;30259;36689;40895;14483;20943;26892;36764;35430;30242;15448;31832;18261;39477;42816;19409;31649;31713;25939;41926;29645;34847;23173;37514;22572;11557;19686;18685;33577;33720;20040;25170;38469;33853;16729;23958;29646;22030;24244;34722;37983;31761;35783;39441;29883;13634;28148;31979;18742;28462;40074;19061;19774;18000;13416;17443;38284;18605;30247;19739;16465;19374;33173;15910;39830;28553;13862;26726;30679;35598;13506;35228;22276;40522;23000;29636;42188;20786;24808;22524;20193;42861;40756;16525;29973;22133;30956;20848;25764;31800;22905;33309;17513;23697;38126;31902;36096;16249;12545;29162;16500;26503;41278;16616;20229;20886;24895;21586;42167;42326;37986;15290;24418;16394;31400;41418;40408;41421;11896;19124;22355;19120;12941;24689;39733;23656;30690;40445;13241;20158;34809;39396;25691;15011;38509;36163;31554;43017;17186;26315;37809;10645;10103;20829;39444;19669;23774;17418;25495;23706;26394;13814;22598;15266;23446;19793;23920;14844;35487;26204;32546;40174;28216;12106;22765;33262;17503;40706;41757;10972;27833;35232;25754;14821;37294;19574;29641;24829;18811;38908;22739;19474;30811;28116;41940;18303;16635;30191;12718;16167;36557;37022;20225;10400;26150;17450;14295;30395;24985;29422;30032;16605;34017;26436;27249;39064;39897;35855;31935;33821;26302;33679;11002;35471;29284;26145;35505;40416;42962;13623;39688;34255;19850;24642;15852;22553;42476;27283;35878;33462;35874;22037;42037;33859;21203;18776;33819;39826;32584;34944;19370;18785;27636;17031;15237;12951;26779;38301;24583;26578;13408;28444;17377;35661;42044;24050;12455;33800;34349;40172;18010;37663;20887;17978;37928;18577;17507;33552;22984;10164;11472;19230;12695;36719;31405;42185;28343;25987;30504;20085;23952;42413;25277;24202;36809;40816;42072;37007;27391;29991;23485;37990;32982;18321;43074;36663;16494;13082;42715;35309;21105;32758;31762;13539;16909;36874;12004;23128;30046;18520;32934;24123;22068;19813;40502;13942;16944;22839;14242;35954;28697;10252;39956;26312;14883;41685;22080;20822;21730;33018;11524;11788;30911;20794;21913;22072;35518;15711;33958;17334;41798;20026;31423;34201;38285;13242;21660;30572;20188;36363;35364;15629;37863;10731;24807;24375;22578;40552;38465;25936;16270;29871;42442;41516;19890;41555;39105;13095;18957;32893;42338;16718;19264;27570;30231;27505;13609;42828;16016;20884;10685;34372;29859;34589;24963;40989;43044;31424;39383;37372;17585;15724;32156;15281;42586;40169;26355;37335;23554;28654;34506;31374;35050;16805;12784;33078;18917;26644;27490;18393;36940;18104;38897;26812;16133;27448;32555;19099;39380;39452;30736;34742;29369;33329;27684;30120;15793;39080;41824;29495;28541;38224;11259;17589;39944;11383;32297;32955;21838;13238;18637;41126;36668;37450;13378;39202;30289;42504;22168;27555;35256;31167;40761;28706;43087;21475;11648;32460;32289;22517;31455;30734;19837;29840;10181;28640;13455;11473;24346;20375;33955;31731;15772;38022;30010;34044;13930;37885;32494;42685;39337;27073;35662;27595;26010;29598;22417;37129;36135;23351;17051;24039;27061;21120;34441;17289;33704;27682;32420;30263;14626;11927;41983;17265;12769;20784;32192;39938;38633;12869;22025;38584;36678;42735;36120;22075;39388;24252;32912;25060;33718;13605;39356;33161;28696;12053;11640;26585;29277;41156;25037;18573;26852;25740;33572;16647;20030;32744;32259;40079;33377;27037;29855;28700;19388;36561;21885;18166;19351;32407;28828;14837;12625;30036;40215;30680;27181;39850;11438;36369;29825;37905;21288;29288;32505;24821;35620;13040;37717;18288;31193;38255;40295;33522;36433;41476;41915;31290;32900;12456;11831;20340;24890;21585;34838;29004;11775;19393;15655;15387;14315;32896;13816;14514;10011;30725;35004;39557;26240;34895;36880;15238;27648;42979;13451;33055;16007;34879;41669;25827;33050;42536;42419;37771;18665;36103;21355;20601;29364;12615;40237;18139;32303;17056;26987;17653;26217;41631;26475;33331;36080;22202;25799;18669;40247;34386;22702;11842;35885;19356;17155;14546;13877;38024;19108;13542;38136;38423;39314;19112;26367;21508;29309;15314;33717;34177;35421;24981;13961;36807;42937;42992;31026;19256;10017;26570;19188;17986;29980;42122;39648;17671;10143;40155;20543;13516;15566;39466;36210;24105;16459;18908;30872;30601;26682;36525;42314;26656;32594;34839;42875;31563;34241;20139;36345;11410;19522;22836;41593;31759;11147;34870;42940;11520;23549;12721;19723;33551;15486;11059;10287;27135;29351;35007;35183;20004;14979;26083;36534;18008;22018;22830;31484;32692;14199;42306;24383;36998;38231;38651;40702;16721;15163;42034;20917;26374;35022;11054;27674;28142;18647;11679;34187;25596;39584;41151;20787;16854;33746;27809;25012;11475;34281;12518;21666;30952;42672;30508;39084;22217;40803;24883;23755;32678;25214;37776;32941;25971;11665;38568;21186;24385;34986;42311;19637;27584;31808;38269;13296;40857;11325;38749;26278;26141;19440;31670;31865;26184;37387;10076;20486;34971;24496;30646;37916;19655;10608;27820;34295;20661;25900;20901;29190;39473;34007;25070;23132;38379;18715;23982;39750;16427;34180;11891;36195;20945;23221;17464;21588;15341;40674;41974;22054;41470;42205;40225;12862;33118;34149;42496;42145;37326;13125;28244;10436;30090;21984;28066;39898;38129;22177;42107;17991;22541;30021;23145;37476;14359;38218;28979;10085;19007;36203;18615;27583;16921;27498;10503;22256;28077;16502;26829;36830;14345;35465;14822;15781;14209;37660;36877;15864;32042;34891;22088;19057;22437;40648;28842;27256;20516;22342;36741;31643;40641;41957;18174;21384;13094;34323;11515;35095;28011;27302;20570;36548;36938;32748;32323;29188;34810;11265;23760;33735;25282;32998;30430;24732;35190;20124;28854;27540;11590;29518;18332;41968;20946;27002;17553;27666;42420;19315;20681;36586;37559;13249;27477;16994;29703;10527;29812;30721;22429;30870;14872;11935;15561;35626;35588;28356;26304;27808;22718;34062;21643;26905;38276;20783;24586;33825;36923;19914;15610;35805;32007;32883;33935;31841;35286;18736;12430;31765;39937;16546;15819;15767;27922;42127;29362;19348;27511;26235;19456;34695;36093;22871;23892;36854;21424;14810;15722;26154;39717;33835;36085;31900;42471;29008;24068;20056;19949;42967;30815;25498;38646;25899;34086;13280;10576;39677;37856;26261;28044;30375;35538;19527;41388;19905;23440;16757;30074;38293;38884;36846;37761;35149;40358;17602;33232;42694;30818;42629;34060;14166;13656;41707;42211;38623;37975;41100;11038;16376;31743;33873;11074;13068;10038;36728;31127;31372;15704;25944;20747;29982;13598;36727;11727;41985;31413;41657;14104;15487;23079;25048;12458;12049;20555;37431;39093;40737;12043;36976;14605;14519;26019;29502;21385;36220;23178;20244;16093;39917;37974;34924;36800;27122;41643;30535;41235;33380;41439;18771;13314;36543;30516;11647;40753;42554;23533;27823;25354;23154;18759;24603;27965;41528;14637;12759;32247;30619;25774;15305;25671;30037;16115;10984;30773;39381;19581;25135;28790;16592;39040;24286;23155;18756;15895;29296;35245;24551;38866;11545;30578;24922;40422;13917;37374;26927;19140;25249;13178;20839;16663;42373;13979;20288;26838;14833;22651;18039;21426;11049;39325;20108;34121;21299;36330;27552;22038;24249;38135;21009;15241;38475;13258;38400;14173;15078;27485;27697;39798;31117;11905;37834;27203;21905;12046;31547;10250;31242;19648;27446;41131;26751;25733;23686;28012;23041;36587;23414;13066;38291;10759;27939;30990;26477;10500;42509;32634;28239;34297;11620;16541;30781;26521;39628;30827;36158;37614;42614;28446;32346;30300;25814;25219;29931;30708;33442;19489;16328;34864;39832;26037;12877;18766;36743;19488;30607;23344;25766;36961;29874;11783;11611;23080;23075;25064;38015;39714;14773;25186;22281;39900;10107;27316;11184;13017;10147;31377;16232;36647;31360;25747;30684;16053;20029;33979;15846;12408;37919;25830;24313;21925;36777;34788;34626;24127;39469;41745;36607;27691;39155;13309;41358;23286;23153;15649;41641;15593;23927;36007;23022;33282;23141;27055;27659;32331;35619;13261;19034;13225;10437;22282;38544;14715;32667;29128;21485;31237;20079;19149;25610;25832;36265;42004;17041;10015;19809;41453;27716;25956;13753;22438;12937;18741;40783;14921;36958;17227;42561;22692;23934;16828;31469;25399;36488;33884;40657;19302;16352;33799;11897;18591;23635;29028;34273;25660;12407;33769;22685;13761;40782;16147;11955;20589;14378;27661;12062;36461;32773;12490;19308;42969;16736;32917;25379;30254;16083;36742;33162;15474;31885;16705;41464;22767;41552;15825;37706;38747;28392;21934;18155;32014;16116;38485;27192;36405;20524;41307;17345;32588;22496;37120;11353;43019;12703;42987;24812;41576;40163;29485;15174;32591;18567;35388;25473;28304;39346;25245;41531;29081;10159;27211;16416;42607;25443;28196;39465;22003;38523;38295;36801;15140;14257;28017;16658;33925;25407;31163;24926;10378;17468;11316;31517;41896;27780;36982;26826;14487;42994;40322;29767;33574;21179;21393;41616;20304;18170;12683;41723;15236;40153;33084;35663;41456;42048;39001;11506;17650;24427;30033;38696;29510;25676;24177;24009;30262;33599;34485;39146;25332;24414;26362;10316;35157;21001;13510;35654;21049;37504;18304;32278;29066;29974;38848;25674;16375;22311;37133;28408;14299;42368;27300;28319;24527;10534;19531;35630;20020;39670;38100;13774;26004;38808;31991;42964;17079;20510;33240;13465;38272;24735;32989;27677;24753;31462;20113;32464;33689;25937;14416;11980;12266;10811;28133;37695;16977;26868;37968;27026;34022;21086;37365;11273;28730;25788;34743;30468;24534;28634;15380;27727;22748;26138;19347;42695;20384;27973;27805;42267;32671;18524;30507;10478;40535;34045;10997;33977;19584;19753;36898;36079;12926;16836;32251;36655;11574;23444;24580;21792;27445;33113;26266;22266;21570;37089;25395;24095;16625;38471;20712;13005;35508;15823;21496;38847;36513;28172;35290;13197;26840;25828;39322;30824;16415;27209;33663;18929;22039;30297;24750;10173;29118;20439;37525;11933;31315;32779;26113;27271;11718;23700;24998;15384;36590;25157;13490;40666;28055;35586;21995;11736;42589;26575;38726;10210;21167;28597;12312;40257;26900;24074;14115;18911;21464;11217;40539;15443;28992;40937;32017;41432;17277;34418;41939;39600;19470;15866;25328;11901;26463;31770;18095;42806;36739;11747;42130;31676;33986;13766;25099;24631;33302;41934;22677;41944;15122;38177;17098;28894;27285;18324;25153;23643;10383;38554;21540;11625;13394;17390;20558;25072;27474;41342;34218;18459;33427;19473;21180;21213;42691;26434;16132;18882;38844;19379;13891;38731;15075;15270;32237;11937;19946;30302;35267;11832;28003;39514;30193;25714;41556;19095;15603;29784;27147;32523;35069;29586;30307;41308;21700;11423;22917;32434;15635;31552;29013;28568;38733;12723;35427;23576;14891;18708;19328;41482;30551;20514;17136;34786;17134;21960;36012;22796;33326;19615;19937;32664;20677;11900;26695;29898;28057;28639;15346;29616;25140;23287;38406;14571;36459;18400;40649;16130;10994;33569;24782;39484;36409;19645;14441;41185;10304;23588;37176;19487;18315;18783;29193;39743;17656;10540;32524;10133;22749;37439;37267;30393;14792;21736;23950;39732;12860;16284;32614;14531;12868;33146;24228;24716;19392;34760;41575;33974;41076;34846;33965;13421;21194;22740;31367;22272;40116;42416;15385;14772;26337;38657;28299;30787;25321;20673;24664;31419;39550;38769;16041;27197;38029;26748;21909;37844;42879;27654;10848;31008;40330;17016;27741;42746;41567;28621;23009;38665;35786;22314;40151;37179;29560;10659;42255;31294;27060;12977;23766;38729;14597;40269;33197;21801;14269;21993;31016;29499;21282;37798;10194;35596;39523;16236;34196;32002;13770;30711;38666;40224;34472;21261;19232;39027;26771;42532;29730;41916;26955;37422;16771;31983;15017;19619;15901;23690;15417;13507;39868;32088;12365;41017;19610;19025;12529;17576;18990;20019;27804;24773;27178;40189;36396;31311;31960;32838;30865;38166;39597;33550;35717;21183;39907;35352;21483;39855;28675;42958;10215;35043;28497;36412;39423;34366;19731;21900;16290;28908;14309;32771;42096;32953;36262;18919;34135;20254;31126;32536;35061;23459;35042;29356;27432;23995;34793;39282;14786;21439;15222;23563;32611;13793;39397;33298;21303;40870;19045;42243;21310;41070;31559;11528;22388;14089;18349;13193;42085;16756;11725;18725;11225;40235;16038;41520;36446;15802;13423;10364;21410;38011;26800;29347;39118;30182;26061;36813;30026;24894;25316;25541;12279;38008;14618;19213;39099;13172;42637;30406;18060;40392;28058;23738;42772;42531;25470;40963;42303;27452;19786;33293;31453;11558;18765;41547;21841;36395;15638;34253;21524;16316;35832;21468;37125;40349;29650;40200;26465;38914;37521;17262;41177;22554;14733;32585;14598;38430;36789;39672;27198;35010;42639;31218;21651;41963;12914;15128;14029;18510;18832;16017;20422;39327;27732;37960;28841;27176;20987;34484;38479;11794;27923;11359;29327;16012;31083;28676;42858;37696;12051;12294;40493;10249;14211;17069;15317;15611;24717;20335;26029;18423;16539;39795;33371;29293;21738;21425;26472;42100;21942;40593;22214;22641;10947;36733;17306;41334;10644;33804;12842;32720;24560;18726;21113;23836;16349;29007;26156;12566;39844;30278;36392;19299;33129;40578;29928;22152;36273;37828;42600;19206;19408;24470;38270;38857;38345;16576;42260;22715;37513;13097;41683;14644;35322;13084;30366;27909;24517;13110;18824;12226;28204;38548;23933;27392;22586;38388;25904;27620;36910;38202;13803;20311;38387;33834;38711;10297;18664;19293;38686;22557;10388;14584;29601;11866;41838;22446;39995;16362;39531;29311;38836;26401;16642;29026;14593;26314;41232;37997;19174;13439;12469;14888;25414;30696;23507;38456;11022;17313;30997;32988;13339;41530;18065;24304;31705;30718;14841;37148;26410;25942;31321;23346;10410;28626;17284;10253;39923;27317;26511;42257;21040;18117;16149;30028;40879;15267;20683;22708;21461;21922;27346;18310;42515;39434;14229;36506;16317;15918;32777;39445;33972;28659;29385;16170;37510;26423;12690;10457;21962;17477;27497;42744;11811;11319;12957;42094;17480;16965;28457;34512;32180;28488;13163;32405;30960;38780;21374;16818;18602;28680;34198;10405;13856;36625;16171;26357;35974;28189;15243;40242;13142;35459;15794;24913;17689;36417;27340;41006;22415;10665;33306;10797;23750;37894;40703;29194;20090;31528;28853;31053;39747;37501;40732;30138;10953;38410;36454;11564;35686;13398;24958;25928;30717;10293;17660;42132;18855;39553;28615;22993;10728;42701;41885;29132;18781;24510;18022;34419;37053;27204;10816;26331;38483;14032;23617;40754;19068;37430;28048;11820;35066;29806;32373;17298;12473;19450;24822;30695;15680;12470;36712;14470;17598;12499;33460;40596;10631;17201;21875;35152;38510;15330;20774;37230;10901;30622;22753;42736;10899;10182;42899;23438;38542;18345;29170;14767;28827;24910;37886;35203;29787;36140;22521;20802;26557;20821;29559;39968;17616;27217;28528;33053;27268;42624;41247;28325;13928;38028;20452;26807;10865;37498;20032;38102;39594;39536;14956;31623;35081;33130;29308;21573;25853;40229;42851;26580;10565;34291;31017;27345;40377;35409;25885;22628;39581;36022;15348;33666;17263;40228;28229;24572;42047;27063;38996;36169;25742;13279;35990;13672;21126;27102;25929;31434;15018;11115;29632;29908;20798;36734;17615;18195;12092;19447;11673;34339;34784;24834;41587;14797;12751;35824;22424;11157;32672;42300;14240;24754;32321;19616;41676;30720;12121;41768;19371;23640;16899;16653;19878;28463;34619;41118;39274;39075;40331;10298;28645;27366;37723;26188;29404;42101;29398;29210;24852;39212;22848;10535;14851;40197;29216;24400;24982;12333;14047;34258;17129;24968;19706;37141;22082;41737;18186;31358;42869;28115;30592;17246;11392;43062;37198;26626;16475;29399;10956;28549;12733;32408;22532;36891;38091;39223;32201;12509;41647;21877;20850;26193;15345;17301;35529;41329;32215;17549;43028;37759;41544;40796;25480;33471;11635;25859;35128;40421;20692;42012;21367;15697;23727;21166;17327;32176;34792;24242;10550;32605;25244;35488;35247;38987;38424;33644;32353;14399;37245;33568;13957;23044;22852;11631;11508;18519;19394;31274;12630;35660;37788;38313;24008;11304;35112;41452;31082;35139;28891;28378;19687;23931;24349;24549;29250;19065;18923;33533;34269;20793;39073;15460;28200;35998;34234;40876;15087;13858;39786;15951;22113;34514;28174;12880;17188;15114;31069;27414;26777;40602;37604;34373;33646;22318;10704;15626;21412;25803;31825;24567;30807;20451;20117;37959;33642;42793;16443;20715;36423;11930;40635;30367;12093;12586;31365;29839;20751;23678;31551;38083;19417;11990;35627;22289;14407;18033;28331;34567;42998;21703;28210;10747;25726;26793;17545;36383;27813;24138;26814;18674;21975;39166;14518;29317;39058;28134;22434;11989;16761;11755;42246;31607;16952;39721;42293;35648;29611;20834;26287;38547;29716;35295;20130;24137;40406;23886;41442;12238;26890;12610;31977;34242;33014;25227;11893;33964;35678;15349;19446;12256;26202;24584;32026;14613;37677;36483;12760;38697;29137;24934;35758;20289;20053;24714;36666;31907;37449;28607;39468;11323;34381;25614;37010;16369;26122;40346;14944;19270;25812;29578;40778;15941;41856;13192;26846;39138;23250;29087;16571;14583;26233;20687;24000;11356;12929;16769;32073;36888;28840;22662;39601;38775;23649;27426;10762;30612;14062;26587;17044;23512;40562;32382;25618;40785;36987;41678;38992;17119;31796;30676;37722;12719;26597;26856;14019;11785;28434;23170;26011;33656;29175;11456;36421;27566;42740;32329;33653;32812;24792;25588;36606;26386;16561;39078;41422;13632;21787;40170;13787;11128;29939;24149;39079;26648;30830;28657;42565;24870;38194;41810;18531;32023;15659;14674;39329;35380;29497;24374;21969;43082;14375;13215;40652;14224;19828;22007;24007;25847;33676;36641;17432;13668;30195;27719;34050;13639;40882;33132;22988;37403;21450;15601;28520;32994;31108;42925;28995;21237;40712;35199;24048;14075;29167;21205;19398;25192;11609;21270;15031;23413;42472;31650;36157;39723;15472;38810;11137;11271;35599;24221;26175;20812;26872;25079;16262;19787;14410;22995;22904;32369;36432;27963;29591;13784;19141;34951;19746;36177;31751;11357;26432;21084;18813;19004;36706;28237;37511;15862;37675;27696;36726;21627;14493;13417;25599;11540;35141;22723;26896;39929;31797;16035;37187;35088;26617;17045;28761;25419;32203;31946;27152;28458;14411;11382;42844;16310;26495;42575;19926;29212;14795;35896;18366;11127;39128;20645;18145;41937;21534;42512;26628;16489;14215;29354;32262;32359;41461;29454;39503;17152;19579;36738;33023;10039;21011;14815;11408;10531;25606;30722;35862;14709;21988;30519;23486;21019;16380;25101;19190;17101;14975;22092;38695;16230;31333;26413;11170;21535;42141;17103;32578;11098;40486;30637;15805;23019;35670;39278;12911;35089;26200;30085;30840;39051;10498;25475;39593;33516;19910;24267;16808;28037;13747;33624;14011;31890;11501;42337;15020;22535;36837;31319;21894;41226;37978;30166;21455;29763;40325;18760;12736;14906;36391;32841;25756;18955;26989;22472;41671;21198;15089;26033;37131;10504;25957;18610;12805;22695;20854;29319;37196;24169;24867;19981;38817;23098;29146;20553;12973;11649;38925;13944;22913;35420;13569;11695;37283;25970;25297;16367;35592;25393;37814;17312;22546;18672;42769;33828;10424;21188;10442;42557;11161;30314;40004;30746;23435;36959;20368;15786;11139;37994;27112;12995;23456;16717;38794;20998;19736;38339;27910;13216;21430;40873;33947;15568;25907;10790;21989;29320;13007;30196;36076;18089;39010;33968;27161;33071;19892;20684;18774;42636;29304;29781;22064;30763;24705;31606;36828;22584;29876;12958;12316;39558;12967;40183;32491;26257;22455;25694;25119;37463;13570;26170;20024;17339;41216;17461;22594;21056;16951;31745;24321;27360;10445;29055;33273;16835;22828;35340;38068;11753;35170;16445;16624;26294;35689;29011;12362;17116;34405;25748;10603;10680;39934;12240;40904;39580;36442;11376;11504;42200;22713;28539;25006;38069;33285;39295;31011;20587;18325;28764;23528;36783;29405;39617;18182;24459;43066;31332;36051;12258;39083;17382;11615;19729;15661;32518;12323;19865;21346;36563;35294;33677;36701;26237;35079;19235;12441;16358;15999;22607;13457;32481;28774;23767;23299;11163;29229;29472;39930;40279;39816;20686;11250;36752;23868;31874;27580;39928;31066;23633;41234;25294;30311;30849;27895;10171;10447;18420;41722;22046;36186;18648;19385;31728;26448;26476;24166;30015;37201;23752;36780;21416;42941;20641;28014;18686;35455;12375;24087;33681;28179;14596;26687;40576;39906;42857;39662;23527;30416;26954;23040;39614;28512;11738;11613;35831;29476;16526;11024;22886;35803;23573;17444;14728;16614;33284;40024;11300;13842;19790;32271;13531;34941;26909;12666;13956;30920;38618;11462;33617;40444;34483;34855;16145;34470;31175;34026;20893;29464;16963;38473;27282;19698;16528;22304;12885;26473;27504;26220;31013;19884;11330;39020;11297;17036;35391;33603;27089;36371;19260;30178;21287;19791;14520;37324;26482;43033;34123;12591;35989;25259;21490;11308;27339;37359;40939;12998;25862;17525;32790;31536;23392;37890;29817;34227;36472;19851;33668;30871;14716;41633;16289;23901;29618;14778;22509;15850;21782;24457;32844;18250;24077;35959;11796;23134;28020;26533;30426;10351;21592;37178;18714;13590;10974;19390;37587;35799;19026;23452;14271;11596;13721;40437;37538;36714;32035;32550;25343;13443;36329;28271;25634;25267;33698;34479;29140;41161;22837;19553;24666;31724;29666;17007;31247;18844;14634;19422;42902;36081;30295;26849;30339;38043;12900;34298;23065;10289;30558;32158;12112;28100;27381;28928;25734;33334;28119;29419;37032;13505;24195;14063;11604;37271;28787;10124;36934;18318;19333;31490;33137;40158;20492;21630;26431;25415;29628;28956;22253;34260;26707;20276;11568;17378;26789;17637;30482;17021;37287;30864;10688;17207;11634;32612;10363;24624;14734;37452;37350;35913;34553;11232;38205;37491;37541;16142;18575;14913;30442;36484;30927;10497;11028;24727;41029;17300;22108;13902;10393;35517;14412;25268;28130;30757;40213;39294;20123;41845;19590;27756;23244;20958;19649;26195;12925;37710;39026;41833;11298;12861;39737;24729;36822;33009;23068;15520;24198;39657;37281;16440;35363;22205;41326;12836;11023;20918;13138;19557;21949;27605;28809;20937;41946;22493;32114;40763;39874;28166;40289;15497;26459;13509;18476;34000;17422;25682;31850;29752;32686;10307;12928;18198;11542;16433;15634;25796;26939;10073;25358;40028;15906;25966;23349;41211;29981;10626;37991;37823;36660;42324;14710;18488;24111;11222;35977;40823;24949;37596;17097;34340;42370;40072;18232;21858;13562;40563;28377;38910;25762;26869;28487;39953;16630;10057;26792;35638;38750;11125;19614;36936;31147;37246;28170;25878;30772;35367;21923;28612;36162;16087;14586;42464;27984;13503;36024;42670;30623;25820;31136;41363;23261;37616;30602;32103;29955;20732;30850;29697;19811;11666;19773;41895;33963;32562;20115;28393;36841;24031;21610;32597;26917;19021;30562;32376;20479;29754;18821;28390;30143;32439;12711;22842;13834;24497;20394;17322;41187;26882;31385;25982;39169;16137;30893;36541;38879;19562;33983;22649;38258;10318;15106;24655;18746;39950;19751;30410;19306;13292;39344;27190;31114;32154;14486;30877;29728;38499;35653;38946;29783;32364;41496;41747;41597;20926;27326;16321;35445;13012;42353;24326;38256;16655;25451;32245;12685;16744;35008;39131;39114;15419;10653;38265;35012;20763;17157;42594;33840;24115;17225;42527;23302;25563;19466;29015;40686;27182;16849;38527;37622;18100;28405;27526;22565;34915;34185;42799;29660;20373;19013;12554;29989;32473;35527;17398;19381;34876;40634;36133;19318;27370;29020;32107;41894;18858;29682;22228;11058;10153;31716;17621;37836;36151;36209;31078;42546;30653;35564;17599;42481;37699;38433;35810;38196;24145;25241;34922;32797;16633;32241;27308;11195;34097;18399;36204;34333;15633;10101;29799;41854;10138;39059;37006;18993;30244;19642;12774;21510;37339;25416;36872;23487;23373;33247;11296;38366;13009;26496;39424;42511;15135;30130;28034;26196;28214;42908;13016;32945;30983;17077;17560;19594;42355;13449;18290;16813;30025;26714;40574;11999;16903;25787;18763;14306;23624;26637;34494;31429;31325;10595;13828;42705;37736;23759;35830;40288;35456;25668;17537;33182;23108;42050;40670;42823;40204;26082;13102;17011;15300;15276;32250;25307;35120;28168;16711;13903;28942;18489;14675;20628;21817;32118;41225;14214;10885;42653;37520;27722;38034;32102;25952;36283;15583;12709;26737;35559;42521;24280;34451;29068;26536;41037;38368;21024;33808;26089;26021;13832;38396;19514;25918;29500;40218;36013;37657;41720;15648;30706;18159;27378;14904;16268;12503;23899;36281;10204;23213;37432;36748;17434;12930;15207;30543;35132;37272;41477;14746;35931;27581;13869;17565;16975;10093;29975;10366;10870;38229;11221;21527;14525;15418;38881;25702;12526;27488;35028;22985;11104;36879;24300;12815;11808;34808;30127;24708;28108;35917;14737;20220;19523;23632;37388;36883;34075;20149;20198;29755;19882;38918;17073;12449;38163;34001;27021;28415;23218;19921;39734;39749;32985;20057;35303;11145;15465;33544;41210;23014;10898;28745;12994;27793;33308;23985;38449;26487;15240;34981;36370;30713;19561;13514;40025;24858;27475;21745;17665;23478;23670;26467;10294;39587;33561;20902;12713;24620;36227;43045;35546;24230;24811;26151;29124;15803;30861;32827;38463;40568;17150;17476;15553;24209;35734;16714;29445;14414;32992;12743;27081;36521;26012;31253;25076;14507;34966;16664;42852;23341;28131;36457;29724;24076;26712;22674;28768;28613;27784;15530;25744;20922;23581;33109;40827;21768;12065;40599;11092;14415;14482;28578;22380;26761;25053;38920;34638;11203;29695;37700;29621;40449;13536;38586;14247;42354;18235;15909;21971;33225;41527;25352;31504;16558;29024;21141;32320;10552;18009;28357;16942;41868;34652;10689;25017;23905;18732;14110;37848;39228;40333;28391;10051;30889;23769;39336;26464;41003;35850;37414;28238;11822;14016;36492;31756;42725;34266;38452;15717;29907;18676;38835;15120;30421;26767;36381;30308;37228;20103;17676;31091;20709;41055;11717;16179;32074;35111;27539;33430;32699;41864;37679;19287;10734;25816;35475;10454;17663;10108;26128;15473;21377;37361;24718;33301;19631;28301;30804;27093;39635;25617;42005;29553;13305;28263;39113;15620;18435;19995;35201;20626;33697;23119;22847;10021;23994;39735;21428;36478;29648;17395;23558;17332;37305;10522;11249;23416;43030;40352;26720;27694;23281;20241;18461;29854;22395;23747;10528;34307;40264;41268;18639;16548;13959;25288;26808;29213;22184;32058;16916;29802;22301;36648;28367;26290;23194;15094;23237;12472;29751;14689;23779;33358;18161;10862;33981;37175;28203;17252;40812;24937;36045;13257;33709;39019;34901;29428;21652;12262;16878;17019;24468;42763;38318;39685;31308;14479;16273;28097;36517;35002;24456;27397;24058;41781;40246;30220;26854;20221;14656;25836;12249;28698;36870;14735;42113;33177;28192;18864;31092;29240;13951;34440;16801;37332;15429;33151;26057;25512;24097;30611;28374;27541;38939;39691;30496;38450;39686;31254;27915;30469;10510;17404;27095;15212;33214;40561;29418;14570;36649;31896;36334;17567;38876;13048;38351;36917;16220;31819;29547;36906;19231;12913;38239;21797;40566;40211;14400;17153;24259;26688;33524;24264;28137;39260;20705;23923;33103;24546;11420;35681;35313;13746;25199;12315;26651;37725;40585;21814;42819;13436;21769;22001;21000;30843;11732;25411;38462;28681;28531;24885;12577;13758;15280;20074;33546;18507;27964;31696;25231;37005;27113;40994;41973;31414;21366;29568;21404;27982;13558;27237;19947;14608;13407;35701;32403;35908;14589;42025;19246;11346;32447;18546;19683;13663;15177;21349;29410;24907;19511;33208;31624;14304;10730;38922;21784;34327;13852;13984;39706;18154;36304;26441;11776;29441;38717;40022;38058;15277;37801;13748;41851;16304;30938;30459;13248;21632;15426;39555;35532;21533;29627;35078;13554;41099;32996;39894;18569;35820;19418;16242;34755;31015;28536;12318;31597;10476;24573;11563;33751;27681;17661;35356;36884;11878;33343;39358;42063;39674;21226;31509;14916;23335;14157;32377;14671;18501;35337;23054;32718;25988;42584;33264;37051;23664;12047;10606;19043;41497;16889;29443;15253;15019;23374;33340;37039;33583;16519;20003;30491;34169;16670;29569;27711;23545;41814;27267;12204;27024;43052;41066;13843;19944;14445;35140;23169;21813;30088;37164;42812;10078;40907;32693;30142;39270;18471;43040;34073;31537;38687;11538;24831;10438;40055;12419;38412;33725;30828;16706;12952;26662;18912;36810;31879;31598;16223;19508;31210;35357;23157;38676;33406;15929;13064;19125;17126;22820;20088;31557;40037;27220;31425;18617;37893;38088;18662;29303;14217;34603;28921;22788;29222;35269;20704;30626;33446;18112;13805;21696;25204;22246;43078;16077;29098;30608;18556;39011;11668;27309;15450;22891;40720;23687;32507;16422;41441;33378;12496;16194;33476;26035;15458;28489;13798;14338;31786;27680;10580;40575;24589;29036;11546;18828;11270;39447;13870;34304;12495;15505;20653;41117;22291;19486;14703;37532;26791;13760;37724;27472;35292;21493;21276;13844;33912;33292;34687;42212;19815;39265;17447;24246;14133;16545;22148;16890;38352;36296;13913;38360;15720;30461;27170;38937;17501;10283;24480;31047;27866;31912;12202;15840;28734;38096;28552;37000;42351;25365;42762;40886;24262;20981;40132;21725;41129;37163;38868;36916;37280;18816;26605;26354;15297;31415;26586;19412;10819;41025;30909;37111;35563;29468;18011;23938;41777;42655;41684;16739;38371;34284;29401;26452;19704;27270;42522;13648;30438;25513;28317;11848;25720;31788;36233;13445;37924;26851;29335;29573;32510;19821;16411;41289;19844;27645;23425;19571;27248;34458;21779;31836;14594;19189;10976;12077;36547;11929;31073;38636;28667;15811;28281;21759;12825;19480;20500;38059;14041;22568;25003;34421;33811;31317;31214;41146;33727;38484;34559;17659;29807;41601;11124;41729;29400;28526;17413;26275;41932;26247;13300;29474;32738;23523;19262;26811;30799;18176;38948;13906;42218;12032;25302;12418;16873;40505;29604;29658;20560;11373;27567;16473;18803;28821;13914;15923;27530;25387;35469;31408;17496;23104;32587;33435;36636;38150;21301;40630;21865;42468;32283;29434;13965;32210;25771;17614;28399;10783;15344;11492;34645;40844;27402;15069;17218;34109;11550;13975;11403;35338;37740;10275;36975;40436;29769;25879;24608;39243;27554;12563;20878;39249;39255;20640;30537;37386;21432;30269;31523;41805;40964;41142;17266;22413;38409;26683;24693;30103;31339;12782;24036;16346;21939;11917;14120;16444;38262;41205;26584;31146;22850;23012;32441;19682;10096;28686;12948;39234;16962;19018;30816;38404;32332;29433;10987;41223;16207;34628;28000;20575;37842;14136;24150;38338;24930;23940;31656;14592;38017;35443;28078;14871;15912;22226;27836;26611;41152;28024;39124;40858;21593;42437;42865;33314;13146;38443;32488;13847;33724;12303;28556;10622;14682;20017;36110;39245;19154;35277;12834;35776;20164;37152;40872;18895;25376;42202;10342;41698;36470;13224;13312;16065;38928;21646;12297;29387;24817;21825;26274;10627;14462;22910;12561;12931;39588;29827;14876;25384;11374;42541;11030;20209;19862;22154;14697;27957;18820;15310;13882;18644;31878;28076;42989;13777;23472;32966;25583;18207;20598;24786;35097;31105;36228;14313;38283;36945;18937;35189;42015;33869;21444;25738;36192;15378;11593;17994;37099;10206;30550;12908;24617;40347;38678;42281;37190;16698;31223;37017;23143;28739;18330;34329;12483;11209;41060;37292;13556;31748;37537;23557;20299;41615;29995;21357;39825;33007;26965;24855;22264;16319;26964;37343;31709;21833;41911;30942;25490;20232;29765;36602;30396;26293;37631;11247;19130;36673;36033;27038;23679;31687;37945;33576;21375;37557;35217;35001;26087;22252;23368;21786;33875;41260;29629;12379;13626;21365;22292;17593;35929;16779;26095;25786;32217;15842;23890;14647;32662;31437;21289;22962;28692;13161;10893;38722;29070;23471;25749;41150;19092;36420;19451;33890;31638;18527;33880;27507;26831;30786;27228;19462;35206;33211;38171;29813;30418;24355;18147;15403;28569;10382;29403;22009;37078;35886;11523;36399;40573;16040;12225;23511;20259;24147;42223;38288;30633;40923;18348;37568;19275;23364;33537;41700;38793;11614;20840;18333;26453;36388;21668;15242;16834;43067;16966;25340;18960;25247;10512;13892;34101;22033;20350;42540;22254;40959;13254;11326;35235;40878;32669;32545;28049;37364;14297;39012;25625;10100;38962;20112;31406;17574;11722;40853;15352;29544;22946;38682;13986;15578;40943;16881;17466;10840;17536;18119;13896;16471;40464;29809;42060;16479;37243;14812;33011;14880;34029;16927;20503;10200;37383;24697;31168;39560;22312;18970;18005;21162;31342;13706;15315;34142;30641;13316;23184;37471;35601;20380;13571;20621;18213;27012;27952;38268;14424;29504;32586;21719;21735;32108;18048;34611;32166;20965;31056;37424;28885;42660;20222;29044;42872;16331;35802;38603;30643;35231;42494;32085;27734;40790;11467;38659;41194;12413;42814;35582;20099;10135;27045;34640;20118;23189;30671;30183;14043;40344;21143;39400;20825;33868;21938;27352;25895;19777;25158;40487;33517;14202;14655;17290;33512;17162;33922;16831;32449;42714;13715;28795;12775;34830;27464;20370;42754;20748;40724;34313;24134;27914;31447;33521;13265;12691;22053;25438;40046;39865;38855;22911;16050;33258;34726;33075;18604;19741;32674;39222;37764;22791;21338;24866;26908;32986;12012;29690;24733;38212;28385;14912;42957;23285;16991;40679;15250;41802;24609;32020;16437;18351;20307;26930;30075;31482;18451;21061;31572;39792;34507;21656;25631;26079;22015;27743;19618;27594;16110;34265;16838;26254;34867;11598;38055;33488;27017;12672;12368;24186;29672;28279;30566;26351;22666;15273;27399;40700;41169;34388;42231;10733;16929;21846;11659;31014;13826;41506;19640;21095;35467;19913;23354;36213;34925;14640;24597;21041;12398;21758;14429;14702;41180;35888;13899;23301;35180;43047;37482;24250;13785;30420;23131;15187;24297;16011;39394;37121;14657;14184;17571;23972;39218;11898;34249;23136;35916;26898;28454;10401;19889;30937;22263;31927;20863;28760;42646;27867;29834;42786;26703;12701;15677;37180;15102;34113;41800;24838;25961;40901;11349;38956;23375;16911;15466;27115;27425;34328;16402;20224;20122;36200;31145;19715;11112;42397;23176;32077;20012;23359;26215;28595;22122;14521;11218;14287;11743;40388;24298;15773;41354;41672;30384;23020;22111;28630;29042;25835;10652;24916;24577;35957;23626;20830;34707;14155;35853;41049;39082;16925;21356;14457;12037;29061;34548;24335;14612;22771;12762;29466;12033;13019;14116;33141;10079;23909;33941;30341;21763;33881;13576;38822;16363;41566;19604;18276;16782;16686;38930;12227;34347;41202;40836;10451;11311;33957;35174;40968;16870;38289;36588;15377;19468;10578;41991;28240;18059;33125;30648;33836;19634;13888;19933;40511;20609;31970;12803;12964;14659;14758;13191;18620;11441;38736;29805;21847;36160;29540;31207;42905;15828;13462;23195;40795;24118;39883;22470;24932;35350;30805;40086;41377;25916;10768;20342;13348;36984;38472;37735;19117;16282;38796;26541;30455;39730;35485;30845;17634;23417;42040;26172;34003;23986;28035;11772;40179;15110;25318;14141;20432;20928;33970;35794;42484;40985;42160;36046;32397;15147;29780;27698;10519;15770;12997;33980;12884;32575;10705;25894;20995;29323;25022;20804;42256;39367;24686;10329;41384;40006;16124;20010;33242;21391;24110;21509;13700;11559;21930;10985;19730;10452;28878;42247;29865;41160;25065;17442;33107;37310;34844;23064;27057;42520;38774;11975;30054;41753;14707;33915;23677;15363;15029;30618;38093;19670;34920;15043;28746;10193;33288;41054;29154;35225;36337;16607;24073;17052;39709;25243;37231;23903;23946;31614;36491;40420;24695;24216;19375;16814;37948;28989;24927;26311;28940;24014;40217;19762;19925;30243;26613;32769;20438;16306;13284;10274;39596;26918;24069;17505;30358;23350;33829;34633;20144;30092;27087;33752;29031;12358;21098;28123;26741;34670;29537;13196;27586;37181;22407;28121;22492;20412;25381;38389;36510;30683;27253;13340;38720;24508;25278;17286;41586;37786;42024;18950;22428;29427;31439;38113;27634;39680;32195;33356;23267;40036;10026;14987;36775;11096;32432;23936;31764;41673;29681;24225;11683;38960;35634;16234;11708;21065;36749;33059;22379;40063;41379;29092;13426;11859;14122;12023;32901;24463;25990;13267;26140;12849;26368;39905;30943;10402;26283;20327;20800;34259;17022;28973;32038;21306;22956;35549;40974;34457;12098;34038;28215;10894;24119;22601;42731;25409;37650;12744;22889;37686;24140;26839;11560;34608;30701;32060;25781;12504;26525;36166;28291;29858;35833;26259;41831;13044;37183;21681;12814;19763;19840;40451;39403;36187;10935;31485;32733;40221;34641;40187;33858;18772;25559;22284;37941;14014;24625;39402;27802;20755;36258;25218;11733;30984;26758;15792;20061;12858;21417;41337;32199;15268;26563;13336;28249;12628;13547;28707;12741;36713;36675;26133;13749;41598;42618;41184;25589;16400;39486;34435;34396;40787;20827;24687;20293;20932;28437;32399;29546;29732;31416;23579;33148;38161;16045;27420;24276;15943;13170;24532;23057;31673;28618;22948;31301;28778;38275;13689;41812;29653;31814;14777;23577;21789;32143;24339;12653;38970;35493;10084;31992;41309;18381;29018;14805;39037;33923;28467;21418;17410;32873;11453;24051;32213;30370;21005;31122;14632;31137;35668;21998;22768;42286;33658;14126;38385;37929;37976;33468;22784;26981;30221;41058;29651;39902;17002;36099;18608;26115;25468;29161;13060;26958;24428;41733;42444;40998;17033;13966;43090;15478;29947;18254;27737;35907;35652;22931;31679;20121;37421;41790;31999;18080;31566;17163;40909;22627;28611;13104;40725;30928;38337;42483;16734;18077;26119;33515;41557;17304;22109;13674;42120;19629;19883;28126;39697;21951;11575;37577;32354;13458;36428;38491;10698;28050;24133;25881;37088;36594;33193;13453;22337;24258;19556;14527;21677;39799;24364;31135;26339;22734;14717;23275;26507;26493;31792;36353;25137;28197;31480;20779;13560;42644;35145;38302;31525;24452;32951;17177;26904;15389;36263;15127;23322;27831;15313;36992;28523;19664;25503;22083;10155;36154;42210;32661;30794;41127;35063;20055;17012;30316;14048;22402;15998;40951;16261;15656;39446;21370;13796;29541;24862;20845;34028;32252;18838;31556;39141;29382;29120;33870;29224;27672;20037;28602;24813;19977;22041;24100;33037;31986;22994;20064;18079;35584;36346;14436;20313;28096;41842;38536;22942;24274;19011;17242;10267;31457;25260;41287;12971;18806;25148;20982;14326;19201;34431;24861;40473;37567;36759;13977;36611;21647;38241;34988;11711;32223;11178;15334;37233;37875;40480;22835;16463;23712;16044;35655;27891;25590;30549;25825;38891;26551;32865;15449;18105;38597;32134;18564;33647;22449;17368;16810;32287;39308;21140;11452;21380;22761;31094;22097;31933;35651;32877;16888;30293;21767;31255;22315;31723;18976;31987;10911;15368;25979;18683;31172;24545;11282;33271;38201;24143;11418;40556;21003;20866;19424;16858;14848;22523;32921;10361;33815;18656;27348;18278;30552;39757;41679;34515;42570;21563;28194;31190;34880;35898;22550;33975;11661;14172;13427;22998;41778;21830;12726;27189;11984;30235;22031;34562;27215;31262;19960;32235;13099;35077;30738;10831;28948;15703;14341;39071;32139;33645;42743;13545;42682;27801;31492;42724;19421;32681;31790;21171;35676;36306;42807;16203;36966;30645;31782;42008;18622;21219;35186;22298;39197;23647;39455;20502;38154;30961;18416;10352;33489;41642;12984;23709;36808;20042;42138;34171;42497;33251;31967;34982;28411;18431;20067;23029;41019;10785;19438;23042;42470;31100;24502;35633;41371;24802;19724;17608;19145;30268;39342;34175;25544;20643;27757;36616;33088;33355;29929;39430;41258;25093;33860;33098;29265;29112;39817;10247;39385;29749;16847;38502;36778;33482;17373;42692;20102;35580;26816;22508;18189;14803;24950;19020;28289;31588;42760;17230;22498;24647;30342;22050;37261;19336;29656;39488;17170;27996;31524;28266;14282;38065;19697;32961;23880;33441;24012;16694;41797;29734;38710;41570;28369;42446;25510;10160;38421;22255;11814;32013;27491;36981;42803;31106;10686;21209;14718;14732;14907;41928;40219;12922;39186;16863;24777;32801;17229;36298;16738;35822;40896;23338;19575;15002;37470;31204;21076;29208;19810;15687;17212;28030;33440;18001;21860;19010;17639;36115;42166;27724;23448;35871;19101;36520;14114;20532;10277;29557;27214;31834;38845;18177;40595;18274;12219;31077;19998;37408;37240;31498;14380;22197;26966;39136;20574;31003;29131;33217;34751;20669;10605;19887;14059;31888;30373;13389;38156;16094;32240;36039;39893;37434;14627;33485;39689;36241;34053;30201;37920;39693;11188;12025;16954;13145;20206;20009;34034;28060;19209;28290;33897;31737;40268;41305;32776;22360;27323;41942;30002;28691;13973;35412;30505;38328;18583;19759;32660;31446;20165;32081;34375;37819;14368;37797;38434;27208;16628;18978;10594;38905;27351;11716;33839;14408;17582;23722;11694;14281;29417;21562;11903;29295;21704;36700;28710;25161;19984;40866;16691;34893;21606;40644;16032;24961;23551;33743;29463;11807;14563;42478;29747;20745;21407;38064;34308;18464;22401;29846;41622;19911;33962;36109;36280;30581;15715;36340;27031;26160;36343;17292;26539;25560;23495;35242;33508;19684;32286;42301;40082;13521;10062;19494;19967;30432;22504;36060;40917;32075;18070;11895;19431;22393;14221;13667;38543;42996;17632;36558;36291;31941;23860;22344;29181;21318;23657;10638;37299;36424;16795;12320;41399;15829;33290;43005;21478;27775;24794;24723;13080;28313;41512;21557;41752;30899;35234;18405;42897;22307;22602;38904;20180;18770;38773;12066;28620;35020;17441;25032;30814;42335;18244;26627;19085;43034;40122;30149;22978;38915;19847;11401;38114;19805;15325;29966;36735;34586;22173;26721;34310;36119;27158;26561;35218;35070;36989;14766;13621;25120;17543;15962;24021;39881;33945;20360;41113;21278;18581;14774;27881;15783;20877;33176;29531;12933;39065;20262;14220;29602;19858;33124;17367;42265;37214;30215;20066;27907;22447;27818;12982;25518;20622;25572;37400;36640;11879;38741;24599;38298;23525;23914;39435;10711;38439;15369;18822;26437;15296;38757;23882;36147;23516;15285;17248;23571;23259;34335;38168;41888;33652;27312;16906;31103;36704;29225;28856;40871;39540;22741;31958;21345;40343;11553;31054;25603;33539;34959;25528;26914;36902;24877;21665;10166;19785;28941;31972;11498;40811;12832;16619;29102;38967;26379;17516;16000;34590;31470;40498;20929;14842;31835;18491;40382;25753;17257;24538;40646;19455;19173;11493;36871;33831;32037;22145;32741;20513;19002;18457;11198;25410;21259;13263;15372;28045;38299;21669;27589;41966;30922;29607;30351;40684;18535;15900;15098;21728;37325;22637;33684;35452;40397;25873;19193;28887;24566;17104;16323;41190;40509;32327;12949;39746;36414;24389;33567;13295;40692;36671;14253;33601;34985;41905;28896;26843;19917;34927;16446;26752;17385;37843;20039;21599;42818;26424;21845;18359;17318;20699;17568;39462;36074;13307;35328;14668;24487;25798;16797;34719;42849;20642;34165;41349;14286;23639;20806;31180;40736;16181;30880;19327;33841;12676;36908;42539;28704;24535;21437;24970;17481;32124;17427;15969;21007;30304;14643;14401;19415;31260;36310;32978;10484;29393;40677;21640;42666;35017;13051;23186;11549;20378;18419;29062;34217;34651;41750;42190;42683;11644;41682;38348;36862;39334;10054;41913;23031;16643;17625;38892;16010;42971;21463;15141;20046;11208;20916;12636;37307;16601;34025;28624;41608;11388;34334;34495;25020;31478;32602;27071;36466;35813;24063;36900;23754;19236;20720;25985;13994;37406;31456;35009;32294;34252;34701;23506;12309;41835;28282;28559;41661;35561;40309;11062;12372;24499;37982;39719;20204;15436;26256;11577;30323;18164;41327;26116;26509;12867;36217;25061;20868;13756;34913;39369;27313;21123;29937;14331;15049;20431;12969;33510;26353;13351;39283;12058;31520;18499;27728;15984;11484;39549;38753;14839;25363;32803;14853;28880;14957;38464;24447;39362;21066;25554;29002;13857;31174;27462;27146;14573;28779;35709;33760;11352;15959;16724;27712;40581;33260;21256;11995;31945;35163;17526;13662;18099;34402;12361;30105;19672;31185;39104;26422;27997;33035;30412;16259;20900;25134;36710;19920;14280;17654;24692;25965;38134;42530;32887;17346;33238;39306;23895;15327;12638;22777;16255;16910;21449;10515;39609;27254;18689;20940;34721;19433;41903;16108;21340;21899;22543;29273;32318;13396;34790;32659;12019;19238;28056;14227;39116;29091;32870;38684;25350;25773;31179;27761;24694;40598;25552;27328;38627;34819;19690;18118;21104;34797;10533;17646;23775;25579;35200;12624;10279;22104;33502;21442;35109;13750;37647;23736;32513;29182;10117;13608;17217;10198;36857;20931;39472;38341;19539;31578;13412;20903;32920;21547;21549;12787;38919;21950;21709;29634;41133;35167;13001;28649;14499;19104;39576;23073;12765;38689;26850;36165;16947;19211;32003;16359;29674;11166;23783;28288;16434;18328;20527;18940;11073;14065;17161;29226;13366;23039;26455;31305;39722;11150;12113;30110;38965;27789;13147;22800;20756;11109;23630;15706;33547;26809;10254;19022;13754;36875;21848;41514;38107;16366;37354;25864;15764;19009;34778;13349;29321;31871;24757;20936;36156;38758;25346;12935;35330;39818;32622;23152;42737;23403;35468;17182;16085;11864;30553;13935;36564;16887;32949;30661;20875;24734;39408;35679;36925;18730;36139;40801;29232;42458;39637;16198;12208;42863;38737;33429;14038;42980;38200;39414;15027;29145;19249;16895;11205;19972;31250;41492;10615;14000;18956;20554;10020;33323;21804;41873;22939;41779;24010;25643;34868;26026;42016;29275;32371;17122;18534;36059;33564;40193;13759;37401;15194;22349;22005;21713;17125;35264;36349;20674;21741;38998;37912;19551;31513;20588;39847;12840;43097;18301;38874;22267;38530;36512;34379;20530;28737;39201;19496;30874;17366;42380;15976;42329;23869;11069;27788;35326;10499;22812;42779;28284;27314;31459;12434;39115;17465;18338;28770;36731;26345;12321;14244;23320;24055;23602;14512;12963;18217;14319;41850;29141;30257;32666;13499;39538;26478;16755;16606;22648;13071;21311;11451;34020;36031;14254;10508;33737;26825;34228;19453;36973;15004;23615;13822;30536;21277;11238;18343;24747;22120;18751;32137;38193;17453;16075;30187;32807;35973;22576;27347;42588;26612;22194;23975;41121;14447;41104;35554;26281;25701;35672;23124;36086;26676;32845;34677;21918;39690;17228;24022;32317;21502;40927;29534;41500;26136;22632;30603;42322;41383;10122;30372;12629;17586;23701;21718;39268;33913;15439;40111;42131;25519;29286;19916;32448;31799;12687;16796;38162;23703;35129;22801;42440;15785;11836;42537;27074;23274;41297;18205;35851;40058;15396;14781;25029;35844;23711;35838;12893;20151;10924;29045;22128;28132;24462;23164;24325;38488;12753;22549;12493;35583;16246;25763;33467;22436;34748;35376;37153;41154;38442;15565;29077;32616;36620;20349;15555;33274;22659;17296;10648;39505;24482;42839;28958;36171;33845;29549;19288;41345;15358;13599;25779;37253;10673;42022;10059;30532;26847;41773;21023;34170;39101;33613;27675;15577;15232;33345;33593;36025;15134;31631;39338;20593;10639;10056;42412;23702;37262;37555;21673;41094;16472;40137;14131;20556;12576;18700;11177;20758;28985;11829;27506;43018;20162;42406;41489;30467;23122;28650;10558;43025;37892;41285;37023;17561;30140;34382;38489;21992;37479;23077;29853;37021;26571;11870;21807;15103;27975;14196;29289;10715;38859;42543;34886;31894;32747;40134;15911;23386;39432;30027;27987;33008;41906;15464;40327;37492;18467;15931;35625;26978;25858;33073;27885;42421;10055;25296;14234;29798;34059;25925;21052;27878;23509;32781;12686;38282;42258;17548;37433;14864;28386;37746;36504;40820;17141;13004;33806;16023;10263;40695;22479;35876;31022;10465;22230;14742;16175;10802;40258;35341;33596;35215;14940;16135;39025;24432;12510;10693;28365;29325;15537;11512;25308;11404;26372;11817;39156;41224;14685;30808;16295;30203;27436;22440;12063;23090;36323;18716;20801;27662;28311;27185;42576;38474;18795;15375;19502;23503;21785;14930;39233;24183;16787;42770;42642;13399;14622;30337;38641;38738;18927;42493;30096;40559;24290;31380;34529;24875;37455;39439;19817;26325;20059;40133;34439;11812;11502;33878;17655;40555;32799;33044;14371;25728;18532;36622;38727;25644;38639;40354;17984;34595;30319;35607;36705;34539;40859;36546;42123;15540;22804;27020;30091;36422;38841;19255;11857;10611;36866;26743;40165;38045;41056;33667;18729;39240;18845;33934;38849;18487;18897;38459;35118;42838;40007;15376;19879;18030;42146;41972;20538;24336;30204;40591;37560;26264;34866;32429;37252;28708;36040;34635;34769;32520;37445;28587;34341;13140;29877;37739;15374;33956;42459;35818;41217;12547;39862;19334;21438;21584;24011;33712;21401;31599;25784;21770;30325;12738;39487;32128;14387;22223;24004;39664;14816;42792;31701;36030;28935;15456;19122;38361;25934;32341;20457;39401;35762;33189;29625;34984;17336;32479;27380;37046;11693;15196;21067;32093;41437;34426;21587;20739;41962;17197;36183;34615;30495;15619;42226;23596;35894;13741;23172;23937;26378;41837;33889;15546;41093;38870;33222;14926;33223;42791;22385;35948;16720;37093;41092;32950;39840;25493;13682;22178;16450;26375;23343;33548;29254;27379;21742;13520;29897;20561;13239;33204;36249;20014;11790;40523;13718;29951;38478;25390;42890;26284;41242;32554;23692;29830;17341;23589;18989;24184;15390;31708;22814;19768;30908;29079;15309;19959;26409;33315;28966;21705;10292;35926;27413;33463;20792;42882;18266;31908;31875;32590;26514;33089;21638;13726;16442;37992;14533;26474;12767;28753;36285;26210;15407;13364;41159;42059;34699;37563;39886;34400;39348;20142;18230;24605;36798;19187;41494;23251;18265;22354;13137;41931;18475;23763;24779;41644;14576;28293;36373;27981;21372;27516;37709;12346;21376;40351;31292;33796;35994;10754;16988;31235;42407;23480;16593;10095;39406;26025;26913;14230;33954;22654;37109;35276;22134;36948;30383;39343;25842;40781;33067;21025;42341;10323;36141;33901;31957;35513;28535;40311;41834;41214;12306;30669;16152;23954;42066;23296;41360;25980;12016;11421;36254;31973;27457;34401;22261;39951;28629;10958;28298;28786;38539;30292;23159;36617;35647;32980;43088;25102;29082;19548;35137;35993;38497;17154;14198;42076;38448;42319;28950;20994;41332;42804;18951;18472;25659;13604;40891;13846;31336;15093;11588;26619;37333;27868;19752;23233;31028;41473;29988;24394;30906;38445;14459;41611;12724;15340;27832;21572;36355;38397;25059;26408;40081;17146;21780;32288;24324;14307;34331;30905;27647;28336;34190;18649;27626;20831;38885;24180;31477;27774;26324;15966;14708;13733;17610;11589;38864;25458;19532;37597;40440;15726;15915;37865;22539;14561;18739;16267;38372;12603;38887;36890;41917;27721;17534;30452;36439;22383;12795;40540;40484;23980;18888;19425;12393;38980;22874;40398;33952;13568;34066;22811;37646;21602;32238;20523;38968;40312;27008;21308;30157;32008;34779;37818;32063;10752;35861;23628;34511;28312;25205;10895;15335;38001;23710;12707;40619;36124;31187;26684;23305;26895;37102;32475;22760;35976;15585;35106;21776;31560;10369;27193;33843;26844;34946;13561;34904;35696;21775;21910;34957;21778;27479;31341;21897;17562;27226;34998;36318;24592;14929;21072;41846;16566;35250;40799;16431;16364;40718;23514;18840;24296;20635;16438;19728;33398;14889;31910;30785;40008;12596;37459;33281;25758;14168;10640;22467;15737;18308;39767;37907;30080;12269;33871;11251;28959;27693;29760;25040;24415;32164;37224;41640;34399;25446;35025;26646;26212;16521;39167;21956;22061;42057;41819;28565;29791;24944;17973;32040;40626;25007;22258;13722;22442;27685;42766;42947;30264;38203;20666;16224;28158;24778;15514;40764;28544;30953;40256;40277;37206;11607;12953;21118;14633;23723;23484;33745;21794;34206;21622;20880;33989;39384;17237;40605;11377;33863;36646;38631;19780;23960;28953;35641;39745;29891;25719;16054;32665;25707;41605;29535;43021;41231;19597;17192;20613;34467;16817;10927;29654;19237;13369;37931;17351;37870;18086;34411;33838;26048;31327;42092;24330;18571;20581;32029;22986;20549;33730;22643;17148;23682;22542;27623;43096;28635;22872;30434;38605;41335;23599;21227;34453;32444;10469;18894;34079;16452;18462;35864;14600;10650;30369;23442;39210;34598;10602;22511;21305;15579;18645;10951;31338;25547;27451;27111;37837;11759;15077;27900;25717;26973;29259;18614;41124;27424;24939;22004;41261;16536;27738;23770;31866;17520;36366;41617;41513;30780;21634;16191;34363;12681;19863;11586;37419;26889;42453;36502;36437;41438;10975;10786;37223;25509;26635;42628;30267;34490;37573;12611;31893;30336;13675;20236;20381;29762;37750;37822;27709;30931;17315;11490;40263;22150;14770;16613;10449;20512;29421;35547;35768;27107;32311;41695;37611;36004;17544;22469;23292;34836;25776;35472;23048;16254;35037;16064;14755;39420;33627;40537;16822;10474;10394;11197;25801;39085;25251;37284;14489;41756;30425;30407;30206;21364;35782;26634;19740;28224;27803;43010;29774;10822;20249;13868;19929;16846;10777;16435;27863;35419;14226;41212;21829;16251;28937;32580;18173;30098;10922;20337;19667;13794;38693;28508;20828;32221;27644;18747;29484;28376;24434;41816;40483;40103;41635;27023;21405;26513;37081;19996;24571;14892;34018;25230;35847;36815;12899;20847;28934;23326;35397;12468;26376;29257;35161;28540;17491;37705;26305;11619;28810;23532;42339;14535;28658;43050;25050;20332;13802;41749;34541;14206;31660;23066;32599;37824;34278;25557;30448;34398;37481;38642;35143;23304;40865;31027;27454;22561;30392;36256;22183;25371;20367;18444;18841;20563;20743;21122;27382;38703;22832;40370;34919;35381;19192;19651;41624;11136;12714;21263;40332;20070;28709;13825;23232;26224;39530;16378;13229;29773;40934;22756;35927;19992;32502;35325;22895;24765;10418;31569;11923;24484;35057;36580;39870;29261;13368;33988;35466;25841;36098;36441;21127;25995;39624;40709;20693;14097;11707;27655;28346;13011;29821;33491;27043;13468;15996;20596;22186;14294;19506;33531;23208;19265;38236;37062;21443;27483;19875;14068;34508;24032;38308;40299;30125;12896;35608;17340;26785;14873;19091;14397;35814;15689;20807;15302;12551;24289;40011;30837;25889;30408;31388;10921;29480;19196;29256;20043;38716;11084;10679;24955;41977;35175;28589;22250;19737;33139;27419;11868;38973;11996;23397;42053;41373;33218;24986;40460;29967;42361;40355;30463;39728;33738;39133;29096;32410;23348;42898;40435;15445;18148;13849;21294;20897;22884;31479;41490;42635;24167;39854;16239;42394;27827;23083;10284;20309;18650;19624;31640;21903;37840;29414;32409;35968;11334;18720;20156;24960;22754;19712;31989;19128;41736;11552;22876;16529;13478;27035;10658;31620;31345;19663;32337;39663;33342;15921;42178;29953;27130;27183;27638;10938;27066;13013;27470;40128;25652;28308;12878;14649;29671;12622;18805;13699;41222;18152;28572;25767;20826;10327;19824;35429;16662;23441;14392;15938;10593;30460;33104;23587;42163;16005;30795;16020;20899;30993;12307;19395;27790;30685;20294;28274;37340;33215;21749;42215;20298;40970;41898;22567;21613;22368;42214;25996;36637;37047;33803;40600;15641;31473;13128;35520;43011;14085;18410;41409;21581;14365;13029;25946;34172;28530;16493;23052;21545;42118;22759;19073;24343;35439;31795;39695;27471;14861;17478;24265;24071;41444;14696;20690;29759;35953;16505;21679;31366;37249;21036;37561;41841;31789;13680;14807;11513;19276;12284;41266;26187;15475;23235;19069;34368;26129;31596;12241;25439;11154;34367;41646;27886;42238;37090;39989;23113;12229;22805;34283;16208;42195;16173;19692;41935;28567;33090;29444;33028;16192;25389;18313;27549;41992;20280;38674;41688;11739;34885;17269;34689;19428;30444;17330;35134;24302;35811;25049;22819;31943;37086;19546;27078;31059;29285;33705;38616;23672;22348;42836;12821;16768;22334;30560;16158;38141;23273;14492;17191;12635;24925;20202;34744;22903;14990;35565;17999;27409;35239;23837;16184;11678;27287;12336;38060;42848;16973;30966;28721;39196;34474;29059;27001;36560;33171;35867;12609;27811;28253;42089;16641;28335;32336;34209;28869;11925;12731;15613;17239;24768;25592;36584;41584;27383;38706;20478;12533;28359;15738;28669;33150;34596;41734;14456;26209;22392;24281;37849;16654;20505;18484;30506;16163;18887;10118;29668;39457;23384;15082;36685;19726;25833;33350;38226;38912;36231;29702;42164;26124;15333;42003;20150;42078;14638;39813;31962;16384;36464;18819;14181;39189;25746;35949;12546;42390;40668;33856;18372;26481;23541;18780;20656;42010;13995;21241;26974;21933;32721;31848;36375;40302;34115;32190;12827;31096;11746;34063;41145;14203;18596;42347;34024;20933;11622;37464;10661;27980;33636;42068;13359;42275;21554;15730;36578;16821;37989;19932;22200;39901;34730;42056;17684;41577;29525;18368;32708;13431;15536;31427;28173;14611;17604;17196;35498;22325;26690;27894;39031;19163;41374;10546;32009;18590;24477;28327;18049;14426;23228;30765;24409;35790;11603;19630;38634;37681;30699;23268;21842;30388;38990;15556;15937;27911;28234;10725;37015;23148;28433;31693;24656;27005;15090;30070;21139;30754;30531;26568;14793;21583;34616;40661;24344;31109;25265;32981;20508;14020;15625;42955;12645;12387;34831;34622;21514;10082;16632;13824;39147;38240;28112;30977;24132;34152;36750;24034;18896;15686;30752;15741;12484;12474;39692;31309;23559;36276;42559;14818;39822;25090;31516;17260;18165;19843;13430;32086;24809;11851;42371;39720;15500;33938;24079;18526;39820;16865;34724;40698;30040;36444;13525;39604;27840;37701;13528;21217;28672;37632;17556;35351;33493;19538;34422;16704;33133;19366;28099;22409;42924;23181;23794;24755;20487;24189;12444;42721;19079;33384;19339;23420;32361;11360;42033;12777;28093;15947;27097;31964;14183;18900;12494;14405;35222;30742;43083;42846;41361;39194;32609;35501;22488;21914;38588;37923;22212;41405;13572;16104;28361;32835;40885;30123;32757;23957;38179;40291;42953;37192;19144;39924;25822;31921;12517;35568;29698;16425;29159;15269;19530;34955;23521;28522;27094;15040;10195;40935;38649;35992;11481;34642;31373;25431;23280;19555;38090;31266;15970;15774;26564;38130;10957;12854;40673;40829;41340;36760;29566;33360;28521;27643;13230;40457;35329;16089;36333;35147;28438;31899;27412;34137;22970;13593;11020;30950;23499;24569;10295;32129;25538;41246;36451;31976;34423;33003;18638;36005;30205;20733;32232;24784;28208;22369;32067;31038;25353;30797;21397;27705;14977;22898;18914;27864;13143;10089;20591;42400;29725;30916;22448;33207;28661;24911;18884;26716;20864;14894;41265;38227;18684;11509;12974;10721;10561;10392;13150;19596;42733;18509;16238;15544;11088;20493;18199;19102;24854;16286;18146;33852;25091;25673;11106;21658;16126;30832;35868;35893;41148;11116;25284;11821;31350;19060;24027;42709;20841;27717;26534;24156;29933;27624;31152;29571;14881;36676;21262;38745;15152;19606;27568;23864;32658;21479;38591;40798;24865;11386;38880;18406;38081;27169;31238;24490;13096;35877;14909;19547;27386;35841;29843;32831;42719;18208;28163;27847;25550;26067;14996;27551;15925;34720;29075;40227;41048;11310;24043;24328;35752;35514;33711;31883;22236;10440;36016;21906;39544;26931;42027;35531;34056;21350;30249;31461;17539;37595;31295;36302;33111;34464;30283;31284;10998;19639;38041;16162;35254;32312;32141;12317;34860;32691;15789;26470;28566;42608;23030;32820;26460;12433;24943;37935;23289;20682;23876;14071;20177;11806;39433;34873;24703;42317;24443;28139;13460;21973;27537;42771;12661;30657;34156;35299;17437;39988;14142;14937;16565;39599;33178;27769;23191;37079;16976;42550;24323;26013;12064;10812;29665;20537;33372;17583;26746;18539;21822;11344;30492;29879;30223;14273;19755;29872;23404;42139;41521;12587;40520;40981;21148;11442;39458;30590;15218;17552;40448;17617;18576;34535;35567;30330;42820;30629;13853;28791;21840;10986;16426;31665;32033;37103;11337;25106;13670;26396;30097;26971;13089;22367;30848;31343;34933;16439;42535;37496;32229;29745;30422;34758;13540;37564;30809;10301;19324;39879;16898;20036;39152;13776;38277;26165;34584;14051;22359;32940;41960;23491;14602;12689;39638;28258;14432;42712;28427;25089;29706;39957;18634;26531;42162;33212;25074;30124;17064;28052;34688;12332;22363;30656;20131;16122;19490;39108;28155;11519;28245;18225;41865;12486;31691;34824;29984;40784;25422;29043;25285;36770;11922;13941;20137;17460;16832;24595;12890;25680;41735;13964;38558;30159;30817;13806;28127;29360;16945;19700;35123;10428;21850;11121;16334;42069;32898;33152;11700;30888;22774;14389;19016;35102;40809;20980;11554;28766;39932;13414;30324;22170;20722;42062;29920;40429;39009;22520;41105;33518;41806;13038;33449;21030;19674;10264;25325;21803;27959;34912;39410;16347;15104;33619;42328;23026;38382;29157;30988;35285;25304;18020;32527;19855;14008;29786;20011;26161;14982;29032;11664;41385;20727;15130;41244;20287;40775;27754;36047;11880;15231;24632;12355;15732;41742;33244;29243;36840;21783;36909;32782;22720;19441;22829;13441;29184;13183;28453;29617;31029;22020;13982;37517;41930;25484;28603;10092;16880;30146;26045;34911;10009;39192;12394;39046;23003;15708;26005;16076;33723;23056;18941;39754;40157;29299;31097;17383;42829;22689;40774;18203;18355;14946;24272;20967;14197;41847;23887;36555;31975;33030;27792;31087;13512;39975;11992;26341;43042;19866;42433;32704;38416;31322;24413;13065;35551;30869;14751;13010;26190;37330;42298;12028;25976;22564;29894;17117;32768;12987;27782;38075;20323;22516;13751;20595;34634;35071;40583;42424;23362;26969;41588;41413;18829;37904;36132;38123;13980;10186;24333;13360;16176;14323;35666;39100;14193;28884;33744;11345;30747;14826;31636;40864;15125;16551;17473;35938;23203;11602;27322;26934;42042;14683;18913;33495;34678;23776;32365;31677;14302;15586;10485;39602;30693;36991;40667;13406;27765;19566;12232;34207;29815;35135;31681;39387;32909;10391;39481;38324;42043;37108;13679;17666;10169;12584;10443;25378;18831;30217;24658;22575;31546;27961;39370;16826;17361;39331;24342;25497;35585;16726;36968;21433;35969;26750;16348;35321;25723;36023;22443;26330;17399;17342;34550;31157;36145;38086;40622;21398;20582;40233;17003;16842;33332;26218;33388;41228;23199;15860;10308;42403;16766;40080;34254;31155;38147;41181;32892;22938;16934;11993;15624;21369;41073;22147;20515;31296;25945;42874;25096;33898;17622;40147;15291;14258;24245;27202;16506;39952;38053;29119;32302;20264;26078;31706;42363;39738;23608;16798;24419;12702;18885;37336;24067;36179;40690;39216;22374;34309;20465;25922;21144;31746;18986;11856;39963;24679;38913;30238;19804;33263;17570;41032;14049;26696;21396;41096;20270;27592;25500;15441;35646;31213;23372;25713;29394;37734;37539;28716;19874;22190;35906;39823;16998;42075;42965;22893;28347;22117;10649;24531;19573;28275;42510;25783;15796;38974;29049;18705;40983;33158;36593;16811;15705;19503;42180;34247;28118;13180;15282;22856;25418;36376;17137;21568;13006;35023;25545;42781;24578;31648;14978;13162;40275;35362;10472;37949;31268;23607;34661;24892;17048;16190;20623;13920;17997;29047;14672;25920;38507;34239;35067;29818;35639;21459;33012;25275;16169;14480;24989;28931;29882;39235;23637;19248;16990;32568;28122;32842;13712;32172;37379;39467;36540;36864;13262;35375;28920;13285;40671;26100;13800;39577;38819;12606;23564;27703;30063;10491;33267;28169;31037;10031;29473;14836;39779;29613;22188;18879;35039;23229;37627;13963;41348;13916;26468;22460;37608;42030;20160;19136;41924;38005;13247;16984;41620;26530;31869;39731;27173;13541;42117;14284;26572;15503;32160;24188;22181;30709;28872;11627;23370;25467;14176;37651;29054;16385;34465;36765;39251;42450;37889;10820;29192;19636;38466;12921;21936;28448;20824;11514;41272;38809;25367;31335;22103;16689;16340;11264;36684;26430;16700;41687;28175;18789;14495;41367;38978;31410;26328;35742;30208;22487;35713;25852;12007;28712;19778;40286;14981;13489;20906;18287;12659;26642;29797;33021;24681;29269;10461;36430;17458;42140;19086;21637;11748;11201;16193;11735;25537;39882;36896;25156;37518;13552;23198;24402;26803;21636;25636;19386;34958;39347;40205;23447;40017;35659;38533;40381;36628;20322;41795;10268;23989;24429;35909;31093;11863;28695;39572;38455;26560;33555;42913;24273;17511;22696;38781;15138;31261;35428;20119;23542;22721;15206;39198;11662;25516;41472;24791;28711;15993;20548;11730;13345;33401;35729;39814;11424;18180;28471;39566;34815;40918;12618;17454;12264;17506;26419;26407;31481;34939;16896;28124;12717;32754;10356;28255;16001;19331;39621;19178;35724;14993;41256;16485;16544;18753;13595;32866;15137;18320;12799;18216;28524;11845;26884;31166;24046;28725;16939;30305;21295;29425;31330;24610;35489;13112;41776;14328;24211;23222;14498;36722;35103;40177;16597;27679;36661;41230;11847;40091;14980;29564;16421;16256;35036;27556;27579;40747;23917;14090;18728;14914;19338;22430;27577;25359;40912;18248;16917;17180;26710;25252;14855;35342;22353;23734;29956;24025;15584;31496;33100;37140;42573;36559;23473;29125;40624;15981;24203;16578;29461;27077;30533;42031;12505;14119;42073;33087;22833;20639;31362;26870;27422;18051;21579;41918;42233;23209;19830;29538;26891;19138;21471;34197;28548;11532;18540;18958;29892;11193;21423;36614;21378;40526;32817;28388;34973;30322;38894;21991;35683;20136;24707;12029;25462;29306;28129;43061;30897;13717;12791;28025;20546;24671;27000;42104;21016;33410;12512;10154;16875;23084;39556;19592;16111;32053;32125;20138;40094;27585;21937;23092;33688;36855;23118;36643;23930;13614;25009;22968;35227;28064;21136;20706;35353;25042;14179;30035;35680;34208;33708;20777;16172;33320;17272;26166;18069;26443;34289;33607;23970;18236;30545;41540;32489;15454;22404;23650;39753;20166;25193;32589;18496;35526;34731;27141;20770;19289;35733;22302;42630;39321;18363;18243;25598;18179;36243;15651;15968;24124;31887;28844;38377;11592;13889;42711;21038;29922;37216;38037;41196;34883;29744;18258;34317;20780;42431;27745;17124;27603;14080;28767;22081;41283;10904;12453;24122;28069;12976;15831;37286;28195;36252;34140;18387;15353;42067;23654;35403;20590;40925;27368;11119;10479;30214;13658;12537;15528;32813;27834;10127;41948;15942;41479;14317;29826;23642;25666;29522;18151;29707;26742;20620;14074;26567;14559;36693;39634;24218;36011;39328;39916;35800;36084;10664;13491;32926;15983;42149;36006;13696;24483;32907;20443;31601;26755;25183;15975;12614;15707;41606;23046;26813;27706;18636;33682;25005;42993;14225;36463;23519;37737;13232;20354;26174;21230;25010;23681;25613;39285;37554;33185;35424;19304;41703;38292;20949;17522;38207;11899;24688;31123;15775;25366;28788;18132;13724;13484;31575;33224;15311;20914;16504;18873;16300;22063;35371;33255;26859;14943;40880;10916;22653;36886;35348;27781;37668;28961;31924;29322;13083;29270;42456;16824;30001;33144;22611;10912;23956;32315;42245;29489;39258;39705;26657;32068;18107;43003;29903;42451;21990;37757;40363;19660;10633;25225;19849;17198;30580;40840;39996;19628;25336;21092;41731;14435;22582;33597;28949;28053;11236;29570;41565;30529;41839;12848;14017;15570;39665;20080;20035;22317;41078;36680;35769;38215;23879;23023;12568;34231;36745;39134;20317;12678;25903;27927;18215;20071;26802;11712;15616;14419;31494;27670;32001;22285;38367;13219;39736;42592;17975;33167;26593;24181;41524;35011;39541;12326;20714;30476;27874;11630;18267;33726;22544;39658;19176;36996;25138;20237;27496;27238;16924;37799;26678;20957;12597;37953;24553;26590;10321;40541;40860;41035;24564;21236;10060;21215;41010;40254;29014;13039;21611;10607;13775;42266;17015;11433;25085;39254;33379;42547;13352;40282;26577;13703;25882;27817;36823;13543;25279;30401;29310;29276;22316;30174;26023;21487;37781;36219;38556;11051;24503;27550;26919;30859;10902;13583;18014;17569;19800;19215;37080;16871;36052;19652;24175;37225;22990;15944;21184;29298;12036;32089;15081;20988;26697;15784;38787;23765;10967;13945;34093;37529;38767;14360;35460;17424;21465;36208;38545;42364;14321;13786;25573;20377;23601;40888;22996;37868;33706;24954;14453;42707;19076;32880;39207;36065;11587;14434;17169;22361;13819;20403;15607;38380;21748;40138;12883;23120;25752;25818;18134;25789;22701;21808;21068;27925;20247;13845;42134;24142;33433;27830;33771;18934;20358;15930;16342;34141;40719;25856;26438;24426;31562;37671;24386;29341;39427;22799;34950;11313;14174;14381;37221;18623;41201;11639;42930;21878;30810;22680;34759;36418;42307;19976;20990;39504;22456;27702;13237;31653;42611;34264;40717;33654;21348;26542;36185;26719;38596;21625;30949;42288;11918;35801;41822;33582;23983;14706;14103;41290;36531;24178;17042;36328;31586;34796;36747;10296;37777;20654;13739;16856;32462;13886;32328;11798;40087;20619;22040;35511;38174;41071;13269;34407;33305;28772;10588;27664;27791;34049;42237;28490;19831;36218;24361;38108;35155;37804;10324;26579;24622;27272;32352;14443;23205;39333;34623;40847;29110;42617;15849;28507;31346;33451;27273;34204;21902;31787;17977;24151;33312;38148;25651;23436;25829;40691;16983;30904;41715;34581;23531;12932;30136;35296;31868;22559;31158;39534;27871;23419;37293;39154;22735;24398;42918;36385;20217;37516;11651;40145;12324;37505;27599;22495;25567;42391;27735;12432;21682;10111;24879;18584;23082;32683;40209;35555;13909;29936;40738;27138;25886;19808;39070;17240;19543;26602;40031;23636;37300;16460;40173;26888;38246;41908;25004;30446;23021;37110;36664;26371;13817;15892;29511;28384;18964;32579;28413;23135;40369;25069;36485;31684;24395;15589;21124;13851;30449;25561;13607;19280;19776;21129;37282;35119;26768;28265;34890;38208;40206;20857;35417;39565;10439;24248;14550;27633;27083;38178;38112;15499;10019;40898;18233;11684;36087;15440;14552;31361;23303;28104;21317;29667;17649;16474;22896;32065;35982;22845;20772;24384;36272;40244;18354;35884;40728;24748;23069;10004;13288;21852;37159;12993;20604;22066;18793;37993;13456;26049;35347;11749;15782;41079;23668;35310;33643;19439;11159;39884;37362;17190;34822;21368;35966;38044;27708;22787;28622;43043;15719;30173;42954;38783;37697;32291;21612;34230;14806;42261;14721;26052;32246;18075;28152;14223;28227;38677;32869;28226;26180;42773;10208;43054;15756;40849;34482;13382;42251;15198;32182;38632;11892;19696;24367;20778;37626;25710;20490;11267;34974;11921;23984;42425;25220;39683;38503;42206;42099;15469;16946;41815;17657;32290;17392;28805;17679;31431;35359;31130;27280;15838;42623;21525;19153;19906;19771;35650;18558;26923;19900;42583;11450;43029;34820;25627;21560;10367;11566;11840;23924;23746;15063;20921;11797;26740;19599;11685;18918;16298;12331;17420;33081;26997;28061;31811;38062;24863;11237;17303;27573;27059;16573;30352;17135;31886;28038;23008;12405;33876;23968;16596;42981;15512;22616;10891;32097;36674;10315;40278;34016;19923;25721;11719;30009;38837;28460;42103;25887;25600;32515;22196;10470;14866;12480;30349;12960;15485;19516;42723;14018;11009;33526;33068;36117;24438;42555;35185;36143;31225;31491;40534;42906;15101;11286;15162;33690;23156;20105;35461;34888;13058;25535;20842;26523;10663;17213;31224;15275;42888;42873;23929;19252;30705;30306;35587;40050;31609;25704;28633;28912;12236;41061;21158;36253;19041;19151;38610;27673;17279;24702;29084;39559;36105;40660;43039;13997;33472;15646;23096;14809;14030;24557;27825;19156;35334;15987;20069;28996;16188;42960;26332;18836;16776;22192;36550;15074;23932;18688;34715;14233;11981;32711;21521;23328;10137;31162;42911;37056;22465;22238;16827;26267;42112;21626;36583;28965;25806;18626;41447;27905;10074;19727;13165;39103;19457;17167;39501;34394;30973;37682;42239;21924;29246;20795;24941;23627;21174;21268;36189;20278;28800;35496;25152;23660;25880;41668;34305;40434;21720;31202;33886;35324;27143;13810;15397;36696;32211;15109;34681;25794;10090;16210;32867;20063;25927;36341;18943;21222;35282;14034;14761;20680;31173;42764;38709;18916;10317;35712;10260;24098;26469;15151;38907;39461;21413;23731;18671;41522;35207;31712;29294;29863;30391;30072;38945;36922;40062;14719;15800;18124;41823;24231;12061;42480;29800;20788;13927;34605;11536;41170;35720;11437;41419;37256;16634;26006;42102;17086;18852;33921;39771;40776;37213;24106;13277;27942;13154;15038;20685;19857;25054;16853;29699;42009;15488;34504;23979;14905;13187;40501;30464;27469;42290;22234;17429;29856;16626;23593;40739;24155;35402;16028;11164;26321;40914;21436;18126;19894;33506;34632;17645;15630;12457;34575;12302;38335;32111;24659;12498;18160;32455;36839;37203;10303;34300;26497;36990;40454;38359;34643;14086;32295;22156;27678;14800;10372;38550;31683;40294;26403;39509;38795;37579;27162;37829;34852;25047;31616;16562;17338;32387;23603;33538;18515;23158;38804;40066;18606;14699;13933;37096;22620;23638;40270;12669;19342;22500;26118;24842;41665;18054;27389;21081;16013;13444;12906;10636;16760;16652;28824;16799;17433;27989;13848;29100;34961;29377;11674;10119;25172;18942;15853;23574;21577;17130;29679;36650;40557;42703;39271;39751;32253;25616;21339;27281;30006;20152;40521;32030;25151;35731;24992;37352;28998;35435;39784;15896;18971;11212;35074;38681;25361;19452;14526;19622;40884;27563;29545;41391;36232;26573;36570;12970;10027;37812;27777;15050;14962;41830;18773;26669;31131;38522;20562;13452;14951;24478;21854;17142;13713;19517;33426;26338;32049;40958;36338;27869;13911;29315;40735;23333;21448;12114;22633;16157;30802;19168;17643;39496;13830;11362;32400;30788;23423;36805;34210;20319;23249;13624;35697;36869;41717;36605;25640;10671;42121;18336;34910;28855;25846;22687;16671;15954;39289;30011;40899;42657;32458;37778;36500;15230;23093;40607;14560;34222;20189;25813;17317;28481;39043;23631;14285;40053;37033;40005;21400;38873;16166;26491;35464;38718;34290;42742;33699;32643;10629;41796;12001;27154;30892;17147;25372;16480;41787;27121;13901;17498;37644;33736;13720;22826;42956;18554;28570;30023;10120;27815;10838;31831;20711;38917;33662;16112;15066;13167;26400;20027;28780;18478;31039;26786;28596;28081;27938;41505;14088;19378;32688;12700;26883;40338;16872;37979;11860;14653;17535;21456;35194;22042;37275;30119;10459;16457;40625;35117;29630;10444;11321;35098;24234;24377;21342;34861;17648;10843;32902;30441;33758;30013;24288;29639;42340;20871;19461;27484;21655;20374;25185;38098;21245;29750;30668;30100;30030;34833;11432;27796;11710;21161;11998;39475;39363;41111;30520;31183;11454;29727;22441;31134;12352;16737;37139;22452;42310;14886;14651;22642;24680;36299;37672;33310;19354;31815;12248;27455;26280;24889;15702;13118;21772;33170;12272;42870;39545;23782;31165;42070;41449;39497;25018;23771;42523;32707;23717;10937;37019;12054;31298;21472;41237;33635;24269;35509;10573;24665;27417;21498;10488;29366;42348;23492;22518;32891;34393;27318;32673;34036;23625;21511;41716;22585;16129;39238;34725;10613;30281;25322;39579;18616;41189;35462;31685;18234;29680;32995;19576;32078;25850;20509;27375;28295;27971;33412;21064;13878;23665;14472;26860;19261;18814;24774;28741;33554;16496;36403;21548;15278;33556;33026;27848;29448;42486;22091;27945;33269;16354;17010;18449;29921;12436;21238;16568;15660;42619;23225;29292;23137;14118;12464;42649;25705;26796;15963;31267;23234;29662;15791;33092;30144;24550;17559;41889;33616;28849;42571;38624;25655;37727;20195;20050;28792;35210;35457;34774;40815;37509;38118;35031;11744;21034;41465;26693;42556;40731;22700;39127;18218;41914;42187;25955;34812;21352;30031;11697;31196;35173;30917;14417;23116;17414;21976;27901;24236;14067;33887;12790;41998;34074;30700;10961;17499;23987;34261;37921;38994;32830;31112;42597;28866;20507;22982;12390;28098;35000;34276;26086;11329;24381;10656;17596;26562;37489;29029;26194;38191;42710;17174;31913;32713;39106;24663;28113;12513;30542;32301;30005;24672;42387;25973;13755;11391;33543;30248;33477;16683;38714;12871;39701;21204;38402;39698;12768;30234;41744;36325;39591;37197;35859;21135;28491;15639;25201;20648;14243;29338;11969;13767;24379;23653;27714;29429;21501;37963;35576;24396;35873;18352;30067;32418;22548;24208;38829;41554;16490;14802;42295;39257;28687;29917;12632;13027;43089;31113;17389;34884;13764;28776;13511;12940;38614;37264;20120;15541;39872;42560;21609;36619;20511;30992;42513;17647;32196;18018;38643;16774;38173;29391;16151;12500;41794;10042;39485;39471;14945;34518;41573;18778;36843;12120;16341;19268;41882;14165;41310;35193;27163;20000;18588;38180;12540;19105;20803;38788;12889;30216;23942;40190;31608;17314;30073;23483;37708;42408;24713;36155;14009;11595;32785;30209;24506;26661;39824;27408;19075;31515;23142;12637;18594;26643;16618;24604;30202;21243;38217;30933;42529;13872;28005;11756;15729;22297;40639;22949;38743;14966;19650;14639;28351;10069;23922;32795;20001;20939;37519;40307;19838;22529;26731;18818;38072;19419;40913;12281;39267;22094;27330;12824;26833;21134;30881;31283;23095;24684;31571;36634;42058;15490;38790;23894;30692;20437;37845;35448;23226;17140;41480;37586;21928;14620;35038;21751;35470;24537;14829;31355;36817;27374;13585;35918;36911;39013;20889;33661;34894;34058;18003;38185;14787;27486;18364;30252;38074;10934;19806;26654;18362;42244;28333;38933;26744;14530;41208;25620;29576;42975;26480;21359;38158;25526;27090;18999;39205;29709;29583;32834;31215;25562;16414;27760;32958;19383;40336;34949;17459;36404;38985;20725;26024;39302;20627;15056;15844;38279;39018;15932;19657;40658;13381;12287;34443;27338;27032;31654;21452;24988;28372;37101;17028;37014;24205;41751;35416;13117;40052;26781;11276;29968;14015;25092;18681;27499;27637;13059;34251;10389;19203;22047;33992;39788;22240;31955;30212;30915;29344;12041;11257;34133;18346;32421;35358;17474;26921;21451;11435;11182;37780;19273;26873;10981;36818;31664;32541;21087;12399;41466;22705;15053;40772;21075;13301;42452;23109;19223;33303;41485;32338;13214;10064;37910;20728;10804;25333;12343;29142;27707;18417;35482;33277;13212;12401;42021;38418;18094;26828;35745;27899;40131;37852;24709;34825;18281;34461;36782;37841;16365;34126;36490;19986;37202;15945;26197;11449;30823;27101;16580;27819;42790;15905;10398;24728;15768;40281;42151;27372;36562;34460;18679;28918;34554;15990;39562;32811;40403;21090;20275;11636;15226;18188;37932;25677;14736;36904;12771;36467;29909;38183;12619;17396;27196;35727;13362;12218;20246;29866;26303;27596;22328;26546;35205;28089;25504;41064;32956;27144;33865;19240;27649;29104;27972;17974;30793;37061;42487;38827;27665;33731;25380;15695;38635;11928;11071;25496;11412;14154;18609;42698;42404;36268;37967;30621;23102;33620;22405;29913;42279;11916;24601;37392;32582;32908;37068;40952;28128;33002;11534;21891;13133;21870;29221;24003;15837;12127;19880;39887;21708;29946;39748;32204;40188;24770;33436;15412;10545;30957;13887;23162;20171;39752;18358;31734;13357;39188;41407;27943;12099;31617;38199;41697;41455;18657;32214;16063;26286;38369;14117;15428;41067;17352;41084;33996;28558;34613;34588;24836;34601;38772;29811;42621;30875;28601;35406;41021;17168;33187;40915;42313;10549;13031;10553;11516;10196;20320;32083;19471;20843;17359;37345;39003;32630;13341;40240;37377;13086;32794;19459;24117;13950;28984;28085;30589;34106;23411;12831;38625;37716;17497;34301;26996;12979;27560;33781;37338;26532;18153;21264;16955;18889;20909;40018;26528;25642;10429;31801;24103;20022;37384;31472;18498;39374;30694;22640;18305;24826;32650;41607;36348;11288;24370;22914;14216;27546;42209;33778;13334;29971;25187;20477;20331;16396;38515;18536;32952;22783;27027;19964;40653;25253;11118;28504;41759;33322;39851;38959;38702;21980;36894;17438;33861;37067;31227;19220;22722;12350;31929;11926;14270;39174;41590;33233;28922;36148;42894;21886;24453;17492;32730;26629;30530;18128;41826;30955;26949;42375;22645;33685;21233;14303;24431;17320;31877;33807;29580;35280;40061;19305;12739;38602;12122;11778;19077;19940;33091;15391;10942;33759;27968;42320;25019;26440;34182;11097;39592;40931;24035;33794;33629;10016;35046;12956;19228;20951;31802;38495;33157;25693;30751;40669;14035;11087;21192;32087;13093;29215;29374;30162;38579;35122;21571;40015;16250;14506;11760;23578;35756;21970;34089;36670;23761;28171;17144;13387;16585;30116;35919;13158;10910;36768;31637;20962;34205;41264;35121;12613;28868;42411;25499;19114;30079;37035;22639;22755;36327;30167;36626;10933;16786;28321;30515;30071;21761;27630;22141;18857;30291;12042;28205;35637;18385;42662;41380;20844;17508;23732;37996;16202;30354;42194;31920;36895;40592;34682;27160;41347;16513;35015;27778;42508;31234;11056;34127;32121;42811;32411;29550;13293;37174;40584;32557;39261;41969;16841;12801;33628;37457;30964;40950;41036;39150;25569;35967;21542;14251;27582;42193;36034;40424;15673;12128;41174;13686;26053;39643;35828;11151;36579;15172;33626;41313;16538;30210;28926;22208;35987;43001;14831;25722;26782;34563;18468;30576;27245;33589;14272;38805;37234;37635;38637;20054;21654;16789;42157;15261;37205;36211;20472;13999;15071;12485;36435;26704;23796;16039;35034;11841;37480;17400;38573;37276;13863;29056;37703;17631;25869;39006;27518;28586;32248;39246;14701;39967;22036;14094;41711;37793;32220;10407;27729;29940;22193;16092;33951;27036;15721;14451;30052;21926;23609;29748;16708;12983;14969;42179;22423;29691;38858;14591;37621;13379;12939;23847;19301;34311;30087;42702;26552;31930;41629;27404;17254;37341;22159;39190;36790;31757;32726;42155;31387;32725;21055;33904;25901;40019;24440;38332;36090;31285;25824;13535;31067;35746;11510;16999;22491;15431;37136;27919;21518;30887;24833;24350;12328;30113;25851;36763;20125;18839;29040;39415;32144;22110;28968;39915;20107;37083;22023;19569;13923;21324;21244;10419;38261;38526;18572;11645;24805;36063;36999;12334;20238;23943;15809;22045;16401;27168;24260;30328;18271;25217;36001;15922;13829;38487;34118;25173;37795;29148;18294;16483;31337;30939;42254;17467;38942;27437;10271;15535;14061;19938;30386;11162;15217;38958;17049;14363;40733;22808;42910;20836;43101;32740;34415;40127;28218;32832;28846;31667;26650;42084;19870;11253;34033;31282;32806;20048;28646;35947;20723;18754;11390;15370;25890;14743;29396;34246;31143;27956;35110;40780;25295;30483;32753;30914;32054;19526;33630;37077;40296;34767;41660;27525;20330;27233;37742;34248;28080;39629;35268;33155;26867;23730;21908;37609;36295;15124;27054;34070;17527;34232;13884;42916;18860;13156;12030;29456;36303;17388;15979;40334;21940;20631;40768;29852;16679;24649;11497;29230;16656;38432;22606;27607;28550;43036;31911;39448;41387;31314;31672;20075;10857;21254;34712;24279;21119;41645;25258;40851;12086;38225;11065;13603;37248;22719;40779;15045;29999;32526;23166;35105;28673;18493;20668;30106;36452;40315;20594;32977;21280;14212;27423;31310;22199;34181;35287;41204;38723;18521;24500;40481;25132;19554;15422;34048;16845;19661;22614;21403;37304;14177;36574;36598;36095;19703;40868;14409;41664;15681;38127;24661;34996;22661;16288;40357;13393;13461;26569;17109;34487;11689;16243;30287;27153;37731;28206;31843;42189;41106;33909;32142;30353;15678;32608;13003;43024;20752;35162;38061;17998;13392;13290;27932;41417;23915;23074;31779;13260;27522;31433;41323;23071;12011;37076;25604;29582;40828;39812;38540;14551;25977;39474;28814;26207;15560;36960;36261;15826;27861;28830;20242;25286;38971;27892;30095;15332;32153;30879;14391;24902;29440;39716;32167;32218;14662;37859;33024;26388;34674;20008;23753;16357;39675;39892;34146;29144;22751;34858;42871;27889;11076;19632;38195;14425;16611;29395;38233;36971;37805;21477;17487;20585;24501;33545;40305;36468;10273;33116;37839;18930;35958;25609;13908;38828;11505;42976;42443;12830;10969;30065;39801;19781;28971;16080;16638;37712;31915;13069;12298;29661;40027;29380;32109;16449;39578;18566;12038;30497;12198;21197;31846;26018;27049;23460;22414;30356;15995;15531;17992;11090;36511;22580;37488;19225;24444;24616;25817;29258;41861;24131;25464;39299;42802;30471;31744;26790;11713;18418;16974;25196;23790;36287;40704;16591;13078;13587;16374;41667;41484;22870;37903;31192;24382;25791;34324;28861;12822;34480;15590;28651;18275;39935;33973;34355;17075;33196;15632;14069;29001;16410;24093;38160;28493;40588;32193;28303;29179;32018;24544;31948;21341;27052;28439;22309;21383;42615;18612;21330;30835;23497;21358;35573;19185;28422;27015;11979;12301;13620;26876;21868;25624;31753;27653;41355;28701;15857;25586;28380;33640;15997;26232;15393;41792;18721;20184;18642;11527;22630;25672;38498;13304;18977;15835;25718;39789;35704;40249;18627;25647;34502;40479;31002;11120;15023;24488;25757;19159;37316;18114;34353;17145;20271;17032;20672;14614;14367;36609;41026;20754;38303;17224;11129;13159;32828;36927;38190;32871;12429;39359;40631;10358;42297;20750;18434;28509;16379;24028;26725;14840;33069;28051;13109;28267;21111;21530;13129;20338;12293;12562;38561;32990;13477;28449;27929;29346;32334;22474;35900;38280;16792;11192;11828;31809;28749;26916;16523;37552;32347;28722;41195;27829;28185;37199;11474;14188;14932;14801;25313;11530;32467;13344;14052;31118;39611;19733;15759;19902;36658;12440;22235;27635;42578;21202;27918;41949;29584;34011;21257;16185;33367;38386;18523;41765;15202;13549;15154;22169;26749;41774;14542;10427;25103;42524;20862;14455;34364;28182;31590;11089;10758;12692;28476;31774;37738;40090;21843;11052;22974;36853;42039;41748;10136;39041;13151;36425;41322;41900;19005;18651;34362;31460;18834;18427;35516;29888;15338;12089;35394;24742;39853;14477;26730;28904;10223;20741;16514;39121;27985;13217;23515;13119;42225;36223;15076;35930;25897;10349;24514;35246;32993;40070;20393;12693;15600;33776;31922;41013;18245;34928;14476;40013;27598;25684;16639;42381;41304;17504;19529;39024;31297;25877;22624;36184;39877;23453;11048;36612;29150;19725;42344;36907;29491;34791;11804;20810;35628;10970;21181;41739;32882;31324;36725;16982;32821;35995;35575;34785;28032;26417;23704;40589;21059;42973;31784;42633;10502;37588;21805;29808;24606;39023;29158;29851;31621;22100;15779;23948;17993;23715;36313;13497;21954;10569;25696;30758;30186;25364;41899;10794;13586;11011;25182;32814;28614;38399;33481;13365;18002;21731;39354;24347;29089;41702;10270;16395;25716;20324;11018;25086;12870;37229;41619;24787;23896;14077;18703;41813;16047;28682;31399;24199;38644;22857;13650;36275;31206;34238;23367;34717;35924;30060;28349;10432;31652;24294;38109;19943;19942;21320;18284;28641;39696;19665;32525;39984;22901;22943;16995;25712;21319;25489;36224;36136;38122;32685;40310;11584;11224;38865;17221;27011;26070;36850;11758;11100;15220;37612;13425;25239;26429;38653;34976;23309;10683;32148;30355;14170;35819;17428;17211;38756;34754;26680;41961;16819;27201;26490;13936;22908;34705;11272;30503;15175;28605;14729;26352;38307;27513;27976;32324;27990;17344;21441;39836;35817;15193;36471;37268;13328;37658;24710;24455;17307;12501;10744;18013;33998;41166;32415;18837;28588;31909;18853;21615;17236;14385;33914;16313;38950;12234;17184;11976;22605;31395;18875;29248;37881;36957;15538;36672;18910;35305;38392;12811;26392;10157;15091;17509;27773;17087;20888;38300;37752;27369;15582;18992;40980;28511;10590;18256;22489;25080;29766;39307;28902;28402;10814;41218;15264;28067;31323;23356;16235;27612;30480;23279;17238;20219;24536;35797;11459;26818;37728;19896;34158;35889;35716;29881;22482;36390;28886;28631;34805;42220;25337;11234;32000;18621;27492;12732;42931;26589;18826;31051;38906;42850;13130;27652;18197;36014;38206;10481;34166;22014;17606;11629;34191;11494;28946;20092;32495;21582;40499;11838;42990;16780;24338;13259;39526;19525;21284;33908;33832;36964;13483;12530;22731;42526;34163;32973;13418;38900;35779;14111;32560;26545;22296;20757;16753;10441;24082;34968;13321;39263;42978;35991;27082;34312;21296;25571;23535;37503;35883;40675;31060;12074;37483;16120;35386;14386;11569;15064;18925;39250;40766;24945;36856;25893;32413;21195;30702;13189;22758;33764;21621;20577;26848;13226;40740;10305;33558;12383;42133;31378;16225;10199;42360;28881;37741;26406;21149;32257;11657;16453;32715;33678;17605;22533;11347;26085;17597;41062;40875;36159;38176;28410;31625;18796;30945;13075;20352;20146;22012;41362;21273;35384;10028;18285;25635;16021;13972;24741;38585;20411;28257;22303;30732;20541;40126;29266;37016;19842;30583;42751;15914;31990;11531;23667;22909;34929;30585;36364;32147;13925;16408;35560;27184;39489;39834;12907;21260;27853;26498;22813;30989;11909;20660;11158;33321;39909;30620;39032;11729;39014;11652;29962;21293;31689;20911;21515;29912;42668;42689;19028;19497;13707;31807;33946;37565;24091;27898;37832;33609;32392;21091;18391;28845;34582;41321;22971;27356;11853;34111;11080;36465;12608;21312;38594;34740;27106;10584;12601;21491;16993;12040;25175;10302;29236;33039;13625;29718;40569;31276;27243;30958;11000;22180;22534;34154;11706;27430;36903;14333;35317;29612;38513;20550;24899;26117;38776;24893;19314;21711;33773;30724;40659;37137;41086;24511;19605;32729;32682;22209;12206;16532;18972;42384;14925;13469;35274;29111;19671;17365;12662;40304;29202;20638;42840;33316;25875;37534;41817;29794;25178;30236;15262;29736;38895;28909;38273;38797;13372;13181;32969;34532;42797;29864;22486;28483;37040;11915;25342;41463;42638;11385;29519;21271;33328;33319;38013;19966;38139;41612;24341;13630;30672;12389;23127;25810;18652;36690;33749;34151;16156;39483;32723;42507;29133;30716;37964;12634;13538;42500;21394;20526;23469;13323;29893;33287;14461;25574;13250;11434;31881;35946;13578;10494;24756;40545;30226;20573;16590;40750;36632;26173;10113;28517;11171;18555;35725;36477;32264;28818;15742;25637;33106;41331;19035;39529;15797;42119;27277;12342;41743;32697;15293;26549;10823;39527;36069;36493;30188;17305;33634;18603;10415;36623;16368;10544;31722;17189;24640;23935;30934;35504;15157;34105;35408;25345;28345;36278;32106;27269;40292;23033;37901;20953;41623;34145;31010;42795;11284;29388;26252;41634;31971;32189;10286;19705;22251;22940;11556;40824;16451;29847;42917;41724;10556;34390;32383;22660;36522;28162;23613;25434;16646;25849;18743;20531;34047;40253;33728;18881;20021;42035;37878;23121;35537;13880;33006;30326;29533;32843;28892;27172;35533;30712;31001;41740;26297;21228;21347;38934;33004;36565;21911;26234;33296;17123;14267;15688;39293;18579;21457;11160;20410;36411;25808;19717;39633;28899;30852;21695;38419;30333;26458;39165;26109;35214;18408;33038;38342;36267;42171;20870;10977;32959;39419;40940;32851;16211;23600;11507;21033;37576;11638;18947;35385;36929;34225;29562;11972;41604;36410;31199;35226;15371;21526;15161;34486;30398;21218;21168;40038;34995;40054;40223;40877;22406;12882;18466;15013;31156;40051;41153;32987;12270;21629;25679;30164;27438;17267;13115;11040;28806;34221;26323;37940;10239;35784;12542;30829;24771;29367;36436;19848;30340;18158;21363;32244;28793;26366;22794;26347;25751;40044;41167;18598;38003;31768;34134;11072;37729;20785;41572;31719;29814;38742;39639;42299;38964;13508;27553;36259;15364;18084;22807;38310;30390;28455;27646;17386;13409;39377;23325;24654;19567;27284;39376;23878;26059;22207;35365;32385;20518;21691;12682;37871;42885;42170;19550;19113;16535;26250;37973;22688;31040;20473;11818;39063;25424;18599;13804;22086;22742;20891;27527;35377;18032;28184;18223;32802;21018;15839;32310;13653;17139;14469;24318;30749;15780;38732;28156;36831;14370;21153;27686;13694;21132;25715;38131;37425;18948;17456;33063;23262;30433;10778;39507;18029;11799;29052;27453;23877;40262;11260;31611;32783;28944;15908;22618;10141;41182;32999;32533;19311;16305;28877;26815;33443;31837;40226;24102;11714;20731;24801;21912;10322;26036;16804;18673;22710;33695;24669;24993;36829;38871;36214;33032;19377;38222;26830;32701;31101;35548;39132;34282;20444;37589;30045;31195;22326;18377;22900;11687;20819;25840;10925;40517;20292;24179;32266;38092;35171;29470;21154;11138;27764;33376;14161;40637;33368;18196;10858;34346;32345;27344;10319;16330;14897;40530;13711;31443;40822;10475;15190;28677;22766;37318;34663;40156;15936;21898;38931;15033;29023;24278;14654;13302;35632;36331;20210;26940;30062;26618;11781;39843;11612;23272;38744;39646;41248;35266;35177;42595;37981;34916;38813;26706;27295;17025;20096;12992;28470;21740;40255;33560;22706;32791;36681;33846;26769;38214;40955;15723;10900;37028;42809;31280;21732;32045;35574;24859;12728;23863;12770;32177;16336;29793;25383;14005;41499;19695;38818;17061;22581;18568;31583;22490;16885;39107;35064;36757;22069;16869;17524;19320;33782;42217;40261;38785;30642;37544;10047;19845;36527;28688;13023;23999;14348;39478;12119;10024;12558;30250;32876;15978;41381;18078;14151;25293;37050;19627;30987;20707;30980;42474;15598;27786;11752;27569;29848;24200;16418;32380;14915;39399;32452;20100;32370;12460;22330;18037;35115;24590;34962;12643;26928;13780;39326;31535;24904;35298;38541;27930;30211;19708;25485;41495;18677;15597;17495;16958;21947;37043;17407;13617;13873;39096;37160;31111;37972;15658;37688;16143;25180;28306;23461;10521;38875;40021;26007;31938;31023;41378;13428;29792;10409;30667;34660;31755;31370;35856;19859;33920;18252;18872;17364;40415;21595;28358;38032;16866;37911;29379;29743;21723;36055;35027;12056;30245;18280;40636;25792;36774;21094;22525;21823;32930;29520;18384;26157;34817;28555;31021;23976;12094;30486;27429;29687;25793;27384;40313;39491;12917;14390;18386;20956;34577;14693;19110;29307;34604;39564;25521;16320;17595;11721;19990;39353;39185;39436;17375;38654;29134;29048;28736;28857;10404;26390;34138;24449;16419;22646;24880;34658;19839;11305;10257;20216;12095;22382;42263;13967;34542;16515;27056;12855;36476;29376;19186;12209;21698;16355;11042;33748;37659;14859;31334;28771;30451;29860;21979;24437;20062;28789;31540;42759;23001;42688;21505;42318;30610;29841;39974;32368;30415;35343;38704;30346;13437;21675;34437;15596;28440;22229;35278;42095;20927;32968;38356;26961;24467;20999;31736;42377;38198;33095;20391;29790;41039;41262;16710;36600;16812;37170;37874;11547;19495;29402;14028;23474;22861;13782;38569;26945;31628;26093;15434;42049;13581;11123;38362;30436;42479;40745;34746;26665;21130;37502;26592;22160;41319;33687;24421;23585;36191;22174;14850;38759;35275;22277;41832;34907;38850;39109;36533;15286;25765;17353;28373;15139;20470;13127;34564;36788;23049;41275;37758;16575;18397;33592;18607;15672;25989;34930;17255;30796;35390;15084;41579;40047;31512;42144;11291;10908;12348;22717;19167;25292;22781;32100;14039;30604;12428;12067;20346;37884;27953;34869;27473;37676;32135;11876;36852;42439;43064;13988;20702;11913;21512;18655;18541;34040;14607;12107;36954;14933;42986;15115;37662;28217;15404;42213;26178;15265;35490;31065;25566;33136;13519;31244;11428;33475;27307;38184;22597;36312;24020;15256;21552;29777;14536;42519;15815;10554;25179;11215;23223;32858;29972;33703;40450;18932;31505;33792;22873;10807;29408;21774;35055;34629;12660;16139;18513;14256;39123;39625;38825;19469;28591;37247;36486;21546;34549;20114;32157;38437;40999;35423;23916;24066;28852;43037;11167;38046;43048;39914;29692;34337;30929;39848;13879;33478;14690;43085;30895;25819;22029;41721;25770;17985;38027;25837;27746;40651;22058;25397;39404;31870;10567;34188;42346;22626;11533;23363;34813;16784;13424;14446;14481;28820;25082;37469;42110;12091;36686;29117;34561;39345;25291;42116;26130;25626;11425;23655;34359;12667;33127;20433;17490;32942;27936;16391;20499;10343;42833;19070;20186;16338;23838;28732;14105;23468;14545;39727;34921;41511;16088;31499;18847;42671;10954;12710;16018;26038;24909;26329;33266;18319;26047;13486;32112;18052;28138;31767;14444;11409;33354;12989;40210;17624;17234;34124;16109;39546;11460;35382;25469;35019;30400;38242;37615;14440;31576;18206;35905;25456;39797;26471;43091;30614;33324;28059;23725;20028;14403;35738;23534;24641;14953;37218;21133;16600;32478;33795;10847;16933;28938;40889;13330;12835;41390;21211;33570;19873;16356;35474;24881;35775;15304;24840;36173;42052;13613;36553;12780;27601;35590;41457;14616;11455;35323;37418;25739;16943;32170;18511;35372;30883;41965;39375;14112;27856;20883;24308;25404;25459;22747;31662;16627;24128;34446;35937;19335;32309;36575;24830;11046;19653;32004;26983;19037;15067;32497;29505;41168;31591;19589;28923;20547;33883;28575;38413;35486;30774;28769;26817;28261;30313;18867;40231;40910;18335;17628;31947;31627;18430;30540;41886;19170;28339;24365;41031;18945;11762;14824;34887;18163;39548;16476;17173;35772;25593;40067;26292;36921;33254;14334;26206;10647;18175;20355;14578;33163;30093;42385;29945;19284;37549;22698;33168;17510;21422;35255;39494;21591;41007;42525;27250;35395;33916;33397;14235;12572;31186;37914;35550;26607;38393;35915;35062;13275;19895;11562;19537;12125;14468;31855;36020;26340;37655;20481;41132;20395;11091;39451;19638;32910;27574;41481;28207;41693;13924;42564;25382;17685;39911;42182;10413;29198;35737;28604;15637;13401;42423;32090;37437;39999;10964;23402;29761;28412;21529;11597;19609;15126;24210;38587;26288;23458;38237;32445;41628;16073;12876;33243;26076;31270;35764;32937;34471;11211;39067;17251;37204;42054;34345;22070;27723;40467;43058;40431;24109;27759;11819;42830;41353;39711;29513;13185;33805;14149;23117;21020;23415;27913;23100;32181;21729;38057;16985;16725;24919;36885;33809;13666;15319;23129;28529;33077;40765;12035;13698;36754;22166;33017;11299;30831;17245;25919;34041;22244;24170;38436;37002;10132;36431;29342;32935;24721;39619;20597;25815;21601;25575;27431;29642;25868;18667;10965;20717;27065;24161;31864;11606;22048;37273;35664;10882;37251;14756;24446;26199;36008;27816;31754;24585;22373;18183;14556;34501;26517;15548;42264;22323;27983;35766;17083;34442;28092;29361;31777;30932;23959;37484;34084;25442;12254;26231;21598;23467;16844;39866;20415;18194;34455;38801;34021;32522;40497;28754;24979;34685;16762;11461;20215;26158;20424;17620;37389;12722;30000;17435;22338;21408;19454;41328;16661;38428;37639;23575;42730;13403;25100;13611;30379;37473;23319;12285;16956;37933;21258;40181;38552;28209;14485;33511;20694;21102;41291;41158;21304;22346;38235;33753;13897;10023;26799;28903;39148;23187;10559;27524;25420;38957;31503;27441;25700;12764;35693;11580;40123;37020;24627;32577;30913;15504;33020;41880;28864;15615;20274;32954;38365;26120;21386;39247;28547;36394;38266;25891;22803;12422;27671;41198;16559;16131;13673;31124;30762;42222;16621;35674;15271;24948;11861;29838;28599;42860;34814;39208;24700;26069;12345;23006;19046;40978;30856;34150;20077;30147;24337;29887;31699;29927;39948;22775;27946;20441;36997;34881;29139;11398;37297;34780;17000;27683;33051;18433;20608;27034;20898;29902;26383;30389;31860;14846;33082;41075;39232;31403;34538;15225;25131;16258;18559;15919;13411;30017;27459;38593;26977;10490;10703;21333;19827;14265;37971;14466;15116;24991;10041;15129;32191;41139;14939;25711;37074;14210;19458;10278;34315;30636;32868;26162;26666;16735;38169;28140;17250;29406;15558;17108;32852;40586;36893;15336;24987;34534;17445;31876;20616;40678;33893;31889;31394;16777;27877;39827;20098;31940;18682;10695;24621;35941;12544;11787;39891;18443;37003;41426;36515;39493;39833;24815;28858;33325;18517;33094;19765;28063;14874;31189;33594;28733;23067;25479;23240;43016;17276;21986;12402;35029;38807;13331;26713;23482;16399;14691;14965;32395;22690;40716;13709;42488;23007;18516;18389;22398;25678;32583;40971;15492;24340;11677;11281;36038;20243;27514;29720;11246;14003;16868;42115;31487;21764;12446;40427;35476;40845;23479;36043;30940;42591;29135;37687;29249;15451;41610;21297;20388;31867;21961;26754;15961;38927;24613;27893;24554;26065;18582;16992;26134;26335;27288;38142;34975;18388;34733;31931;41446;29678;25400;21821;39585;33190;18492;35569;21058;23291;14050;19309;12886;16217;15986;23502;11469;15148;20775;22866;27969;37779;19633;39703;26168;23797;17415;36708;34737;14744;38124;40528;35072;40770;19504;37760;36495;10926;32022;17249;26990;33393;38909;26015;27916;30321;21047;13179;39656;21035;16915;10620;18981;16245;35263;32668;15117;13107;35691;41245;26277;32864;23409;30509;28503;27407;21604;23947;35349;34114;12534;24393;33586;23834;13646;12072;37289;38040;32393;37314;34162;42645;11946;43080;42634;11190;34432;20849;34716;29046;12652;16206;33239;21895;15359;39888;20376;19646;40960;24354;11754;30591;31098;28004;13921;24806;39459;20873;28534;21073;30089;30066;24416;26672;33943;13074;16412;31363;37607;31070;18212;15645;12087;26208;20738;25319;40550;32162;34713;24481;27390;30912;29016;29620;31880;21855;37237;38116;17074;30177;19426;22497;22164;21811;10376;41280;29590;38415;42647;16318;16478;26111;34226;15121;19312;39187;42866;21429;37319;42886;19955;23323;18247;29038;25454;36250;38422;24254;21556;21460;14582;29599;11037;24563;23907;38982;23874;35611;14504;12081;22961;24450;40579;23147;33248;10246;37071;21881;40084;29251;30649;42158;16794;30903;15754;16213;33611;34735;20095;25041;38765;25551;18690;39004;25211;13515;33145;13221;23582;29187;19448;16154;12080;32258;39563;13723;32469;25565;28819;10396;40384;22056;42765;41404;24660;13450;40835;29095;20404;41065;38595;31526;33374;11924;15030;28674;23086;40259;32874;15728;42997;16327;25223;40905;17578;35208;23238;38734;39463;33307;30282;12018;15362;31567;13042;35252;30936;40890;11941;18273;37770;17082;34750;13397;16204;19169;10856;30954;36009;24701;13114;25440;29924;39443;35230;38553;16987;31035;22155;34384;26674;31824;31897;32633;42280;27164;27247;19760;13919;38099;42679;33507;36088;30488;29211;32396;29987;20482;42013;15133;41574;14290;25911;21101;41761;28494;30274;22432;39890;10281;10666;24931;36601;20566;31561;19701;22918;26451;14491;13223;19387;40368;25848;21164;18593;40409;10477;11134;28580;16345;34585;30447;24520;40452;41538;15524;25998;20799;40364;32076;28577;20576;13024;21325;35950;22816;35942;16862;24874;34429;42032;32450;15989;15054;17452;24283;21117;20277;24391;42749;36048;38988;14083;32766;18979;32772;29810;42124;30443;28527;36128;18222;13557;32472;11485;15958;14750;35331;14296;30921;30439;29065;27725;29185;13206;27415;19623;16894;42741;36642;23893;42331;13173;41525;28091;23872;17462;31232;26625;27821;20753;38630;42006;18103;40512;24182;32138;34492;20734;41769;23464;10681;34184;31511;27520;11830;12115;40640;42789;12203;39357;28382;35099;39330;21806;37466;25160;26391;28040;18587;30338;26248;37018;17587;37329;38798;25951;33375;17417;29114;37147;38441;32547;38330;20978;27988;15484;34510;34314;15470;18204;42191;11043;41666;33256;24884;16542;26060;38033;37094;10591;19340;14398;23867;38253;10464;34427;25118;13030;18172;33147;22746;25198;29019;28101;36986;16907;15691;40655;29301;28713;40453;33117;28417;19699;41852;11343;15496;36282;35887;13244;18272;38648;25732;33513;20361;32219;34945;30615;38531;22681;33234;40335;22499;33230;31384;22483;32885;28939;30288;13548;40680;29554;40236;31680;34216;35495;41869;10282;26591;29950;35392;10906;38182;32179;35383;32010;39586;42788;37667;28019;36845;12975;11367;36851;30227;19403;18184;21707;41659;34009;24442;37522;39286;11774;25110;25949;31916;35219;27337;26899;30598;40447;23733;12300;41626;18331;38317;20034;18019;28180;27134;11943;33213;16466;38052;39645;32979;13028;35895;29597;14496;13551;24089;14167;20545;25486;21683;42087;35849;34129;26915;28668;26933;12923;26282;31873;10245;19001;19303;14292;11010;14739;42417;10518;12903;25857;19881;42345;38953;14769;24401;22137;39279;39129;17594;26445;19171;30041;29778;39605;28395;41625;12605;38375;16574;16407;28001;37337;25455;34673;20634;30782;42325;37351;24293;22906;33849;39941;35270;20127;40026;10357;41389;23311;38071;16949;38926;27882;26759;24744;11850;32351;15208;18640;42726;20964;15292;33391;26108;21788;32431;23089;19368;20974;42826;34899;20315;34728;32824;32343;36199;18794;31435;23151;34665;12604;15373;12048;30153;34892;40610;41677;29129;16986;30599;39117;14558;11769;11393;39061;37295;15167;40838;19404;10708;12602;34709;17194;26861;20689;10131;11801;30310;12947;33228;10801;12708;22362;24479;30986;14178;35981;12344;33532;24219;39378;38862;29067;33693;37128;28977;27731;14388;11008;33327;23168;17512;10669;13021;26183;41429;14045;13976;38763;43093;26924;15361;23149;14160;22697;19997;13778;20860;23683;13789;11670;35985;12339;16031;23036;42627;12560;25741;39644;40104;17179;21966;10677;19052;27067;23032;37468;14138;25483;33793;28762;23689;29021;10628;36029;18369;33123;16610;35410;15201;13627;14928;30424;38151;40273;36073;21247;27828;32282;25993;33937;40900;26711;35593;12463;22875;32610;13958;25417;36344;27767;25926;40805;33405;10915;37486;31738;41535;25775;25870;41137;25533;23666;20192;12280;14775;37082;29457;12657;17005;37495;33848;33763;12647;32573;35018;42943;14201;19118;35146;24461;23842;36528;27628;23248;31102;30082;19258;41933;42933;14349;22880;25865;11262;27572;37543;40825;36138;31980;22577;18734;33045;32625;36928;14973;23140;38264;37161;34718;29623;18545;26901;42128;39981;18106;40470;41636;22513;25388;36347;29942;20698;42091;42207;13641;13837;12381;15679;26772;18548;26097;10839;24197;28665;32592;23126;35751;38770;17261;20695;21206;16582;39393;34649;22076;39179;39382;16436;42777;34321;16186;38784;11413;24847;36149;10560;28851;42796;14759;13874;19097;16404;36724;39368;16660;35249;17204;25950;23451;26681;26415;42959;11007;11692;18975;22221;13657;20203;22105;10769;13727;38890;25320;33016;39632;10757;18808;14357;18755;36951;11468;40101;36406;33337;19253;28006;20233;31610;42184;14534;20333;30118;32574;23091;23586;40459;14004;34061;18253;11001;13823;27127;10104;10697;27456;40198;21274;40216;20427;23201;16344;23685;14843;12595;32815;19552;15438;14383;38016;23076;38211;41034;32379;29127;37409;37654;38766;32072;17235;26091;32899;37072;14310;39140;18946;31412;42767;38172;41253;36292;38525;39008;14421;35320;13020;25228;41699;32384;31666;13669;32308;40088;28963;25924;20773;15606;21752;32767;12452;33766;17200;37755;20904;28803;27500;22006;29579;13434;41243;37138;15347;27884;12980;26824;34835;36352;20675;10180;36633;26402;42001;14121;28848;37210;33419;35552;38155;18237;33660;39110;23217;20389;20426;25043;31191;35852;21265;30834;39962;35606;29742;22665;29829;18102;40402;22389;42399;23964;29532;28431;39655;29149;24277;16961;14279;11417;37193;16138;37416;13993;26484;40507;35922;33431;14730;36756;32216;16441;14838;31928;41907;38867;37232;35706;27242;37344;36071;30150;42350;33503;22849;39570;37542;26132;21893;35623;18004;39230;10943;19587;24486;26457;11825;37585;33702;20345;26621;10866;42051;21177;40519;20761;30381;23443;11768;35389;14893;15097;10381;18053;16281;35749;25348;19891;35581;30445;20742;37664;40525;18403;42995;40098;35124;34840;22851;27341;35983;41375;20650;19980;33775;23908;11372;30681;11338;13432;28297;15771;41370;16222;24196;20544;33395;41083;35677;27619;21110;40375;13498;20498;31862;40921;36878;25699;32006;30225;14276;17472;13757;32770;25235;40933;27411;19247;23324;19924;31464;22213;21151;23210;10266;26903;22924;25874;15080;11548;39947;18719;20569;25615;12507;14566;16509;17099;32559;29901;14222;40714;13714;30650;21863;17037;15834;20205;32735;20952;32706;23241;23463;20091;31449;33381;26155;12088;30102;19744;16078;15502;13343;29151;35834;16918;15183;22171;29115;42545;27298;20068;30151;39759;23547;10163;23174;38954;35903;25428;26520;35126;27876;18157;34683;10881;23699;23450;27261;21114;36952;32646;22778;22124;33615;27149;25109;38105;36723;33990;28932;21623;39352;35065;32360;25261;38566;23175;34286;26601;14970;21889;31549;32564;11107;31851;11766;10043;28436;26349;22144;41176;39903;17080;38137;13954;28287;31418;35047;42506;32019;27629;39364;29816;36398;22863;23103;13308;13034;12319;42693;31818;12850;35196;10835;26733;34280;23505;14264;34436;22686;31655;25254;23171;31390;22757;38562;10256;26738;23395;26645;12257;14190;28794;38140;36443;35700;37143;22744;39806;31329;34851;22126;36127;32538;40685;34734;41881;16543;34997;35754;21539;39835;16098;14847;41357;37167;42552;26227;20992;24607;41414;29107;22386;30077;40769;27117;16454;33119;13596;16026;22644;41987;37753;13105;35169;34224;18949;12487;19668;41714;35114;14540;15575;10905;22926;38701;34122;24530;17100;14537;31669;41920;29353;32804;35635;26416;42503;30332;23524;33549;25426;37132;32974;32437;23182;32888;26925;18162;39809;19346;28714;12313;31838;22279;27593;27883;34271;17280;24772;23835;13665;14901;33047;25027;12550;15664;27148;32098;11295;16540;16547;14314;32984;41927;18973;29207;38668;39409;26691;20504;34027;17502;20552;13473;26774;13788;31371;11728;34178;28499;34153;43079;36094;12271;15427;26550;27480;24964;12448;41692;12055;32265;10426;33387;27219;26558;28859;20176;39990;20258;42349;13734;30898;31501;36308;27951;39607;39702;37415;40894;21832;40570;35656;40109;25335;17638;16034;38528;38751;16257;43077;10072;25958;35308;40548;34332;22300;24579;30357;29726;26655;27977;18251;25369;19559;20636;30524;14439;10048;11618;12295;27230;24226;16029;14501;16420;15326;38082;14700;26935;36122;12527;28302;11503;40064;25502;32034;25250;21006;38054;18646;18006;17297;38344;19039;19572;27205;15861;16950;24745;29886;29411;36509;40623;24042;16959;32079;41165;42276;24667;32043;10918;36538;14076;40283;31982;16684;28664;33294;20240;41984;34296;11183;40789;35778;22976;36368;36926;40140;40742;40609;37107;20876;30465;26296;19757;39476;37897;26125;17611;42109;24908;34068;15191;26576;31651;38617;25280;28683;16609;11487;37165;19608;28679;11940;39392;32414;30107;11335;38480;37146;14152;25264;33160;28829;18680;25591;15092;35192;14343;28062;39573;17651;33149;15509;28407;24358;23105;36787;28954;31823;26736;14890;11751;14395;40741;15459;19330;13574;38257;12378;16879;22716;41365;43099;15567;41239;39209;35422;36408;20483;19198;21519;22657;24458;34119;19756;30841;21044;37766;19139;28073;34807;38771;18856;24232;17115;37472;19711;17538;32249;11582;10261;30674;23315;37876;42813;18921;14581;15736;29442;16470;32298;10692;33418;43081;21486;27726;27353;18263;34693;38601;28999;10949;36858;36401;26022;23060;20579;34803;22888;18691;28900;17214;29453;27118;16997;30573;34527;18633;31458;29782;23973;22960;42422;23951;16922;37551;33802;40214;33458;36207;19507;28671;10014;39933;23426;16530;10050;22476;14511;21353;21760;15851;42517;26164;13113;31781;10483;37634;19078;23288;28485;38039;24650;23978;32809;28823;24129;35346;28370;36286;40482;13234;31904;12797;25299;33674;25650;25730;11865;39511;23284;33311;21943;18833;23059;37288;26985;18801;29644;13195;32374;12748;15468;14171;34747;13370;22153;11085;25463;16377;40472;11573;18668;30582;34489;38559;14641;39704;30729;18231;39964;39774;12901;21617;38219;41445;35178;22773;34579;24255;29223;23832;14694;36930;27838;32314;20495;15199;33253;40060;25472;14422;28744;33365;13480;39339;27699;42977;26073;31159;31969;15324;19402;13719;13740;28862;22737;39456;21964;15058;36377;38700;35054;21836;39206;26399;23969;30574;14714;26692;24596;14785;17171;16159;11907;14248;31518;36779;23871;18238;16636;21693;39652;28231;26879;38026;41293;23910;30750;18869;36566;42415;18563;39022;14942;13116;37012;13600;19047;33364;17210;40469;23718;17514;22211;39056;26098;24114;36049;37690;10888;34631;25923;24139;22957;42083;21892;42732;27157;22333;14218;24800;41877;12261;30084;42892;30423;41758;42927;25077;24698;29633;21628;26043;15562;22864;14670;11489;16960;12374;37091;40597;24152;17035;10425;37574;42935;24891;14798;21232;17515;27800;33504;23616;20326;41791;40196;24436;23536;30493;24644;25735;38589;32635;11108;20328;23611;15939;40727;33279;39355;26003;35963;25725;22390;15927;25229;12356;37768;27072;25804;15657;34294;20655;19382;24451;42168;26894;41249;10996;31613;41282;39074;24720;13618;37184;38843;39864;18678;20339;30318;20167;23204;30660;33000;20649;12541;35184;27468;27536;12370;38679;42784;33490;18142;29721;22356;28278;35316;20905;12909;33203;22678;34520;34272;29180;43020;32096;40767;40645;29415;16360;25107;42305;25665;34872;38683;10162;14917;34176;18034;33940;31813;32889;42641;23496;20979;34637;24524;38329;30061;21175;39608;39519;37410;39151;42111;20464;42783;29588;23085;16241;33932;43098;16140;14771;33798;27290;27003;28259;11444;22503;24332;14137;41069;15893;22269;16913;23674;34195;22538;35961;12838;29416;35398;25402;12727;24417;40012;13659;40492;32274;38839;26249;42088;37124;39242;20853;31816;20539;28538;28141;39429;24471;15907;34706;30978;28252;20851;19036;36372;24430;29949;23352;22823;11152;14779;28286;24243;34352;24677;29899;20430;29637;18983;36402;34732;20094;22321;32788;17636;17680;16488;14820;39718;10682;36125;21721;12347;16693;40353;27343;32025;35723;17989;23500;41999;13231;12492;36627;11887;35791;15036;28560;11932;27216;21809;20208;29638;39828;35405;32149;26377;32509;17102;21497;41825;41517;32511;42296;19498;19675;26260;40326;32818;21781;29329;26595;21802;20771;32543;29155;21027;13278;24348;33029;20647;35540;39047;32698;38267;28002;10430;41498;39539;28199;21674;13022;14541;10045;15073;10827;28046;19822;39102;38583;27297;26159;38216;36382;25685;26526;20446;31702;19985;10149;29034;34918;23884;35318;28914;39125;36316;23466;14529;41043;21109;34088;10727;15228;14823;10106;10514;21834;39275;18625;18809;40251;31465;42229;40749;12439;17232;18565;26508;16481;41925;42428;37618;25612;22320;20769;38115;20072;29857;28505;17488;10007;24521;41082;10959;37306;21931;40414;36947;25126;35951;13213;27241;35086;31780;12420;10836;41690;10525;30329;19491;32860;16809;37057;30970;31773;22143;27897;24629;28328;12675;35060;32031;12243;39005;23862;30109;34828;20808;33936;42389;42991;40777;43060;26603;22418;16599;17193;14463;36697;36075;36539;14791;15006;11394;12705;13836;30148;32367;20776;40542;27597;31600;27559;35578;37711;34630;18996;27222;30457;19282;41818;12322;15062;34357;40979;37113;14289;29305;37009;21543;24864;40441;28644;40788;38831;23897;42093;30224;27545;39860;37303;40869;35804;18040;31639;23264;23708;21051;14336;22179;40676;34193;23580;37440;26131;12557;27533;37411;26910;35645;31772;17494;16803;10513;30791;28250;19588;31383;18800;25532;16052;34570;12773;22011;24424;28773;24767;25447;26317;34708;39318;18074;30458;37927;40867;27700;16205;13638;11691;39421;29789;37617;42077;31998;16713;35875;12207;26181;14604;19242;34202;37405;41921;21853;26998;37794;34558;31404;33529;33505;25768;15806;14877;12288;31075;33291;21266;25648;23781;29197;22093;17551;39970;26123;35640;12311;31657;38355;28414;31527;40903;31221;41215;33470;22512;25482;23889;11254;36238;39942;25750;40506;16183;31747;37523;11027;39627;39199;24314;25654;10833;37322;23047;18341;18292;33591;39182;29498;10771;34865;26600;29237;34806;14698;39053;24275;38557;30976;32965;13091;34664;34263;19006;31381;22306;31079;40260;25190;10187;41109;37767;25351;40475;30946;24818;24060;28120;34736;21952;41979;35897;19161;34330;31356;32975;17381;30963;32570;29106;13992;11445;32798;24334;12757;39479;41396;25146;37370;35760;42620;39520;19107;40048;33057;34556;10227;28114;11252;29318;36806;38209;13702;42988;15203;38143;25690;31984;41119;14102;26689;22915;22352;16587;22115;23756;29900;16237;37653;29431;26343;25915;41719;20489;15636;20466;42271;29328;27068;30659;33241;41537;42392;40665;42722;19467;27931;18748;36260;33058;37207;13326;38565;27199;18823;33959;39418;30740;17076;41858;31658;42014;29528;38520;24282;38577;31099;30038;19234;29176;26322;15248;22098;35281;36615;15483;17457;21495;25334;34829;38000;33978;30833;25150;42699;32997;33888;11610;12045;25681;11745;29165;13201;37194;32722;42460;35984;38250;32620;16877;41095;19877;42966;34672;30309;13907;15223;39226;31141;11068;20941;16971;27260;41459;35901;19310;27872;19476;27180;39739;10368;16668;29420;36426;18924;33649;17172;33623;19042;36384;12376;12050;13139;23853;40604;39512;22726;25276;20442;15758;13157;40089;38454;27244;39173;17619;28969;10262;30687;28154;23854;28280;35870;20912;20528;34303;11199;20076;37594;29093;38989;41871;30477;34477;27014;21292;19524;12431;36247;21074;12670;20861;41582;40612;10766;35284;39978;27103;18068;42356;20600;14078;15816;41398;25581;34648;23605;14293;20104;34591;24857;19772;21316;15692;29670;34167;37291;13442;13270;13537;11784;37298;37684;19050;41891;36519;27604;11954;24780;13895;42602;41936;15491;35101;27532;27363;29577;13256;16741;17006;34597;33675;23567;18775;26819;33842;31553;27109;35675;37220;27993;34030;12916;41200;13035;12034;22650;11245;37027;23294;16745;27970;41451;16883;36021;10012;34546;39669;33719;37581;13026;10174;26596;22220;42678;35052;34684;34757;31944;20644;14731;42747;26837;35736;30587;17038;28545;33200;24369;28324;21473;26864;39304;15953;37827;24223;31071;15055;19659;13317;29529;21747;40208;33655;26483;41030;20179;23780;14722;33757;19758;18670;41052;36729;40928;22936;17356;26398;10543;32230;34319;31632;24311;19093;36635;30655;23661;37447;20983;18246;35535;10859;15446;37718;34545;34370;18339;36058;12864;40114;14135;38762;19292;39640;39044;26034;20436;19477;19164;42758;16221;24974;10313;19195;18586;24542;28277;12411;35307;15136;35965;41199;22425;37638;36523;12725;15399;16265;21744;33336;23318;16665;30115;31198;30019;37601;40320;22944;12514;33061;40496;22146;38407;17672;25210;33172;42891;34006;33060;23185;37528;10123;16051;32551;22295;36170;32500;41630;33341;23504;30158;25727;26449;40461;13485;33346;30628;20425;34039;26063;41020;19401;29713;11500;15254;21138;18629;12124;29083;31732;23454;13934;15382;17555;13268;36592;16461;22838;16350;25016;34525;25024;42780;23569;33790;15667;25580;29337;10184;42514;15612;28551;29923;22843;28976;15279;21974;10094;12828;27042;36953;14796;28468;26191;27610;39217;21827;35138;24001;37656;23257;15480;32454;10604;25221;23200;31289;20268;36717;26110;12588;28268;21440;23394;25525;41341;29465;21057;23165;33333;32187;29563;23332;10575;20015;12535;29267;42603;25450;19119;37995;15594;28619;26096;12539;38486;36638;10314;27387;40730;14082;10871;26148;26344;11565;33154;24876;13815;28835;31678;12097;21242;28648;21904;41762;34560;24574;33339;41696;20865;31265;38097;37301;39389;23508;34694;37106;39661;32168;25487;41548;38823;38650;28843;29885;24969;20535;18777;20357;24699;10347;14146;12575;25697;13553;15608;11274;19098;15495;40404;39896;18630;18293;22073;25356;30624;13132;21631;31246;28798;33827;28018;20520;20625;21106;33135;31568;13555;28310;39300;15086;37189;12536;35524;17288;15229;36887;23556;13273;36978;41709;17579;18906;11244;32745;29960;19749;17043;31417;13271;30538;12059;18083;12942;41193;18424;12532;10374;13588;22714;37154;28146;42827;33637;28627;35735;13990;18067;28147;35848;17291;25391;29302;27018;20148;13532;15757;21302;13136;38820;20501;24406;41786;35636;18061;36582;30974;28702;37830;38852;11642;41518;16067;31291;10061;29688;33874;26088;25932;17285;23017;30707;36150;22044;16229;20159;36944;33879;36882;19789;33424;22625;28925;13827;18802;39919;21866;31733;32702;34526;32155;11396;34306;37395;16560;34970;26722;17425;22728;25262;14630;30559;33855;27427;28340;15244;35481;29514;13131;16615;20347;28833;31698;22668;29823;40130;13695;15690;32457;35618;40337;30991;27591;16800;27494;35291;13177;42970;33272;33985;20567;37873;25233;29022;33363;10099;33414;35188;42393;28723;21082;16353;10600;41603;42587;34889;17471;35962;25449;23353;17483;14762;10570;38323;35104;18792;41425;10008;36603;26907;37499;42516;15249;10625;20116;16697;30239;26780;25121;40834;26271;18786;28473;25641;27542;16518;15822;22865;19598;15482;32127;37277;38816;33950;24006;14631;13681;20065;11233;32256;21699;38782;34081;15935;11229;21182;42815;34956;18093;41526;25515;40171;36042;26356;11422;37592;19111;21079;29078;30360;28537;24759;11082;17987;36576;18902;35133;13459;13194;23659;39724;28994;17982;42273;19014;27159;31391;31245;28188;38213;29506;28264;12888;20517;25136;31178;26615;36803;32960;31340;41602;20445;31565;31647;10541;30981;27865;18361;31444;21085;38802;22569;10637;13298;40274;37456;12252;38921;30568;21250;41559;39810;35401;34469;28320;21125;33948;40071;12819;40897;41252;41959;21653;15186;12873;41188;11126;24165;18935;14754;35821;29904;13910;15415;29833;26177;33509;12395;11761;37186;14027;34874;35920;35836;34214;25197;29624;12845;33813;28159;34882;34841;13103;22049;30363;27449;25240;36400;25556;24240;26776;10763;39765;30851;38144;31750;18486;13373;37860;34711;39361;36100;26647;41314;37428;38615;18550;26679;29094;38204;28980;31036;21733;14384;20559;25905;27311;12927;28276;15044;19281;15288;29340;19801;26435;37831;16405;25266;35703;18140;29675;31288;34686;20703;26179;24637;15246;21507;20462;40975;42259;34380;17062;19993;29281;13018;14092;27794;23470;32366;42409;14268;23757;34344;33227;42334;16071;31220;17683;16839;42219;36246;23584;33126;17517;26032;19666;13141;17089;28728;25039;32716;13487;13850;29458;43057;41046;22067;23269;11750;14012;16604;29515;20816;39571;29508;37765;10980;34655;33246;30753;31954;10539;35056;42026;16790;33153;23543;23339;14948;33034;34557;38230;40400;43008;15263;33400;15105;25222;26081;25445;18740;26310;10806;27822;17623;11795;25111;11144;39054;18966;15316;40057;18441;41978;41318;17493;31615;42241;23219;23941;39878;19518;26058;33715;33692;28684;29785;38779;20386;34110;18062;15761;26505;23078;40385;29432;35396;13808;26820;33542;10150;26273;29551;27194;28348;15383;30111;38384;34096;24380;20429;37821;18899;31981;30172;29252;22869;22935;27523;13072;33205;18611;19886;37792;29770;28652;31170;20448;16527;30662;34450;14517;30569;35857;21331;41532;11064;40329;10828;30345;21985;42505;39137;12084;41897;24715;30126;13582;12015;39993;41775;25888;22305;35770;26444;38952;35936;37879;40617;13969;23330;34354;32712;16751;23337;14503;39819;27191;42800;13184;25594;15653;21388;31205;30431;36567;40833;13149;28443;39532;14553;27934;29069;20874;17020;12363;11294;16511;17416;33659;13683;40136;21520;25906;23034;16487;14374;40543;23773;28784;17308;40995;12781;33899;24352;40340;23949;16240;42696;23517;29880;31438;17164;32296;30577;18012;18390;12438;24251;38629;12938;39922;35570;16324;41561;34320;23099;28465;32572;20491;21096;40508;19365;35142;32325;20749;18249;14505;13032;25248;37135;20002;24568;26265;36061;21191;39910;22566;25981;28993;35750;38671;27136;41122;10359;23434;22257;31978;22531;10370;27320;11202;12620;37908;38232;16685;19767;31548;39309;31710;38690;28023;17347;15557;24533;37095;40160;23645;19197;18356;23988;25914;20881;19735;30133;15247;21644;28469;35816;31574;38652;22679;42752;31803;37815;35658;38658;20942;37024;26216;40092;40466;33128;15746;16690;13601;13893;22394;20450;12556;39038;23371;25967;38724;26952;15402;38692;28160;12786;42064;28201;24783;13890;20781;22709;22514;11447;35577;19484;23851;32284;32663;40590;31177;42333;27543;12245;22287;26272;14568;16731;37116;19833;31171;26566;39998;18306;31286;33110;12443;28933;19135;26342;18988;34934;41018;17374;22210;16549;18961;29731;27171;30652;27354;20721;35265;42708;36665;12414;31718;22928;10542;42327;40746;19678;18412;42173;40532;30331;42081;13047;28435;12671;37477;38427;21285;27622;14369;19836;39858;17328;34168;42224;37751;37312;16748;27998;31030;39973;35497;21043;25585;20434;32656;24691;42302;28400;26943;17629;27641;29824;25427;26937;27140;39960;24121;18465;28808;40425;24292;37302;23377;23317;22667;41059;14564;22071;24435;26842;41712;26524;13322;36868;40175;35891;21032;36949;42928;10950;14274;32727;23253;16048;32604;21063;37645;20308;42150;29027;13651;32761;12314;23236;10417;42499;14418;42466;39055;30886;36101;34843;30878;28178;40030;36995;24690;22892;18530;32440;11910;20895;25991;31032;23758;29862;32875;16339;13315;11541;22308;38575;21664;36190;30900;40342;28775;27531;27587;22647;14869;26075;41191;18129;24469;34775;28514;23598;11786;13168;36604;28187;28957;37583;13597;22351;16499;27064;30704;30544;15453;18490;39856;20977;11653;39291;20359;29503;24220;36113;15700;17060;34610;28429;37803;24015;34914;32948;29593;32558;20183;19208;25026;41639;31573;10433;24935;13685;12574;28447;28254;13633;28765;12502;34798;29536;37600;42461;21172;41206;23011;11015;32236;40417;21421;26139;39516;39794;11888;16209;25056;26836;31996;38991;28366;33105;40239;24903;25689;33184;27752;32778;15295;37527;39214;42065;19549;32480;12852;15034;27394;30272;10966;41431;14609;24120;14752;11110;13809;30160;30044;19691;10670;20295;11083;25311;14344;25909;33622;20934;14024;11767;32540;11206;32962;32762;31735;41395;39904;19219;23163;41562;20044;25127;27797;39804;22599;21919;42952;42277;37397;30926;31626;22189;14830;16816;16967;14428;13550;37853;31176;26686;17393;34625;17391;22528;11585;30890;23106;15517;19017;10547;40818;42880;37512;20223;42148;16837;17618;26454;28888;15964;11740;34965;20371;27695;27851;35130;36744;37169;32490;19444;18561;36378;25105;13970;34008;23595;39780;35237;40688;33473;43000;23594;25300;34136;41302;19175;24291;37942;36044;40043;19295;18046;30489;19048;38886;23197;13649;23693;39849;25234;32911;22463;10756;16793;34621;31951;40194;15701;25466;15131;42544;22619;32416;21765;15685;39741;42176;11436;15471;26732;14471;22631;28962;36317;33390;23885;32305;22265;32655;14852;25686;24730;27689;32786;24841;24827;40514;11439;11440;37265;40850;10815;20201;37773;34275;28420;17024;33691;</value>
15
+ </preference>
16
+ <preference>
17
+ <name>TARGET</name>
18
+ <value>scanme.insecure.org,snorby.org</value>
19
+ </preference>
20
+ <preference>
21
+ <name>throttle_scan</name>
22
+ <value>yes</value>
23
+ </preference>
24
+ <preference>
25
+ <name>listen_address</name>
26
+ <value>0.0.0.0</value>
27
+ </preference>
28
+ <preference>
29
+ <name>non_simult_ports</name>
30
+ <value>139, 445</value>
31
+ </preference>
32
+ <preference>
33
+ <name>slice_network_addresses</name>
34
+ <value>no</value>
35
+ </preference>
36
+ <preference>
37
+ <name>plugin_upload_suffixes</name>
38
+ <value>.nasl, .nasl3, .nasl4, .inc, .inc3, .nbin, .nlib, .audit</value>
39
+ </preference>
40
+ <preference>
41
+ <name>max_checks</name>
42
+ <value>5</value>
43
+ </preference>
44
+ <preference>
45
+ <name>stop_scan_on_disconnect</name>
46
+ <value>no</value>
47
+ </preference>
48
+ <preference>
49
+ <name>optimize_test</name>
50
+ <value>yes</value>
51
+ </preference>
52
+ <preference>
53
+ <name>log_whole_attack</name>
54
+ <value>no</value>
55
+ </preference>
56
+ <preference>
57
+ <name>cgi_path</name>
58
+ <value>/cgi-bin:/scripts</value>
59
+ </preference>
60
+ <preference>
61
+ <name>save_knowledge_base</name>
62
+ <value>yes</value>
63
+ </preference>
64
+ <preference>
65
+ <name>use_kernel_congestion_detection</name>
66
+ <value>no</value>
67
+ </preference>
68
+ <preference>
69
+ <name>auto_update</name>
70
+ <value>yes</value>
71
+ </preference>
72
+ <preference>
73
+ <name>listen_port</name>
74
+ <value>1241</value>
75
+ </preference>
76
+ <preference>
77
+ <name>checks_read_timeout</name>
78
+ <value>5</value>
79
+ </preference>
80
+ <preference>
81
+ <name>plugins_timeout</name>
82
+ <value>320</value>
83
+ </preference>
84
+ <preference>
85
+ <name>auto_enable_dependencies</name>
86
+ <value>yes</value>
87
+ </preference>
88
+ <preference>
89
+ <name>safe_checks</name>
90
+ <value>yes</value>
91
+ </preference>
92
+ <preference>
93
+ <name>stop_scan_on_hang</name>
94
+ <value>no</value>
95
+ </preference>
96
+ <preference>
97
+ <name>max_hosts</name>
98
+ <value>40</value>
99
+ </preference>
100
+ <preference>
101
+ <name>plugin_upload</name>
102
+ <value>yes</value>
103
+ </preference>
104
+ <preference>
105
+ <name>reduce_connections_on_congestion</name>
106
+ <value>no</value>
107
+ </preference>
108
+ <preference>
109
+ <name>seq</name>
110
+ <value>7179</value>
111
+ </preference>
112
+ <preference>
113
+ <name>silent_dependencies</name>
114
+ <value>yes</value>
115
+ </preference>
116
+ <preference>
117
+ <name>feed_type</name>
118
+ <value>HomeFeed</value>
119
+ </preference>
120
+ <preference>
121
+ <name>port_range</name>
122
+ <value>default</value>
123
+ </preference>
124
+ </ServerPreferences>
125
+ <PluginsPreferences>
126
+ <item>
127
+ <pluginName>SMB Registry : Start the Registry Service during the scan</pluginName>
128
+ <pluginId>35703</pluginId>
129
+ <fullName>SMB Registry : Start the Registry Service during the scan[checkbox]:Start the registry service during the scan</fullName>
130
+ <preferenceName>Start the registry service during the scan</preferenceName>
131
+ <preferenceType>checkbox</preferenceType>
132
+ <preferenceValues>no</preferenceValues>
133
+ <selectedValue>no</selectedValue>
134
+ </item><item>
135
+ <pluginName>Cleartext protocols settings</pluginName>
136
+ <pluginId>21744</pluginId>
137
+ <fullName>Cleartext protocols settings[entry]:User name :</fullName>
138
+ <preferenceName>User name :</preferenceName>
139
+ <preferenceType>entry</preferenceType>
140
+ <preferenceValues></preferenceValues>
141
+ <selectedValue></selectedValue>
142
+ </item><item>
143
+ <pluginName>Cleartext protocols settings</pluginName>
144
+ <pluginId>21744</pluginId>
145
+ <fullName>Cleartext protocols settings[password]:Password (unsafe!) :</fullName>
146
+ <preferenceName>Password (unsafe!) :</preferenceName>
147
+ <preferenceType>password</preferenceType>
148
+ <preferenceValues></preferenceValues>
149
+ <selectedValue></selectedValue>
150
+ </item><item>
151
+ <pluginName>Cleartext protocols settings</pluginName>
152
+ <pluginId>21744</pluginId>
153
+ <fullName>Cleartext protocols settings[checkbox]:Try to perform patch level checks over telnet</fullName>
154
+ <preferenceName>Try to perform patch level checks over telnet</preferenceName>
155
+ <preferenceType>checkbox</preferenceType>
156
+ <preferenceValues>no</preferenceValues>
157
+ <selectedValue>no</selectedValue>
158
+ </item><item>
159
+ <pluginName>Cleartext protocols settings</pluginName>
160
+ <pluginId>21744</pluginId>
161
+ <fullName>Cleartext protocols settings[checkbox]:Try to perform patch level checks over rsh</fullName>
162
+ <preferenceName>Try to perform patch level checks over rsh</preferenceName>
163
+ <preferenceType>checkbox</preferenceType>
164
+ <preferenceValues>no</preferenceValues>
165
+ <selectedValue>no</selectedValue>
166
+ </item><item>
167
+ <pluginName>Cleartext protocols settings</pluginName>
168
+ <pluginId>21744</pluginId>
169
+ <fullName>Cleartext protocols settings[checkbox]:Try to perform patch level checks over rexec</fullName>
170
+ <preferenceName>Try to perform patch level checks over rexec</preferenceName>
171
+ <preferenceType>checkbox</preferenceType>
172
+ <preferenceValues>no</preferenceValues>
173
+ <selectedValue>no</selectedValue>
174
+ </item><item>
175
+ <pluginName>Global variable settings</pluginName>
176
+ <pluginId>12288</pluginId>
177
+ <fullName>Global variable settings[checkbox]:Probe services on every port</fullName>
178
+ <preferenceName>Probe services on every port</preferenceName>
179
+ <preferenceType>checkbox</preferenceType>
180
+ <preferenceValues>yes</preferenceValues>
181
+ <selectedValue>yes</selectedValue>
182
+ </item><item>
183
+ <pluginName>Global variable settings</pluginName>
184
+ <pluginId>12288</pluginId>
185
+ <fullName>Global variable settings[checkbox]:Do not log in with user accounts not specified in the policy</fullName>
186
+ <preferenceName>Do not log in with user accounts not specified in the policy</preferenceName>
187
+ <preferenceType>checkbox</preferenceType>
188
+ <preferenceValues>no</preferenceValues>
189
+ <selectedValue>no</selectedValue>
190
+ </item><item>
191
+ <pluginName>Global variable settings</pluginName>
192
+ <pluginId>12288</pluginId>
193
+ <fullName>Global variable settings[checkbox]:Enable CGI scanning</fullName>
194
+ <preferenceName>Enable CGI scanning</preferenceName>
195
+ <preferenceType>checkbox</preferenceType>
196
+ <preferenceValues>no</preferenceValues>
197
+ <selectedValue>yes</selectedValue>
198
+ </item><item>
199
+ <pluginName>Global variable settings</pluginName>
200
+ <pluginId>12288</pluginId>
201
+ <fullName>Global variable settings[radio]:Network type</fullName>
202
+ <preferenceName>Network type</preferenceName>
203
+ <preferenceType>radio</preferenceType>
204
+ <preferenceValues>Mixed (use RFC 1918);Private LAN; Public WAN (Internet)</preferenceValues>
205
+ <selectedValue>Mixed (use RFC 1918)</selectedValue>
206
+ </item><item>
207
+ <pluginName>Global variable settings</pluginName>
208
+ <pluginId>12288</pluginId>
209
+ <fullName>Global variable settings[checkbox]:Enable experimental scripts</fullName>
210
+ <preferenceName>Enable experimental scripts</preferenceName>
211
+ <preferenceType>checkbox</preferenceType>
212
+ <preferenceValues>no</preferenceValues>
213
+ <selectedValue>no</selectedValue>
214
+ </item><item>
215
+ <pluginName>Global variable settings</pluginName>
216
+ <pluginId>12288</pluginId>
217
+ <fullName>Global variable settings[checkbox]:Thorough tests (slow)</fullName>
218
+ <preferenceName>Thorough tests (slow)</preferenceName>
219
+ <preferenceType>checkbox</preferenceType>
220
+ <preferenceValues>no</preferenceValues>
221
+ <selectedValue>no</selectedValue>
222
+ </item><item>
223
+ <pluginName>Global variable settings</pluginName>
224
+ <pluginId>12288</pluginId>
225
+ <fullName>Global variable settings[radio]:Report verbosity</fullName>
226
+ <preferenceName>Report verbosity</preferenceName>
227
+ <preferenceType>radio</preferenceType>
228
+ <preferenceValues>Normal;Quiet;Verbose</preferenceValues>
229
+ <selectedValue>Normal</selectedValue>
230
+ </item><item>
231
+ <pluginName>Global variable settings</pluginName>
232
+ <pluginId>12288</pluginId>
233
+ <fullName>Global variable settings[radio]:Report paranoia</fullName>
234
+ <preferenceName>Report paranoia</preferenceName>
235
+ <preferenceType>radio</preferenceType>
236
+ <preferenceValues>Normal;Avoid false alarms;Paranoid (more false alarms)</preferenceValues>
237
+ <selectedValue>Normal</selectedValue>
238
+ </item><item>
239
+ <pluginName>Global variable settings</pluginName>
240
+ <pluginId>12288</pluginId>
241
+ <fullName>Global variable settings[entry]:Debug level</fullName>
242
+ <preferenceName>Debug level</preferenceName>
243
+ <preferenceType>entry</preferenceType>
244
+ <preferenceValues>0</preferenceValues>
245
+ <selectedValue>0</selectedValue>
246
+ </item><item>
247
+ <pluginName>Global variable settings</pluginName>
248
+ <pluginId>12288</pluginId>
249
+ <fullName>Global variable settings[entry]:HTTP User-Agent</fullName>
250
+ <preferenceName>HTTP User-Agent</preferenceName>
251
+ <preferenceType>entry</preferenceType>
252
+ <preferenceValues>Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0)</preferenceValues>
253
+ <selectedValue>Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0)</selectedValue>
254
+ </item><item>
255
+ <pluginName>Global variable settings</pluginName>
256
+ <pluginId>12288</pluginId>
257
+ <fullName>Global variable settings[file]:SSL certificate to use :</fullName>
258
+ <preferenceName>SSL certificate to use :</preferenceName>
259
+ <preferenceType>file</preferenceType>
260
+ <preferenceValues></preferenceValues>
261
+ <selectedValue></selectedValue>
262
+ </item><item>
263
+ <pluginName>Global variable settings</pluginName>
264
+ <pluginId>12288</pluginId>
265
+ <fullName>Global variable settings[file]:SSL CA to trust :</fullName>
266
+ <preferenceName>SSL CA to trust :</preferenceName>
267
+ <preferenceType>file</preferenceType>
268
+ <preferenceValues></preferenceValues>
269
+ <selectedValue></selectedValue>
270
+ </item><item>
271
+ <pluginName>Global variable settings</pluginName>
272
+ <pluginId>12288</pluginId>
273
+ <fullName>Global variable settings[file]:SSL key to use :</fullName>
274
+ <preferenceName>SSL key to use :</preferenceName>
275
+ <preferenceType>file</preferenceType>
276
+ <preferenceValues></preferenceValues>
277
+ <selectedValue></selectedValue>
278
+ </item><item>
279
+ <pluginName>Global variable settings</pluginName>
280
+ <pluginId>12288</pluginId>
281
+ <fullName>Global variable settings[password]:SSL password for SSL key :</fullName>
282
+ <preferenceName>SSL password for SSL key :</preferenceName>
283
+ <preferenceType>password</preferenceType>
284
+ <preferenceValues></preferenceValues>
285
+ <selectedValue></selectedValue>
286
+ </item><item>
287
+ <pluginName>Ping the remote host</pluginName>
288
+ <pluginId>10180</pluginId>
289
+ <fullName>Ping the remote host[entry]:TCP ping destination port(s) :</fullName>
290
+ <preferenceName>TCP ping destination port(s) :</preferenceName>
291
+ <preferenceType>entry</preferenceType>
292
+ <preferenceValues>built-in</preferenceValues>
293
+ <selectedValue>built-in</selectedValue>
294
+ </item><item>
295
+ <pluginName>Ping the remote host</pluginName>
296
+ <pluginId>10180</pluginId>
297
+ <fullName>Ping the remote host[checkbox]:Do an ARP ping</fullName>
298
+ <preferenceName>Do an ARP ping</preferenceName>
299
+ <preferenceType>checkbox</preferenceType>
300
+ <preferenceValues>yes</preferenceValues>
301
+ <selectedValue>yes</selectedValue>
302
+ </item><item>
303
+ <pluginName>Ping the remote host</pluginName>
304
+ <pluginId>10180</pluginId>
305
+ <fullName>Ping the remote host[checkbox]:Do a TCP ping</fullName>
306
+ <preferenceName>Do a TCP ping</preferenceName>
307
+ <preferenceType>checkbox</preferenceType>
308
+ <preferenceValues>yes</preferenceValues>
309
+ <selectedValue>yes</selectedValue>
310
+ </item><item>
311
+ <pluginName>Ping the remote host</pluginName>
312
+ <pluginId>10180</pluginId>
313
+ <fullName>Ping the remote host[checkbox]:Do an ICMP ping</fullName>
314
+ <preferenceName>Do an ICMP ping</preferenceName>
315
+ <preferenceType>checkbox</preferenceType>
316
+ <preferenceValues>yes</preferenceValues>
317
+ <selectedValue>yes</selectedValue>
318
+ </item><item>
319
+ <pluginName>Ping the remote host</pluginName>
320
+ <pluginId>10180</pluginId>
321
+ <fullName>Ping the remote host[entry]:Number of retries (ICMP) :</fullName>
322
+ <preferenceName>Number of retries (ICMP) :</preferenceName>
323
+ <preferenceType>entry</preferenceType>
324
+ <preferenceValues>2</preferenceValues>
325
+ <selectedValue>2</selectedValue>
326
+ </item><item>
327
+ <pluginName>Ping the remote host</pluginName>
328
+ <pluginId>10180</pluginId>
329
+ <fullName>Ping the remote host[checkbox]:Do an applicative UDP ping (DNS,RPC...)</fullName>
330
+ <preferenceName>Do an applicative UDP ping (DNS,RPC...)</preferenceName>
331
+ <preferenceType>checkbox</preferenceType>
332
+ <preferenceValues>no</preferenceValues>
333
+ <selectedValue>no</selectedValue>
334
+ </item><item>
335
+ <pluginName>Ping the remote host</pluginName>
336
+ <pluginId>10180</pluginId>
337
+ <fullName>Ping the remote host[checkbox]:Make the dead hosts appear in the report</fullName>
338
+ <preferenceName>Make the dead hosts appear in the report</preferenceName>
339
+ <preferenceType>checkbox</preferenceType>
340
+ <preferenceValues>no</preferenceValues>
341
+ <selectedValue>no</selectedValue>
342
+ </item><item>
343
+ <pluginName>Ping the remote host</pluginName>
344
+ <pluginId>10180</pluginId>
345
+ <fullName>Ping the remote host[checkbox]:Log live hosts in the report</fullName>
346
+ <preferenceName>Log live hosts in the report</preferenceName>
347
+ <preferenceType>checkbox</preferenceType>
348
+ <preferenceValues>no</preferenceValues>
349
+ <selectedValue>no</selectedValue>
350
+ </item><item>
351
+ <pluginName>Ping the remote host</pluginName>
352
+ <pluginId>10180</pluginId>
353
+ <fullName>Ping the remote host[checkbox]:Test the local Nessus host</fullName>
354
+ <preferenceName>Test the local Nessus host</preferenceName>
355
+ <preferenceType>checkbox</preferenceType>
356
+ <preferenceValues>yes</preferenceValues>
357
+ <selectedValue>yes</selectedValue>
358
+ </item><item>
359
+ <pluginName>Ping the remote host</pluginName>
360
+ <pluginId>10180</pluginId>
361
+ <fullName>Ping the remote host[checkbox]:Fast network discovery</fullName>
362
+ <preferenceName>Fast network discovery</preferenceName>
363
+ <preferenceType>checkbox</preferenceType>
364
+ <preferenceValues>no</preferenceValues>
365
+ <selectedValue>no</selectedValue>
366
+ </item><item>
367
+ <pluginName>Oracle settings</pluginName>
368
+ <pluginId>22076</pluginId>
369
+ <fullName>Oracle settings[entry]:Oracle SID :</fullName>
370
+ <preferenceName>Oracle SID :</preferenceName>
371
+ <preferenceType>entry</preferenceType>
372
+ <preferenceValues></preferenceValues>
373
+ <selectedValue></selectedValue>
374
+ </item><item>
375
+ <pluginName>Oracle settings</pluginName>
376
+ <pluginId>22076</pluginId>
377
+ <fullName>Oracle settings[checkbox]:Test default accounts (slow)</fullName>
378
+ <preferenceName>Test default accounts (slow)</preferenceName>
379
+ <preferenceType>checkbox</preferenceType>
380
+ <preferenceValues>no</preferenceValues>
381
+ <selectedValue>no</selectedValue>
382
+ </item><item>
383
+ <pluginName>Web Application Tests Settings</pluginName>
384
+ <pluginId>39471</pluginId>
385
+ <fullName>Web Application Tests Settings[checkbox]:Enable web applications tests</fullName>
386
+ <preferenceName>Enable web applications tests</preferenceName>
387
+ <preferenceType>checkbox</preferenceType>
388
+ <preferenceValues>no</preferenceValues>
389
+ <selectedValue>yes</selectedValue>
390
+ </item><item>
391
+ <pluginName>Web Application Tests Settings</pluginName>
392
+ <pluginId>39471</pluginId>
393
+ <fullName>Web Application Tests Settings[entry]:Maximum run time (min) :</fullName>
394
+ <preferenceName>Maximum run time (min) :</preferenceName>
395
+ <preferenceType>entry</preferenceType>
396
+ <preferenceValues>60</preferenceValues>
397
+ <selectedValue>60</selectedValue>
398
+ </item><item>
399
+ <pluginName>Web Application Tests Settings</pluginName>
400
+ <pluginId>39471</pluginId>
401
+ <fullName>Web Application Tests Settings[checkbox]:Send POST requests</fullName>
402
+ <preferenceName>Send POST requests</preferenceName>
403
+ <preferenceType>checkbox</preferenceType>
404
+ <preferenceValues>no</preferenceValues>
405
+ <selectedValue>yes</selectedValue>
406
+ </item><item>
407
+ <pluginName>Web Application Tests Settings</pluginName>
408
+ <pluginId>39471</pluginId>
409
+ <fullName>Web Application Tests Settings[radio]:Combinations of arguments values</fullName>
410
+ <preferenceName>Combinations of arguments values</preferenceName>
411
+ <preferenceType>radio</preferenceType>
412
+ <preferenceValues>one value;some pairs;all pairs (slower but efficient);some combinations;all combinations (extremely slow)</preferenceValues>
413
+ <selectedValue>one value</selectedValue>
414
+ </item><item>
415
+ <pluginName>Web Application Tests Settings</pluginName>
416
+ <pluginId>39471</pluginId>
417
+ <fullName>Web Application Tests Settings[checkbox]:HTTP Parameter Pollution</fullName>
418
+ <preferenceName>HTTP Parameter Pollution</preferenceName>
419
+ <preferenceType>checkbox</preferenceType>
420
+ <preferenceValues>no</preferenceValues>
421
+ <selectedValue>yes</selectedValue>
422
+ </item><item>
423
+ <pluginName>Web Application Tests Settings</pluginName>
424
+ <pluginId>39471</pluginId>
425
+ <fullName>Web Application Tests Settings[radio]:Stop at first flaw</fullName>
426
+ <preferenceName>Stop at first flaw</preferenceName>
427
+ <preferenceType>radio</preferenceType>
428
+ <preferenceValues>per port (quicker);per CGI;look for all flaws (slower)</preferenceValues>
429
+ <selectedValue>per port (quicker)</selectedValue>
430
+ </item><item>
431
+ <pluginName>Web Application Tests Settings</pluginName>
432
+ <pluginId>39471</pluginId>
433
+ <fullName>Web Application Tests Settings[checkbox]:Test embedded web servers</fullName>
434
+ <preferenceName>Test embedded web servers</preferenceName>
435
+ <preferenceType>checkbox</preferenceType>
436
+ <preferenceValues>no</preferenceValues>
437
+ <selectedValue>yes</selectedValue>
438
+ </item><item>
439
+ <pluginName>Web Application Tests Settings</pluginName>
440
+ <pluginId>39471</pluginId>
441
+ <fullName>Web Application Tests Settings[entry]:URL for Remote File Inclusion :</fullName>
442
+ <preferenceName>URL for Remote File Inclusion :</preferenceName>
443
+ <preferenceType>entry</preferenceType>
444
+ <preferenceValues>http://rfi.nessus.org/rfi.txt</preferenceValues>
445
+ <selectedValue>http://rfi.nessus.org/rfi.txt</selectedValue>
446
+ </item><item>
447
+ <pluginName>SSH settings</pluginName>
448
+ <pluginId>14273</pluginId>
449
+ <fullName>SSH settings[entry]:SSH user name :</fullName>
450
+ <preferenceName>SSH user name :</preferenceName>
451
+ <preferenceType>entry</preferenceType>
452
+ <preferenceValues>root</preferenceValues>
453
+ <selectedValue>root</selectedValue>
454
+ </item><item>
455
+ <pluginName>SSH settings</pluginName>
456
+ <pluginId>14273</pluginId>
457
+ <fullName>SSH settings[password]:SSH password (unsafe!) :</fullName>
458
+ <preferenceName>SSH password (unsafe!) :</preferenceName>
459
+ <preferenceType>password</preferenceType>
460
+ <preferenceValues></preferenceValues>
461
+ <selectedValue></selectedValue>
462
+ </item><item>
463
+ <pluginName>SSH settings</pluginName>
464
+ <pluginId>14273</pluginId>
465
+ <fullName>SSH settings[file]:SSH public key to use :</fullName>
466
+ <preferenceName>SSH public key to use :</preferenceName>
467
+ <preferenceType>file</preferenceType>
468
+ <preferenceValues></preferenceValues>
469
+ <selectedValue></selectedValue>
470
+ </item><item>
471
+ <pluginName>SSH settings</pluginName>
472
+ <pluginId>14273</pluginId>
473
+ <fullName>SSH settings[file]:SSH private key to use :</fullName>
474
+ <preferenceName>SSH private key to use :</preferenceName>
475
+ <preferenceType>file</preferenceType>
476
+ <preferenceValues></preferenceValues>
477
+ <selectedValue></selectedValue>
478
+ </item><item>
479
+ <pluginName>SSH settings</pluginName>
480
+ <pluginId>14273</pluginId>
481
+ <fullName>SSH settings[password]:Passphrase for SSH key :</fullName>
482
+ <preferenceName>Passphrase for SSH key :</preferenceName>
483
+ <preferenceType>password</preferenceType>
484
+ <preferenceValues></preferenceValues>
485
+ <selectedValue></selectedValue>
486
+ </item><item>
487
+ <pluginName>SSH settings</pluginName>
488
+ <pluginId>14273</pluginId>
489
+ <fullName>SSH settings[radio]:Elevate privileges with :</fullName>
490
+ <preferenceName>Elevate privileges with :</preferenceName>
491
+ <preferenceType>radio</preferenceType>
492
+ <preferenceValues>Nothing;sudo;su</preferenceValues>
493
+ <selectedValue>Nothing;sudo;su</selectedValue>
494
+ </item><item>
495
+ <pluginName>SSH settings</pluginName>
496
+ <pluginId>14273</pluginId>
497
+ <fullName>SSH settings[password]:su/sudo password :</fullName>
498
+ <preferenceName>su/sudo password :</preferenceName>
499
+ <preferenceType>password</preferenceType>
500
+ <preferenceValues></preferenceValues>
501
+ <selectedValue></selectedValue>
502
+ </item><item>
503
+ <pluginName>SSH settings</pluginName>
504
+ <pluginId>14273</pluginId>
505
+ <fullName>SSH settings[file]:SSH known_hosts file :</fullName>
506
+ <preferenceName>SSH known_hosts file :</preferenceName>
507
+ <preferenceType>file</preferenceType>
508
+ <preferenceValues></preferenceValues>
509
+ <selectedValue></selectedValue>
510
+ </item><item>
511
+ <pluginName>SSH settings</pluginName>
512
+ <pluginId>14273</pluginId>
513
+ <fullName>SSH settings[entry]:Preferred SSH port :</fullName>
514
+ <preferenceName>Preferred SSH port :</preferenceName>
515
+ <preferenceType>entry</preferenceType>
516
+ <preferenceValues>22</preferenceValues>
517
+ <selectedValue>22</selectedValue>
518
+ </item><item>
519
+ <pluginName>SSH settings</pluginName>
520
+ <pluginId>14273</pluginId>
521
+ <fullName>SSH settings[entry]:Client version :</fullName>
522
+ <preferenceName>Client version :</preferenceName>
523
+ <preferenceType>entry</preferenceType>
524
+ <preferenceValues>OpenSSH_5.0</preferenceValues>
525
+ <selectedValue>OpenSSH_5.0</selectedValue>
526
+ </item><item>
527
+ <pluginName>Kerberos configuration</pluginName>
528
+ <pluginId>17351</pluginId>
529
+ <fullName>Kerberos configuration[entry]:Kerberos Key Distribution Center (KDC) :</fullName>
530
+ <preferenceName>Kerberos Key Distribution Center (KDC) :</preferenceName>
531
+ <preferenceType>entry</preferenceType>
532
+ <preferenceValues></preferenceValues>
533
+ <selectedValue></selectedValue>
534
+ </item><item>
535
+ <pluginName>Kerberos configuration</pluginName>
536
+ <pluginId>17351</pluginId>
537
+ <fullName>Kerberos configuration[entry]:Kerberos KDC Port :</fullName>
538
+ <preferenceName>Kerberos KDC Port :</preferenceName>
539
+ <preferenceType>entry</preferenceType>
540
+ <preferenceValues>88</preferenceValues>
541
+ <selectedValue>88</selectedValue>
542
+ </item><item>
543
+ <pluginName>Kerberos configuration</pluginName>
544
+ <pluginId>17351</pluginId>
545
+ <fullName>Kerberos configuration[radio]:Kerberos KDC Transport :</fullName>
546
+ <preferenceName>Kerberos KDC Transport :</preferenceName>
547
+ <preferenceType>radio</preferenceType>
548
+ <preferenceValues>udp;tcp</preferenceValues>
549
+ <selectedValue>udp;tcp</selectedValue>
550
+ </item><item>
551
+ <pluginName>Kerberos configuration</pluginName>
552
+ <pluginId>17351</pluginId>
553
+ <fullName>Kerberos configuration[entry]:Kerberos Realm (SSH only) :</fullName>
554
+ <preferenceName>Kerberos Realm (SSH only) :</preferenceName>
555
+ <preferenceType>entry</preferenceType>
556
+ <preferenceValues></preferenceValues>
557
+ <selectedValue></selectedValue>
558
+ </item><item>
559
+ <pluginName>Database settings</pluginName>
560
+ <pluginId>33815</pluginId>
561
+ <fullName>Database settings[entry]:Login :</fullName>
562
+ <preferenceName>Login :</preferenceName>
563
+ <preferenceType>entry</preferenceType>
564
+ <preferenceValues></preferenceValues>
565
+ <selectedValue></selectedValue>
566
+ </item><item>
567
+ <pluginName>Database settings</pluginName>
568
+ <pluginId>33815</pluginId>
569
+ <fullName>Database settings[password]:Password :</fullName>
570
+ <preferenceName>Password :</preferenceName>
571
+ <preferenceType>password</preferenceType>
572
+ <preferenceValues></preferenceValues>
573
+ <selectedValue></selectedValue>
574
+ </item><item>
575
+ <pluginName>Database settings</pluginName>
576
+ <pluginId>33815</pluginId>
577
+ <fullName>Database settings[radio]:DB Type :</fullName>
578
+ <preferenceName>DB Type :</preferenceName>
579
+ <preferenceType>radio</preferenceType>
580
+ <preferenceValues>Oracle;SQL Server;MySQL;DB2;Informix/DRDA;PostgreSQL</preferenceValues>
581
+ <selectedValue>Oracle</selectedValue>
582
+ </item><item>
583
+ <pluginName>Database settings</pluginName>
584
+ <pluginId>33815</pluginId>
585
+ <fullName>Database settings[entry]:Database SID :</fullName>
586
+ <preferenceName>Database SID :</preferenceName>
587
+ <preferenceType>entry</preferenceType>
588
+ <preferenceValues></preferenceValues>
589
+ <selectedValue></selectedValue>
590
+ </item><item>
591
+ <pluginName>Database settings</pluginName>
592
+ <pluginId>33815</pluginId>
593
+ <fullName>Database settings[entry]:Database port to use :</fullName>
594
+ <preferenceName>Database port to use :</preferenceName>
595
+ <preferenceType>entry</preferenceType>
596
+ <preferenceValues></preferenceValues>
597
+ <selectedValue></selectedValue>
598
+ </item><item>
599
+ <pluginName>Database settings</pluginName>
600
+ <pluginId>33815</pluginId>
601
+ <fullName>Database settings[radio]:Oracle auth type:</fullName>
602
+ <preferenceName>Oracle auth type:</preferenceName>
603
+ <preferenceType>radio</preferenceType>
604
+ <preferenceValues>NORMAL;SYSOPER;SYSDBA</preferenceValues>
605
+ <selectedValue>NORMAL</selectedValue>
606
+ </item><item>
607
+ <pluginName>Database settings</pluginName>
608
+ <pluginId>33815</pluginId>
609
+ <fullName>Database settings[radio]:SQL Server auth type:</fullName>
610
+ <preferenceName>SQL Server auth type:</preferenceName>
611
+ <preferenceType>radio</preferenceType>
612
+ <preferenceValues>Windows;SQL</preferenceValues>
613
+ <selectedValue>Windows</selectedValue>
614
+ </item><item>
615
+ <pluginName>SNMP settings</pluginName>
616
+ <pluginId>19762</pluginId>
617
+ <fullName>SNMP settings[entry]:Community name :</fullName>
618
+ <preferenceName>Community name :</preferenceName>
619
+ <preferenceType>entry</preferenceType>
620
+ <preferenceValues>public</preferenceValues>
621
+ <selectedValue>public</selectedValue>
622
+ </item><item>
623
+ <pluginName>SNMP settings</pluginName>
624
+ <pluginId>19762</pluginId>
625
+ <fullName>SNMP settings[entry]:UDP port :</fullName>
626
+ <preferenceName>UDP port :</preferenceName>
627
+ <preferenceType>entry</preferenceType>
628
+ <preferenceValues>161</preferenceValues>
629
+ <selectedValue>161</selectedValue>
630
+ </item><item>
631
+ <pluginName>SNMP settings</pluginName>
632
+ <pluginId>19762</pluginId>
633
+ <fullName>SNMP settings[entry]:SNMPv3 user name :</fullName>
634
+ <preferenceName>SNMPv3 user name :</preferenceName>
635
+ <preferenceType>entry</preferenceType>
636
+ <preferenceValues></preferenceValues>
637
+ <selectedValue></selectedValue>
638
+ </item><item>
639
+ <pluginName>SNMP settings</pluginName>
640
+ <pluginId>19762</pluginId>
641
+ <fullName>SNMP settings[password]:SNMPv3 authentication password :</fullName>
642
+ <preferenceName>SNMPv3 authentication password :</preferenceName>
643
+ <preferenceType>password</preferenceType>
644
+ <preferenceValues></preferenceValues>
645
+ <selectedValue></selectedValue>
646
+ </item><item>
647
+ <pluginName>SNMP settings</pluginName>
648
+ <pluginId>19762</pluginId>
649
+ <fullName>SNMP settings[radio]:SNMPv3 authentication algorithm :</fullName>
650
+ <preferenceName>SNMPv3 authentication algorithm :</preferenceName>
651
+ <preferenceType>radio</preferenceType>
652
+ <preferenceValues>MD5;SHA1</preferenceValues>
653
+ <selectedValue>MD5;SHA1</selectedValue>
654
+ </item><item>
655
+ <pluginName>SNMP settings</pluginName>
656
+ <pluginId>19762</pluginId>
657
+ <fullName>SNMP settings[password]:SNMPv3 privacy password :</fullName>
658
+ <preferenceName>SNMPv3 privacy password :</preferenceName>
659
+ <preferenceType>password</preferenceType>
660
+ <preferenceValues></preferenceValues>
661
+ <selectedValue></selectedValue>
662
+ </item><item>
663
+ <pluginName>SNMP settings</pluginName>
664
+ <pluginId>19762</pluginId>
665
+ <fullName>SNMP settings[radio]:SNMPv3 privacy algorithm :</fullName>
666
+ <preferenceName>SNMPv3 privacy algorithm :</preferenceName>
667
+ <preferenceType>radio</preferenceType>
668
+ <preferenceValues>DES</preferenceValues>
669
+ <selectedValue>DES</selectedValue>
670
+ </item><item>
671
+ <pluginName>Login configurations</pluginName>
672
+ <pluginId>10870</pluginId>
673
+ <fullName>Login configurations[entry]:HTTP account :</fullName>
674
+ <preferenceName>HTTP account :</preferenceName>
675
+ <preferenceType>entry</preferenceType>
676
+ <preferenceValues></preferenceValues>
677
+ <selectedValue></selectedValue>
678
+ </item><item>
679
+ <pluginName>Login configurations</pluginName>
680
+ <pluginId>10870</pluginId>
681
+ <fullName>Login configurations[password]:HTTP password (sent in clear) :</fullName>
682
+ <preferenceName>HTTP password (sent in clear) :</preferenceName>
683
+ <preferenceType>password</preferenceType>
684
+ <preferenceValues></preferenceValues>
685
+ <selectedValue></selectedValue>
686
+ </item><item>
687
+ <pluginName>Login configurations</pluginName>
688
+ <pluginId>10870</pluginId>
689
+ <fullName>Login configurations[entry]:NNTP account :</fullName>
690
+ <preferenceName>NNTP account :</preferenceName>
691
+ <preferenceType>entry</preferenceType>
692
+ <preferenceValues></preferenceValues>
693
+ <selectedValue></selectedValue>
694
+ </item><item>
695
+ <pluginName>Login configurations</pluginName>
696
+ <pluginId>10870</pluginId>
697
+ <fullName>Login configurations[password]:NNTP password (sent in clear) :</fullName>
698
+ <preferenceName>NNTP password (sent in clear) :</preferenceName>
699
+ <preferenceType>password</preferenceType>
700
+ <preferenceValues></preferenceValues>
701
+ <selectedValue></selectedValue>
702
+ </item><item>
703
+ <pluginName>Login configurations</pluginName>
704
+ <pluginId>10870</pluginId>
705
+ <fullName>Login configurations[entry]:FTP account :</fullName>
706
+ <preferenceName>FTP account :</preferenceName>
707
+ <preferenceType>entry</preferenceType>
708
+ <preferenceValues>anonymous</preferenceValues>
709
+ <selectedValue>anonymous</selectedValue>
710
+ </item><item>
711
+ <pluginName>Login configurations</pluginName>
712
+ <pluginId>10870</pluginId>
713
+ <fullName>Login configurations[password]:FTP password (sent in clear) :</fullName>
714
+ <preferenceName>FTP password (sent in clear) :</preferenceName>
715
+ <preferenceType>password</preferenceType>
716
+ <preferenceValues>nessus@nessus.org</preferenceValues>
717
+ <selectedValue>*********</selectedValue>
718
+ </item><item>
719
+ <pluginName>Login configurations</pluginName>
720
+ <pluginId>10870</pluginId>
721
+ <fullName>Login configurations[entry]:FTP writeable directory :</fullName>
722
+ <preferenceName>FTP writeable directory :</preferenceName>
723
+ <preferenceType>entry</preferenceType>
724
+ <preferenceValues>/incoming</preferenceValues>
725
+ <selectedValue>/incoming</selectedValue>
726
+ </item><item>
727
+ <pluginName>Login configurations</pluginName>
728
+ <pluginId>10870</pluginId>
729
+ <fullName>Login configurations[entry]:POP2 account :</fullName>
730
+ <preferenceName>POP2 account :</preferenceName>
731
+ <preferenceType>entry</preferenceType>
732
+ <preferenceValues></preferenceValues>
733
+ <selectedValue></selectedValue>
734
+ </item><item>
735
+ <pluginName>Login configurations</pluginName>
736
+ <pluginId>10870</pluginId>
737
+ <fullName>Login configurations[password]:POP2 password (sent in clear) :</fullName>
738
+ <preferenceName>POP2 password (sent in clear) :</preferenceName>
739
+ <preferenceType>password</preferenceType>
740
+ <preferenceValues></preferenceValues>
741
+ <selectedValue></selectedValue>
742
+ </item><item>
743
+ <pluginName>Login configurations</pluginName>
744
+ <pluginId>10870</pluginId>
745
+ <fullName>Login configurations[entry]:POP3 account :</fullName>
746
+ <preferenceName>POP3 account :</preferenceName>
747
+ <preferenceType>entry</preferenceType>
748
+ <preferenceValues></preferenceValues>
749
+ <selectedValue></selectedValue>
750
+ </item><item>
751
+ <pluginName>Login configurations</pluginName>
752
+ <pluginId>10870</pluginId>
753
+ <fullName>Login configurations[password]:POP3 password (sent in clear) :</fullName>
754
+ <preferenceName>POP3 password (sent in clear) :</preferenceName>
755
+ <preferenceType>password</preferenceType>
756
+ <preferenceValues></preferenceValues>
757
+ <selectedValue></selectedValue>
758
+ </item><item>
759
+ <pluginName>Login configurations</pluginName>
760
+ <pluginId>10870</pluginId>
761
+ <fullName>Login configurations[entry]:IMAP account :</fullName>
762
+ <preferenceName>IMAP account :</preferenceName>
763
+ <preferenceType>entry</preferenceType>
764
+ <preferenceValues></preferenceValues>
765
+ <selectedValue></selectedValue>
766
+ </item><item>
767
+ <pluginName>Login configurations</pluginName>
768
+ <pluginId>10870</pluginId>
769
+ <fullName>Login configurations[password]:IMAP password (sent in clear) :</fullName>
770
+ <preferenceName>IMAP password (sent in clear) :</preferenceName>
771
+ <preferenceType>password</preferenceType>
772
+ <preferenceValues></preferenceValues>
773
+ <selectedValue></selectedValue>
774
+ </item><item>
775
+ <pluginName>Login configurations</pluginName>
776
+ <pluginId>10870</pluginId>
777
+ <fullName>Login configurations[entry]:SMB account :</fullName>
778
+ <preferenceName>SMB account :</preferenceName>
779
+ <preferenceType>entry</preferenceType>
780
+ <preferenceValues></preferenceValues>
781
+ <selectedValue></selectedValue>
782
+ </item><item>
783
+ <pluginName>Login configurations</pluginName>
784
+ <pluginId>10870</pluginId>
785
+ <fullName>Login configurations[password]:SMB password :</fullName>
786
+ <preferenceName>SMB password :</preferenceName>
787
+ <preferenceType>password</preferenceType>
788
+ <preferenceValues></preferenceValues>
789
+ <selectedValue></selectedValue>
790
+ </item><item>
791
+ <pluginName>Login configurations</pluginName>
792
+ <pluginId>10870</pluginId>
793
+ <fullName>Login configurations[entry]:SMB domain (optional) :</fullName>
794
+ <preferenceName>SMB domain (optional) :</preferenceName>
795
+ <preferenceType>entry</preferenceType>
796
+ <preferenceValues></preferenceValues>
797
+ <selectedValue></selectedValue>
798
+ </item><item>
799
+ <pluginName>Login configurations</pluginName>
800
+ <pluginId>10870</pluginId>
801
+ <fullName>Login configurations[radio]:SMB password type :</fullName>
802
+ <preferenceName>SMB password type :</preferenceName>
803
+ <preferenceType>radio</preferenceType>
804
+ <preferenceValues>Password;LM Hash;NTLM Hash</preferenceValues>
805
+ <selectedValue>Password</selectedValue>
806
+ </item><item>
807
+ <pluginName>Login configurations</pluginName>
808
+ <pluginId>10870</pluginId>
809
+ <fullName>Login configurations[entry]:Additional SMB account (1) :</fullName>
810
+ <preferenceName>Additional SMB account (1) :</preferenceName>
811
+ <preferenceType>entry</preferenceType>
812
+ <preferenceValues></preferenceValues>
813
+ <selectedValue></selectedValue>
814
+ </item><item>
815
+ <pluginName>Login configurations</pluginName>
816
+ <pluginId>10870</pluginId>
817
+ <fullName>Login configurations[password]:Additional SMB password (1) :</fullName>
818
+ <preferenceName>Additional SMB password (1) :</preferenceName>
819
+ <preferenceType>password</preferenceType>
820
+ <preferenceValues></preferenceValues>
821
+ <selectedValue></selectedValue>
822
+ </item><item>
823
+ <pluginName>Login configurations</pluginName>
824
+ <pluginId>10870</pluginId>
825
+ <fullName>Login configurations[entry]:Additional SMB domain (optional) (1) :</fullName>
826
+ <preferenceName>Additional SMB domain (optional) (1) :</preferenceName>
827
+ <preferenceType>entry</preferenceType>
828
+ <preferenceValues></preferenceValues>
829
+ <selectedValue></selectedValue>
830
+ </item><item>
831
+ <pluginName>Login configurations</pluginName>
832
+ <pluginId>10870</pluginId>
833
+ <fullName>Login configurations[entry]:Additional SMB account (2) :</fullName>
834
+ <preferenceName>Additional SMB account (2) :</preferenceName>
835
+ <preferenceType>entry</preferenceType>
836
+ <preferenceValues></preferenceValues>
837
+ <selectedValue></selectedValue>
838
+ </item><item>
839
+ <pluginName>Login configurations</pluginName>
840
+ <pluginId>10870</pluginId>
841
+ <fullName>Login configurations[password]:Additional SMB password (2) :</fullName>
842
+ <preferenceName>Additional SMB password (2) :</preferenceName>
843
+ <preferenceType>password</preferenceType>
844
+ <preferenceValues></preferenceValues>
845
+ <selectedValue></selectedValue>
846
+ </item><item>
847
+ <pluginName>Login configurations</pluginName>
848
+ <pluginId>10870</pluginId>
849
+ <fullName>Login configurations[entry]:Additional SMB domain (optional) (2) :</fullName>
850
+ <preferenceName>Additional SMB domain (optional) (2) :</preferenceName>
851
+ <preferenceType>entry</preferenceType>
852
+ <preferenceValues></preferenceValues>
853
+ <selectedValue></selectedValue>
854
+ </item><item>
855
+ <pluginName>Login configurations</pluginName>
856
+ <pluginId>10870</pluginId>
857
+ <fullName>Login configurations[entry]:Additional SMB account (3) :</fullName>
858
+ <preferenceName>Additional SMB account (3) :</preferenceName>
859
+ <preferenceType>entry</preferenceType>
860
+ <preferenceValues></preferenceValues>
861
+ <selectedValue></selectedValue>
862
+ </item><item>
863
+ <pluginName>Login configurations</pluginName>
864
+ <pluginId>10870</pluginId>
865
+ <fullName>Login configurations[password]:Additional SMB password (3) :</fullName>
866
+ <preferenceName>Additional SMB password (3) :</preferenceName>
867
+ <preferenceType>password</preferenceType>
868
+ <preferenceValues></preferenceValues>
869
+ <selectedValue></selectedValue>
870
+ </item><item>
871
+ <pluginName>Login configurations</pluginName>
872
+ <pluginId>10870</pluginId>
873
+ <fullName>Login configurations[entry]:Additional SMB domain (optional) (3) :</fullName>
874
+ <preferenceName>Additional SMB domain (optional) (3) :</preferenceName>
875
+ <preferenceType>entry</preferenceType>
876
+ <preferenceValues></preferenceValues>
877
+ <selectedValue></selectedValue>
878
+ </item><item>
879
+ <pluginName>Login configurations</pluginName>
880
+ <pluginId>10870</pluginId>
881
+ <fullName>Login configurations[checkbox]:Never send SMB credentials in clear text</fullName>
882
+ <preferenceName>Never send SMB credentials in clear text</preferenceName>
883
+ <preferenceType>checkbox</preferenceType>
884
+ <preferenceValues>yes</preferenceValues>
885
+ <selectedValue>yes</selectedValue>
886
+ </item><item>
887
+ <pluginName>Login configurations</pluginName>
888
+ <pluginId>10870</pluginId>
889
+ <fullName>Login configurations[checkbox]:Only use NTLMv2</fullName>
890
+ <preferenceName>Only use NTLMv2</preferenceName>
891
+ <preferenceType>checkbox</preferenceType>
892
+ <preferenceValues>no</preferenceValues>
893
+ <selectedValue>no</selectedValue>
894
+ </item><item>
895
+ <pluginName>SMTP settings</pluginName>
896
+ <pluginId>11038</pluginId>
897
+ <fullName>SMTP settings[entry]:Third party domain :</fullName>
898
+ <preferenceName>Third party domain :</preferenceName>
899
+ <preferenceType>entry</preferenceType>
900
+ <preferenceValues>example.com</preferenceValues>
901
+ <selectedValue>example.com</selectedValue>
902
+ </item><item>
903
+ <pluginName>SMTP settings</pluginName>
904
+ <pluginId>11038</pluginId>
905
+ <fullName>SMTP settings[entry]:From address :</fullName>
906
+ <preferenceName>From address :</preferenceName>
907
+ <preferenceType>entry</preferenceType>
908
+ <preferenceValues>nobody@example.com</preferenceValues>
909
+ <selectedValue>nobody@example.com</selectedValue>
910
+ </item><item>
911
+ <pluginName>SMTP settings</pluginName>
912
+ <pluginId>11038</pluginId>
913
+ <fullName>SMTP settings[entry]:To address :</fullName>
914
+ <preferenceName>To address :</preferenceName>
915
+ <preferenceType>entry</preferenceType>
916
+ <preferenceValues>postmaster@[AUTO_REPLACED_IP]</preferenceValues>
917
+ <selectedValue>postmaster@[AUTO_REPLACED_IP]</selectedValue>
918
+ </item><item>
919
+ <pluginName>Nessus TCP scanner</pluginName>
920
+ <pluginId>10335</pluginId>
921
+ <fullName>Nessus TCP scanner[radio]:Firewall detection :</fullName>
922
+ <preferenceName>Firewall detection :</preferenceName>
923
+ <preferenceType>radio</preferenceType>
924
+ <preferenceValues>Automatic (normal);Disabled (softer);Do not detect RST rate limitation (soft);Ignore closed ports (aggressive)</preferenceValues>
925
+ <selectedValue>Automatic (normal);Disabled (softer);Do not detect RST rate limitation (soft);Ignore closed ports (aggressive)</selectedValue>
926
+ </item><item>
927
+ <pluginName>HTTP login page</pluginName>
928
+ <pluginId>11149</pluginId>
929
+ <fullName>HTTP login page[entry]:Login page :</fullName>
930
+ <preferenceName>Login page :</preferenceName>
931
+ <preferenceType>entry</preferenceType>
932
+ <preferenceValues>/</preferenceValues>
933
+ <selectedValue>/</selectedValue>
934
+ </item><item>
935
+ <pluginName>HTTP login page</pluginName>
936
+ <pluginId>11149</pluginId>
937
+ <fullName>HTTP login page[entry]:Login form :</fullName>
938
+ <preferenceName>Login form :</preferenceName>
939
+ <preferenceType>entry</preferenceType>
940
+ <preferenceValues></preferenceValues>
941
+ <selectedValue></selectedValue>
942
+ </item><item>
943
+ <pluginName>HTTP login page</pluginName>
944
+ <pluginId>11149</pluginId>
945
+ <fullName>HTTP login page[entry]:Login form fields :</fullName>
946
+ <preferenceName>Login form fields :</preferenceName>
947
+ <preferenceType>entry</preferenceType>
948
+ <preferenceValues>user=%USER%&amp;pass=%PASS%</preferenceValues>
949
+ <selectedValue>user=%USER%&amp;pass=%PASS%</selectedValue>
950
+ </item><item>
951
+ <pluginName>HTTP login page</pluginName>
952
+ <pluginId>11149</pluginId>
953
+ <fullName>HTTP login page[entry]:Re-authenticate delay (seconds) :</fullName>
954
+ <preferenceName>Re-authenticate delay (seconds) :</preferenceName>
955
+ <preferenceType>entry</preferenceType>
956
+ <preferenceValues></preferenceValues>
957
+ <selectedValue></selectedValue>
958
+ </item><item>
959
+ <pluginName>HTTP login page</pluginName>
960
+ <pluginId>11149</pluginId>
961
+ <fullName>HTTP login page[entry]:Check authentication on page :</fullName>
962
+ <preferenceName>Check authentication on page :</preferenceName>
963
+ <preferenceType>entry</preferenceType>
964
+ <preferenceValues></preferenceValues>
965
+ <selectedValue></selectedValue>
966
+ </item><item>
967
+ <pluginName>HTTP login page</pluginName>
968
+ <pluginId>11149</pluginId>
969
+ <fullName>HTTP login page[entry]:Follow 30x redirections (# of levels) :</fullName>
970
+ <preferenceName>Follow 30x redirections (# of levels) :</preferenceName>
971
+ <preferenceType>entry</preferenceType>
972
+ <preferenceValues>2</preferenceValues>
973
+ <selectedValue>2</selectedValue>
974
+ </item><item>
975
+ <pluginName>HTTP login page</pluginName>
976
+ <pluginId>11149</pluginId>
977
+ <fullName>HTTP login page[entry]:Authenticated regex :</fullName>
978
+ <preferenceName>Authenticated regex :</preferenceName>
979
+ <preferenceType>entry</preferenceType>
980
+ <preferenceValues></preferenceValues>
981
+ <selectedValue></selectedValue>
982
+ </item><item>
983
+ <pluginName>HTTP login page</pluginName>
984
+ <pluginId>11149</pluginId>
985
+ <fullName>HTTP login page[checkbox]:Invert test (disconnected if regex matches)</fullName>
986
+ <preferenceName>Invert test (disconnected if regex matches)</preferenceName>
987
+ <preferenceType>checkbox</preferenceType>
988
+ <preferenceValues>no</preferenceValues>
989
+ <selectedValue>no</selectedValue>
990
+ </item><item>
991
+ <pluginName>HTTP login page</pluginName>
992
+ <pluginId>11149</pluginId>
993
+ <fullName>HTTP login page[checkbox]:Match regex on HTTP headers</fullName>
994
+ <preferenceName>Match regex on HTTP headers</preferenceName>
995
+ <preferenceType>checkbox</preferenceType>
996
+ <preferenceValues>no</preferenceValues>
997
+ <selectedValue>no</selectedValue>
998
+ </item><item>
999
+ <pluginName>HTTP login page</pluginName>
1000
+ <pluginId>11149</pluginId>
1001
+ <fullName>HTTP login page[checkbox]:Case insensitive regex</fullName>
1002
+ <preferenceName>Case insensitive regex</preferenceName>
1003
+ <preferenceType>checkbox</preferenceType>
1004
+ <preferenceValues>no</preferenceValues>
1005
+ <selectedValue>no</selectedValue>
1006
+ </item><item>
1007
+ <pluginName>Web mirroring</pluginName>
1008
+ <pluginId>10662</pluginId>
1009
+ <fullName>Web mirroring[entry]:Number of pages to mirror :</fullName>
1010
+ <preferenceName>Number of pages to mirror :</preferenceName>
1011
+ <preferenceType>entry</preferenceType>
1012
+ <preferenceValues>1000</preferenceValues>
1013
+ <selectedValue>1000</selectedValue>
1014
+ </item><item>
1015
+ <pluginName>Web mirroring</pluginName>
1016
+ <pluginId>10662</pluginId>
1017
+ <fullName>Web mirroring[entry]:Maximum depth :</fullName>
1018
+ <preferenceName>Maximum depth :</preferenceName>
1019
+ <preferenceType>entry</preferenceType>
1020
+ <preferenceValues>6</preferenceValues>
1021
+ <selectedValue>6</selectedValue>
1022
+ </item><item>
1023
+ <pluginName>Web mirroring</pluginName>
1024
+ <pluginId>10662</pluginId>
1025
+ <fullName>Web mirroring[entry]:Start page :</fullName>
1026
+ <preferenceName>Start page :</preferenceName>
1027
+ <preferenceType>entry</preferenceType>
1028
+ <preferenceValues>/</preferenceValues>
1029
+ <selectedValue>/</selectedValue>
1030
+ </item><item>
1031
+ <pluginName>Web mirroring</pluginName>
1032
+ <pluginId>10662</pluginId>
1033
+ <fullName>Web mirroring[entry]:Excluded items regex :</fullName>
1034
+ <preferenceName>Excluded items regex :</preferenceName>
1035
+ <preferenceType>entry</preferenceType>
1036
+ <preferenceValues>/server_privileges\.php</preferenceValues>
1037
+ <selectedValue>/server_privileges\.php</selectedValue>
1038
+ </item><item>
1039
+ <pluginName>Web mirroring</pluginName>
1040
+ <pluginId>10662</pluginId>
1041
+ <fullName>Web mirroring[checkbox]:Follow dynamic pages :</fullName>
1042
+ <preferenceName>Follow dynamic pages :</preferenceName>
1043
+ <preferenceType>checkbox</preferenceType>
1044
+ <preferenceValues>no</preferenceValues>
1045
+ <selectedValue>yes</selectedValue>
1046
+ </item><item>
1047
+ <pluginName>Service Detection</pluginName>
1048
+ <pluginId>22964</pluginId>
1049
+ <fullName>Service Detection[radio]:Test SSL based services</fullName>
1050
+ <preferenceName>Test SSL based services</preferenceName>
1051
+ <preferenceType>radio</preferenceType>
1052
+ <preferenceValues>Known SSL ports;All;None</preferenceValues>
1053
+ <selectedValue>Known SSL ports</selectedValue>
1054
+ </item><item>
1055
+ <pluginName>News Server (NNTP) Information Disclosure</pluginName>
1056
+ <pluginId>11033</pluginId>
1057
+ <fullName>News Server (NNTP) Information Disclosure[entry]:From address :</fullName>
1058
+ <preferenceName>From address :</preferenceName>
1059
+ <preferenceType>entry</preferenceType>
1060
+ <preferenceValues>Nessus &lt;listme@listme.dsbl.org&gt;</preferenceValues>
1061
+ <selectedValue>Nessus &lt;listme@listme.dsbl.org&gt;</selectedValue>
1062
+ </item><item>
1063
+ <pluginName>News Server (NNTP) Information Disclosure</pluginName>
1064
+ <pluginId>11033</pluginId>
1065
+ <fullName>News Server (NNTP) Information Disclosure[entry]:Test group name regex :</fullName>
1066
+ <preferenceName>Test group name regex :</preferenceName>
1067
+ <preferenceType>entry</preferenceType>
1068
+ <preferenceValues>f[a-z]\.tests?</preferenceValues>
1069
+ <selectedValue>f[a-z]\.tests?</selectedValue>
1070
+ </item><item>
1071
+ <pluginName>News Server (NNTP) Information Disclosure</pluginName>
1072
+ <pluginId>11033</pluginId>
1073
+ <fullName>News Server (NNTP) Information Disclosure[entry]:Max crosspost :</fullName>
1074
+ <preferenceName>Max crosspost :</preferenceName>
1075
+ <preferenceType>entry</preferenceType>
1076
+ <preferenceValues>7</preferenceValues>
1077
+ <selectedValue>7</selectedValue>
1078
+ </item><item>
1079
+ <pluginName>News Server (NNTP) Information Disclosure</pluginName>
1080
+ <pluginId>11033</pluginId>
1081
+ <fullName>News Server (NNTP) Information Disclosure[checkbox]:Local distribution</fullName>
1082
+ <preferenceName>Local distribution</preferenceName>
1083
+ <preferenceType>checkbox</preferenceType>
1084
+ <preferenceValues>yes</preferenceValues>
1085
+ <selectedValue>yes</selectedValue>
1086
+ </item><item>
1087
+ <pluginName>News Server (NNTP) Information Disclosure</pluginName>
1088
+ <pluginId>11033</pluginId>
1089
+ <fullName>News Server (NNTP) Information Disclosure[checkbox]:No archive</fullName>
1090
+ <preferenceName>No archive</preferenceName>
1091
+ <preferenceType>checkbox</preferenceType>
1092
+ <preferenceValues>no</preferenceValues>
1093
+ <selectedValue>no</selectedValue>
1094
+ </item><item>
1095
+ <pluginName>Nessus SYN scanner</pluginName>
1096
+ <pluginId>11219</pluginId>
1097
+ <fullName>Nessus SYN scanner[radio]:Firewall detection :</fullName>
1098
+ <preferenceName>Firewall detection :</preferenceName>
1099
+ <preferenceType>radio</preferenceType>
1100
+ <preferenceValues>Automatic (normal);Disabled (softer);Do not detect RST rate limitation (soft);Ignore closed ports (aggressive)</preferenceValues>
1101
+ <selectedValue>Automatic (normal);Disabled (softer);Do not detect RST rate limitation (soft);Ignore closed ports (aggressive)</selectedValue>
1102
+ </item><item>
1103
+ <pluginName>SMB use host SID to enumerate local users</pluginName>
1104
+ <pluginId>10860</pluginId>
1105
+ <fullName>SMB use host SID to enumerate local users[entry]:Start UID :</fullName>
1106
+ <preferenceName>Start UID :</preferenceName>
1107
+ <preferenceType>entry</preferenceType>
1108
+ <preferenceValues>1000</preferenceValues>
1109
+ <selectedValue>1000</selectedValue>
1110
+ </item><item>
1111
+ <pluginName>SMB use host SID to enumerate local users</pluginName>
1112
+ <pluginId>10860</pluginId>
1113
+ <fullName>SMB use host SID to enumerate local users[entry]:End UID :</fullName>
1114
+ <preferenceName>End UID :</preferenceName>
1115
+ <preferenceType>entry</preferenceType>
1116
+ <preferenceValues>1200</preferenceValues>
1117
+ <selectedValue>1200</selectedValue>
1118
+ </item><item>
1119
+ <pluginName>Port scanners settings</pluginName>
1120
+ <pluginId>33812</pluginId>
1121
+ <fullName>Port scanners settings[checkbox]:Check open TCP ports found by local port enumerators</fullName>
1122
+ <preferenceName>Check open TCP ports found by local port enumerators</preferenceName>
1123
+ <preferenceType>checkbox</preferenceType>
1124
+ <preferenceValues>no</preferenceValues>
1125
+ <selectedValue>no</selectedValue>
1126
+ </item><item>
1127
+ <pluginName>Port scanners settings</pluginName>
1128
+ <pluginId>33812</pluginId>
1129
+ <fullName>Port scanners settings[checkbox]:Only run network port scanners if local port enumeration failed</fullName>
1130
+ <preferenceName>Only run network port scanners if local port enumeration failed</preferenceName>
1131
+ <preferenceType>checkbox</preferenceType>
1132
+ <preferenceValues>yes</preferenceValues>
1133
+ <selectedValue>yes</selectedValue>
1134
+ </item><item>
1135
+ <pluginName>SMB use domain SID to enumerate users</pluginName>
1136
+ <pluginId>10399</pluginId>
1137
+ <fullName>SMB use domain SID to enumerate users[entry]:Start UID :</fullName>
1138
+ <preferenceName>Start UID :</preferenceName>
1139
+ <preferenceType>entry</preferenceType>
1140
+ <preferenceValues>1000</preferenceValues>
1141
+ <selectedValue>1000</selectedValue>
1142
+ </item><item>
1143
+ <pluginName>SMB use domain SID to enumerate users</pluginName>
1144
+ <pluginId>10399</pluginId>
1145
+ <fullName>SMB use domain SID to enumerate users[entry]:End UID :</fullName>
1146
+ <preferenceName>End UID :</preferenceName>
1147
+ <preferenceType>entry</preferenceType>
1148
+ <preferenceValues>1200</preferenceValues>
1149
+ <selectedValue>1200</selectedValue>
1150
+ </item><item>
1151
+ <pluginName>Do not scan fragile devices</pluginName>
1152
+ <pluginId>22481</pluginId>
1153
+ <fullName>Do not scan fragile devices[checkbox]:Scan Network Printers</fullName>
1154
+ <preferenceName>Scan Network Printers</preferenceName>
1155
+ <preferenceType>checkbox</preferenceType>
1156
+ <preferenceValues>no</preferenceValues>
1157
+ <selectedValue>no</selectedValue>
1158
+ </item><item>
1159
+ <pluginName>Do not scan fragile devices</pluginName>
1160
+ <pluginId>22481</pluginId>
1161
+ <fullName>Do not scan fragile devices[checkbox]:Scan Novell Netware hosts</fullName>
1162
+ <preferenceName>Scan Novell Netware hosts</preferenceName>
1163
+ <preferenceType>checkbox</preferenceType>
1164
+ <preferenceValues>no</preferenceValues>
1165
+ <selectedValue>no</selectedValue>
1166
+ </item><item>
1167
+ <pluginName>HTTP cookies import</pluginName>
1168
+ <pluginId>42893</pluginId>
1169
+ <fullName>HTTP cookies import[file]:Cookies file :</fullName>
1170
+ <preferenceName>Cookies file :</preferenceName>
1171
+ <preferenceType>file</preferenceType>
1172
+ <preferenceValues></preferenceValues>
1173
+ <selectedValue></selectedValue>
1174
+ </item><item>
1175
+ <pluginName>SMB Scope</pluginName>
1176
+ <pluginId>10917</pluginId>
1177
+ <fullName>SMB Scope[checkbox]:Request information about the domain</fullName>
1178
+ <preferenceName>Request information about the domain</preferenceName>
1179
+ <preferenceType>checkbox</preferenceType>
1180
+ <preferenceValues>yes</preferenceValues>
1181
+ <selectedValue>yes</selectedValue>
1182
+ </item></PluginsPreferences>
1183
+ </Preferences>
1184
+ <FamilySelection>
1185
+ <FamilyItem>
1186
+ <FamilyName>MacOS X Local Security Checks</FamilyName>
1187
+ <Status>enabled</Status>
1188
+ </FamilyItem>
1189
+ <FamilyItem>
1190
+ <FamilyName>DNS</FamilyName>
1191
+ <Status>enabled</Status>
1192
+ </FamilyItem>
1193
+ <FamilyItem>
1194
+ <FamilyName>Gain a shell remotely</FamilyName>
1195
+ <Status>enabled</Status>
1196
+ </FamilyItem>
1197
+ <FamilyItem>
1198
+ <FamilyName>Solaris Local Security Checks</FamilyName>
1199
+ <Status>enabled</Status>
1200
+ </FamilyItem>
1201
+ <FamilyItem>
1202
+ <FamilyName>Port scanners</FamilyName>
1203
+ <Status>mixed</Status>
1204
+ </FamilyItem>
1205
+ <FamilyItem>
1206
+ <FamilyName>Web Servers</FamilyName>
1207
+ <Status>enabled</Status>
1208
+ </FamilyItem>
1209
+ <FamilyItem>
1210
+ <FamilyName>SMTP problems</FamilyName>
1211
+ <Status>enabled</Status>
1212
+ </FamilyItem>
1213
+ <FamilyItem>
1214
+ <FamilyName>Service detection</FamilyName>
1215
+ <Status>enabled</Status>
1216
+ </FamilyItem>
1217
+ <FamilyItem>
1218
+ <FamilyName>CGI abuses : XSS</FamilyName>
1219
+ <Status>enabled</Status>
1220
+ </FamilyItem>
1221
+ <FamilyItem>
1222
+ <FamilyName>Debian Local Security Checks</FamilyName>
1223
+ <Status>enabled</Status>
1224
+ </FamilyItem>
1225
+ <FamilyItem>
1226
+ <FamilyName>Databases</FamilyName>
1227
+ <Status>enabled</Status>
1228
+ </FamilyItem>
1229
+ <FamilyItem>
1230
+ <FamilyName>Mandriva Local Security Checks</FamilyName>
1231
+ <Status>enabled</Status>
1232
+ </FamilyItem>
1233
+ <FamilyItem>
1234
+ <FamilyName>Default Unix Accounts</FamilyName>
1235
+ <Status>enabled</Status>
1236
+ </FamilyItem>
1237
+ <FamilyItem>
1238
+ <FamilyName>Denial of Service</FamilyName>
1239
+ <Status>enabled</Status>
1240
+ </FamilyItem>
1241
+ <FamilyItem>
1242
+ <FamilyName>Settings</FamilyName>
1243
+ <Status>enabled</Status>
1244
+ </FamilyItem>
1245
+ <FamilyItem>
1246
+ <FamilyName>Backdoors</FamilyName>
1247
+ <Status>enabled</Status>
1248
+ </FamilyItem>
1249
+ <FamilyItem>
1250
+ <FamilyName>HP-UX Local Security Checks</FamilyName>
1251
+ <Status>enabled</Status>
1252
+ </FamilyItem>
1253
+ <FamilyItem>
1254
+ <FamilyName>VMware ESX Local Security Checks</FamilyName>
1255
+ <Status>enabled</Status>
1256
+ </FamilyItem>
1257
+ <FamilyItem>
1258
+ <FamilyName>General</FamilyName>
1259
+ <Status>enabled</Status>
1260
+ </FamilyItem>
1261
+ <FamilyItem>
1262
+ <FamilyName>Red Hat Local Security Checks</FamilyName>
1263
+ <Status>enabled</Status>
1264
+ </FamilyItem>
1265
+ <FamilyItem>
1266
+ <FamilyName>FreeBSD Local Security Checks</FamilyName>
1267
+ <Status>enabled</Status>
1268
+ </FamilyItem>
1269
+ <FamilyItem>
1270
+ <FamilyName>CGI abuses</FamilyName>
1271
+ <Status>enabled</Status>
1272
+ </FamilyItem>
1273
+ <FamilyItem>
1274
+ <FamilyName>Netware</FamilyName>
1275
+ <Status>enabled</Status>
1276
+ </FamilyItem>
1277
+ <FamilyItem>
1278
+ <FamilyName>Windows : User management</FamilyName>
1279
+ <Status>enabled</Status>
1280
+ </FamilyItem>
1281
+ <FamilyItem>
1282
+ <FamilyName>Peer-To-Peer File Sharing</FamilyName>
1283
+ <Status>enabled</Status>
1284
+ </FamilyItem>
1285
+ <FamilyItem>
1286
+ <FamilyName>Slackware Local Security Checks</FamilyName>
1287
+ <Status>enabled</Status>
1288
+ </FamilyItem>
1289
+ <FamilyItem>
1290
+ <FamilyName>SNMP</FamilyName>
1291
+ <Status>enabled</Status>
1292
+ </FamilyItem>
1293
+ <FamilyItem>
1294
+ <FamilyName>Gentoo Local Security Checks</FamilyName>
1295
+ <Status>enabled</Status>
1296
+ </FamilyItem>
1297
+ <FamilyItem>
1298
+ <FamilyName>Fedora Local Security Checks</FamilyName>
1299
+ <Status>enabled</Status>
1300
+ </FamilyItem>
1301
+ <FamilyItem>
1302
+ <FamilyName>Misc.</FamilyName>
1303
+ <Status>enabled</Status>
1304
+ </FamilyItem>
1305
+ <FamilyItem>
1306
+ <FamilyName>Ubuntu Local Security Checks</FamilyName>
1307
+ <Status>enabled</Status>
1308
+ </FamilyItem>
1309
+ <FamilyItem>
1310
+ <FamilyName>FTP</FamilyName>
1311
+ <Status>enabled</Status>
1312
+ </FamilyItem>
1313
+ <FamilyItem>
1314
+ <FamilyName>Firewalls</FamilyName>
1315
+ <Status>enabled</Status>
1316
+ </FamilyItem>
1317
+ <FamilyItem>
1318
+ <FamilyName>Windows : Microsoft Bulletins</FamilyName>
1319
+ <Status>enabled</Status>
1320
+ </FamilyItem>
1321
+ <FamilyItem>
1322
+ <FamilyName>SuSE Local Security Checks</FamilyName>
1323
+ <Status>enabled</Status>
1324
+ </FamilyItem>
1325
+ <FamilyItem>
1326
+ <FamilyName>Windows</FamilyName>
1327
+ <Status>enabled</Status>
1328
+ </FamilyItem>
1329
+ <FamilyItem>
1330
+ <FamilyName>RPC</FamilyName>
1331
+ <Status>enabled</Status>
1332
+ </FamilyItem>
1333
+ <FamilyItem>
1334
+ <FamilyName>Finger abuses</FamilyName>
1335
+ <Status>enabled</Status>
1336
+ </FamilyItem>
1337
+ <FamilyItem>
1338
+ <FamilyName>CentOS Local Security Checks</FamilyName>
1339
+ <Status>enabled</Status>
1340
+ </FamilyItem>
1341
+ <FamilyItem>
1342
+ <FamilyName>AIX Local Security Checks</FamilyName>
1343
+ <Status>enabled</Status>
1344
+ </FamilyItem>
1345
+ <FamilyItem>
1346
+ <FamilyName>CISCO</FamilyName>
1347
+ <Status>enabled</Status>
1348
+ </FamilyItem>
1349
+ </FamilySelection>
1350
+ <IndividualPluginSelection>
1351
+ <PluginItem><PluginId>34220</PluginId>
1352
+ <PluginName>netstat portscanner (WMI)</PluginName>
1353
+ <Family>Port scanners</Family>
1354
+ <Status>enabled</Status>
1355
+ </PluginItem><PluginItem><PluginId>14274</PluginId>
1356
+ <PluginName>Nessus SNMP Scanner</PluginName>
1357
+ <Family>Port scanners</Family>
1358
+ <Status>enabled</Status>
1359
+ </PluginItem><PluginItem><PluginId>14272</PluginId>
1360
+ <PluginName>netstat portscanner (SSH)</PluginName>
1361
+ <Family>Port scanners</Family>
1362
+ <Status>enabled</Status>
1363
+ </PluginItem><PluginItem><PluginId>10180</PluginId>
1364
+ <PluginName>Ping the remote host</PluginName>
1365
+ <Family>Port scanners</Family>
1366
+ <Status>enabled</Status>
1367
+ </PluginItem><PluginItem><PluginId>10335</PluginId>
1368
+ <PluginName>Nessus TCP scanner</PluginName>
1369
+ <Family>Port scanners</Family>
1370
+ <Status>enabled</Status>
1371
+ </PluginItem></IndividualPluginSelection>
1372
+ </Policy>
1373
+ <Report name="Ruby-Nessus">
1374
+ <ReportHost name="snorby.org">
1375
+ <HostProperties>
1376
+ <tag name="HOST_END">Fri Dec 11 03:25:29 2009</tag>
1377
+ <tag name="operating-system">NetBSD 3.0</tag>
1378
+ <tag name="host-ip">173.45.230.150</tag>
1379
+ <tag name="host-fqdn">snorby.org</tag>
1380
+ <tag name="HOST_START">Fri Dec 11 02:57:52 2009</tag>
1381
+ </HostProperties>
1382
+ <ReportItem port="0" svc_name="unknown" protocol="icmp" severity="0" pluginID="0" pluginName="" pluginFamily=""/>
1383
+ <ReportItem port="0" svc_name="unknown" protocol="tcp" severity="0" pluginID="0" pluginName="" pluginFamily=""/>
1384
+ <ReportItem port="0" svc_name="unknown" protocol="udp" severity="0" pluginID="0" pluginName="" pluginFamily=""/>
1385
+ <ReportItem port="21" svc_name="ftp?" protocol="tcp" severity="0" pluginID="0" pluginName="" pluginFamily=""/>
1386
+ <ReportItem port="22" svc_name="ssh" protocol="tcp" severity="0" pluginID="0" pluginName="" pluginFamily=""/>
1387
+ <ReportItem port="25" svc_name="smtp" protocol="tcp" severity="0" pluginID="0" pluginName="" pluginFamily=""/>
1388
+ <ReportItem port="80" svc_name="www" protocol="tcp" severity="0" pluginID="0" pluginName="" pluginFamily=""/>
1389
+ <ReportItem port="123" svc_name="ntp" protocol="udp" severity="0" pluginID="0" pluginName="" pluginFamily=""/>
1390
+ <ReportItem port="443" svc_name="www" protocol="tcp" severity="0" pluginID="0" pluginName="" pluginFamily=""/>
1391
+ <ReportItem port="554" svc_name="rtsp?" protocol="tcp" severity="0" pluginID="0" pluginName="" pluginFamily=""/>
1392
+ <ReportItem port="7070" svc_name="arcp?" protocol="tcp" severity="0" pluginID="0" pluginName="" pluginFamily=""/>
1393
+ <ReportItem port="9090" svc_name="www" protocol="tcp" severity="0" pluginID="0" pluginName="" pluginFamily=""/>
1394
+ <ReportItem port="9090" svc_name="www" protocol="tcp" severity="1" pluginID="10302" pluginName="Web Server robots.txt Information Disclosure" pluginFamily="Web Servers">
1395
+ <solution>Review the contents of the site&apos;s robots.txt file, use Robots META tags
1396
+ instead of entries in the robots.txt file, and/or adjust the web
1397
+ server&apos;s access controls to limit access to sensitive material.</solution><risk_factor>None</risk_factor><description>The remote host contains a file named &apos;robots.txt&apos; that is intended to
1398
+ prevent web &apos;robots&apos; from visiting certain directories in a web site for
1399
+ maintenance or indexing purposes. A malicious user may also be able to
1400
+ use the contents of this file to learn of sensitive documents or
1401
+ directories on the affected site and either retrieve them directly or
1402
+ target them for other attacks.</description><synopsis>The remote web server contains a &apos;robots.txt&apos; file.</synopsis><see_also>http://www.robotstxt.org/wc/exclusion.html</see_also><xref>OSVDB:238</xref>
1403
+ <plugin_output>Contents of robots.txt :
1404
+
1405
+ User-agent: *
1406
+ Disallow: /
1407
+ </plugin_output>
1408
+ <plugin_version>$Revision: 1.34 $</plugin_version></ReportItem>
1409
+ <ReportItem port="9090" svc_name="www" protocol="tcp" severity="1" pluginID="24260" pluginName="HyperText Transfer Protocol (HTTP) Information" pluginFamily="Web Servers">
1410
+ <solution>n/a</solution><risk_factor>None</risk_factor><description>This test gives some information about the remote HTTP protocol - the
1411
+ version used, whether HTTP Keep-Alive and HTTP pipelining are enabled,
1412
+ etc...
1413
+
1414
+ This test is informational only and does not denote any security
1415
+ problem.</description><synopsis>Some information about the remote HTTP configuration can be extracted.</synopsis><plugin_output>
1416
+ Protocol version : HTTP/1.1
1417
+ SSL : no
1418
+ Keep-Alive : no
1419
+ Options allowed : (Not implemented)
1420
+ Headers :
1421
+
1422
+ Content-length: 1001
1423
+ Server: TwistedWeb/8.1.0
1424
+ Last-modified: Mon, 10 Aug 2009 07:16:33 GMT
1425
+ Connection: close
1426
+ Date: Fri, 11 Dec 2009 09:03:32 GMT
1427
+ Content-type: text/html
1428
+
1429
+ </plugin_output>
1430
+ <plugin_version>$Revision: 1.9 $</plugin_version></ReportItem>
1431
+ <ReportItem port="9090" svc_name="www" protocol="tcp" severity="1" pluginID="10107" pluginName="HTTP Server type and version" pluginFamily="Web Servers">
1432
+ <solution>n/a</solution><risk_factor>None</risk_factor><description>This plugin attempts to determine the type and the version of the
1433
+ remote web server.</description><synopsis>A web server is running on the remote host.</synopsis><plugin_output>The remote web server type is :
1434
+
1435
+ TwistedWeb/8.1.0
1436
+ </plugin_output>
1437
+ <plugin_version>$Revision: 1.75 $</plugin_version></ReportItem>
1438
+ <ReportItem port="9090" svc_name="www" protocol="tcp" severity="1" pluginID="11032" pluginName="Web Server Directory Enumeration" pluginFamily="Web Servers">
1439
+ <solution>n/a</solution><risk_factor>None</risk_factor><description>This plugin attempts to determine the presence of various common
1440
+ directories on the remote web server. By sending a request for a
1441
+ directory, the web server response code indicates if it is a valid
1442
+ directory or not.</description><plugin_publication_date>2002/06/26</plugin_publication_date><synopsis>It is possible to enumerate directories on the web server.</synopsis><xref>OWASP:OWASP-CM-006</xref>
1443
+ <plugin_output>
1444
+ The following directories were discovered:
1445
+ /css, /images, /js
1446
+
1447
+ While this is not, in and of itself, a bug, you should manually inspect
1448
+ these directories to ensure that they are in compliance with company
1449
+ security standards
1450
+ </plugin_output>
1451
+ <plugin_version>$Revision: 1.92 $</plugin_version></ReportItem>
1452
+ <ReportItem port="9090" svc_name="www" protocol="tcp" severity="2" pluginID="11720" pluginName="Secure HyperText Transfer Protocol (S-HTTP) Detection" pluginFamily="Service detection">
1453
+ <solution>Rare or obsolete code is often poorly tested. Thus, it would be
1454
+ safer to disable support for S-HTTP and use HTTPS instead.</solution><risk_factor>Medium</risk_factor><description>The remote web server accepts connections encrypted using Secure
1455
+ HyperText Transfer Protocol (S-HTTP), a cryptographic layer that was
1456
+ defined in 1999 by RFC 2660 and never widely implemented.</description><cvss_vector>CVSS2#AV:N/AC:L/Au:N/C:P/I:N/A:N</cvss_vector><synopsis>The remote web server encrypts traffic using an obsolete protocol.</synopsis><see_also>http://tools.ietf.org/html/rfc2660
1457
+ http://cpe.mitre.org/</see_also><cvss_base_score>5.0</cvss_base_score><cvss_temporal_score>5.0</cvss_temporal_score><plugin_version>$Revision: 1.9 $</plugin_version></ReportItem>
1458
+ <ReportItem port="9090" svc_name="www" protocol="tcp" severity="1" pluginID="22964" pluginName="Service Detection" pluginFamily="Service detection">
1459
+ <description>A web server is running on this port.</description><plugin_version>$Revision: 1.57 $</plugin_version></ReportItem>
1460
+ <ReportItem port="7070" svc_name="arcp?" protocol="tcp" severity="1" pluginID="22964" pluginName="Service Detection" pluginFamily="Service detection">
1461
+ <description>The service closed the connection without sending any data.
1462
+ It might be protected by some sort of TCP wrapper.</description><plugin_version>$Revision: 1.57 $</plugin_version></ReportItem>
1463
+ <ReportItem port="554" svc_name="rtsp?" protocol="tcp" severity="1" pluginID="22964" pluginName="Service Detection" pluginFamily="Service detection">
1464
+ <description>The service closed the connection without sending any data.
1465
+ It might be protected by some sort of TCP wrapper.</description><plugin_version>$Revision: 1.57 $</plugin_version></ReportItem>
1466
+ <ReportItem port="443" svc_name="www" protocol="tcp" severity="1" pluginID="42799" pluginName="Broken Web Servers" pluginFamily="Web Servers">
1467
+ <solution>n/a</solution><risk_factor>None</risk_factor><description>The remote web server seems password protected or misconfigured.
1468
+ Further tests on it were disabled so that the whole scan is not
1469
+ slowed down.</description><plugin_publication_date>2009/11/13</plugin_publication_date><synopsis>Tests on this web server have been disabled.</synopsis><plugin_output>
1470
+ This web server was declared broken by icewarp_9_4_2.nasl
1471
+ </plugin_output>
1472
+ <plugin_version>$Revision: 1.1 $</plugin_version></ReportItem>
1473
+ <ReportItem port="443" svc_name="www" protocol="tcp" severity="1" pluginID="42799" pluginName="Broken Web Servers" pluginFamily="Web Servers">
1474
+ <solution>n/a</solution><risk_factor>None</risk_factor><description>The remote web server seems password protected or misconfigured.
1475
+ Further tests on it were disabled so that the whole scan is not
1476
+ slowed down.</description><plugin_publication_date>2009/11/13</plugin_publication_date><synopsis>Tests on this web server have been disabled.</synopsis><plugin_output>
1477
+ This web server was declared broken by icewarp_9_4.nasl
1478
+ </plugin_output>
1479
+ <plugin_version>$Revision: 1.1 $</plugin_version></ReportItem>
1480
+ <ReportItem port="443" svc_name="www" protocol="tcp" severity="1" pluginID="42880" pluginName="SSL / TLS Renegotiation Handshakes MiTM Plaintext Data Injection" pluginFamily="General">
1481
+ <vuln_publication_date>2009/11/04</vuln_publication_date><solution>Contact the vendor for specific patch information.</solution><risk_factor>Low</risk_factor><description>The remote service encrypts traffic using TLS / SSL but allows a
1482
+ client to renegotiate the connection after the initial handshake. An
1483
+ unauthenticated remote attacker may be able to leverage this issue to
1484
+ inject an arbitrary amount of plaintext into the beginning of the
1485
+ application protocol stream, which could facilitate man-in-the-middle
1486
+ attacks if the service assumes that the sessions before and after
1487
+ renegotiation are from the same &apos;client&apos; and merges them at the
1488
+ application layer.</description><<plugin_publication_date>2009/11/24</plugin_publication_date><cvss_vector>CVSS2#AV:N/AC:H/Au:N/C:N/I:P/A:N</cvss_vector><synopsis>The remote service allows renegotiation of TLS / SSL connections.</synopsis><patch_publication_date>2009/11/05</patch_publication_date><see_also>http://extendedsubset.com/?p=8</see_also><see_also>http://www.ietf.org/mail-archive/web/tls/current/msg03948.html</see_also><see_also>http://www.kb.cert.org/vuls/id/120541</see_also><see_also>http://www.g-sec.lu/practicaltls.pdf</see_also><see_also>https://svn.resiprocate.org/rep/ietf-drafts/ekr/draft-rescorla-tls-renegotiate.txt</see_also><cvss_base_score>2.6</cvss_base_score><cve>CVE-2009-3555</cve>
1489
+ <bid>36935</bid>
1490
+ <xref>OSVDB:59968</xref>
1491
+ <xref>OSVDB:59969</xref>
1492
+ <xref>OSVDB:59970</xref>
1493
+ <xref>OSVDB:59971</xref>
1494
+ <xref>OSVDB:59972</xref>
1495
+ <xref>OSVDB:59973</xref>
1496
+ <xref>OSVDB:59974</xref>
1497
+ <xref>OSVDB:60521</xref>
1498
+ <plugin_version>$Revision: 1.3 $</plugin_version></ReportItem>
1499
+ <ReportItem port="443" svc_name="www" protocol="tcp" severity="1" pluginID="21643" pluginName="SSL Cipher Suites Supported" pluginFamily="General">
1500
+ <solution>n/a</solution><risk_factor>None</risk_factor><description>This script detects which SSL ciphers are supported by the remote
1501
+ service for encrypting communications.</description><synopsis>The remote service encrypts communications using SSL.</synopsis><see_also>http://www.openssl.org/docs/apps/ciphers.html</see_also><plugin_output>Here is the list of SSL ciphers supported by the remote server :
1502
+
1503
+ High Strength Ciphers (&gt;= 112-bit key)
1504
+ SSLv3
1505
+ EDH-RSA-DES-CBC3-SHA Kx=DH Au=RSA Enc=3DES(168) Mac=SHA1
1506
+ DES-CBC3-SHA Kx=RSA Au=RSA Enc=3DES(168) Mac=SHA1
1507
+ RC4-MD5 Kx=RSA Au=RSA Enc=RC4(128) Mac=MD5
1508
+ RC4-SHA Kx=RSA Au=RSA Enc=RC4(128) Mac=SHA1
1509
+ TLSv1
1510
+ EDH-RSA-DES-CBC3-SHA Kx=DH Au=RSA Enc=3DES(168) Mac=SHA1
1511
+ DHE-RSA-AES128-SHA Kx=DH Au=RSA Enc=AES(128) Mac=SHA1
1512
+ DHE-RSA-AES256-SHA Kx=DH Au=RSA Enc=AES(256) Mac=SHA1
1513
+ DES-CBC3-SHA Kx=RSA Au=RSA Enc=3DES(168) Mac=SHA1
1514
+ AES128-SHA Kx=RSA Au=RSA Enc=AES(128) Mac=SHA1
1515
+ AES256-SHA Kx=RSA Au=RSA Enc=AES(256) Mac=SHA1
1516
+ RC4-MD5 Kx=RSA Au=RSA Enc=RC4(128) Mac=MD5
1517
+ RC4-SHA Kx=RSA Au=RSA Enc=RC4(128) Mac=SHA1
1518
+
1519
+ The fields above are :
1520
+
1521
+ {OpenSSL ciphername}
1522
+ Kx={key exchange}
1523
+ Au={authentication}
1524
+ Enc={symmetric encryption method}
1525
+ Mac={message authentication code}
1526
+ {export flag}
1527
+ </plugin_output>
1528
+ <plugin_version>$Revision: 1.22 $</plugin_version></ReportItem>
1529
+ <ReportItem port="443" svc_name="www" protocol="tcp" severity="1" pluginID="11153" pluginName="Unknown Service Detection: HELP Request" pluginFamily="Service detection">
1530
+ <description>A web server seems to be running on this port</description><plugin_version>$Revision: 1.286 $</plugin_version></ReportItem>
1531
+ <ReportItem port="443" svc_name="www" protocol="tcp" severity="1" pluginID="10863" pluginName="SSL Certificate Information" pluginFamily="General">
1532
+ <solution>n/a</solution><risk_factor>None</risk_factor><description>This plugin connects to every SSL-related port and attempts to
1533
+ extract and dump the X.509 certificate.</description><synopsis>This plugin displays the SSL certificate.</synopsis><plugin_output>Subject Name:
1534
+
1535
+ Country: US
1536
+ State/Province: KS
1537
+ Organization: Snorby
1538
+ Common Name: Snorby
1539
+
1540
+ Issuer Name:
1541
+
1542
+ Country: US
1543
+ State/Province: KS
1544
+ Organization: Snorby
1545
+ Common Name: Snorby
1546
+
1547
+ Serial Number: 00 D5 B4 42 A0 E9 32 D3 2E
1548
+
1549
+ Version: 1
1550
+
1551
+ Signature Algorithm: SHA-1 With RSA Encryption
1552
+
1553
+ Not Valid Before: Jul 27 09:10:02 2009 GMT
1554
+ Not Valid After: Jul 27 09:10:02 2010 GMT
1555
+
1556
+ Public Key Info:
1557
+
1558
+ Algorithm: RSA Encryption
1559
+ Public Key: 00 C5 86 76 1F CE 5B A3 A6 34 E0 4C 37 D5 EA C0 A4 89 16 7F
1560
+ B6 E9 97 C8 91 75 28 77 B6 11 DA 16 63 81 AC CF 6D 12 1E 6F
1561
+ D6 25 E1 34 0E CB 1D 5F 04 1B 78 B2 1F C2 78 B4 8B 03 E3 BA
1562
+ 55 C8 86 4B 51 DD 8C 6F 83 A2 71 FF 13 5A BF 8D 16 CF CB F8
1563
+ B7 3D 16 42 85 40 F2 17 94 AB D7 0A 6C F0 B0 0B BF 8D E0 A8
1564
+ 6A 75 CE 8A 7C 66 36 0F 5A F1 E3 4E 58 21 E7 B6 63 FA DA E9
1565
+ 72 B7 BC 03 D7 07 E1 78 7D
1566
+ Exponent: 01 00 01
1567
+
1568
+ Signature: 00 1C 74 3D 93 0D 4E B9 45 B3 65 1E 43 A5 60 C8 D8 C5 FE 3D
1569
+ 16 3A 21 EF B2 C5 42 64 C6 3B 78 E7 72 24 C2 9A 38 E6 7D 67
1570
+ D6 48 1D C7 F2 21 E0 B4 9F EE 91 39 0C B3 8F 8F BC DB C7 4F
1571
+ 97 59 4A 07 3A 66 2A 63 DC CC D2 4E C9 D2 ED 3E 0A 3F 3C FD
1572
+ A9 08 00 40 C2 C0 D0 60 3C CB 91 56 12 1F AF 53 5C BC C9 E8
1573
+ 27 56 7A 9E 10 92 21 CB 4A BB 8D 1D EB C8 7D 67 89 62 FC CF
1574
+ 8F 12 AE 32 01 0A 62 AB ED
1575
+
1576
+ </plugin_output>
1577
+ <plugin_version>$Revision: 1.7 $</plugin_version></ReportItem>
1578
+ <ReportItem port="443" svc_name="www" protocol="tcp" severity="1" pluginID="22964" pluginName="Service Detection" pluginFamily="Service detection">
1579
+ <description>A TLSv1 server answered on this port.
1580
+ </description><plugin_version>$Revision: 1.57 $</plugin_version></ReportItem>
1581
+ <ReportItem port="123" svc_name="ntp" protocol="udp" severity="1" pluginID="10884" pluginName="Network Time Protocol (NTP) Server Detection" pluginFamily="Service detection">
1582
+ <solution>n/a</solution><risk_factor>None</risk_factor><description>An NTP (Network Time Protocol) server is listening on this port. It
1583
+ provides information about the current date and time of the remote
1584
+ system and may provide system information.</description><synopsis>An NTP server is listening on the remote host.</synopsis><plugin_version>$Revision: 1.21 $</plugin_version></ReportItem>
1585
+ <ReportItem port="80" svc_name="www" protocol="tcp" severity="1" pluginID="39521" pluginName="Backported Security Patch Detection (WWW)" pluginFamily="General">
1586
+ <solution>N/A</solution><risk_factor>None</risk_factor><description>Security patches may have been &apos;back ported&apos; to the remote HTTP server
1587
+ without changing its version number.
1588
+
1589
+ Banner-based checks have been disabled to avoid false positives.
1590
+
1591
+ Note that this test is informational only and does not denote any
1592
+ security problem.</description><synopsis>Security patches are backported.</synopsis><see_also>http://www.nessus.org/u?d636c8c7</see_also><plugin_output>Give Nessus credentials to perform local checks.</plugin_output>
1593
+ <plugin_version>$Revision: 1.4 $</plugin_version></ReportItem>
1594
+ <ReportItem port="80" svc_name="www" protocol="tcp" severity="1" pluginID="24260" pluginName="HyperText Transfer Protocol (HTTP) Information" pluginFamily="Web Servers">
1595
+ <solution>n/a</solution><risk_factor>None</risk_factor><description>This test gives some information about the remote HTTP protocol - the
1596
+ version used, whether HTTP Keep-Alive and HTTP pipelining are enabled,
1597
+ etc...
1598
+
1599
+ This test is informational only and does not denote any security
1600
+ problem.</description><synopsis>Some information about the remote HTTP configuration can be extracted.</synopsis><plugin_output>
1601
+ Protocol version : HTTP/1.1
1602
+ SSL : no
1603
+ Keep-Alive : yes
1604
+ Options allowed : (Not implemented)
1605
+ Headers :
1606
+
1607
+ Date: Fri, 11 Dec 2009 09:03:32 GMT
1608
+ Server: Apache/2.2.9 (Ubuntu) Phusion_Passenger/2.2.4 PHP/5.2.6-2ubuntu4.2 with Suhosin-Patch mod_ssl/2.2.9 OpenSSL/0.9.8g
1609
+ Last-Modified: Sat, 21 Nov 2009 05:27:29 GMT
1610
+ ETag: &quot;23814f-1194-478dad9325240&quot;
1611
+ Accept-Ranges: bytes
1612
+ Content-Length: 4500
1613
+ Vary: Accept-Encoding
1614
+ Keep-Alive: timeout=15, max=100
1615
+ Connection: Keep-Alive
1616
+ Content-Type: text/html
1617
+
1618
+ </plugin_output>
1619
+ <plugin_version>$Revision: 1.9 $</plugin_version></ReportItem>
1620
+ <ReportItem port="80" svc_name="www" protocol="tcp" severity="1" pluginID="10107" pluginName="HTTP Server type and version" pluginFamily="Web Servers">
1621
+ <solution>n/a</solution><risk_factor>None</risk_factor><description>This plugin attempts to determine the type and the version of the
1622
+ remote web server.</description><synopsis>A web server is running on the remote host.</synopsis><plugin_output>The remote web server type is :
1623
+
1624
+ Apache/2.2.9 (Ubuntu) Phusion_Passenger/2.2.4 PHP/5.2.6-2ubuntu4.2 with Suhosin-Patch mod_ssl/2.2.9 OpenSSL/0.9.8g
1625
+
1626
+
1627
+ Solution : You can set the directive &apos;ServerTokens Prod&apos; to limit
1628
+ the information emanating from the server in its response headers.</plugin_output>
1629
+ <plugin_version>$Revision: 1.75 $</plugin_version></ReportItem>
1630
+ <ReportItem port="80" svc_name="www" protocol="tcp" severity="1" pluginID="33817" pluginName="Web Application Tests : load estimation" pluginFamily="CGI abuses">
1631
+ <solution>n/a</solution><risk_factor>None</risk_factor><description>This script computes the maximum number of requests that would be done
1632
+ by the generic web tests, depending on miscellaneous options.
1633
+ It does not perform any test by itself.
1634
+
1635
+ The results can be used to estimate the duration of these tests, or
1636
+ the complexity of additional manual tests.
1637
+
1638
+ Note that the script does not try to compute this duration as it would
1639
+ depend upon external factors such as the network and web servers loads.</description><synopsis>Load estimation for web application tests.</synopsis><plugin_output>Here are the estimated number of requests in miscellaneous modes
1640
+ for the GET method only :
1641
+ [Single / Some Pairs / All Pairs / Some Combinations / All Combinations]
1642
+
1643
+ format string : S=8 SP=8 AP=8 SC=8 AC=8
1644
+ arbitrary command execution : S=112 SP=112 AP=112 SC=112 AC=112
1645
+ web code injection : S=8 SP=8 AP=8 SC=8 AC=8
1646
+ blind SQL injection : S=32 SP=32 AP=32 SC=32 AC=32
1647
+ header injection : S=8 SP=8 AP=8 SC=8 AC=8
1648
+ cross-site scripting : S=56 SP=56 AP=56 SC=56 AC=56
1649
+ SQL injection : S=200 SP=200 AP=200 SC=200 AC=200
1650
+ persistent XSS : S=32 SP=32 AP=32 SC=32 AC=32
1651
+ directory traversal : S=168 SP=168 AP=168 SC=168 AC=168
1652
+
1653
+ Here are the estimated number of requests in miscellaneous modes
1654
+ for both methods (GET &amp; POST) :
1655
+ [Single / Some Pairs / All Pairs / Some Combinations / All Combinations]
1656
+
1657
+ format string : S=16 SP=16 AP=16 SC=16 AC=16
1658
+ arbitrary command execution : S=224 SP=224 AP=224 SC=224 AC=224
1659
+ web code injection : S=16 SP=16 AP=16 SC=16 AC=16
1660
+ blind SQL injection : S=64 SP=64 AP=64 SC=64 AC=64
1661
+ header injection : S=16 SP=16 AP=16 SC=16 AC=16
1662
+ cross-site scripting : S=112 SP=112 AP=112 SC=112 AC=112
1663
+ SQL injection : S=400 SP=400 AP=400 SC=400 AC=400
1664
+ persistent XSS : S=64 SP=64 AP=64 SC=64 AC=64
1665
+ directory traversal : S=336 SP=336 AP=336 SC=336 AC=336
1666
+ </plugin_output>
1667
+ <plugin_version>$Revision: 1.6 $</plugin_version></ReportItem>
1668
+ <ReportItem port="80" svc_name="www" protocol="tcp" severity="1" pluginID="10662" pluginName="Web mirroring" pluginFamily="Web Servers">
1669
+ <solution>n/a</solution><risk_factor>None</risk_factor><description>This script makes a mirror of the remote web site(s) and extracts the
1670
+ list of CGIs that are used by the remote host.
1671
+
1672
+ It is suggested that you change the number of pages to mirror in the
1673
+ &apos;Options&apos; section of the client.</description><synopsis>Nessus crawled the remote web site.</synopsis><plugin_output>
1674
+ The following CGI have been discovered :
1675
+
1676
+ Syntax : cginame (arguments [default value])
1677
+
1678
+ /images/nifty/report.png (1258781187 [] )
1679
+ /images/snorby_logo.png (1258781187 [] )
1680
+ /images/nifty/pending.png (1258781187 [] )
1681
+ /stylesheets/all.css (1258781187 [] )
1682
+ /images/nifty/help.png (1258781187 [] )
1683
+ /images/nifty/teammates.png (1258781187 [] )
1684
+ /images/nifty/comments.png (1258781187 [] )
1685
+ /images/nifty/scan.png (1258781187 [] )
1686
+ </plugin_output>
1687
+ <plugin_version>$Revision: 1.172 $</plugin_version></ReportItem>
1688
+ <ReportItem port="80" svc_name="www" protocol="tcp" severity="1" pluginID="22964" pluginName="Service Detection" pluginFamily="Service detection">
1689
+ <description>A web server is running on this port.</description><plugin_version>$Revision: 1.57 $</plugin_version></ReportItem>
1690
+ <ReportItem port="25" svc_name="smtp" protocol="tcp" severity="1" pluginID="10263" pluginName="SMTP Server Detection" pluginFamily="Service detection">
1691
+ <solution>Disable this service if you do not use it, or filter incoming traffic
1692
+ to this port.</solution><risk_factor>None</risk_factor><description>The remote host is running a mail (SMTP) server on this port.
1693
+
1694
+ Since SMTP servers are the targets of spammers, it is recommended you
1695
+ disable it if you do not use it.</description><synopsis>An SMTP server is listening on the remote port.</synopsis><plugin_output>
1696
+ Remote SMTP server banner :
1697
+
1698
+ 220 8cloud ESMTP Postfix (Ubuntu)
1699
+ </plugin_output>
1700
+ <plugin_version>$Revision: 1.49 $</plugin_version></ReportItem>
1701
+ <ReportItem port="25" svc_name="smtp" protocol="tcp" severity="1" pluginID="42088" pluginName="SMTP Service STARTTLS Command Support" pluginFamily="SMTP problems">
1702
+ <solution>n/a</solution><risk_factor>None</risk_factor><description>The remote SMTP service supports the use of the &apos;STARTTLS&apos; command to
1703
+ switch from a plaintext to an encrypted communications channel.</description><plugin_publication_date>2009/10/09</plugin_publication_date><synopsis>The remote mail service supports encrypting traffic.</synopsis><see_also>http://en.wikipedia.org/wiki/STARTTLS</see_also><see_also>http://tools.ietf.org/html/rfc2487</see_also><plugin_output>
1704
+ Here is the SMTP service&apos;s SSL certificate that Nessus was able to
1705
+ collect after sending a &apos;STARTTLS&apos; command :
1706
+
1707
+ ------------------------------ snip ------------------------------
1708
+ Subject Name:
1709
+
1710
+ Common Name: 8cloud
1711
+
1712
+ Issuer Name:
1713
+
1714
+ Common Name: 8cloud
1715
+
1716
+ Serial Number: 00 98 ED 71 94 B5 7F 79 21
1717
+
1718
+ Version: 1
1719
+
1720
+ Signature Algorithm: SHA-1 With RSA Encryption
1721
+
1722
+ Not Valid Before: Jul 26 06:40:11 2009 GMT
1723
+ Not Valid After: Jul 24 06:40:11 2019 GMT
1724
+
1725
+ Public Key Info:
1726
+
1727
+ Algorithm: RSA Encryption
1728
+ Public Key: 00 E9 B1 04 A0 80 FE 97 03 A7 AB 5B 84 AA 4C AB 32 02 48 E2
1729
+ 5C 5D F0 9B 18 9D 7C 19 BA 88 26 DA 94 0C 76 C0 FD 14 36 5D
1730
+ ED 3D DF 57 D5 DE 10 44 6F 16 A7 8E D7 5E A9 E1 E4 4D 43 99
1731
+ F3 64 87 02 D3 2F B1 37 2F A3 CE 0C 0F 9D C1 18 F4 A6 81 11
1732
+ D1 B9 76 42 FD AC 5E BB D1 C9 C6 5C 33 17 89 60 8A 11 59 95
1733
+ 8F 45 09 C8 D7 B2 31 D6 A2 CF F5 81 35 C9 21 A5 C7 FA F8 CE
1734
+ DA 1F CA A1 D5 AE 88 F2 77
1735
+ Exponent: 01 00 01
1736
+
1737
+ Signature: 00 4D 30 C4 A8 CA 02 48 51 BC CE FE A7 83 7D 93 0E 70 3D 84
1738
+ 71 9A 5A 2D E9 3A F7 BA 4E 67 0B A3 55 0B 46 D0 64 96 E4 2C
1739
+ EF 01 3E C8 2B 0A 28 48 38 05 16 CB 28 0E 81 DC 34 A5 DE 68
1740
+ 0B 57 12 FA 03 B4 77 18 B7 DB AB 2F 7A 50 AC 78 62 B9 94 CD
1741
+ 02 FD A5 AE D4 AA D0 B0 80 D7 09 C1 48 4F 7F F8 59 8C B2 16
1742
+ 0F 90 9B 31 B3 F0 8D FB FF B5 EF 01 DF A4 C0 7F B6 D9 9E DC
1743
+ 51 B6 0E F6 D6 F4 57 0B CF
1744
+
1745
+ ------------------------------ snip ------------------------------
1746
+ </plugin_output>
1747
+ <plugin_version>$Revision: 1.1 $</plugin_version></ReportItem>
1748
+ <ReportItem port="25" svc_name="smtp" protocol="tcp" severity="1" pluginID="22964" pluginName="Service Detection" pluginFamily="Service detection">
1749
+ <description>An SMTP server is running on this port.</description><plugin_version>$Revision: 1.57 $</plugin_version></ReportItem>
1750
+ <ReportItem port="22" svc_name="ssh" protocol="tcp" severity="1" pluginID="10881" pluginName="SSH Protocol Versions Supported" pluginFamily="General">
1751
+ <solution>n/a</solution><risk_factor>None</risk_factor><description>This plugin determines the versions of the SSH protocol supported by
1752
+ the remote SSH daemon.</description><synopsis>A SSH server is running on the remote host.</synopsis><plugin_output>The remote SSH daemon supports the following versions of the
1753
+ SSH protocol :
1754
+
1755
+ - 1.99
1756
+ - 2.0
1757
+
1758
+
1759
+ SSHv2 host key fingerprint : 82:dd:82:80:e7:a7:1b:36:82:8e:6b:3d:e0:82:35:2b
1760
+ </plugin_output>
1761
+ <plugin_version>$Revision: 1.28 $</plugin_version></ReportItem>
1762
+ <ReportItem port="22" svc_name="ssh" protocol="tcp" severity="1" pluginID="22964" pluginName="Service Detection" pluginFamily="Service detection">
1763
+ <description>An SSH server is running on this port.</description><plugin_version>$Revision: 1.57 $</plugin_version></ReportItem>
1764
+ <ReportItem port="21" svc_name="ftp?" protocol="tcp" severity="1" pluginID="22964" pluginName="Service Detection" pluginFamily="Service detection">
1765
+ <description>The service closed the connection without sending any data.
1766
+ It might be protected by some sort of TCP wrapper.</description><plugin_version>$Revision: 1.57 $</plugin_version></ReportItem>
1767
+ <ReportItem port="0" svc_name="unknown" protocol="udp" severity="1" pluginID="10287" pluginName="Traceroute Information" pluginFamily="General">
1768
+ <solution>n/a</solution><risk_factor>None</risk_factor><description>Makes a traceroute to the remote host.</description><synopsis>It was possible to obtain traceroute information.</synopsis><plugin_output>For your information, here is the traceroute from 10.0.1.6 to 173.45.230.150 :
1769
+ 10.0.1.6
1770
+ 10.0.1.1
1771
+ 76.43.128.1
1772
+ 65.28.18.49
1773
+ 24.94.161.34
1774
+ 66.109.6.112
1775
+ 66.109.6.155
1776
+ 154.54.11.145
1777
+ 154.54.5.1
1778
+ 154.54.27.30
1779
+ 66.28.5.246
1780
+ 38.104.162.58
1781
+ 209.20.79.25
1782
+ 173.45.230.150
1783
+ </plugin_output>
1784
+ <plugin_version>$Revision: 1.49 $</plugin_version></ReportItem>
1785
+ <ReportItem port="0" svc_name="unknown" protocol="tcp" severity="1" pluginID="19506" pluginName="Nessus Scan Information" pluginFamily="Settings">
1786
+ <description>Information about this scan :
1787
+
1788
+ Nessus version : 4.2.0
1789
+ Plugin feed version : 200912110134
1790
+ Type of plugin feed : HomeFeed (Non-commercial use only)
1791
+ Scanner IP : 10.0.1.6
1792
+ Port scanner(s) : nessus_syn_scanner
1793
+ Port range : default
1794
+ Thorough tests : no
1795
+ Experimental tests : no
1796
+ Paranoia level : 1
1797
+ Report Verbosity : 1
1798
+ Safe checks : yes
1799
+ Optimize the test : yes
1800
+ CGI scanning : enabled
1801
+ Web application tests : enabled
1802
+ Web app tests - Test mode : single
1803
+ Web app tests - Send POST requests : no
1804
+ Web app tests - Maximum run time : 60 minutes.
1805
+ Web app tests - Stop at first flaw : port
1806
+ Max hosts : 40
1807
+ Max checks : 5
1808
+ Recv timeout : 5
1809
+ Backports : Detected
1810
+ Scan Start Date : 2009/12/11 2:57
1811
+ Scan duration : 1653 sec
1812
+ </description><plugin_version>$Revision: 1.34 $</plugin_version></ReportItem>
1813
+ <ReportItem port="0" svc_name="unknown" protocol="tcp" severity="1" pluginID="11936" pluginName="OS Identification" pluginFamily="General">
1814
+ <description>
1815
+ Remote operating system : NetBSD 3.0
1816
+ Confidence Level : 70
1817
+ Method : SinFP
1818
+
1819
+
1820
+ The remote host is running NetBSD 3.0</description><plugin_version>$Revision: 2.10 $</plugin_version></ReportItem>
1821
+ <ReportItem port="0" svc_name="unknown" protocol="tcp" severity="1" pluginID="12053" pluginName="Host Fully Qualified Domain Name (FQDN) Resolution" pluginFamily="General">
1822
+ <solution>n/a</solution><risk_factor>None</risk_factor><description>Nessus was able to resolve the FQDN of the remote host.</description><synopsis>It was possible to resolve the name of the remote host.</synopsis><plugin_output>
1823
+ 173.45.230.150 resolves as snorby.org.
1824
+ </plugin_output>
1825
+ <plugin_version>$Revision: 1.5 $</plugin_version></ReportItem>
1826
+ <ReportItem port="0" svc_name="unknown" protocol="tcp" severity="1" pluginID="25220" pluginName="TCP/IP Timestamps Supported" pluginFamily="General">
1827
+ <solution>n/a</solution><risk_factor>None</risk_factor><description>The remote host implements TCP timestamps, as defined by RFC1323. A
1828
+ side effect of this feature is that the uptime of the remote host can
1829
+ sometimes be computed.</description><synopsis>The remote service implements TCP timestamps.</synopsis><see_also>http://www.ietf.org/rfc/rfc1323.txt</see_also><plugin_version>1.15</plugin_version></ReportItem>
1830
+ <ReportItem port="0" svc_name="unknown" protocol="tcp" severity="1" pluginID="31422" pluginName="Reverse NAT/Intercepting Proxy Detection" pluginFamily="Firewalls">
1831
+ <solution>Make sure that this setup is authorized by your security policy</solution><risk_factor>None</risk_factor><description>Reverse NAT is a technology which lets multiple computers offer
1832
+ public services on different ports via the same IP address.
1833
+
1834
+ Based on OS fingerprinting results, it seems that different
1835
+ operating systems are listening on different remote ports.
1836
+
1837
+ Note that this behavior may also indicate the presence of a
1838
+ intercepting proxy, a load balancer or a traffic shaper.</description><synopsis>The remote IP address seems to connect to different hosts
1839
+ via reverse NAT, or an intercepting proxy is in the way.</synopsis><see_also>http://en.wikipedia.org/wiki/Proxy_server#Intercepting_proxy_server</see_also><plugin_output>+ On the following port(s) :
1840
+ - 9090 (14 hops away)
1841
+ - 443 (14 hops away)
1842
+ - 80 (14 hops away)
1843
+ - 22 (13 hops away)
1844
+ - 25 (13 hops away)
1845
+
1846
+ The operating system was identified as :
1847
+
1848
+ Linux Kernel 2.6
1849
+ Linux Kernel 2.6
1850
+
1851
+ + On the following port(s) :
1852
+ - 7070 (0 hops away)
1853
+ - 21 (0 hops away)
1854
+ - 554 (0 hops away)
1855
+
1856
+ The operating system was identified as :
1857
+
1858
+ NetBSD 3.0
1859
+
1860
+ </plugin_output>
1861
+ <plugin_version>$Revision: 1.8 $</plugin_version></ReportItem>
1862
+ <ReportItem port="0" svc_name="unknown" protocol="icmp" severity="1" pluginID="10114" pluginName="ICMP Timestamp Request Remote Date Disclosure" pluginFamily="General">
1863
+ <solution>Filter out the ICMP timestamp requests (13), and the outgoing ICMP
1864
+ timestamp replies (14).</solution><risk_factor>None</risk_factor><description>The remote host answers to an ICMP timestamp request. This allows an
1865
+ attacker to know the date which is set on your machine.
1866
+
1867
+ This may help him to defeat all your time based authentication
1868
+ protocols.</description><synopsis>It is possible to determine the exact time set on the remote host.</synopsis><cve>CVE-1999-0524</cve>
1869
+ <xref>OSVDB:94</xref>
1870
+ <plugin_output>The difference between the local and remote clocks is 1 second.
1871
+ </plugin_output>
1872
+ <exploitability_ease>No known exploits are available</exploitability_ease>
1873
+ <exploit_available>false</exploit_available>
1874
+ <plugin_type>remote</plugin_type>
1875
+ <plugin_version>$Revision: 1.38 $</plugin_version></ReportItem>
1876
+ </ReportHost>
1877
+ <ReportHost name="scanme.insecure.org">
1878
+ <HostProperties>
1879
+ <tag name="HOST_END">Fri Dec 11 03:07:22 2009</tag>
1880
+ <tag name="host-ip">64.13.134.52</tag>
1881
+ <tag name="host-fqdn">scanme.insecure.org</tag>
1882
+ <tag name="operating-system">NetBSD 3.0</tag>
1883
+ <tag name="HOST_START">Fri Dec 11 02:57:52 2009</tag>
1884
+ </HostProperties>
1885
+ <ReportItem port="0" svc_name="unknown" protocol="tcp" severity="0" pluginID="0" pluginName="" pluginFamily=""/>
1886
+ <ReportItem port="0" svc_name="unknown" protocol="udp" severity="0" pluginID="0" pluginName="" pluginFamily=""/>
1887
+ <ReportItem port="21" svc_name="ftp?" protocol="tcp" severity="0" pluginID="0" pluginName="" pluginFamily=""/>
1888
+ <ReportItem port="53" svc_name="dns" protocol="tcp" severity="0" pluginID="0" pluginName="" pluginFamily=""/>
1889
+ <ReportItem port="53" svc_name="dns" protocol="udp" severity="0" pluginID="0" pluginName="" pluginFamily=""/>
1890
+ <ReportItem port="554" svc_name="rtsp?" protocol="tcp" severity="0" pluginID="0" pluginName="" pluginFamily=""/>
1891
+ <ReportItem port="7070" svc_name="arcp?" protocol="tcp" severity="0" pluginID="0" pluginName="" pluginFamily=""/>
1892
+ <ReportItem port="53" svc_name="dns" protocol="udp" severity="1" pluginID="35371" pluginName="DNS Server hostname.bind Map Hostname Disclosure" pluginFamily="DNS">
1893
+ <solution>It may be possible to disable this feature. Consult the vendor&apos;s
1894
+ documentation for more information.</solution><risk_factor>None</risk_factor><description>It is possible to learn the remote host name by querying the remote
1895
+ DNS server for &apos;hostname.bind&apos; in the CHAOS domain.</description><synopsis>The DNS server discloses the remote host name.</synopsis><plugin_output>
1896
+ The remote host name is :
1897
+
1898
+ syn.titan.net
1899
+ </plugin_output>
1900
+ <plugin_version>$Revision: 1.7 $</plugin_version></ReportItem>
1901
+ <ReportItem port="53" svc_name="dns" protocol="udp" severity="2" pluginID="10539" pluginName="DNS Server Recursive Query Cache Poisoning Weakness" pluginFamily="DNS">
1902
+ <solution>Restrict recursive queries to the hosts that should
1903
+ use this nameserver (such as those of the LAN connected to it).
1904
+
1905
+ If you are using bind 8, you can do this by using the instruction
1906
+ &apos;allow-recursion&apos; in the &apos;options&apos; section of your named.conf.
1907
+
1908
+ If you are using bind 9, you can define a grouping of internal addresses
1909
+ using the &apos;acl&apos; command.
1910
+
1911
+ Then, within the options block, you can explicitly state:
1912
+ &apos;allow-recursion { hosts_defined_in_acl }&apos;
1913
+
1914
+ If you are using another name server, consult its documentation.</solution><risk_factor>Medium</risk_factor><description>It is possible to query the remote name server for third party
1915
+ names.
1916
+
1917
+ If this is your internal nameserver, then ignore this warning.
1918
+
1919
+ If you are probing a remote nameserver, then it allows anyone
1920
+ to use it to resolve third party names (such as www.nessus.org).
1921
+ This allows attackers to perform cache poisoning attacks against
1922
+ this nameserver.
1923
+
1924
+ If the host allows these recursive queries via UDP, then the
1925
+ host can be used to &apos;bounce&apos; Denial of Service attacks against
1926
+ another network or system.</description><cvss_vector>CVSS2#AV:N/AC:L/Au:N/C:N/I:P/A:N</cvss_vector><synopsis>The remote name server allows recursive queries to be performed
1927
+ by the host running nessusd.</synopsis><see_also>http://www.cert.org/advisories/CA-1997-22.html</see_also><see_also>http://technet.microsoft.com/en-us/library/cc787602%28WS.10%29.aspx</see_also><cvss_base_score>5.0</cvss_base_score><cve>CVE-1999-0024</cve>
1928
+ <bid>136</bid>
1929
+ <bid>678</bid>
1930
+ <xref>OSVDB:438</xref>
1931
+ <plugin_version>$Revision: 1.35 $</plugin_version></ReportItem>
1932
+ <ReportItem port="53" svc_name="dns" protocol="udp" severity="1" pluginID="31658" pluginName="DNS Sender Policy Framework (SPF) Enabled" pluginFamily="DNS">
1933
+ <solution>n/a</solution><risk_factor>None</risk_factor><description>The remote domain publishes SPF records. SPF (Sender Policy
1934
+ Framework) is a mechanism to let an organization specify their mail
1935
+ sending policy, such as which mail servers are authorized to send mail
1936
+ on its behalf.</description><synopsis>The remote domain publishes SPF records.</synopsis><see_also>http://www.openspf.org/</see_also><plugin_output>
1937
+ The following SPF records could be extracted for insecure.org:
1938
+
1939
+ v=spf1 a mx ptr ip4:64.13.134.0/26 ~all</plugin_output>
1940
+ <plugin_version>$Revision: 1.7 $</plugin_version></ReportItem>
1941
+ <ReportItem port="53" svc_name="dns" protocol="udp" severity="1" pluginID="11002" pluginName="DNS Server Detection" pluginFamily="DNS">
1942
+ <solution>Disable this service if it is not needed or restrict access to
1943
+ internal hosts only if the service is available externally.</solution><risk_factor>None</risk_factor><description>The remote service is a Domain Name System (DNS) server, which
1944
+ provides a mapping between hostnames and IP addresses.</description><synopsis>A DNS server is listening on the remote host.</synopsis><see_also>http://en.wikipedia.org/wiki/Domain_Name_System</see_also><plugin_version>$Revision: 1.17 $</plugin_version></ReportItem>
1945
+ <ReportItem port="53" svc_name="dns" protocol="udp" severity="2" pluginID="12217" pluginName="DNS Server Cache Snooping Information Disclosure" pluginFamily="DNS">
1946
+ <solution>Use another DNS software.</solution><risk_factor>Medium</risk_factor><description>The remote DNS server responds to queries for third-party domains
1947
+ which do not have the recursion bit set.
1948
+
1949
+ This may allow a remote attacker to determine which domains have
1950
+ recently been resolved via this name server, and therefore which hosts
1951
+ have been recently visited.
1952
+
1953
+ For instance, if an attacker was interested in whether your company
1954
+ utilizes the online services of a particular financial institution,
1955
+ they would be able to use this attack to build a statistical model
1956
+ regarding company usage of that financial institution. Of course, the
1957
+ attack can also be used to find B2B partners, web-surfing patterns,
1958
+ external mail servers, and more...</description><cvss_vector>CVSS2#AV:N/AC:L/Au:N/C:P/I:N/A:N</cvss_vector><synopsis>The remote DNS server is vulnerable to cache snooping attacks.</synopsis><see_also>For a much more detailed discussion of the potential risks of allowing</see_also><see_also>DNS cache information to be queried anonymously, please see:</see_also><see_also>http://www.rootsecure.net/content/downloads/pdf/dns_cache_snooping.pdf</see_also><cvss_base_score>5.0</cvss_base_score><plugin_version>$Revision: 1.14 $</plugin_version></ReportItem>
1959
+ <ReportItem port="53" svc_name="dns" protocol="udp" severity="1" pluginID="35373" pluginName="DNS Server DNSSEC Aware Resolver" pluginFamily="DNS">
1960
+ <solution>n/a</solution><risk_factor>None</risk_factor><description>The remote DNS resolver accepts DNSSEC options. This means that it
1961
+ may verify the authenticity of DNSSEC protected zones if it is
1962
+ configured to trust their keys.</description><synopsis>The remote DNS resolver is DNSSEC-aware.</synopsis><plugin_version>$Revision: 1.5 $</plugin_version></ReportItem>
1963
+ <ReportItem port="53" svc_name="dns" protocol="udp" severity="1" pluginID="35450" pluginName="DNS Server Spoofed Request Amplification DDoS" pluginFamily="DNS">
1964
+ <solution>Restrict access to your DNS server from public network or reconfigure
1965
+ it to reject such queries.</solution><risk_factor>None</risk_factor><description>The remote DNS server answers to any request. It is possible to query
1966
+ the name servers (NS) of the root zone (&apos;.&apos;) and get an answer which
1967
+ is bigger than the original request. By spoofing the source IP
1968
+ address, a remote attacker can leverage this &apos;amplification&apos; to launch
1969
+ a denial of service attack against a third-party host using the remote
1970
+ DNS server.</description><synopsis>The remote DNS server could be used in a distributed denial of service
1971
+ attack.</synopsis><see_also>http://isc.sans.org/diary.html?storyid=5713</see_also><plugin_output>
1972
+ The DNS query was 17 bytes long, the answer is 500 bytes long.
1973
+ </plugin_output>
1974
+ <plugin_version>$Revision: 1.5 $</plugin_version></ReportItem>
1975
+ <ReportItem port="53" svc_name="dns" protocol="udp" severity="1" pluginID="10028" pluginName="ISC BIND version Directive Remote Version Disclosure" pluginFamily="DNS">
1976
+ <solution>It is possible to hide the version number of bind by using the
1977
+ &apos;version&apos; directive in the &apos;options&apos; section in named.conf</solution><risk_factor>None</risk_factor><description>The remote host is running BIND, an open-source DNS server. It is
1978
+ possible to extract the version number of the remote installation by
1979
+ sending a special DNS request for the text &apos;version.bind&apos; in the
1980
+ domain &apos;chaos&apos;.</description><synopsis>It is possible to obtain the version number of the remote DNS server.</synopsis><xref>OSVDB:23</xref>
1981
+ <plugin_output>
1982
+ The version of the remote DNS server is :
1983
+
1984
+ 9.3.6-P1-RedHat-9.3.6-4.P1.el5</plugin_output>
1985
+ <plugin_version>$Revision: 1.43 $</plugin_version></ReportItem>
1986
+ <ReportItem port="53" svc_name="dns" protocol="tcp" severity="1" pluginID="11002" pluginName="DNS Server Detection" pluginFamily="DNS">
1987
+ <solution>Disable this service if it is not needed or restrict access to
1988
+ internal hosts only if the service is available externally.</solution><risk_factor>None</risk_factor><description>The remote service is a Domain Name System (DNS) server, which
1989
+ provides a mapping between hostnames and IP addresses.</description><synopsis>A DNS server is listening on the remote host.</synopsis><see_also>http://en.wikipedia.org/wiki/Domain_Name_System</see_also><plugin_version>$Revision: 1.17 $</plugin_version></ReportItem>
1990
+ <ReportItem port="0" svc_name="unknown" protocol="udp" severity="1" pluginID="10287" pluginName="Traceroute Information" pluginFamily="General">
1991
+ <solution>n/a</solution><risk_factor>None</risk_factor><description>Makes a traceroute to the remote host.</description><synopsis>It was possible to obtain traceroute information.</synopsis><plugin_output>For your information, here is the traceroute from 10.0.1.6 to 64.13.134.52 :
1992
+ 10.0.1.6
1993
+ 10.0.1.1
1994
+ 76.43.128.1
1995
+ 65.28.18.49
1996
+ 24.94.161.34
1997
+ 66.109.6.112
1998
+ 66.109.6.155
1999
+ 213.248.76.97
2000
+ 213.248.80.25
2001
+ 80.239.193.126
2002
+ 69.36.239.221
2003
+ 64.13.134.52
2004
+ </plugin_output>
2005
+ <plugin_version>$Revision: 1.49 $</plugin_version></ReportItem>
2006
+ <ReportItem port="0" svc_name="unknown" protocol="tcp" severity="1" pluginID="19506" pluginName="Nessus Scan Information" pluginFamily="Settings">
2007
+ <description>Information about this scan :
2008
+
2009
+ Nessus version : 4.2.0
2010
+ Plugin feed version : 200912110134
2011
+ Type of plugin feed : HomeFeed (Non-commercial use only)
2012
+ Scanner IP : 10.0.1.6
2013
+ Port scanner(s) : nessus_syn_scanner
2014
+ Port range : default
2015
+ Thorough tests : no
2016
+ Experimental tests : no
2017
+ Paranoia level : 1
2018
+ Report Verbosity : 1
2019
+ Safe checks : yes
2020
+ Optimize the test : yes
2021
+ CGI scanning : enabled
2022
+ Web application tests : enabled
2023
+ Web app tests - Test mode : single
2024
+ Web app tests - Send POST requests : no
2025
+ Web app tests - Maximum run time : 60 minutes.
2026
+ Web app tests - Stop at first flaw : port
2027
+ Max hosts : 40
2028
+ Max checks : 5
2029
+ Recv timeout : 5
2030
+ Backports : None
2031
+ Scan Start Date : 2009/12/11 2:57
2032
+ Scan duration : 566 sec
2033
+ </description><plugin_version>$Revision: 1.34 $</plugin_version></ReportItem>
2034
+ <ReportItem port="0" svc_name="unknown" protocol="tcp" severity="1" pluginID="12053" pluginName="Host Fully Qualified Domain Name (FQDN) Resolution" pluginFamily="General">
2035
+ <solution>n/a</solution><risk_factor>None</risk_factor><description>Nessus was able to resolve the FQDN of the remote host.</description><synopsis>It was possible to resolve the name of the remote host.</synopsis><plugin_output>
2036
+ 64.13.134.52 resolves as scanme.insecure.org.
2037
+ </plugin_output>
2038
+ <plugin_version>$Revision: 1.5 $</plugin_version></ReportItem>
2039
+ <ReportItem port="0" svc_name="unknown" protocol="tcp" severity="1" pluginID="25220" pluginName="TCP/IP Timestamps Supported" pluginFamily="General">
2040
+ <solution>n/a</solution><risk_factor>None</risk_factor><description>The remote host implements TCP timestamps, as defined by RFC1323. A
2041
+ side effect of this feature is that the uptime of the remote host can
2042
+ sometimes be computed.</description><synopsis>The remote service implements TCP timestamps.</synopsis><see_also>http://www.ietf.org/rfc/rfc1323.txt</see_also><plugin_version>1.15</plugin_version></ReportItem>
2043
+ <ReportItem port="0" svc_name="unknown" protocol="tcp" severity="1" pluginID="11936" pluginName="OS Identification" pluginFamily="General">
2044
+ <description>
2045
+ Remote operating system : NetBSD 3.0
2046
+ Confidence Level : 70
2047
+ Method : SinFP
2048
+
2049
+
2050
+ The remote host is running NetBSD 3.0</description><plugin_version>$Revision: 2.10 $</plugin_version></ReportItem>
2051
+ <ReportItem port="0" svc_name="unknown" protocol="tcp" severity="1" pluginID="31422" pluginName="Reverse NAT/Intercepting Proxy Detection" pluginFamily="Firewalls">
2052
+ <solution>Make sure that this setup is authorized by your security policy</solution><risk_factor>None</risk_factor><description>Reverse NAT is a technology which lets multiple computers offer
2053
+ public services on different ports via the same IP address.
2054
+
2055
+ Based on OS fingerprinting results, it seems that different
2056
+ operating systems are listening on different remote ports.
2057
+
2058
+ Note that this behavior may also indicate the presence of a
2059
+ intercepting proxy, a load balancer or a traffic shaper.</description><synopsis>The remote IP address seems to connect to different hosts
2060
+ via reverse NAT, or an intercepting proxy is in the way.</synopsis><see_also>http://en.wikipedia.org/wiki/Proxy_server#Intercepting_proxy_server</see_also><plugin_output>+ On the following port(s) :
2061
+ - 7070 (0 hops away)
2062
+ - 21 (0 hops away)
2063
+ - 554 (0 hops away)
2064
+
2065
+ The operating system was identified as :
2066
+
2067
+ NetBSD 3.0
2068
+
2069
+ + On the following port(s) :
2070
+ - 53 (14 hops away)
2071
+
2072
+ The operating system was identified as :
2073
+
2074
+ Linux Kernel 2.6
2075
+
2076
+ </plugin_output>
2077
+ <plugin_version>$Revision: 1.8 $</plugin_version></ReportItem>
2078
+ </ReportHost>
2079
+ </Report>
2080
+ </NessusClientData_v2>