<?php
function reloadDictionary ($release = NULL)
{
global $dictionary, $max_dict_key;
if ($release === NULL)
$maxkey = max (array_keys ($dictionary));
else
$maxkey = $max_dict_key[$release];
// Not only update existing stuff, but make sure all obsolete records are gone.
$ret = array ("DELETE FROM Dictionary WHERE dict_key BETWEEN 1 AND ${maxkey}");
for ($i = 1; $i <= $maxkey; $i++)
{
if (!array_key_exists ($i, $dictionary))
continue;
$chapter_id = $dictionary[$i]['chapter_id'];
$dict_value = $dictionary[$i]['dict_value'];
$ret[] = "INSERT INTO Dictionary (dict_key, chapter_id, dict_value) VALUES (" .
"${i}, ${chapter_id}, '${dict_value}')";
}
return $ret;
}
function isInnoDBSupported ()
{
global $dbxlink;
// create a temp table
$dbxlink->query("CREATE TABLE `innodb_test` (`id` int) ENGINE=InnoDB");
$row = $dbxlink->query("SHOW TABLE STATUS LIKE 'innodb_test'")->fetch(PDO::FETCH_ASSOC);
$dbxlink->query("DROP TABLE `innodb_test`");
if ($row['Engine'] == 'InnoDB')
return TRUE;
return FALSE;
}
function platform_function_test ($funcname, $extname, $what_if_not = 'not found', $error_class = 'msg_error')
{
return platform_generic_test (function_exists ($funcname), $extname, 'NOT PRESENT', $error_class);
}
function platform_generic_test ($is_ok, $topic, $what_if_not = 'FAILED', $error_class = 'trerror')
{
echo "<tr><th class=tdleft>${topic}</th>";
if ($is_ok)
{
echo '<td class="trok tdleft">PASSED</td></tr>';
return 0;
}
echo "<td class='${error_class} tdleft'>${what_if_not}</td></tr>";
return 1;
}
function pcre8_with_properties()
{
return FALSE === @preg_match ('/\p{L}/u', 'a') ? FALSE : TRUE;
}
// Check for PHP extensions.
function platform_is_ok ()
{
$nerrs = 0;
echo "<table border=1 cellpadding=5>\n";
$nerrs += platform_generic_test (class_exists ('PDO'), 'PDO extension');
$nerrs += platform_generic_test (defined ('PDO::MYSQL_ATTR_READ_DEFAULT_FILE'), 'PDO-MySQL extension');
$nerrs += platform_function_test ('preg_match', 'PCRE extension');
$nerrs += platform_generic_test (pcre8_with_properties(), 'PCRE compiled with<br>--enable-unicode-properties');
platform_function_test ('snmpwalk', 'SNMP extension', 'Not found, Live SNMP feature will not work.', 'trwarning');
$nerrs += platform_function_test ('gd_info', 'GD extension');
$nerrs += platform_function_test ('mb_strlen', 'Multibyte string extension');
platform_function_test ('ldap_connect', 'LDAP extension', 'Not found, LDAP authentication will not work.', 'trwarning');
platform_generic_test
(
(!empty($_SERVER['HTTPS']) and $_SERVER['HTTPS'] != 'off'),
'accessed over HTTPS',
'No! (all your passwords will be transmitted in cleartext)',
'trwarning'
);
echo "</table>\n";
return !$nerrs;
}
$dictionary = array
(
1 => array ('chapter_id' => 1, 'dict_value' => 'BlackBox'),
2 => array ('chapter_id' => 1, 'dict_value' => 'PDU'),
3 => array ('chapter_id' => 1, 'dict_value' => 'Shelf'),
4 => array ('chapter_id' => 1, 'dict_value' => 'Server'),
5 => array ('chapter_id' => 1, 'dict_value' => 'DiskArray'),
6 => array ('chapter_id' => 1, 'dict_value' => 'TapeLibrary'),
7 => array ('chapter_id' => 1, 'dict_value' => 'Router'),
8 => array ('chapter_id' => 1, 'dict_value' => 'Network switch'),
9 => array ('chapter_id' => 1, 'dict_value' => 'PatchPanel'),
10 => array ('chapter_id' => 1, 'dict_value' => 'CableOrganizer'),
11 => array ('chapter_id' => 1, 'dict_value' => 'spacer'),
12 => array ('chapter_id' => 1, 'dict_value' => 'UPS'),
13 => array ('chapter_id' => 1, 'dict_value' => 'Modem'),
14 => array ('chapter_id' => 1, 'dict_value' => 'MediaConverter'),
15 => array ('chapter_id' => 1, 'dict_value' => 'console'),
16 => array ('chapter_id' => 2, 'dict_value' => 'AC-in'),
17 => array ('chapter_id' => 2, 'dict_value' => '10Base2'),
18 => array ('chapter_id' => 2, 'dict_value' => '10Base-T'),
19 => array ('chapter_id' => 2, 'dict_value' => '100Base-TX'),
20 => array ('chapter_id' => 2, 'dict_value' => '100Base-FX (SC)'),
21 => array ('chapter_id' => 2, 'dict_value' => '100Base-FX (LC)'),
22 => array ('chapter_id' => 2, 'dict_value' => '100Base-SX (SC)'),
23 => array ('chapter_id' => 2, 'dict_value' => '100Base-SX (LC)'),
24 => array ('chapter_id' => 2, 'dict_value' => '1000Base-T'),
25 => array ('chapter_id' => 2, 'dict_value' => '1000Base-SX (SC)'),
26 => array ('chapter_id' => 2, 'dict_value' => '1000Base-SX (LC)'),
27 => array ('chapter_id' => 2, 'dict_value' => '1000Base-LX (SC)'),
28 => array ('chapter_id' => 2, 'dict_value' => '1000Base-LX (LC)'),
29 => array ('chapter_id' => 2, 'dict_value' => 'RS-232 (RJ-45)'),
30 => array ('chapter_id' => 2, 'dict_value' => '10GBase-SR'),
31 => array ('chapter_id' => 2, 'dict_value' => 'virtual bridge'),
32 => array ('chapter_id' => 2, 'dict_value' => 'sync serial'),
33 => array ('chapter_id' => 2, 'dict_value' => 'KVM (host)'),
34 => array ('chapter_id' => 2, 'dict_value' => '1000Base-ZX'),
35 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ER'),
36 => array ('chapter_id' => 2, 'dict_value' => '10GBase-LR'),
37 => array ('chapter_id' => 2, 'dict_value' => '10GBase-LRM'),
38 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR'),
39 => array ('chapter_id' => 2, 'dict_value' => '10GBase-LX4'),
40 => array ('chapter_id' => 2, 'dict_value' => '10GBase-CX4'),
41 => array ('chapter_id' => 2, 'dict_value' => '10GBase-Kx'),
42 => array ('chapter_id' => 11, 'dict_value' => 'noname/unknown'),
43 => array ('chapter_id' => 11, 'dict_value' => 'IBM xSeries%GPASS%305'),
44 => array ('chapter_id' => 11, 'dict_value' => 'IBM xSeries%GPASS%306'),
45 => array ('chapter_id' => 11, 'dict_value' => 'IBM xSeries%GPASS%306m'),
46 => array ('chapter_id' => 11, 'dict_value' => 'IBM xSeries%GPASS%326m'),
47 => array ('chapter_id' => 11, 'dict_value' => 'IBM xSeries%GPASS%330'),
48 => array ('chapter_id' => 11, 'dict_value' => 'IBM xSeries%GPASS%335'),
49 => array ('chapter_id' => 11, 'dict_value' => 'Sun%GPASS%Ultra 10'),
50 => array ('chapter_id' => 11, 'dict_value' => 'Sun%GPASS%Enterprise 420R'),
51 => array ('chapter_id' => 11, 'dict_value' => '[[Sun%GPASS%Fire X2100 | http://www.sun.com/servers/entry/x2100/]]'),
52 => array ('chapter_id' => 11, 'dict_value' => '[[Sun%GPASS%Fire E4900 | http://www.sun.com/servers/midrange/sunfire_e4900/index.xml]]'),
53 => array ('chapter_id' => 11, 'dict_value' => 'Sun%GPASS%Netra X1'),
54 => array ('chapter_id' => 11, 'dict_value' => 'IBM xSeries%GPASS%346'),
55 => array ('chapter_id' => 11, 'dict_value' => 'Dell PowerEdge%GPASS%1650'),
56 => array ('chapter_id' => 11, 'dict_value' => 'Dell PowerEdge%GPASS%2850'),
57 => array ('chapter_id' => 11, 'dict_value' => 'Sun%GPASS%Fire V210'),
58 => array ('chapter_id' => 11, 'dict_value' => 'Sun%GPASS%Fire V240'),
59 => array ('chapter_id' => 11, 'dict_value' => 'IBM xSeries%GPASS%326'),
60 => array ('chapter_id' => 11, 'dict_value' => 'Sun%GPASS%Netra t1 105'),
61 => array ('chapter_id' => 11, 'dict_value' => 'Sun%GPASS%Enterprise 4500'),
62 => array ('chapter_id' => 11, 'dict_value' => 'Dell PowerEdge%GPASS%1950'),
63 => array ('chapter_id' => 11, 'dict_value' => 'Dell PowerEdge%GPASS%1550'),
64 => array ('chapter_id' => 11, 'dict_value' => 'Sun%GPASS%Ultra 5'),
65 => array ('chapter_id' => 11, 'dict_value' => 'Dell PowerEdge%GPASS%2950'),
66 => array ('chapter_id' => 11, 'dict_value' => 'Dell PowerEdge%GPASS%650'),
67 => array ('chapter_id' => 11, 'dict_value' => 'Dell PowerEdge%GPASS%4600'),
68 => array ('chapter_id' => 11, 'dict_value' => 'IBM xSeries%GPASS%3250'),
69 => array ('chapter_id' => 11, 'dict_value' => 'IBM xSeries%GPASS%3455'),
70 => array ('chapter_id' => 11, 'dict_value' => 'IBM xSeries%GPASS%3550'),
71 => array ('chapter_id' => 11, 'dict_value' => 'IBM xSeries%GPASS%3650'),
72 => array ('chapter_id' => 11, 'dict_value' => 'IBM xSeries%GPASS%3655'),
73 => array ('chapter_id' => 11, 'dict_value' => 'IBM xSeries%GPASS%3650 T'),
74 => array ('chapter_id' => 11, 'dict_value' => 'IBM xSeries%GPASS%3755'),
75 => array ('chapter_id' => 11, 'dict_value' => 'IBM xSeries%GPASS%3850'),
76 => array ('chapter_id' => 11, 'dict_value' => '[[Sun%GPASS%Fire X4600 | http://www.sun.com/servers/x64/x4600/]]'),
77 => array ('chapter_id' => 11, 'dict_value' => '[[Sun%GPASS%Fire X4500 | http://www.sun.com/servers/x64/x4500/]]'),
78 => array ('chapter_id' => 11, 'dict_value' => '[[Sun%GPASS%Fire X4200 | http://www.sun.com/servers/entry/x4200/]]'),
79 => array ('chapter_id' => 11, 'dict_value' => '[[Sun%GPASS%Fire X4100 | http://www.sun.com/servers/entry/x4100/]]'),
80 => array ('chapter_id' => 11, 'dict_value' => '[[Sun%GPASS%Fire X2100 M2 | http://www.sun.com/servers/entry/x2100/]]'),
81 => array ('chapter_id' => 11, 'dict_value' => '[[Sun%GPASS%Fire X2200 M2 | http://www.sun.com/servers/x64/x2200/]]'),
82 => array ('chapter_id' => 11, 'dict_value' => 'Sun%GPASS%Fire V40z'),
83 => array ('chapter_id' => 11, 'dict_value' => 'Sun%GPASS%Fire V125'),
84 => array ('chapter_id' => 11, 'dict_value' => '[[Sun%GPASS%Fire V215 | http://www.sun.com/servers/entry/v215/]]'),
85 => array ('chapter_id' => 11, 'dict_value' => '[[Sun%GPASS%Fire V245 | http://www.sun.com/servers/entry/v245/]]'),
86 => array ('chapter_id' => 11, 'dict_value' => '[[Sun%GPASS%Fire V445 | http://www.sun.com/servers/entry/v445/]]'),
87 => array ('chapter_id' => 11, 'dict_value' => 'Sun%GPASS%Fire V440'),
88 => array ('chapter_id' => 11, 'dict_value' => '[[Sun%GPASS%Fire V490 | http://www.sun.com/servers/midrange/v490/]]'),
89 => array ('chapter_id' => 11, 'dict_value' => '[[Sun%GPASS%Fire V890 | http://www.sun.com/servers/midrange/v890/]]'),
90 => array ('chapter_id' => 11, 'dict_value' => '[[Sun%GPASS%Fire E2900 | http://www.sun.com/servers/midrange/sunfire_e2900/index.xml]]'),
91 => array ('chapter_id' => 11, 'dict_value' => 'Sun%GPASS%Fire V1280'),
92 => array ('chapter_id' => 11, 'dict_value' => 'IBM pSeries%GPASS%185'),
93 => array ('chapter_id' => 11, 'dict_value' => 'IBM pSeries%GPASS%505'),
94 => array ('chapter_id' => 11, 'dict_value' => 'IBM pSeries%GPASS%505Q'),
95 => array ('chapter_id' => 11, 'dict_value' => 'IBM pSeries%GPASS%510'),
96 => array ('chapter_id' => 11, 'dict_value' => 'IBM pSeries%GPASS%510Q'),
97 => array ('chapter_id' => 11, 'dict_value' => 'IBM pSeries%GPASS%520'),
98 => array ('chapter_id' => 11, 'dict_value' => 'IBM pSeries%GPASS%520Q'),
99 => array ('chapter_id' => 11, 'dict_value' => 'IBM pSeries%GPASS%550'),
100 => array ('chapter_id' => 11, 'dict_value' => 'IBM pSeries%GPASS%550Q'),
101 => array ('chapter_id' => 11, 'dict_value' => '[[HP ProLiant%GPASS%DL140 | http://h10010.www1.hp.com/wwpc/us/en/en/WF05a/15351-15351-3328412-241644-3328421-1842838.html]]'),
102 => array ('chapter_id' => 11, 'dict_value' => '[[HP ProLiant%GPASS%DL145 | http://h10010.www1.hp.com/wwpc/us/en/en/WF05a/15351-15351-3328412-241644-3328421-3219755.html]]'),
103 => array ('chapter_id' => 11, 'dict_value' => '[[HP ProLiant%GPASS%DL320 | http://h10010.www1.hp.com/wwpc/us/en/en/WF05a/15351-15351-3328412-241644-241475-3201178.html]]'),
104 => array ('chapter_id' => 11, 'dict_value' => '[[HP ProLiant%GPASS%DL360 | http://h10010.www1.hp.com/wwpc/us/en/en/WF05a/15351-15351-3328412-241644-241475-1121486.html]]'),
105 => array ('chapter_id' => 11, 'dict_value' => '[[HP ProLiant%GPASS%DL380 | http://h10010.www1.hp.com/wwpc/us/en/en/WF05a/15351-15351-3328412-241644-241475-1121516.html]]'),
106 => array ('chapter_id' => 11, 'dict_value' => '[[HP ProLiant%GPASS%DL385 | http://h10010.www1.hp.com/wwpc/us/en/en/WF05a/15351-15351-3328412-241644-241475-3219233.html]]'),
107 => array ('chapter_id' => 11, 'dict_value' => '[[HP ProLiant%GPASS%DL580 | http://h10010.www1.hp.com/wwpc/us/en/en/WF05a/15351-15351-3328412-241644-3328422-3454575.html]]'),
108 => array ('chapter_id' => 11, 'dict_value' => '[[HP ProLiant%GPASS%DL585 | http://h10010.www1.hp.com/wwpc/us/en/en/WF05a/15351-15351-3328412-241644-3328422-3219717.html]]'),
109 => array ('chapter_id' => 11, 'dict_value' => '[[HP ProLiant%GPASS%ML110 | http://h10010.www1.hp.com/wwpc/us/en/en/WF05a/15351-15351-241434-241646-3328424-3577708.html]]'),
110 => array ('chapter_id' => 11, 'dict_value' => '[[HP ProLiant%GPASS%ML150 | http://h10010.www1.hp.com/wwpc/us/en/en/WF05a/15351-15351-241434-241646-3328424-3580609.html]]'),
111 => array ('chapter_id' => 11, 'dict_value' => '[[HP ProLiant%GPASS%ML310 | http://h10010.www1.hp.com/wwpc/us/en/en/WF05a/15351-15351-241434-241646-241477-3580655.html]]'),
112 => array ('chapter_id' => 11, 'dict_value' => '[[HP ProLiant%GPASS%ML350 | http://h10010.www1.hp.com/wwpc/us/en/en/WF05a/15351-15351-241434-241646-241477-1121586.html]]'),
113 => array ('chapter_id' => 11, 'dict_value' => '[[HP ProLiant%GPASS%ML370 | http://h10010.www1.hp.com/wwpc/us/en/en/WF05a/15351-15351-241434-241646-241477-1121474.html]]'),
114 => array ('chapter_id' => 11, 'dict_value' => '[[HP ProLiant%GPASS%ML570 | http://h10010.www1.hp.com/wwpc/us/en/en/WF05a/15351-15351-241434-241646-3328425-1842779.html]]'),
115 => array ('chapter_id' => 12, 'dict_value' => 'noname/unknown'),
116 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%FastIron WorkGroup'),
117 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%FastIron II'),
118 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%ServerIron'),
119 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%ServerIron XL'),
120 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%ServerIron 350'),
121 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%FastIron Edge 2402'),
122 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%FastIron Edge 4802'),
123 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%FastIron Edge X424'),
124 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 2924XL'),
125 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%FastIron SuperX'),
126 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 2912XL'),
127 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%FastIron GS 648P'),
128 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%FastIron Edge 2402-PREM'),
129 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%FastIron GS 624P'),
130 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%FastIron GS 624P-POE'),
131 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%FastIron GS 648P-POE'),
132 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%ServerIron 4G'),
133 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%ServerIron 4G-SSL'),
134 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%FastIron Edge X448'),
135 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%FastIron Edge X424HF'),
136 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%FastIron Edge X424-POE'),
137 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%FastIron SX 800'),
138 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%FastIron SX 1600'),
139 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3560-8PC'),
140 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 2960-48TC'),
141 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3560-E'),
142 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst Express 500-24LC'),
143 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3750-24TS'),
144 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3750-E'),
145 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 4503'),
146 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 6513'),
147 => array ('chapter_id' => 12, 'dict_value' => '[[Cisco%GPASS%Catalyst 4948 | http://www.cisco.com/en/US/products/ps6026/index.html]]'),
148 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 6509-E'),
149 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 6509-NEB-A'),
150 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 6506-E'),
151 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 6504-E'),
152 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 6503-E'),
153 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 6503'),
154 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 6506'),
155 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 6509-NEB'),
156 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 4506'),
157 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 4507R'),
158 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 4510R'),
159 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst Express 500-24PC'),
160 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst Express 500-24TT'),
161 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst Express 500G-12TC'),
162 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 2960-48TT'),
163 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 2960-24TC'),
164 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 2960-24TT'),
165 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 2960-8TC'),
166 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 2960G-48TC'),
167 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 2960G-24TC'),
168 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 2960G-8TC'),
169 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3560-24TS'),
170 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3560-48TS'),
171 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3560-24PS'),
172 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3560-48PS'),
173 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3560G-24TS'),
174 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3560G-48TS'),
175 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3560G-24PS'),
176 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3560G-48PS'),
177 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3750-48TS'),
178 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3750-24PS'),
179 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3750-48PS'),
180 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3750-24FS'),
181 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3750G-24T'),
182 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3750G-24TS'),
183 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3750G-24TS-1U'),
184 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3750G-48TS'),
185 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3750G-24PS'),
186 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3750G-48PS'),
187 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3750G-16TD'),
188 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3750G-12S'),
189 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3750G-24WS'),
190 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%EdgeIron 2402CF'),
191 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%EdgeIron 24G'),
192 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%EdgeIron 4802CF'),
193 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%EdgeIron 48G'),
194 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%EdgeIron 24GS'),
195 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%EdgeIron 48GS'),
196 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%EdgeIron 8X10G'),
197 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%FastIron Edge 4802-PREM'),
198 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%FastIron Edge 12GCF'),
199 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%FastIron Edge 12GCF-PREM'),
200 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%FastIron Edge 9604'),
201 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%FastIron Edge 9604-PREM'),
202 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%FastIron Edge 2402-POE'),
203 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%FastIron Edge 4802-POE'),
204 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%FastIron Workgroup X424'),
205 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%FastIron Workgroup X448'),
206 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%ServerIron 450'),
207 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%ServerIron 850'),
208 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%ServerIron GT C'),
209 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%ServerIron GT E'),
210 => array ('chapter_id' => 12, 'dict_value' => '[[Cisco%GPASS%Catalyst 2970G-24T | http://www.cisco.com/en/US/products/hw/switches/ps5206/ps5313/index.html]]'),
211 => array ('chapter_id' => 12, 'dict_value' => '[[Cisco%GPASS%Catalyst 2970G-24TS | http://www.cisco.com/en/US/products/hw/switches/ps5206/ps5437/index.html]]'),
212 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%RH Fedora C1'),
213 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%RH Fedora C2'),
214 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%RH Fedora C3'),
215 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%RH Fedora C4'),
216 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%RH Fedora C5'),
217 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%RH Fedora C6'),
218 => array ('chapter_id' => 13, 'dict_value' => 'BSD%GSKIP%Solaris 8'),
219 => array ('chapter_id' => 13, 'dict_value' => 'BSD%GSKIP%Solaris 9'),
220 => array ('chapter_id' => 13, 'dict_value' => 'BSD%GSKIP%Solaris 10'),
221 => array ('chapter_id' => 13, 'dict_value' => 'Windows 2000'),
222 => array ('chapter_id' => 13, 'dict_value' => 'Windows XP'),
223 => array ('chapter_id' => 13, 'dict_value' => 'Windows 2003'),
224 => array ('chapter_id' => 13, 'dict_value' => 'Windows Vista'),
225 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%RHEL1'),
226 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%RHEL2'),
227 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%RHEL3'),
228 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%RHEL4'),
229 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%ALTLinux Master 2.0'),
230 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%ALTLinux Master 2.2'),
231 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%ALTLinux Master 2.4'),
232 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%RH Fedora 7'),
233 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%SLES10'),
234 => array ('chapter_id' => 13, 'dict_value' => '[[Linux%GSKIP%Debian 3.0 (woody) | http://debian.org/releases/woody/]]'),
235 => array ('chapter_id' => 13, 'dict_value' => '[[Linux%GSKIP%Debian 3.1 (sarge) | http://debian.org/releases/sarge/]]'),
236 => array ('chapter_id' => 13, 'dict_value' => 'BSD%GSKIP%FreeBSD 1.x'),
237 => array ('chapter_id' => 13, 'dict_value' => 'BSD%GSKIP%FreeBSD 2.x'),
238 => array ('chapter_id' => 13, 'dict_value' => 'BSD%GSKIP%FreeBSD 3.x'),
239 => array ('chapter_id' => 13, 'dict_value' => 'BSD%GSKIP%FreeBSD 4.x'),
240 => array ('chapter_id' => 13, 'dict_value' => 'BSD%GSKIP%FreeBSD 5.x'),
241 => array ('chapter_id' => 13, 'dict_value' => 'BSD%GSKIP%FreeBSD 6.x'),
242 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%RH Fedora 8'),
243 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%ALTLinux Master 4.0'),
244 => array ('chapter_id' => 14, 'dict_value' => 'Cisco IOS 12.0'),
245 => array ('chapter_id' => 14, 'dict_value' => 'Foundry SLB'),
246 => array ('chapter_id' => 14, 'dict_value' => 'Foundry WXM'),
247 => array ('chapter_id' => 14, 'dict_value' => 'Foundry L2'),
248 => array ('chapter_id' => 14, 'dict_value' => 'Foundry full L3'),
249 => array ('chapter_id' => 14, 'dict_value' => 'Foundry basic L3'),
250 => array ('chapter_id' => 14, 'dict_value' => 'Cisco IOS 11.2'),
251 => array ('chapter_id' => 14, 'dict_value' => 'Cisco IOS 12.1'),
252 => array ('chapter_id' => 14, 'dict_value' => 'Cisco IOS 12.2'),
253 => array ('chapter_id' => 14, 'dict_value' => 'Cisco IOS 11.3'),
254 => array ('chapter_id' => 16, 'dict_value' => 'Cisco IOS 12.0'),
255 => array ('chapter_id' => 16, 'dict_value' => 'Cisco IOS 12.1'),
256 => array ('chapter_id' => 16, 'dict_value' => 'Cisco IOS 12.2'),
257 => array ('chapter_id' => 16, 'dict_value' => 'Cisco IOS 12.3'),
258 => array ('chapter_id' => 16, 'dict_value' => 'Cisco IOS 12.4'),
259 => array ('chapter_id' => 16, 'dict_value' => 'Foundry L3'),
260 => array ('chapter_id' => 16, 'dict_value' => 'Cisco IOS 11.2'),
261 => array ('chapter_id' => 16, 'dict_value' => 'Cisco IOS 11.3'),
262 => array ('chapter_id' => 17, 'dict_value' => 'Foundry%GPASS%BigIron 4000'),
263 => array ('chapter_id' => 17, 'dict_value' => 'Cisco%GPASS%7609'),
264 => array ('chapter_id' => 17, 'dict_value' => 'Cisco%GPASS%2610XM'),
265 => array ('chapter_id' => 17, 'dict_value' => 'Cisco%GPASS%2611XM'),
266 => array ('chapter_id' => 17, 'dict_value' => 'Cisco%GPASS%3620'),
267 => array ('chapter_id' => 17, 'dict_value' => 'Cisco%GPASS%3640'),
268 => array ('chapter_id' => 17, 'dict_value' => 'Cisco%GPASS%2621XM'),
269 => array ('chapter_id' => 17, 'dict_value' => 'Cisco%GPASS%7206VXR'),
270 => array ('chapter_id' => 17, 'dict_value' => 'Cisco%GPASS%2651XM'),
271 => array ('chapter_id' => 17, 'dict_value' => 'Cisco%GPASS%7204VXR'),
272 => array ('chapter_id' => 17, 'dict_value' => 'Cisco%GPASS%2612'),
273 => array ('chapter_id' => 17, 'dict_value' => 'Cisco%GPASS%2620XM'),
274 => array ('chapter_id' => 17, 'dict_value' => 'Cisco%GPASS%2650XM'),
275 => array ('chapter_id' => 17, 'dict_value' => 'Cisco%GPASS%2691'),
276 => array ('chapter_id' => 17, 'dict_value' => 'Cisco%GPASS%7603'),
277 => array ('chapter_id' => 17, 'dict_value' => 'Cisco%GPASS%7606'),
278 => array ('chapter_id' => 17, 'dict_value' => 'Cisco%GPASS%7613'),
279 => array ('chapter_id' => 17, 'dict_value' => 'Cisco%GPASS%2801'),
280 => array ('chapter_id' => 17, 'dict_value' => 'Cisco%GPASS%2811'),
281 => array ('chapter_id' => 17, 'dict_value' => 'Cisco%GPASS%2821'),
282 => array ('chapter_id' => 17, 'dict_value' => 'Cisco%GPASS%2851'),
283 => array ('chapter_id' => 17, 'dict_value' => 'Cisco%GPASS%3725'),
284 => array ('chapter_id' => 17, 'dict_value' => 'Cisco%GPASS%3745'),
285 => array ('chapter_id' => 17, 'dict_value' => 'Cisco%GPASS%3825'),
286 => array ('chapter_id' => 17, 'dict_value' => 'Cisco%GPASS%3845'),
287 => array ('chapter_id' => 24, 'dict_value' => '[[Juniper%GPASS%NetScreen 100 | http://www.juniper.net/customers/support/products/netscreen100.jsp]]'),
288 => array ('chapter_id' => 17, 'dict_value' => 'Foundry%GPASS%NetIron MLX-4'),
289 => array ('chapter_id' => 17, 'dict_value' => 'Foundry%GPASS%NetIron MLX-8'),
290 => array ('chapter_id' => 17, 'dict_value' => 'Foundry%GPASS%NetIron MLX-16'),
291 => array ('chapter_id' => 17, 'dict_value' => 'Foundry%GPASS%NetIron MLX-32'),
292 => array ('chapter_id' => 17, 'dict_value' => 'Foundry%GPASS%NetIron XMR 4000'),
293 => array ('chapter_id' => 17, 'dict_value' => 'Foundry%GPASS%NetIron XMR 8000'),
294 => array ('chapter_id' => 17, 'dict_value' => 'Foundry%GPASS%NetIron XMR 16000'),
295 => array ('chapter_id' => 17, 'dict_value' => 'Foundry%GPASS%NetIron XMR 32000'),
296 => array ('chapter_id' => 17, 'dict_value' => 'Foundry%GPASS%BigIron RX-4'),
297 => array ('chapter_id' => 17, 'dict_value' => 'Foundry%GPASS%BigIron RX-8'),
298 => array ('chapter_id' => 17, 'dict_value' => 'Foundry%GPASS%BigIron RX-16'),
299 => array ('chapter_id' => 17, 'dict_value' => 'Cisco%GPASS%1841'),
300 => array ('chapter_id' => 17, 'dict_value' => 'Cisco%GPASS%1812'),
301 => array ('chapter_id' => 17, 'dict_value' => 'Cisco%GPASS%1811'),
302 => array ('chapter_id' => 17, 'dict_value' => 'Cisco%GPASS%1803'),
303 => array ('chapter_id' => 17, 'dict_value' => 'Cisco%GPASS%1802'),
304 => array ('chapter_id' => 17, 'dict_value' => 'Cisco%GPASS%1801'),
305 => array ('chapter_id' => 17, 'dict_value' => 'Cisco%GPASS%7202'),
306 => array ('chapter_id' => 17, 'dict_value' => 'Cisco%GPASS%7204'),
307 => array ('chapter_id' => 17, 'dict_value' => 'Cisco%GPASS%7206'),
308 => array ('chapter_id' => 17, 'dict_value' => 'Cisco%GPASS%7604'),
309 => array ('chapter_id' => 17, 'dict_value' => 'Cisco%GPASS%OSR-7609'),
310 => array ('chapter_id' => 17, 'dict_value' => 'Foundry%GPASS%BigIron 8000'),
311 => array ('chapter_id' => 17, 'dict_value' => 'Foundry%GPASS%BigIron 15000'),
312 => array ('chapter_id' => 18, 'dict_value' => 'Sun StorEdge A1000'),
313 => array ('chapter_id' => 18, 'dict_value' => 'Dell/EMC AX150'),
314 => array ('chapter_id' => 18, 'dict_value' => 'EMC CLARiiON CX600'),
315 => array ('chapter_id' => 18, 'dict_value' => 'Sun StorEdge D240'),
316 => array ('chapter_id' => 18, 'dict_value' => 'EMC CLARiiON CX300'),
317 => array ('chapter_id' => 18, 'dict_value' => 'Sun StorageTek 6140'),
318 => array ('chapter_id' => 18, 'dict_value' => 'Sun StorageTek 3511'),
319 => array ('chapter_id' => 18, 'dict_value' => 'Sun StorageTek 3510'),
320 => array ('chapter_id' => 18, 'dict_value' => 'Sun StorageTek 3320'),
321 => array ('chapter_id' => 18, 'dict_value' => 'Sun StorageTek 3120'),
322 => array ('chapter_id' => 18, 'dict_value' => 'Dell PowerVault NX1950'),
323 => array ('chapter_id' => 18, 'dict_value' => 'Dell PowerVault 220S'),
324 => array ('chapter_id' => 18, 'dict_value' => 'Dell PowerVault MD3000'),
325 => array ('chapter_id' => 19, 'dict_value' => 'Dell PowerVault 136T'),
326 => array ('chapter_id' => 19, 'dict_value' => 'Sun StorageTek SL500'),
327 => array ('chapter_id' => 19, 'dict_value' => 'Sun StorageTek L1400'),
328 => array ('chapter_id' => 19, 'dict_value' => 'Sun StorageTek SL8500'),
329 => array ('chapter_id' => 19, 'dict_value' => 'Sun StorageTek C4'),
330 => array ('chapter_id' => 19, 'dict_value' => 'Dell PowerVault ML6000'),
331 => array ('chapter_id' => 19, 'dict_value' => 'Dell PowerVault 132T'),
332 => array ('chapter_id' => 19, 'dict_value' => 'Dell PowerVault TL4000'),
333 => array ('chapter_id' => 19, 'dict_value' => 'Dell PowerVault TL2000'),
334 => array ('chapter_id' => 19, 'dict_value' => 'Dell PowerVault 124T'),
335 => array ('chapter_id' => 19, 'dict_value' => 'Sun StorageTek C2'),
338 => array ('chapter_id' => 12, 'dict_value' => 'Dell PowerConnect%GPASS%2216'),
339 => array ('chapter_id' => 12, 'dict_value' => 'Dell PowerConnect%GPASS%2224'),
340 => array ('chapter_id' => 12, 'dict_value' => 'Dell PowerConnect%GPASS%2324'),
341 => array ('chapter_id' => 12, 'dict_value' => 'Dell PowerConnect%GPASS%2708'),
342 => array ('chapter_id' => 12, 'dict_value' => 'Dell PowerConnect%GPASS%2716'),
343 => array ('chapter_id' => 12, 'dict_value' => 'Dell PowerConnect%GPASS%2724'),
344 => array ('chapter_id' => 12, 'dict_value' => 'Dell PowerConnect%GPASS%2748'),
345 => array ('chapter_id' => 12, 'dict_value' => 'Dell PowerConnect%GPASS%3424'),
346 => array ('chapter_id' => 12, 'dict_value' => 'Dell PowerConnect%GPASS%3424P'),
347 => array ('chapter_id' => 12, 'dict_value' => 'Dell PowerConnect%GPASS%3448'),
348 => array ('chapter_id' => 12, 'dict_value' => 'Dell PowerConnect%GPASS%3448P'),
349 => array ('chapter_id' => 12, 'dict_value' => 'Dell PowerConnect%GPASS%5324'),
350 => array ('chapter_id' => 12, 'dict_value' => 'Dell PowerConnect%GPASS%6224'),
351 => array ('chapter_id' => 12, 'dict_value' => 'Dell PowerConnect%GPASS%6224P'),
352 => array ('chapter_id' => 12, 'dict_value' => 'Dell PowerConnect%GPASS%6224F'),
353 => array ('chapter_id' => 12, 'dict_value' => 'Dell PowerConnect%GPASS%6248'),
354 => array ('chapter_id' => 12, 'dict_value' => 'Dell PowerConnect%GPASS%6248P'),
355 => array ('chapter_id' => 11, 'dict_value' => 'Dell PowerEdge%GPASS%6850'),
356 => array ('chapter_id' => 11, 'dict_value' => 'Dell PowerEdge%GPASS%6950'),
357 => array ('chapter_id' => 11, 'dict_value' => 'Dell PowerEdge%GPASS%R900'),
358 => array ('chapter_id' => 11, 'dict_value' => 'Dell PowerEdge%GPASS%4400'),
359 => array ('chapter_id' => 11, 'dict_value' => 'Dell PowerEdge%GPASS%2650'),
360 => array ('chapter_id' => 11, 'dict_value' => 'Dell PowerEdge%GPASS%2550'),
361 => array ('chapter_id' => 11, 'dict_value' => 'Dell PowerEdge%GPASS%750'),
362 => array ('chapter_id' => 11, 'dict_value' => 'Dell PowerEdge%GPASS%2450'),
363 => array ('chapter_id' => 11, 'dict_value' => 'Dell PowerEdge%GPASS%850'),
364 => array ('chapter_id' => 11, 'dict_value' => 'Dell PowerEdge%GPASS%1850'),
365 => array ('chapter_id' => 11, 'dict_value' => 'Dell PowerEdge%GPASS%860'),
366 => array ('chapter_id' => 11, 'dict_value' => 'Dell PowerEdge%GPASS%2900'),
367 => array ('chapter_id' => 11, 'dict_value' => 'Dell PowerEdge%GPASS%2970'),
368 => array ('chapter_id' => 11, 'dict_value' => 'Dell PowerEdge%GPASS%SC1435'),
369 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 6509'),
370 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%ME 6524GS-8S'),
371 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%ME 6524GT-8S'),
372 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 4503-E'),
373 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 4506-E'),
374 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 4507R-E'),
375 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 4510R-E'),
376 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3750-24TE-M'),
377 => array ('chapter_id' => 12, 'dict_value' => '[[Cisco%GPASS%Catalyst 4948-10GE | http://www.cisco.com/en/US/products/ps6230/index.html]]'),
378 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%ME 4924-10GE'),
379 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 2960-24'),
380 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 2950-24'),
381 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 2950-12'),
382 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 2950C-24'),
383 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 2950G-24-DC'),
384 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 2950SX-48'),
385 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 2950SX-24'),
386 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 2950T-24'),
387 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 2950T-48'),
388 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 2950G-12'),
389 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 2950G-24'),
390 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 2950G-48'),
391 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3508G XL'),
392 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3512 XL'),
393 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3524 XL'),
394 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3524 PWR XL'),
395 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3548 XL'),
396 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%ME 2400-24TS-A'),
397 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%ME 2400-24TS-D'),
398 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3550-12T'),
399 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3550-12G'),
400 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3550-24'),
401 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3550-24 FX'),
402 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3550-24 DC'),
403 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3550-24 PWR'),
404 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3550-48'),
405 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%ME 3400G-12CS-A'),
406 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%ME 3400G-12CS-D'),
407 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%ME 3400G-2CS-A'),
408 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%ME 3400-24TS-A'),
409 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%ME 3400-24TS-D'),
410 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%ME 3400-24FS-A'),
411 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%FastIron GS 624XGP'),
412 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%FastIron GS 624XGP-POE'),
413 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%FastIron LS 624'),
414 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%FastIron LS 648'),
415 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%NetIron M2404F'),
416 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%NetIron M2404C'),
417 => array ('chapter_id' => 17, 'dict_value' => 'Foundry%GPASS%BigIron RX-32'),
418 => array ('chapter_id' => 13, 'dict_value' => '[[Linux%GSKIP%Debian 2.0 (hamm) | http://debian.org/releases/hamm/]]'),
419 => array ('chapter_id' => 13, 'dict_value' => '[[Linux%GSKIP%Debian 2.1 (slink) | http://debian.org/releases/slink/]]'),
420 => array ('chapter_id' => 13, 'dict_value' => '[[Linux%GSKIP%Debian 2.2 (potato) | http://debian.org/releases/potato/]]'),
421 => array ('chapter_id' => 13, 'dict_value' => '[[Linux%GSKIP%Debian 4.0 (etch) | http://debian.org/releases/etch/]]'),
422 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%ALTLinux Server 4.0'),
423 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%ALTLinux Sisyphus'),
424 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%openSUSE 10.0'),
425 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%openSUSE 10.1'),
426 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%openSUSE 10.2'),
427 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%openSUSE 10.3'),
428 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%Ubuntu 4.10'),
429 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%Ubuntu 5.04'),
430 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%Ubuntu 5.10'),
431 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%Ubuntu 6.06 LTS'),
432 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%Ubuntu 6.10'),
433 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%Ubuntu 7.04'),
434 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%Ubuntu 7.10'),
435 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%Ubuntu 8.04 LTS'),
436 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%RHEL5'),
437 => array ('chapter_id' => 18, 'dict_value' => 'Dell PowerVault 210S'),
438 => array ('chapter_id' => 18, 'dict_value' => 'Dell PowerVault 221S'),
439 => array ('chapter_id' => 2, 'dict_value' => 'dry contact'),
440 => array ('chapter_id' => 2, 'dict_value' => 'unknown'),
441 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%CentOS-2'),
442 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%CentOS-3'),
443 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%CentOS-4'),
444 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%CentOS-5'),
445 => array ('chapter_id' => 1, 'dict_value' => 'KVM switch'),
446 => array ('chapter_id' => 2, 'dict_value' => 'KVM (console)'),
447 => array ('chapter_id' => 1, 'dict_value' => 'multiplexer'),
448 => array ('chapter_id' => 21, 'dict_value' => '[[Avocent DSR1021 | http://www.avocent.com/WorkArea/linkit.aspx?LinkIdentifier=id&ItemID=2418]]'),
449 => array ('chapter_id' => 21, 'dict_value' => '[[Avocent DSR1022 | http://www.avocent.com/WorkArea/linkit.aspx?LinkIdentifier=id&ItemID=2498]]'),
450 => array ('chapter_id' => 21, 'dict_value' => '[[Avocent DSR1024 | http://www.avocent.com/WorkArea/linkit.aspx?LinkIdentifier=id&ItemID=2588]]'),
451 => array ('chapter_id' => 21, 'dict_value' => '[[Avocent DSR1031 | http://www.avocent.com/WorkArea/linkit.aspx?LinkIdentifier=id&ItemID=2804]]'),
452 => array ('chapter_id' => 21, 'dict_value' => '[[Avocent DSR1020 | http://www.avocent.com/WorkArea/linkit.aspx?LinkIdentifier=id&ItemID=2340]]'),
453 => array ('chapter_id' => 21, 'dict_value' => '[[Avocent DSR2020 | http://www.avocent.com/WorkArea/linkit.aspx?LinkIdentifier=id&ItemID=2884]]'),
454 => array ('chapter_id' => 21, 'dict_value' => '[[Avocent DSR4020 | http://www.avocent.com/WorkArea/linkit.aspx?LinkIdentifier=id&ItemID=3100]]'),
455 => array ('chapter_id' => 21, 'dict_value' => '[[Avocent DSR8020 | http://www.avocent.com/WorkArea/linkit.aspx?LinkIdentifier=id&ItemID=3358]]'),
456 => array ('chapter_id' => 21, 'dict_value' => '[[Avocent DSR1030 | http://www.avocent.com/WorkArea/linkit.aspx?LinkIdentifier=id&ItemID=2726]]'),
457 => array ('chapter_id' => 21, 'dict_value' => '[[Avocent DSR2030 | http://www.avocent.com/WorkArea/linkit.aspx?LinkIdentifier=id&ItemID=2988]]'),
458 => array ('chapter_id' => 21, 'dict_value' => '[[Avocent DSR2035 | http://www.avocent.com/WorkArea/linkit.aspx?LinkIdentifier=id&ItemID=3050]]'),
459 => array ('chapter_id' => 21, 'dict_value' => '[[Avocent DSR4030 | http://www.avocent.com/WorkArea/linkit.aspx?LinkIdentifier=id&ItemID=3196]]'),
460 => array ('chapter_id' => 21, 'dict_value' => '[[Avocent DSR8030 | http://www.avocent.com/WorkArea/linkit.aspx?LinkIdentifier=id&ItemID=3472]]'),
461 => array ('chapter_id' => 21, 'dict_value' => '[[Avocent DSR8035 | http://www.avocent.com/WorkArea/linkit.aspx?LinkIdentifier=id&ItemID=3580]]'),
462 => array ('chapter_id' => 21, 'dict_value' => '[[Avocent AutoView 1415 | http://www.avocent.com/WorkArea/linkit.aspx?LinkIdentifier=id&ItemID=1612]]'),
463 => array ('chapter_id' => 21, 'dict_value' => '[[Avocent AutoView 1515 | http://www.avocent.com/WorkArea/linkit.aspx?LinkIdentifier=id&ItemID=1736]]'),
464 => array ('chapter_id' => 21, 'dict_value' => '[[Avocent AutoView 2015 | http://www.avocent.com/WorkArea/linkit.aspx?LinkIdentifier=id&ItemID=1930]]'),
465 => array ('chapter_id' => 21, 'dict_value' => '[[Avocent AutoView 2020 | http://www.avocent.com/WorkArea/linkit.aspx?LinkIdentifier=id&ItemID=2012]]'),
466 => array ('chapter_id' => 21, 'dict_value' => '[[Avocent AutoView 2030 | http://www.avocent.com/WorkArea/linkit.aspx?LinkIdentifier=id&ItemID=2114]]'),
467 => array ('chapter_id' => 21, 'dict_value' => '[[Avocent AutoView 3100 | http://www.avocent.com/WorkArea/linkit.aspx?LinkIdentifier=id&ItemID=2222]]'),
468 => array ('chapter_id' => 21, 'dict_value' => '[[Avocent AutoView 3200 | http://www.avocent.com/WorkArea/linkit.aspx?LinkIdentifier=id&ItemID=2266]]'),
469 => array ('chapter_id' => 21, 'dict_value' => '[[Avocent SwitchView 1000 4-port | http://www.avocent.com/WorkArea/linkit.aspx?LinkIdentifier=id&ItemID=4016]]'),
470 => array ('chapter_id' => 21, 'dict_value' => '[[Avocent SwitchView 1000 8-port | http://www.avocent.com/WorkArea/linkit.aspx?LinkIdentifier=id&ItemID=4094]]'),
471 => array ('chapter_id' => 21, 'dict_value' => '[[Avocent SwitchView 1000 16-port | http://www.avocent.com/WorkArea/linkit.aspx?LinkIdentifier=id&ItemID=3934]]'),
472 => array ('chapter_id' => 22, 'dict_value' => '[[Cronyx%GPASS%FMUX/S-4E1 | http://www.cronyx.ru/hardware/fmux-ring.html]]'),
473 => array ('chapter_id' => 22, 'dict_value' => '[[Cronyx%GPASS%FMUX/S-4E1/ETS | http://www.cronyx.ru/hardware/fmux-ring.html]]'),
474 => array ('chapter_id' => 22, 'dict_value' => '[[Cronyx%GPASS%FMUX/S-4E1/M | http://www.cronyx.ru/hardware/fmux-ring.html]]'),
475 => array ('chapter_id' => 22, 'dict_value' => '[[Cronyx%GPASS%FMUX/S-8E1 | http://www.cronyx.ru/hardware/fmux-ring.html]]'),
476 => array ('chapter_id' => 22, 'dict_value' => '[[Cronyx%GPASS%FMUX/S-8E1/ETS | http://www.cronyx.ru/hardware/fmux-ring.html]]'),
477 => array ('chapter_id' => 22, 'dict_value' => '[[Cronyx%GPASS%FMUX/S-8E1/M | http://www.cronyx.ru/hardware/fmux-ring.html]]'),
478 => array ('chapter_id' => 22, 'dict_value' => '[[Cronyx%GPASS%FMUX/S-16E1 | http://www.cronyx.ru/hardware/fmux-ring.html]]'),
479 => array ('chapter_id' => 22, 'dict_value' => '[[Cronyx%GPASS%FMUX/S-16E1/ETS | http://www.cronyx.ru/hardware/fmux-ring.html]]'),
480 => array ('chapter_id' => 22, 'dict_value' => '[[Cronyx%GPASS%FMUX/S-16E1/M | http://www.cronyx.ru/hardware/fmux-ring.html]]'),
481 => array ('chapter_id' => 22, 'dict_value' => '[[Cronyx%GPASS%E1-XL/S | http://www.cronyx.ru/hardware/e1xl-s.html]]'),
482 => array ('chapter_id' => 22, 'dict_value' => '[[Cronyx%GPASS%E1-DXC/S | http://www.cronyx.ru/hardware/e1dxc-s.html]]'),
483 => array ('chapter_id' => 22, 'dict_value' => '[[Cronyx%GPASS%FMUX-4-E2 | http://www.cronyx.ru/hardware/fmux4-e2.html]]'),
484 => array ('chapter_id' => 22, 'dict_value' => '[[Cronyx%GPASS%FMUX-16-E3 | http://www.cronyx.ru/hardware/fmux16-e3.html]]'),
485 => array ('chapter_id' => 22, 'dict_value' => '[[Cronyx%GPASS%FMUX/SAT | http://www.cronyx.ru/hardware/fmux-sat.html]]'),
486 => array ('chapter_id' => 22, 'dict_value' => '[[Cronyx%GPASS%E1-XL/S-IP | http://www.cronyx.ru/hardware/e1xl-ip.html]]'),
487 => array ('chapter_id' => 17, 'dict_value' => '[[RAD%GPASS%FCD-IPM | http://www.rad.com/Article/0,6583,36426-E1_T1_or_Fractional_E1_T1_Modular_Access_Device_with_Integrated_Router,00.html]]'),
488 => array ('chapter_id' => 22, 'dict_value' => '[[RAD%GPASS%FCD-E1M | http://www.rad.com/Article/0,6583,36723-E1_T1_Modular_Access_Multiplexer,00.html]]'),
489 => array ('chapter_id' => 22, 'dict_value' => '[[RAD%GPASS%FCD-T1M | http://www.rad.com/Article/0,6583,36723-E1_T1_Modular_Access_Multiplexer,00.html]]'),
490 => array ('chapter_id' => 22, 'dict_value' => '[[RAD%GPASS%FCD-155E | http://www.rad.com/Article/0,6583,36276-Ethernet_over_SDH_SONET_ADM,00.html]]'),
491 => array ('chapter_id' => 21, 'dict_value' => '[[Aten CS78 | http://www.aten.com/products/productItem.php?pcid=20070130111936003&psid=20070130133658002&pid=20070319151852001&layerid=subClass2]]'),
492 => array ('chapter_id' => 21, 'dict_value' => '[[Aten ACS1208A | http://www.aten.com/products/productItem.php?pcid=20070130111936003&psid=20070130133658002&pid=20050224111025006&layerid=subClass2]]'),
493 => array ('chapter_id' => 21, 'dict_value' => '[[Aten ACS1216A | http://www.aten.com/products/productItem.php?pcid=20070130111936003&psid=20070130133658002&pid=20050224111953008&layerid=subClass2]]'),
494 => array ('chapter_id' => 21, 'dict_value' => '[[Aten CS1754 | http://www.aten.com/products/productItem.php?pcid=20070130111936003&psid=20070130133658002&pid=20050217161051008&layerid=subClass2]]'),
495 => array ('chapter_id' => 21, 'dict_value' => '[[Aten CS1758 | http://www.aten.com/products/productItem.php?pcid=20070130111936003&psid=20070130133658002&pid=20050224093143008&layerid=subClass2]]'),
496 => array ('chapter_id' => 21, 'dict_value' => '[[Aten CS9134 | http://www.aten.com/products/productItem.php?pcid=2005010513171002&psid=20070130133658002&pid=20050217172845005&layerid=subClass2]]'),
497 => array ('chapter_id' => 21, 'dict_value' => '[[Aten CS9138 | http://www.aten.com/products/productItem.php?pcid=20070130111936003&psid=20070130133658002&pid=20050224094519006&layerid=subClass2]]'),
498 => array ('chapter_id' => 21, 'dict_value' => '[[Aten CS1708 | http://www.aten.com/products/productItem.php?pcid=20070130111936003&psid=20070130133658002&pid=2005022410563008&layerid=subClass2]]'),
499 => array ('chapter_id' => 21, 'dict_value' => '[[Aten CS1716 | http://www.aten.com/products/productItem.php?pcid=20070130111936003&psid=20070130133658002&pid=20050224110022008&layerid=subClass2]]'),
500 => array ('chapter_id' => 21, 'dict_value' => '[[Aten CS1004 | http://www.aten.com/products/productItem.php?pcid=20070130111936003&psid=20070130133658002&pid=20050224100546008&layerid=subClass2]]'),
501 => array ('chapter_id' => 21, 'dict_value' => '[[Aten CS228 | http://www.aten.com/products/productItem.php?pcid=20070130111936003&psid=20070130133658002&pid=20050224114323008&layerid=subClass2]]'),
502 => array ('chapter_id' => 21, 'dict_value' => '[[Aten CS428 | http://www.aten.com/products/productItem.php?pcid=20070130111936003&psid=20070130133658002&pid=20050224114721008&layerid=subClass2]]'),
503 => array ('chapter_id' => 21, 'dict_value' => '[[Aten CS138A | http://www.aten.com/products/productItem.php?pcid=20070130111936003&psid=20070130133658002&pid=20050224111458007&layerid=subClass2]]'),
504 => array ('chapter_id' => 21, 'dict_value' => '[[Aten CS88A | http://www.aten.com/products/productItem.php?pcid=20070130111936003&psid=20070130133658002&pid=2005022411042006&layerid=subClass2]]'),
505 => array ('chapter_id' => 21, 'dict_value' => '[[Aten KM0832 | http://www.aten.com/products/productItem.php?pcid=2005010513171002&psid=20060411131626002&pid=20060628154826001&layerid=subClass1]]'),
506 => array ('chapter_id' => 21, 'dict_value' => '[[Aten KM0216 | http://www.aten.com/products/productItem.php?pcid=2006041110563001&psid=20060411131626002&pid=20060417153950007&layerid=subClass1]]'),
507 => array ('chapter_id' => 21, 'dict_value' => '[[Aten KM0432 | http://www.aten.com/products/productItem.php?pcid=2006041110563001&psid=20060411131626002&pid=2006041715359007&layerid=subClass1]]'),
508 => array ('chapter_id' => 21, 'dict_value' => '[[Aten KH1508 | http://www.aten.com/products/productItem.php?pcid=2006041110563001&psid=20060411130954001&pid=20061101174038001&layerid=subClass1]]'),
509 => array ('chapter_id' => 21, 'dict_value' => '[[Aten KH1516 | http://www.aten.com/products/productItem.php?pcid=2006041110563001&psid=20060411130954001&pid=20061101175320001&layerid=subClass1]]'),
510 => array ('chapter_id' => 21, 'dict_value' => '[[Aten KH0116 | http://www.aten.com/products/productItem.php?pcid=2006041110563001&psid=20060411130954001&pid=20060411145734003&layerid=subClass1]]'),
511 => array ('chapter_id' => 21, 'dict_value' => '[[Aten KH98 | http://www.aten.com/products/productItem.php?pcid=2005010513171002&psid=2007012911116003&pid=20061221104352001&layerid=subClass1]]'),
512 => array ('chapter_id' => 23, 'dict_value' => '[[Aten KL1100 | http://www.aten.com/products/productItem.php?pcid=2005010513171002&psid=20060411131050002&pid=20071225113046001&layerid=subClass1]]'),
513 => array ('chapter_id' => 23, 'dict_value' => '[[Aten KL1508 | http://www.aten.com/products/productItem.php?pcid=2006041110563001&psid=20060411131050002&pid=20070710020717009&layerid=subClass1]]'),
514 => array ('chapter_id' => 23, 'dict_value' => '[[Aten KL1516 | http://www.aten.com/products/productItem.php?pcid=2006041110563001&psid=20060411131050002&pid=20070716232614001&layerid=subClass1]]'),
515 => array ('chapter_id' => 23, 'dict_value' => '[[Aten KL9108 | http://www.aten.com/products/productItem.php?pcid=2005010513171002&psid=20060411131050002&pid=20060811153413009&layerid=subClass1]]'),
516 => array ('chapter_id' => 23, 'dict_value' => '[[Aten KL9116 | http://www.aten.com/products/productItem.php?pcid=2006041110563001&psid=20060411131050002&pid=2006081115384001&layerid=subClass1]]'),
517 => array ('chapter_id' => 23, 'dict_value' => '[[Aten KL3116 | http://www.aten.com/products/productItem.php?pcid=2005010513171002&psid=20060411131050002&pid=20060913162532009&layerid=subClass1]]'),
518 => array ('chapter_id' => 23, 'dict_value' => '[[Aten KL1116 | http://www.aten.com/products/productItem.php?pcid=2006041110563001&psid=20060411131050002&pid=20060420101520005&layerid=subClass1]]'),
519 => array ('chapter_id' => 23, 'dict_value' => '[[Aten CS1208DL | http://www.aten.com/products/productItem.php?pcid=2005010513171002&psid=20060411131050002&pid=2005022413505007&layerid=subClass1]]'),
520 => array ('chapter_id' => 23, 'dict_value' => '[[Aten CS1216DL | http://www.aten.com/products/productItem.php?pcid=2005010513171002&psid=20060411131050002&pid=2005022413505007&layerid=subClass1]]'),
521 => array ('chapter_id' => 23, 'dict_value' => '[[Aten CS1200L | http://www.aten.com/products/productItem.php?pcid=2005010513171002&psid=20060411131050002&pid=20050224140854008&layerid=subClass1]]'),
522 => array ('chapter_id' => 23, 'dict_value' => '[[Aten CL1758 | http://www.aten.com/products/productItem.php?pcid=2005010513171002&psid=20060411131050002&pid=20051229164553003&layerid=subClass1]]'),
523 => array ('chapter_id' => 23, 'dict_value' => '[[Aten CL1208 | http://www.aten.com/products/productItem.php?pcid=2005010513171002&psid=20060411131050002&pid=2005072215482&layerid=subClass1]]'),
524 => array ('chapter_id' => 23, 'dict_value' => '[[Aten CL1216 | http://www.aten.com/products/productItem.php?pcid=2005010513171002&psid=20060411131050002&pid=2005072215482&layerid=subClass1]]'),
525 => array ('chapter_id' => 23, 'dict_value' => '[[Aten CL1200 | http://www.aten.com/products/productItem.php?pcid=2005010513171002&psid=20060411131050002&pid=20050722165040002&layerid=subClass1]]'),
526 => array ('chapter_id' => 23, 'dict_value' => '[[Aten ACS1208AL | http://www.aten.com/products/productItem.php?pcid=2005010513171002&psid=20060411131050002&pid=2005022413597003&layerid=subClass1]]'),
527 => array ('chapter_id' => 23, 'dict_value' => '[[Aten ACS1216AL | http://www.aten.com/products/productItem.php?pcid=2005010513171002&psid=20060411131050002&pid=2005022413597003&layerid=subClass1]]'),
528 => array ('chapter_id' => 22, 'dict_value' => '[[Tainet%GPASS%MUXpro 8216 | http://www.tainet.net/Product/muxpro820_8216.htm]]'),
529 => array ('chapter_id' => 22, 'dict_value' => '[[Tainet%GPASS%Mercury 3600+ | http://www.tainet.net/Product/mercury.htm]]'),
530 => array ('chapter_id' => 22, 'dict_value' => '[[Tainet%GPASS%Mercury 3820 | http://www.tainet.net/Product/mercury.htm]]'),
531 => array ('chapter_id' => 22, 'dict_value' => '[[Tainet%GPASS%Mercury 3630 | http://www.tainet.net/Product/mercury.htm]]'),
532 => array ('chapter_id' => 22, 'dict_value' => '[[Tainet%GPASS%Mercury 3630E | http://www.tainet.net/Product/mercury.htm]]'),
533 => array ('chapter_id' => 22, 'dict_value' => '[[Tainet%GPASS%DSD-08A | http://www.tainet.net/Product/dsd08a.htm]]'),
534 => array ('chapter_id' => 11, 'dict_value' => '[[HP ProLiant%GPASS%DL160 | http://h10010.www1.hp.com/wwpc/us/en/en/WF05a/15351-15351-3328412-241644-3328421-3580694.html]]'),
535 => array ('chapter_id' => 11, 'dict_value' => '[[HP ProLiant%GPASS%DL180 | http://h10010.www1.hp.com/wwpc/us/en/en/WF05a/15351-15351-3328412-241644-3328421-3580698.html]]'),
536 => array ('chapter_id' => 11, 'dict_value' => '[[HP ProLiant%GPASS%DL185 | http://h10010.www1.hp.com/wwpc/us/en/en/WF05a/15351-15351-3328412-241644-3328421-3579900.html]]'),
537 => array ('chapter_id' => 11, 'dict_value' => '[[HP ProLiant%GPASS%DL365 | http://h10010.www1.hp.com/wwpc/us/en/en/WF05a/15351-15351-3328412-241644-241475-3186080.html]]'),
538 => array ('chapter_id' => 11, 'dict_value' => '[[HP ProLiant%GPASS%DL320s | http://h10010.www1.hp.com/wwpc/us/en/en/WF05a/15351-15351-3328412-241644-241475-3232017.html]]'),
539 => array ('chapter_id' => 11, 'dict_value' => '[[HP ProLiant%GPASS%DL320p | http://h10010.www1.hp.com/wwpc/us/en/en/WF05a/15351-15351-3328412-241644-241475-3579703.html]]'),
540 => array ('chapter_id' => 11, 'dict_value' => '[[HP ProLiant%GPASS%ML115 | http://h10010.www1.hp.com/wwpc/us/en/en/WF05a/15351-15351-241434-241646-3328424-3330535.html]]'),
541 => array ('chapter_id' => 12, 'dict_value' => '[[Force10%GPASS%S2410CP | http://www.force10networks.com/products/s2410.asp]]'),
542 => array ('chapter_id' => 12, 'dict_value' => '[[Force10%GPASS%S50N | http://www.force10networks.com/products/s50n.asp]]'),
543 => array ('chapter_id' => 12, 'dict_value' => '[[Force10%GPASS%S50V | http://www.force10networks.com/products/s50v.asp]]'),
544 => array ('chapter_id' => 12, 'dict_value' => '[[Force10%GPASS%S25P | http://www.force10networks.com/products/s25p.asp]]'),
545 => array ('chapter_id' => 12, 'dict_value' => '[[Force10%GPASS%C150| http://www.force10networks.com/products/cseries.asp]]'),
546 => array ('chapter_id' => 12, 'dict_value' => '[[Force10%GPASS%C300| http://www.force10networks.com/products/cseries.asp]]'),
547 => array ('chapter_id' => 12, 'dict_value' => '[[Force10%GPASS%E300 | http://www.force10networks.com/products/eseries.asp]]'),
548 => array ('chapter_id' => 12, 'dict_value' => '[[Force10%GPASS%E600 | http://www.force10networks.com/products/eseries.asp]]'),
549 => array ('chapter_id' => 12, 'dict_value' => '[[Force10%GPASS%E1200 | http://www.force10networks.com/products/eseries.asp]]'),
550 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%JGS524F | http://www.netgear.com/Products/Switches/UnmanagedSwitches/JGS524F.aspx]]'),
551 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%JGS516 | http://www.netgear.com/Products/Switches/UnmanagedSwitches/JGS516.aspx]]'),
552 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%JFS524 | http://www.netgear.com/Products/Switches/UnmanagedSwitches/JFS524.aspx]]'),
553 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%JFS524F | http://www.netgear.com/Products/Switches/UnmanagedSwitches/JFS524F.aspx]]'),
554 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%JGS524 | http://www.netgear.com/Products/Switches/UnmanagedSwitches/JGS524.aspx]]'),
555 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%FS524 | http://www.netgear.com/Products/Switches/UnmanagedSwitches/FS524.aspx]]'),
556 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%JFS516 | http://www.netgear.com/Products/Switches/UnmanagedSwitches/JFS516.aspx]]'),
557 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%GSM7224R | http://www.netgear.com/Products/Switches/Layer2ManagedSwitches/GSM7224R.aspx]]'),
558 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%GSM7248 | http://www.netgear.com/Products/Switches/Layer2ManagedSwitches/GSM7248.aspx]]'),
559 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%GSM7212 | http://www.netgear.com/Products/Switches/Layer2ManagedSwitches/GSM7212.aspx]]'),
560 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%FSM726S | http://www.netgear.com/Products/Switches/Layer2ManagedSwitches/FSM726S.aspx]]'),
561 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%GSM7248R | http://www.netgear.com/Products/Switches/Layer2ManagedSwitches/GSM7248R.aspx]]'),
562 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%GSM7224 | http://www.netgear.com/Products/Switches/FullyManaged10_100_1000Switches/GSM7224.aspx]]'),
563 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%FSM750S | http://www.netgear.com/Products/Switches/Layer2ManagedSwitches/FSM750S.aspx]]'),
564 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%FSM726 | http://www.netgear.com/Products/Switches/Layer2ManagedSwitches/FSM726.aspx]]'),
565 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%GS724TP | http://www.netgear.com/Products/Switches/SmartSwitches/GS724TP.aspx]]'),
566 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%GS748TS | http://www.netgear.com/Products/Switches/SmartSwitches/GS748TS.aspx]]'),
567 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%GS724T | http://www.netgear.com/Products/Switches/SmartSwitches/GS724T.aspx]]'),
568 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%FS728TP | http://www.netgear.com/Products/Switches/SmartSwitches/FS728TP.aspx]]'),
569 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%FS752TS | http://www.netgear.com/Products/Switches/SmartSwitches/FS752TS.aspx]]'),
570 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%FS728TS | http://www.netgear.com/Products/Switches/SmartSwitches/FS728TS.aspx]]'),
571 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%FS726T | http://www.netgear.com/Products/Switches/SmartSwitches/FS726T.aspx]]'),
572 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%GS748TP | http://www.netgear.com/Products/Switches/SmartSwitches/GS748TP.aspx]]'),
573 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%GS724TS | http://www.netgear.com/Products/Switches/SmartSwitches/GS724TS.aspx]]'),
574 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%GS748T | http://www.netgear.com/Products/Switches/SmartSwitches/GS748T.aspx]]'),
575 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%GS716T | http://www.netgear.com/Products/Switches/SmartSwitches/GS716T.aspx]]'),
576 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%FS752TPS | http://www.netgear.com/Products/Switches/SmartSwitches/FS752TPS.aspx]]'),
577 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%FS750T2 | http://www.netgear.com/Products/Switches/SmartSwitches/FS750T2.aspx]]'),
578 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%FS726TP | http://www.netgear.com/Products/Switches/SmartSwitches/FS726TP.aspx]]'),
579 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%FSM7328PS | http://www.netgear.com/Products/Switches/Layer3ManagedSwitches/FSM7328PS.aspx]]'),
580 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%GSM7352S | http://www.netgear.com/Products/Switches/Layer3ManagedSwitches/GSM7352S.aspx]]'),
581 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%GSM7324 | http://www.netgear.com/Products/Switches/Layer3ManagedSwitches/GSM7324.aspx]]'),
582 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%FSM7326P | http://www.netgear.com/Products/Switches/Layer3ManagedSwitches/FSM7326P.aspx]]'),
583 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%FSM7352PS | http://www.netgear.com/Products/Switches/Layer3ManagedSwitches/FSM7352PS.aspx]]'),
584 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%GSM7328FS | http://www.netgear.com/Products/Switches/Layer3ManagedSwitches/GSM7328FS.aspx]]'),
585 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%GSM7328S | http://www.netgear.com/Products/Switches/Layer3ManagedSwitches/GSM7328S.aspx]]'),
586 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%GSM7312 | http://www.netgear.com/Products/Switches/Layer3ManagedSwitches/GSM7312.aspx]]'),
587 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%FSM7328S | http://www.netgear.com/Products/Switches/Layer3ManagedSwitches/FSM7328S.aspx]]'),
588 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%FSM7352S | http://www.netgear.com/Products/Switches/Layer3ManagedSwitches/FSM7352S.aspx]]'),
589 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DES-6500 | http://www.dlink.com/products/?sec=0&pid=341]]'),
590 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DWS-3227 | http://www.dlink.com/products/?sec=0&pid=506]]'),
591 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DWS-3227P | http://www.dlink.com/products/?sec=0&pid=507]]'),
592 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DWS-3250 | http://www.dlink.com/products/?sec=0&pid=468]]'),
593 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DWS-1008 | http://www.dlink.com/products/?sec=0&pid=434]]'),
594 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DGS-3612G | http://www.dlink.com/products/?sec=0&pid=557]]'),
595 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DGS-3627 | http://www.dlink.com/products/?sec=0&pid=639]]'),
596 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DGS-3650 | http://www.dlink.com/products/?sec=0&pid=640]]'),
597 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DGS-3324SR | http://www.dlink.com/products/?sec=0&pid=294]]'),
598 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DGS-3324SRi | http://www.dlink.com/products/?sec=0&pid=309]]'),
599 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DXS-3326GSR | http://www.dlink.com/products/?sec=0&pid=339]]'),
600 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DXS-3350SR | http://www.dlink.com/products/?sec=0&pid=340]]'),
601 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DES-3828 | http://www.dlink.com/products/?sec=0&pid=439]]'),
602 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DES-3828P | http://www.dlink.com/products/?sec=0&pid=440]]'),
603 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DGS-3100-24 | http://www.dlink.com/products/?sec=0&pid=635]]'),
604 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DGS-3100-24P | http://www.dlink.com/products/?sec=0&pid=636]]'),
605 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DGS-3100-48 | http://www.dlink.com/products/?sec=0&pid=637]]'),
606 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DGS-3100-48P | http://www.dlink.com/products/?sec=0&pid=638]]'),
607 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DXS-3227 | http://www.dlink.com/products/?sec=0&pid=483]]'),
608 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DXS-3227P | http://www.dlink.com/products/?sec=0&pid=497]]'),
609 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DXS-3250 | http://www.dlink.com/products/?sec=0&pid=443]]'),
610 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DGS-3024 | http://www.dlink.com/products/?sec=0&pid=404]]'),
611 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DGS-3224TGR | http://www.dlink.com/products/?sec=0&pid=269]]'),
612 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DGS-3048 | http://www.dlink.com/products/?sec=0&pid=496]]'),
613 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DES-3228PA | http://www.dlink.com/products/?sec=0&pid=644]]'),
614 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DES-3028 | http://www.dlink.com/products/?sec=0&pid=630]]'),
615 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DES-3028P | http://www.dlink.com/products/?sec=0&pid=631]]'),
616 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DES-3052 | http://www.dlink.com/products/?sec=0&pid=632]]'),
617 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DES-3052P | http://www.dlink.com/products/?sec=0&pid=633]]'),
618 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DES-3010FA | http://www.dlink.com/products/?sec=0&pid=423]]'),
619 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DES-3010GA | http://www.dlink.com/products/?sec=0&pid=424]]'),
620 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DES-3010PA | http://www.dlink.com/products/?sec=0&pid=469]]'),
621 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DES-3226L | http://www.dlink.com/products/?sec=0&pid=298]]'),
622 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DES-3526 | http://www.dlink.com/products/?sec=0&pid=330]]'),
623 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DES-3550 | http://www.dlink.com/products/?sec=0&pid=331]]'),
624 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DGS-1216T | http://www.dlink.com/products/?sec=0&pid=324]]'),
625 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DGS-1224T | http://www.dlink.com/products/?sec=0&pid=329]]'),
626 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DGS-1248T | http://www.dlink.com/products/?sec=0&pid=367]]'),
627 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DES-1316 | http://www.dlink.com/products/?sec=0&pid=353]]'),
628 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DES-1228 | http://www.dlink.com/products/?sec=0&pid=540]]'),
629 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DES-1228P | http://www.dlink.com/products/?sec=0&pid=541]]'),
630 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DES-1252 | http://www.dlink.com/products/?sec=0&pid=555]]'),
631 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DGS-1016D | http://www.dlink.com/products/?sec=0&pid=337]]'),
632 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DGS-1024D | http://www.dlink.com/products/?sec=0&pid=338]]'),
633 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DSS-24+ | http://www.dlink.com/products/?sec=0&pid=73]]'),
634 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DES-1024D | http://www.dlink.com/products/?sec=0&pid=75]]'),
635 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DES-1026G | http://www.dlink.com/products/?sec=0&pid=76]]'),
636 => array ('chapter_id' => 21, 'dict_value' => '[[D-Link%GPASS%DKVM-16 | http://www.dlink.com/products/?sec=0&pid=228]]'),
637 => array ('chapter_id' => 21, 'dict_value' => '[[D-Link%GPASS%DKVM-8E | http://www.dlink.com/products/?sec=0&pid=161]]'),
638 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RC702 | http://www.raisecom-international.com/p/RC702.htm]]'),
639 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RC702-GE | http://www.raisecom-international.com/p/RC702GE.htm]]'),
640 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%ISCOM4300 | http://www.raisecom-international.com/p/ISCOM4300.htm]]'),
641 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RC953-FE4E1 | http://www.raisecom-international.com/p/RC953FE4E1.htm]]'),
642 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RC953-FX4E1 | http://www.raisecom-international.com/p/RC953FE4E1.htm]]'),
643 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RC953-FE8E1 | http://www.raisecom-international.com/p/RC953FE4E1.htm]]'),
644 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RC953-FX8E1 | http://www.raisecom-international.com/p/RC953FE4E1.htm]]'),
645 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RC953-8FE16E1 | http://www.raisecom-international.com/p/RC9538FE16E1.htm]]'),
646 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RC953E-3FE16E1 | http://www.raisecom-international.com/p/RC953E-3FE16E1.htm]]'),
647 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RC953-GESTM1 | http://www.raisecom-international.com/p/RC957.htm]]'),
648 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%OPCOM3100-155 | http://www.raisecom-international.com/p/OPCOM3100.htm]]'),
649 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%OPCOM3101-155 | http://www.raisecom-international.com/p/OPCOM3101.htm]]'),
650 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RC831-120 | http://www.raisecom-international.com/p/RC831.htm]]'),
651 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RC831-120-BL | http://www.raisecom-international.com/p/RC831.htm]]'),
652 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RC831-240 | http://www.raisecom-international.com/p/RC831.htm]]'),
653 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RC831-240E | http://www.raisecom-international.com/p/RC831.htm]]'),
654 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RCMS2801-480GE-BL | http://www.raisecom-international.com/p/RCMS280X.htm]]'),
655 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RCMS2801-120FE | http://www.raisecom-international.com/p/RCMS2801.htm]]'),
656 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RCMS2801-120FE-BL | http://www.raisecom-international.com/p/RCMS2801.htm]]'),
657 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RCMS2801-240FE | http://www.raisecom-international.com/p/RCMS2801.htm]]'),
658 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RCMS2801-240FE-BL | http://www.raisecom-international.com/p/RCMS2801.htm]]'),
659 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RCMS2801-240EFE | http://www.raisecom-international.com/p/RCMS2801.htm]]'),
660 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RCMS2811-120FE | http://www.raisecom-international.com/p/RCMS2811.htm]]'),
661 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RCMS2811-240FE | http://www.raisecom-international.com/p/RCMS2811.htm]]'),
662 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RCMS2811-240FE-BL | http://www.raisecom-international.com/p/RCMS2811.htm]]'),
663 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RCMS2811-480FE | http://www.raisecom-international.com/p/RCMS2811.htm]]'),
664 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RCMS2811-480FE-BL | http://www.raisecom-international.com/p/RCMS2811.htm]]'),
665 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RCMS2811-240EFE | http://www.raisecom-international.com/p/RCMS2811-240EFE.htm]]'),
666 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RCMS2104-120 | http://www.raisecom-international.com/p/RCMS2000120.htm]]'),
667 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RCMS2304-120 | http://www.raisecom-international.com/p/RCMS2000120.htm]]'),
668 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RCMS2504-120 | http://www.raisecom-international.com/p/RCMS2000120.htm]]'),
669 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RCMS2104-240 | http://www.raisecom-international.com/p/RCMS2000120.htm]]'),
670 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RCMS2304-240 | http://www.raisecom-international.com/p/RCMS2000120.htm]]'),
671 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RCMS2504-240 | http://www.raisecom-international.com/p/RCMS2000120.htm]]'),
672 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RC801-120B | http://www.raisecom-international.com/p/RC800120.htm]]'),
673 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RC801-240B | http://www.raisecom-international.com/p/RC800120.htm]]'),
674 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RC801-480B | http://www.raisecom-international.com/p/RC800120.htm]]'),
675 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RC803-120B | http://www.raisecom-international.com/p/RC800120.htm]]'),
676 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RC803-240B | http://www.raisecom-international.com/p/RC800120.htm]]'),
677 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RC803-480B | http://www.raisecom-international.com/p/RC800120.htm]]'),
678 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RC805-120B | http://www.raisecom-international.com/p/RC800120.htm]]'),
679 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RC805-240B | http://www.raisecom-international.com/p/RC800120.htm]]'),
680 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RC805-480B | http://www.raisecom-international.com/p/RC800120.htm]]'),
681 => array ('chapter_id' => 2, 'dict_value' => 'RS-232 (DB-9)'),
682 => array ('chapter_id' => 2, 'dict_value' => 'RS-232 (DB-25)'),
683 => array ('chapter_id' => 12, 'dict_value' => '[[Force10%GPASS%S2410P | http://www.force10networks.com/products/s2410.asp]]'),
684 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%Summit X150-24t | http://www.extremenetworks.com/products/summit-x150.aspx]]'),
685 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%Summit X150-48t | http://www.extremenetworks.com/products/summit-x150.aspx]]'),
686 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%Summit X150-24p | http://www.extremenetworks.com/products/summit-x150.aspx]]'),
687 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%Summit X250e-24t | http://www.extremenetworks.com/products/summit-x250e.aspx]]'),
688 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%Summit X250e-48t | http://www.extremenetworks.com/products/summit-x250e.aspx]]'),
689 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%Summit X250e-24p | http://www.extremenetworks.com/products/summit-x250e.aspx]]'),
690 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%Summit X250e-48p | http://www.extremenetworks.com/products/summit-x250e.aspx]]'),
691 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%Summit X250e-24x | http://www.extremenetworks.com/products/summit-x250e.aspx]]'),
692 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%Summit X450-24t | http://www.extremenetworks.com/products/summit-x450.aspx]]'),
693 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%Summit X450-24x | http://www.extremenetworks.com/products/summit-x450.aspx]]'),
694 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%Summit X450a-24t | http://www.extremenetworks.com/products/summit-x450a.aspx]]'),
695 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%Summit X450a-48t | http://www.extremenetworks.com/products/summit-x450a.aspx]]'),
696 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%Summit X450a-24x | http://www.extremenetworks.com/products/summit-x450a.aspx]]'),
697 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%Summit X450e-24p | http://www.extremenetworks.com/products/summit-x450e.aspx]]'),
698 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%Summit X450e-48p | http://www.extremenetworks.com/products/summit-x450e.aspx]]'),
699 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%Summit 200-24fx | http://www.extremenetworks.com/products/summit-200.aspx]]'),
700 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%Summit 200-24 | http://www.extremenetworks.com/products/summit-200.aspx]]'),
701 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%Summit 200-48 | http://www.extremenetworks.com/products/summit-200.aspx]]'),
702 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%Summit 300-24 | http://www.extremenetworks.com/products/summit-300.aspx]]'),
703 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%Summit 300-48 | http://www.extremenetworks.com/products/summit-300.aspx]]'),
704 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%Summit 400-24p | http://www.extremenetworks.com/products/summit-400-24p.aspx]]'),
705 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%Summit 400-24t | http://www.extremenetworks.com/products/summit-400-24t.aspx]]'),
706 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%Summit 400-48t | http://www.extremenetworks.com/products/summit-400-48t.aspx]]'),
707 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%Summit48si | http://www.extremenetworks.com/products/summit-48si.aspx]]'),
708 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%Alpine 3804 | http://www.extremenetworks.com/products/Alpine-3800.aspx]]'),
709 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%Alpine 3808 | http://www.extremenetworks.com/products/Alpine-3800.aspx]]'),
710 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%BlackDiamond 6808 | http://www.extremenetworks.com/products/blackdiamond-6800.aspx]]'),
711 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%BlackDiamond 8806 | http://www.extremenetworks.com/products/blackdiamond-8800.aspx]]'),
712 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%BlackDiamond 8810 | http://www.extremenetworks.com/products/blackdiamond-8800.aspx]]'),
713 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%BlackDiamond 10808 | http://www.extremenetworks.com/products/blackdiamond-10808.aspx]]'),
714 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%BlackDiamond 12802R | http://www.extremenetworks.com/products/blackdiamond-12800r.aspx]]'),
715 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%BlackDiamond 12804R | http://www.extremenetworks.com/products/blackdiamond-12800r.aspx]]'),
716 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%BlackDiamond 12804C | http://www.extremenetworks.com/products/blackdiamond-12804c.aspx]]'),
717 => array ('chapter_id' => 24, 'dict_value' => '[[Cisco%GPASS%ASR 1002 | http://cisco.com/en/US/products/ps9436/index.html]]'),
718 => array ('chapter_id' => 24, 'dict_value' => '[[Cisco%GPASS%ASR 1004 | http://cisco.com/en/US/products/ps9437/index.html]]'),
719 => array ('chapter_id' => 24, 'dict_value' => '[[Cisco%GPASS%ASR 1006 | http://cisco.com/en/US/products/ps9438/index.html]]'),
720 => array ('chapter_id' => 13, 'dict_value' => '[[BSD%GSKIP%OpenBSD 3.3 | http://openbsd.org/33.html]]'),
721 => array ('chapter_id' => 13, 'dict_value' => '[[BSD%GSKIP%OpenBSD 3.4 | http://openbsd.org/34.html]]'),
722 => array ('chapter_id' => 13, 'dict_value' => '[[BSD%GSKIP%OpenBSD 3.5 | http://openbsd.org/35.html]]'),
723 => array ('chapter_id' => 13, 'dict_value' => '[[BSD%GSKIP%OpenBSD 3.6 | http://openbsd.org/36.html]]'),
724 => array ('chapter_id' => 13, 'dict_value' => '[[BSD%GSKIP%OpenBSD 3.7 | http://openbsd.org/37.html]]'),
725 => array ('chapter_id' => 13, 'dict_value' => '[[BSD%GSKIP%OpenBSD 3.8 | http://openbsd.org/38.html]]'),
726 => array ('chapter_id' => 13, 'dict_value' => '[[BSD%GSKIP%OpenBSD 3.9 | http://openbsd.org/39.html]]'),
727 => array ('chapter_id' => 13, 'dict_value' => '[[BSD%GSKIP%OpenBSD 4.0 | http://openbsd.org/40.html]]'),
728 => array ('chapter_id' => 13, 'dict_value' => '[[BSD%GSKIP%OpenBSD 4.1 | http://openbsd.org/41.html]]'),
729 => array ('chapter_id' => 13, 'dict_value' => '[[BSD%GSKIP%OpenBSD 4.2 | http://openbsd.org/42.html]]'),
730 => array ('chapter_id' => 13, 'dict_value' => '[[BSD%GSKIP%OpenBSD 4.3 | http://openbsd.org/43.html]]'),
// 1018 duplicated 731 later, so 731 isn't here any more
732 => array ('chapter_id' => 13, 'dict_value' => '[[BSD%GSKIP%FreeBSD 7.0 | http://www.freebsd.org/releases/7.0R/announce.html]]'),
733 => array ('chapter_id' => 13, 'dict_value' => '[[BSD%GSKIP%NetBSD 2.0 | http://netbsd.org/releases/formal-2.0/]]'),
734 => array ('chapter_id' => 13, 'dict_value' => '[[BSD%GSKIP%NetBSD 2.1 | http://netbsd.org/releases/formal-2.0/NetBSD-2.1.html]]'),
735 => array ('chapter_id' => 13, 'dict_value' => '[[BSD%GSKIP%NetBSD 3.0 | http://netbsd.org/releases/formal-3/]]'),
736 => array ('chapter_id' => 13, 'dict_value' => '[[BSD%GSKIP%NetBSD 3.1 | http://netbsd.org/releases/formal-3/NetBSD-3.1.html]]'),
737 => array ('chapter_id' => 13, 'dict_value' => '[[BSD%GSKIP%NetBSD 4.0 | http://netbsd.org/releases/formal-4/NetBSD-4.0.html]]'),
738 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%Baseline 2016 | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3C16470B]]'),
739 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%Baseline 2024 | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3C16471B]]'),
740 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%Baseline 2126-G | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3C16472]]'),
741 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%Baseline 2816 | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3C16478]]'),
742 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%Baseline 2824 | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3C16479]]'),
743 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%Baseline 2226 Plus | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3C16475CS]]'),
744 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%Baseline 2426-PWR Plus | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3C16491]]'),
745 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%Baseline 2250 Plus | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3C16476CS]]'),
746 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%Baseline 2916-SFP Plus | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3CBLSG16]]'),
747 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%Baseline 2924-SFP Plus | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3CBLSG24]]'),
748 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%Baseline 2924-PWR Plus | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3CBLSG24PWR]]'),
749 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%Baseline 2948-SFP Plus | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3CBLSG48]]'),
750 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%3870 24-port | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3CR17450-91]]'),
751 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%3870 48-port | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3CR17451-91]]'),
752 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%4200 26-port | http://www.3com.com/products/en_US/detail.jsp?tab=features&sku=3C17300A&pathtype=purchase]]'),
753 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%4200 28-port | http://www.3com.com/products/en_US/detail.jsp?tab=features&sku=3C17304A&pathtype=purchase]]'),
754 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%4200 50-port | http://www.3com.com/products/en_US/detail.jsp?tab=features&sku=3C17302A&pathtype=purchase]]'),
755 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%4200G 12-port | http://www.3com.com/products/en_US/detail.jsp?tab=features&sku=3CR17660-91&pathtype=purchase]]'),
756 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%4200G 24-port | http://www.3com.com/products/en_US/detail.jsp?tab=features&sku=3CR17661-91&pathtype=purchase]]'),
757 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%4200G PWR 24-port | http://www.3com.com/products/en_US/detail.jsp?tab=features&sku=3CR17671-91&pathtype=purchase]]'),
758 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%4200G 48-port | http://www.3com.com/products/en_US/detail.jsp?tab=features&sku=3CR17662-91&pathtype=purchase]]'),
759 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%4210 26-port | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3CR17333-91]]'),
760 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%4210 52-port | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3CR17334-91]]'),
761 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%4210 26-port PWR | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3CR17343-91]]'),
762 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%SS3 4400 48-port | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3C17204-US]]'),
763 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%SS3 4400 24-port | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3C17203-US]]'),
764 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%SS3 4400 PWR | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3C17205-US]]'),
765 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%SS3 4400 SE 24-port | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3C17206-US]]'),
766 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%4500 26-port | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3CR17561-91]]'),
767 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%4500 50-port | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3CR17562-91]]'),
768 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%4500 PWR 26-port | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3CR17571-91]]'),
769 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%4500 PWR 50-port | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3CR17572-91]]'),
770 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%4500G 24-port | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3CR17761-91]]'),
771 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%4500G 48-port | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3CR17762-91]]'),
772 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%4500G PWR 24-port | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3CR17771-91]]'),
773 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%4500G PWR 48-port | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3CR17772-91]]'),
774 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%5500-EI 28-port | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3CR17161-91]]'),
775 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%5500-EI 52-port | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3CR17162-91]]'),
776 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%5500-EI 28-port PWR | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3CR17171-91]]'),
777 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%5500-EI 52-port PWR | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3CR17172-91]]'),
778 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%5500-EI 28-port FX | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3CR17181-91]]'),
779 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%5500G-EI 24-port | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3CR17250-91]]'),
780 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%5500G-EI 48-port | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3CR17251-91]]'),
781 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%5500G-EI PWR 24-port | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3CR17252-91]]'),
782 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%5500G-EI 48-port PWR | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3CR17253-91]]'),
783 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%5500G-EI 24-port SFP | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3CR17258-91]]'),
784 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%7754 | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3C16894]]'),
785 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%7757 | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3C16895]]'),
786 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%7758 | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3C16896]]'),
787 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%8807 | http://www.3com.com/products/en_US/detail.jsp?tab=features&sku=3C17502A&pathtype=purchase]]'),
788 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%8810 | http://www.3com.com/products/en_US/detail.jsp?tab=features&sku=3C17501A&pathtype=purchase]]'),
789 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%8814 | http://www.3com.com/products/en_US/detail.jsp?tab=features&sku=3C17500A&pathtype=purchase]]'),
790 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%RH Fedora 9'),
791 => array ('chapter_id' => 13, 'dict_value' => '[[Linux%GSKIP%openSUSE 11.0 | http://en.opensuse.org/OpenSUSE_11.0]]'),
792 => array ('chapter_id' => 11, 'dict_value' => 'SGI%GPASS%Altix XE250'),
793 => array ('chapter_id' => 11, 'dict_value' => 'SGI%GPASS%Altix XE310'),
794 => array ('chapter_id' => 11, 'dict_value' => 'SGI%GPASS%Altix XE320'),
795 => array ('chapter_id' => 12, 'dict_value' => '[[Cisco%GPASS%Catalyst 3032-DEL | http://www.cisco.com/en/US/products/ps8772/index.html]]'),
796 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%Ubuntu 8.10'),
797 => array ('chapter_id' => 13, 'dict_value' => '[[BSD%GSKIP%OpenBSD 4.4 | http://openbsd.org/44.html]]'),
798 => array ('chapter_id' => 1, 'dict_value' => 'Network security'),
799 => array ('chapter_id' => 24, 'dict_value' => 'Cisco%GPASS%ASA 5505'),
800 => array ('chapter_id' => 24, 'dict_value' => 'Cisco%GPASS%ASA 5510'),
801 => array ('chapter_id' => 24, 'dict_value' => 'Cisco%GPASS%ASA 5520'),
802 => array ('chapter_id' => 24, 'dict_value' => 'Cisco%GPASS%ASA 5540'),
803 => array ('chapter_id' => 24, 'dict_value' => 'Cisco%GPASS%ASA 5550'),
804 => array ('chapter_id' => 24, 'dict_value' => 'Cisco%GPASS%ASA 5580-20'),
805 => array ('chapter_id' => 24, 'dict_value' => 'Cisco%GPASS%ASA 5580-40'),
806 => array ('chapter_id' => 24, 'dict_value' => '[[Cisco%GPASS%IDS 4215 | http://www.cisco.com/en/US/products/hw/vpndevc/ps4077/ps5367/index.html]]'),
807 => array ('chapter_id' => 24, 'dict_value' => '[[Cisco%GPASS%IDS 4240 | http://www.cisco.com/en/US/products/ps5768/index.html]]'),
808 => array ('chapter_id' => 24, 'dict_value' => '[[Cisco%GPASS%IDS 4255 | http://www.cisco.com/en/US/products/ps5769/index.html]]'),
809 => array ('chapter_id' => 24, 'dict_value' => '[[Cisco%GPASS%IDS 4260 | http://www.cisco.com/en/US/products/ps6751/index.html]]'),
810 => array ('chapter_id' => 24, 'dict_value' => '[[Cisco%GPASS%IDS 4270 | http://www.cisco.com/en/US/products/ps9157/index.html]]'),
811 => array ('chapter_id' => 24, 'dict_value' => 'Foundry%GPASS%SecureIron 100'),
812 => array ('chapter_id' => 24, 'dict_value' => 'Foundry%GPASS%SecureIron 100C'),
813 => array ('chapter_id' => 24, 'dict_value' => 'Foundry%GPASS%SecureIron 300'),
814 => array ('chapter_id' => 24, 'dict_value' => 'Foundry%GPASS%SecureIron 300C'),
815 => array ('chapter_id' => 24, 'dict_value' => 'Foundry%GPASS%SecureIronLS 100-4802'),
816 => array ('chapter_id' => 24, 'dict_value' => 'Foundry%GPASS%SecureIronLS 300-32GC02'),
817 => array ('chapter_id' => 24, 'dict_value' => 'Foundry%GPASS%SecureIronLS 300-32GC10G'),
818 => array ('chapter_id' => 24, 'dict_value' => '[[D-Link%GPASS%DFL-1600 | http://www.dlink.com/products/?sec=0&pid=454]]'),
819 => array ('chapter_id' => 24, 'dict_value' => '[[D-Link%GPASS%DFL-M510 | http://www.dlink.com/products/?sec=0&pid=455]]'),
820 => array ('chapter_id' => 24, 'dict_value' => '[[Extreme Networks%GPASS%Sentriant AG200 | http://www.extremenetworks.com/products/sentriant-ag200.aspx]]'),
821 => array ('chapter_id' => 24, 'dict_value' => '[[Extreme Networks%GPASS%Sentriant NG300 | http://www.extremenetworks.com/products/sentriant-ng300.aspx]]'),
822 => array ('chapter_id' => 24, 'dict_value' => '[[Force10%GPASS%P-Series | http://www.force10networks.com/products/pseries.asp]]'),
823 => array ('chapter_id' => 24, 'dict_value' => '[[Juniper%GPASS%SSG 140 | http://www.juniper.net/products_and_services/firewall_slash_ipsec_vpn/ssg_140/index.html]]'),
824 => array ('chapter_id' => 24, 'dict_value' => '[[Juniper%GPASS%SSG 320 | http://www.juniper.net/products_and_services/firewall_slash_ipsec_vpn/ssg_300_series/index.html]]'),
825 => array ('chapter_id' => 24, 'dict_value' => '[[Juniper%GPASS%SSG 350 | http://www.juniper.net/products_and_services/firewall_slash_ipsec_vpn/ssg_300_series/index.html]]'),
826 => array ('chapter_id' => 24, 'dict_value' => '[[Juniper%GPASS%SSG 520 | http://www.juniper.net/products_and_services/firewall_slash_ipsec_vpn/ssg_500_series/index.html]]'),
827 => array ('chapter_id' => 24, 'dict_value' => '[[Juniper%GPASS%SSG 550 | http://www.juniper.net/products_and_services/firewall_slash_ipsec_vpn/ssg_500_series/index.html]]'),
828 => array ('chapter_id' => 24, 'dict_value' => '[[Juniper%GPASS%ISG 1000 | http://www.juniper.net/products_and_services/firewall_slash_ipsec_vpn/isg_series_slash_gprs/index.html]]'),
829 => array ('chapter_id' => 24, 'dict_value' => '[[Juniper%GPASS%ISG 2000 | http://www.juniper.net/products_and_services/firewall_slash_ipsec_vpn/isg_series_slash_gprs/index.html]]'),
830 => array ('chapter_id' => 24, 'dict_value' => '[[Juniper%GPASS%NetScreen 5200 | http://www.juniper.net/products_and_services/firewall_slash_ipsec_vpn/isg_series_slash_gprs/index.html]]'),
831 => array ('chapter_id' => 24, 'dict_value' => '[[Juniper%GPASS%NetScreen 5400 | http://www.juniper.net/products_and_services/firewall_slash_ipsec_vpn/isg_series_slash_gprs/index.html]]'),
832 => array ('chapter_id' => 24, 'dict_value' => '[[Juniper%GPASS%SRX 5600 | http://www.juniper.net/products_and_services/srx_series/index.html]]'),
833 => array ('chapter_id' => 24, 'dict_value' => '[[Juniper%GPASS%SRX 5800 | http://www.juniper.net/products_and_services/srx_series/index.html]]'),
834 => array ('chapter_id' => 24, 'dict_value' => '[[SonicWall%GPASS%PRO 1260 | http://www.sonicwall.com/us/products/PRO_1260.html]]'),
835 => array ('chapter_id' => 24, 'dict_value' => '[[SonicWall%GPASS%PRO 2040 | http://www.sonicwall.com/us/products/PRO_2040.html]]'),
836 => array ('chapter_id' => 24, 'dict_value' => '[[SonicWall%GPASS%PRO 3060 | http://www.sonicwall.com/us/products/PRO_3060.html]]'),
837 => array ('chapter_id' => 24, 'dict_value' => '[[SonicWall%GPASS%PRO 4060 | http://www.sonicwall.com/us/products/PRO_4060.html]]'),
838 => array ('chapter_id' => 24, 'dict_value' => '[[SonicWall%GPASS%PRO 4100 | http://www.sonicwall.com/us/products/PRO_4100.html]]'),
839 => array ('chapter_id' => 24, 'dict_value' => '[[SonicWall%GPASS%PRO 5060 | http://www.sonicwall.com/us/products/PRO_5060.html]]'),
840 => array ('chapter_id' => 24, 'dict_value' => '[[SonicWall%GPASS%NSA 240 | http://www.sonicwall.com/us/products/NSA_240.html]]'),
841 => array ('chapter_id' => 24, 'dict_value' => '[[SonicWall%GPASS%NSA 2400 | http://www.sonicwall.com/us/products/NSA_2400.html]]'),
842 => array ('chapter_id' => 24, 'dict_value' => '[[SonicWall%GPASS%NSA 3500 | http://www.sonicwall.com/us/products/NSA_3500.html]]'),
843 => array ('chapter_id' => 24, 'dict_value' => '[[SonicWall%GPASS%NSA 4500 | http://www.sonicwall.com/us/products/NSA_4500.html]]'),
844 => array ('chapter_id' => 24, 'dict_value' => '[[SonicWall%GPASS%NSA 5000 | http://www.sonicwall.com/us/products/NSA_5000.html]]'),
845 => array ('chapter_id' => 24, 'dict_value' => '[[SonicWall%GPASS%NSA E5500 | http://www.sonicwall.com/us/products/NSA_E5500.html]]'),
846 => array ('chapter_id' => 24, 'dict_value' => '[[SonicWall%GPASS%NSA E6500 | http://www.sonicwall.com/us/products/NSA_E6500.html]]'),
847 => array ('chapter_id' => 24, 'dict_value' => '[[SonicWall%GPASS%NSA E7500 | http://www.sonicwall.com/us/products/NSA_E7500.html]]'),
848 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%1400-24G | http://www.hp.com/rnd/products/switches/ProCurve_Switch_1400_Series/overview.htm]]'),
849 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%1700-24 | http://www.hp.com/rnd/products/switches/ProCurve_Switch_1700_Series/overview.htm]]'),
850 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%1800-24G | http://www.hp.com/rnd/products/switches/ProCurve_Switch_1800_Series/overview.htm]]'),
851 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%2124 | http://www.hp.com/rnd/products/switches/switch2124/overview.htm]]'),
852 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%2312 | http://www.hp.com/rnd/products/switches/switch2324-2312/overview.htm]]'),
853 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%2324 | http://www.hp.com/rnd/products/switches/switch2324-2312/overview.htm]]'),
854 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%2510-24 | http://www.hp.com/rnd/products/switches/ProCurve_Switch_2510_Series/overview.htm]]'),
855 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%2510-48 | http://www.hp.com/rnd/products/switches/ProCurve_Switch_2510_Series/overview.htm]]'),
856 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%2510G-24 | http://www.hp.com/rnd/products/switches/ProCurve_Switch_2510_Series/overview.htm]]'),
857 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%2510G-48 | http://www.hp.com/rnd/products/switches/ProCurve_Switch_2510_Series/overview.htm]]'),
858 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%2512 | http://www.hp.com/rnd/products/switches/switch2524-2512/overview.htm]]'),
859 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%2524 | http://www.hp.com/rnd/products/switches/switch2524-2512/overview.htm]]'),
860 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%2610-24 | http://www.hp.com/rnd/products/switches/ProCurve_Switch_2610_Series/overview.htm]]'),
861 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%2610-24-PWR | http://www.hp.com/rnd/products/switches/ProCurve_Switch_2610_Series/overview.htm]]'),
862 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%2610-48 | http://www.hp.com/rnd/products/switches/ProCurve_Switch_2610_Series/overview.htm]]'),
863 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%2610-48-PWR | http://www.hp.com/rnd/products/switches/ProCurve_Switch_2610_Series/overview.htm]]'),
864 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%2626 | http://www.hp.com/rnd/products/switches/switch2600series/overview.htm]]'),
865 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%2626-PWR | http://www.hp.com/rnd/products/switches/switch2600series/overview.htm]]'),
866 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%2650 | http://www.hp.com/rnd/products/switches/switch2600series/overview.htm]]'),
867 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%2650-PWR | http://www.hp.com/rnd/products/switches/switch2600series/overview.htm]]'),
868 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%2810-24G | http://www.hp.com/rnd/products/switches/ProCurve_Switch_2810_Series/overview.htm]]'),
869 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%2810-48G | http://www.hp.com/rnd/products/switches/ProCurve_Switch_2810_Series/overview.htm]]'),
870 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%2824 | http://www.hp.com/rnd/products/switches/2800_series/overview.htm]]'),
871 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%2848 | http://www.hp.com/rnd/products/switches/2800_series/overview.htm]]'),
872 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%2900-24G | http://www.hp.com/rnd/products/switches/ProCurve_Switch_2900_Series/overview.htm]]'),
873 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%2900-48G | http://www.hp.com/rnd/products/switches/ProCurve_Switch_2900_Series/overview.htm]]'),
874 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%3400cl-24G | http://www.hp.com/rnd/products/switches/switch3400series/overview.htm]]'),
875 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%3400cl-48G | http://www.hp.com/rnd/products/switches/switch3400series/overview.htm]]'),
876 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%3500yl-24G-PWR | http://www.hp.com/rnd/products/switches/ProCurve_Switch_3500yl-5400zl_Series/overview.htm]]'),
877 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%3500yl-48G-PWR | http://www.hp.com/rnd/products/switches/ProCurve_Switch_3500yl-5400zl_Series/overview.htm]]'),
878 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%4202vl-72 | http://www.hp.com/rnd/products/switches/ProCurve_Switch_4200vl_Series/overview.htm]]'),
879 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%4204vl | http://www.hp.com/rnd/products/switches/ProCurve_Switch_4200vl_Series/overview.htm]]'),
880 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%4204vl-48GS | http://www.hp.com/rnd/products/switches/ProCurve_Switch_4200vl_Series/overview.htm]]'),
881 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%4208vl | http://www.hp.com/rnd/products/switches/ProCurve_Switch_4200vl_Series/overview.htm]]'),
882 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%4208vl-72GS | http://www.hp.com/rnd/products/switches/ProCurve_Switch_4200vl_Series/overview.htm]]'),
883 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%4208vl-96 | http://www.hp.com/rnd/products/switches/ProCurve_Switch_4200vl_Series/overview.htm]]'),
884 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%5304xl | http://www.hp.com/rnd/products/switches/switch5300xlseries/overview.htm]]'),
885 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%5308xl | http://www.hp.com/rnd/products/switches/switch5300xlseries/overview.htm]]'),
886 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%5348xl | http://www.hp.com/rnd/products/switches/switch5300xlseries/overview.htm]]'),
887 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%5372xl | http://www.hp.com/rnd/products/switches/switch5300xlseries/overview.htm]]'),
888 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%5406zl | http://www.hp.com/rnd/products/switches/ProCurve_Switch_3500yl-5400zl_Series/overview.htm]]'),
889 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%5406zl-48G | http://www.hp.com/rnd/products/switches/ProCurve_Switch_3500yl-5400zl_Series/overview.htm]]'),
890 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%5412zl | http://www.hp.com/rnd/products/switches/ProCurve_Switch_3500yl-5400zl_Series/overview.htm]]'),
891 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%5412zl-96G | http://www.hp.com/rnd/products/switches/ProCurve_Switch_3500yl-5400zl_Series/overview.htm]]'),
892 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%6108 | http://www.hp.com/rnd/products/switches/switch6108/overview.htm]]'),
893 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%6200yl-24G-mGBIC | http://www.hp.com/rnd/products/switches/ProCurve_Switch_6200yl-24G-mGBIC/overview.htm]]'),
894 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%6400cl | http://www.hp.com/rnd/products/switches/ProCurve_Switch_6400cl_Series/overview.htm]]'),
895 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%6410cl | http://www.hp.com/rnd/products/switches/ProCurve_Switch_6400cl_Series/overview.htm]]'),
896 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%8108fl | http://www.hp.com/rnd/products/switches/ProCurve_Switch_8100fl_Series/overview.htm]]'),
897 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%8116fl | http://www.hp.com/rnd/products/switches/ProCurve_Switch_8100fl_Series/overview.htm]]'),
898 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%8212zl | http://www.hp.com/rnd/products/switches/ProCurve_Switch_8212zl/overview.htm]]'),
899 => array ('chapter_id' => 12, 'dict_value' => '[[Juniper%GPASS%EX 3200-24P | http://www.juniper.net/products_and_services/ex_series/index.html]]'),
900 => array ('chapter_id' => 12, 'dict_value' => '[[Juniper%GPASS%EX 3200-24T | http://www.juniper.net/products_and_services/ex_series/index.html]]'),
901 => array ('chapter_id' => 12, 'dict_value' => '[[Juniper%GPASS%EX 3200-48P | http://www.juniper.net/products_and_services/ex_series/index.html]]'),
902 => array ('chapter_id' => 12, 'dict_value' => '[[Juniper%GPASS%EX 3200-48T | http://www.juniper.net/products_and_services/ex_series/index.html]]'),
903 => array ('chapter_id' => 12, 'dict_value' => '[[Juniper%GPASS%EX 4200-24F | http://www.juniper.net/products_and_services/ex_series/index.html]]'),
904 => array ('chapter_id' => 12, 'dict_value' => '[[Juniper%GPASS%EX 4200-24P | http://www.juniper.net/products_and_services/ex_series/index.html]]'),
905 => array ('chapter_id' => 12, 'dict_value' => '[[Juniper%GPASS%EX 4200-24T | http://www.juniper.net/products_and_services/ex_series/index.html]]'),
906 => array ('chapter_id' => 12, 'dict_value' => '[[Juniper%GPASS%EX 4200-48P | http://www.juniper.net/products_and_services/ex_series/index.html]]'),
907 => array ('chapter_id' => 12, 'dict_value' => '[[Juniper%GPASS%EX 4200-48T | http://www.juniper.net/products_and_services/ex_series/index.html]]'),
908 => array ('chapter_id' => 12, 'dict_value' => '[[Juniper%GPASS%EX 8208 | http://www.juniper.net/products_and_services/ex_series/index.html]]'),
909 => array ('chapter_id' => 12, 'dict_value' => '[[Juniper%GPASS%E120 BSR | http://www.juniper.net/products_and_services/e_series_broadband_service/index.html]]'),
910 => array ('chapter_id' => 17, 'dict_value' => '[[Juniper%GPASS%E320 BSR | http://www.juniper.net/products_and_services/e_series_broadband_service/index.html]]'),
911 => array ('chapter_id' => 17, 'dict_value' => '[[Juniper%GPASS%ERX-310 | http://www.juniper.net/products_and_services/e_series_broadband_service/index.html]]'),
912 => array ('chapter_id' => 17, 'dict_value' => '[[Juniper%GPASS%ERX-705 | http://www.juniper.net/products_and_services/e_series_broadband_service/index.html]]'),
913 => array ('chapter_id' => 17, 'dict_value' => '[[Juniper%GPASS%ERX-710 | http://www.juniper.net/products_and_services/e_series_broadband_service/index.html]]'),
914 => array ('chapter_id' => 17, 'dict_value' => '[[Juniper%GPASS%ERX-1410 | http://www.juniper.net/products_and_services/e_series_broadband_service/index.html]]'),
915 => array ('chapter_id' => 17, 'dict_value' => '[[Juniper%GPASS%ERX-1440 | http://www.juniper.net/products_and_services/e_series_broadband_service/index.html]]'),
916 => array ('chapter_id' => 17, 'dict_value' => '[[Juniper%GPASS%J2320 | http://www.juniper.net/products_and_services/j_series_services_routers/index.html]]'),
917 => array ('chapter_id' => 17, 'dict_value' => '[[Juniper%GPASS%J2350 | http://www.juniper.net/products_and_services/j_series_services_routers/index.html]]'),
918 => array ('chapter_id' => 17, 'dict_value' => '[[Juniper%GPASS%J4350 | http://www.juniper.net/products_and_services/j_series_services_routers/index.html]]'),
919 => array ('chapter_id' => 17, 'dict_value' => '[[Juniper%GPASS%J6350 | http://www.juniper.net/products_and_services/j_series_services_routers/index.html]]'),
920 => array ('chapter_id' => 17, 'dict_value' => '[[Juniper%GPASS%M7i | http://www.juniper.net/products_and_services/m_series_routing_portfolio/index.html]]'),
921 => array ('chapter_id' => 17, 'dict_value' => '[[Juniper%GPASS%M10i | http://www.juniper.net/products_and_services/m_series_routing_portfolio/index.html]]'),
922 => array ('chapter_id' => 17, 'dict_value' => '[[Juniper%GPASS%M40e | http://www.juniper.net/products_and_services/m_series_routing_portfolio/index.html]]'),
923 => array ('chapter_id' => 17, 'dict_value' => '[[Juniper%GPASS%M120 | http://www.juniper.net/products_and_services/m_series_routing_portfolio/index.html]]'),
924 => array ('chapter_id' => 17, 'dict_value' => '[[Juniper%GPASS%M320 | http://www.juniper.net/products_and_services/m_series_routing_portfolio/index.html]]'),
925 => array ('chapter_id' => 17, 'dict_value' => '[[Juniper%GPASS%MX240 | http://www.juniper.net/products_and_services/mx_series/index.html]]'),
926 => array ('chapter_id' => 17, 'dict_value' => '[[Juniper%GPASS%MX480 | http://www.juniper.net/products_and_services/mx_series/index.html]]'),
927 => array ('chapter_id' => 17, 'dict_value' => '[[Juniper%GPASS%MX960 | http://www.juniper.net/products_and_services/mx_series/index.html]]'),
928 => array ('chapter_id' => 17, 'dict_value' => '[[Juniper%GPASS%T320 | http://www.juniper.net/products_and_services/t_series_core_platforms/index.html]]'),
929 => array ('chapter_id' => 17, 'dict_value' => '[[Juniper%GPASS%T640 | http://www.juniper.net/products_and_services/t_series_core_platforms/index.html]]'),
930 => array ('chapter_id' => 17, 'dict_value' => '[[Juniper%GPASS%T1600 | http://www.juniper.net/products_and_services/t_series_core_platforms/index.html]]'),
931 => array ('chapter_id' => 17, 'dict_value' => '[[Juniper%GPASS%TX Matrix | http://www.juniper.net/products_and_services/t_series_core_platforms/index.html]]'),
932 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%RH Fedora 10'),
933 => array ('chapter_id' => 13, 'dict_value' => '[[Linux%GSKIP%openSUSE 11.1 | http://en.opensuse.org/OpenSUSE_11.1]]'),
934 => array ('chapter_id' => 12, 'dict_value' => '[[F5%GPASS%BIG-IP WebAccelerator 4500 | http://www.f5.com/pdf/products/big-ip-webaccelerator-ds.pdf]]'),
935 => array ('chapter_id' => 12, 'dict_value' => '[[F5%GPASS%VIPRION | http://www.f5.com/pdf/products/viprion-overview-ds.pdf]]'),
936 => array ('chapter_id' => 12, 'dict_value' => '[[F5%GPASS%BIG-IP 1500 | http://www.f5.com/pdf/products/big-ip-platforms-2007-ds.pdf]]'),
937 => array ('chapter_id' => 12, 'dict_value' => '[[F5%GPASS%BIG-IP 1600 | http://www.f5.com/pdf/products/big-ip-platforms-ds.pdf]]'),
938 => array ('chapter_id' => 12, 'dict_value' => '[[F5%GPASS%BIG-IP 3400 | http://www.f5.com/pdf/products/big-ip-platforms-2007-ds.pdf]]'),
939 => array ('chapter_id' => 12, 'dict_value' => '[[F5%GPASS%BIG-IP 3600 | http://www.f5.com/pdf/products/big-ip-platforms-ds.pdf]]'),
940 => array ('chapter_id' => 12, 'dict_value' => '[[F5%GPASS%BIG-IP 6400 | http://www.f5.com/pdf/products/big-ip-platforms-2007-ds.pdf]]'),
941 => array ('chapter_id' => 12, 'dict_value' => '[[F5%GPASS%BIG-IP 6800 | http://www.f5.com/pdf/products/big-ip-platforms-2007-ds.pdf]]'),
942 => array ('chapter_id' => 12, 'dict_value' => '[[F5%GPASS%BIG-IP 6900 | http://www.f5.com/pdf/products/big-ip-platforms-ds.pdf]]'),
943 => array ('chapter_id' => 12, 'dict_value' => '[[F5%GPASS%BIG-IP 8400 | http://www.f5.com/pdf/products/big-ip-platforms-ds.pdf]]'),
944 => array ('chapter_id' => 12, 'dict_value' => '[[F5%GPASS%BIG-IP 8800 | http://www.f5.com/pdf/products/big-ip-platforms-ds.pdf]]'),
945 => array ('chapter_id' => 12, 'dict_value' => '[[F5%GPASS%ARX 500 | http://www.f5.com/pdf/products/arx-series-ds.pdf]]'),
946 => array ('chapter_id' => 12, 'dict_value' => '[[F5%GPASS%ARX 1000 | http://www.f5.com/pdf/products/arx-series-ds.pdf]]'),
947 => array ('chapter_id' => 12, 'dict_value' => '[[F5%GPASS%ARX 4000 | http://www.f5.com/pdf/products/arx-series-ds.pdf]]'),
948 => array ('chapter_id' => 12, 'dict_value' => '[[F5%GPASS%ARX 6000 | http://www.f5.com/pdf/products/arx-series-ds.pdf]]'),
949 => array ('chapter_id' => 17, 'dict_value' => '[[F5%GPASS%WANJet 300 | http://www.f5.com/pdf/products/wanjet-hardware-ds.pdf]]'),
950 => array ('chapter_id' => 17, 'dict_value' => '[[F5%GPASS%WANJet 500 | http://www.f5.com/pdf/products/wanjet-hardware-ds.pdf]]'),
951 => array ('chapter_id' => 24, 'dict_value' => '[[F5%GPASS%FirePass 1200 | http://www.f5.com/pdf/products/firepass-hardware-ds.pdf]]'),
952 => array ('chapter_id' => 24, 'dict_value' => '[[F5%GPASS%FirePass 4100 | http://www.f5.com/pdf/products/firepass-hardware-ds.pdf]]'),
953 => array ('chapter_id' => 24, 'dict_value' => '[[F5%GPASS%FirePass 4300 | http://www.f5.com/pdf/products/firepass-hardware-ds.pdf]]'),
954 => array ('chapter_id' => 13, 'dict_value' => '[[Linux%GSKIP%Debian 5.0 (lenny) | http://debian.org/releases/lenny/]]'),
955 => array ('chapter_id' => 11, 'dict_value' => 'SGI%GPASS%Altix XE270'),
956 => array ('chapter_id' => 11, 'dict_value' => 'SGI%GPASS%Altix XE340'),
957 => array ('chapter_id' => 11, 'dict_value' => 'SGI%GPASS%Altix XE500'),
958 => array ('chapter_id' => 12, 'dict_value' => '[[Cisco%GPASS%Nexus 2148T | http://cisco.com/en/US/products/ps10118/index.html]]'),
959 => array ('chapter_id' => 12, 'dict_value' => '[[Cisco%GPASS%Nexus 5010 | http://cisco.com/en/US/products/ps9711/index.html]]'),
960 => array ('chapter_id' => 12, 'dict_value' => '[[Cisco%GPASS%Nexus 5020 | http://cisco.com/en/US/products/ps9710/index.html]]'),
961 => array ('chapter_id' => 12, 'dict_value' => '[[Cisco%GPASS%Nexus 7010 | http://cisco.com/en/US/products/ps9512/index.html]]'),
962 => array ('chapter_id' => 12, 'dict_value' => '[[Cisco%GPASS%Nexus 7018 | http://cisco.com/en/US/products/ps10098/index.html]]'),
963 => array ('chapter_id' => 14, 'dict_value' => 'Cisco NX-OS 4.0'),
964 => array ('chapter_id' => 14, 'dict_value' => 'Cisco NX-OS 4.1'),
965 => array ('chapter_id' => 1, 'dict_value' => 'Wireless'),
966 => array ('chapter_id' => 25, 'dict_value' => '[[Cisco%GPASS%2106 | http://cisco.com/en/US/products/ps7221/index.html]]'),
967 => array ('chapter_id' => 25, 'dict_value' => '[[Cisco%GPASS%2112 | http://cisco.com/en/US/products/ps9818/index.html]]'),
968 => array ('chapter_id' => 25, 'dict_value' => '[[Cisco%GPASS%2125 | http://cisco.com/en/US/products/ps9819/index.html]]'),
969 => array ('chapter_id' => 25, 'dict_value' => '[[Cisco%GPASS%4402 | http://cisco.com/en/US/products/ps6396/index.html]]'),
970 => array ('chapter_id' => 25, 'dict_value' => '[[Cisco%GPASS%4404 | http://cisco.com/en/US/products/ps6397/index.html]]'),
971 => array ('chapter_id' => 25, 'dict_value' => '[[Cisco%GPASS%Aironet 1140 | http://cisco.com/en/US/products/ps10092/index.html]]'),
972 => array ('chapter_id' => 25, 'dict_value' => '[[Cisco%GPASS%Aironet 1200 | http://cisco.com/en/US/products/hw/wireless/ps430/ps4076/index.html]]'),
973 => array ('chapter_id' => 25, 'dict_value' => '[[Cisco%GPASS%Aironet 1230 AG | http://cisco.com/en/US/products/ps6132/index.html]]'),
974 => array ('chapter_id' => 25, 'dict_value' => '[[Cisco%GPASS%Aironet 1240 AG | http://cisco.com/en/US/products/ps6521/index.html]]'),
975 => array ('chapter_id' => 25, 'dict_value' => '[[Cisco%GPASS%Aironet 1250 | http://cisco.com/en/US/products/ps8382/index.html]]'),
976 => array ('chapter_id' => 25, 'dict_value' => '[[Cisco%GPASS%Aironet 1520 | http://cisco.com/en/US/products/ps8368/index.html]]'),
977 => array ('chapter_id' => 25, 'dict_value' => 'Foundry%GPASS%AP150'),
978 => array ('chapter_id' => 25, 'dict_value' => 'Foundry%GPASS%OAP180'),
979 => array ('chapter_id' => 25, 'dict_value' => 'Foundry%GPASS%AP201'),
980 => array ('chapter_id' => 25, 'dict_value' => 'Foundry%GPASS%AP208'),
981 => array ('chapter_id' => 25, 'dict_value' => 'Foundry%GPASS%AP250'),
982 => array ('chapter_id' => 25, 'dict_value' => 'Foundry%GPASS%AP300'),
983 => array ('chapter_id' => 25, 'dict_value' => 'Foundry%GPASS%RS4000'),
984 => array ('chapter_id' => 25, 'dict_value' => 'Foundry%GPASS%MC500'),
985 => array ('chapter_id' => 25, 'dict_value' => 'Foundry%GPASS%MC1000'),
986 => array ('chapter_id' => 25, 'dict_value' => 'Foundry%GPASS%MC3000'),
987 => array ('chapter_id' => 25, 'dict_value' => 'Foundry%GPASS%MC4100'),
988 => array ('chapter_id' => 25, 'dict_value' => 'Foundry%GPASS%MC5000'),
989 => array ('chapter_id' => 11, 'dict_value' => 'Dell PowerEdge%GPASS%R410'),
990 => array ('chapter_id' => 11, 'dict_value' => 'Dell PowerEdge%GPASS%R610'),
991 => array ('chapter_id' => 11, 'dict_value' => 'Dell PowerEdge%GPASS%R710'),
992 => array ('chapter_id' => 11, 'dict_value' => 'Dell PowerEdge%GPASS%R805'),
993 => array ('chapter_id' => 11, 'dict_value' => 'Dell PowerEdge%GPASS%R905'),
994 => array ('chapter_id' => 11, 'dict_value' => 'Dell PowerEdge%GPASS%M1000e'),
995 => array ('chapter_id' => 18, 'dict_value' => 'Dell PowerVault MD1000'),
996 => array ('chapter_id' => 18, 'dict_value' => 'Dell PowerVault MD1120'),
997 => array ('chapter_id' => 18, 'dict_value' => 'Dell EqualLogic PS5000'),
998 => array ('chapter_id' => 18, 'dict_value' => 'Dell EqualLogic PS6000'),
999 => array ('chapter_id' => 18, 'dict_value' => '[[EMC CLARiiON CX4-120 SPE | http://www.emc.com/products/detail/hardware/clariion-cx4-model-120.htm]]'),
1000 => array ('chapter_id' => 18, 'dict_value' => '[[EMC CLARiiON CX4-240 SPE | http://www.emc.com/products/detail/hardware/clariion-cx4-model-240.htm]]'),
1001 => array ('chapter_id' => 18, 'dict_value' => '[[EMC CLARiiON CX4-480 SPE | http://www.emc.com/products/detail/hardware/clariion-cx4-model-480.htm]]'),
1002 => array ('chapter_id' => 18, 'dict_value' => '[[EMC CLARiiON CX4-960 SPE | http://www.emc.com/products/detail/hardware/clariion-cx4-model-960.htm]]'),
1003 => array ('chapter_id' => 18, 'dict_value' => 'EMC CLARiiON CX4 DAE'),
1004 => array ('chapter_id' => 26, 'dict_value' => '[[Brocade%GPASS%300 | http://www.brocade.com/products-solutions/products/switches/product-details/300-switch/index.page]]'),
1005 => array ('chapter_id' => 26, 'dict_value' => '[[Brocade%GPASS%4900 | http://www.brocade.com/products-solutions/products/switches/index.page]]'),
1006 => array ('chapter_id' => 26, 'dict_value' => '[[Brocade%GPASS%5000 | http://www.brocade.com/products-solutions/products/switches/index.page]]'),
1007 => array ('chapter_id' => 26, 'dict_value' => '[[Brocade%GPASS%5100 | http://www.brocade.com/products-solutions/products/switches/product-details/5100-switch/index.page]]'),
1008 => array ('chapter_id' => 26, 'dict_value' => '[[Brocade%GPASS%5300 | http://www.brocade.com/products-solutions/products/switches/product-details/5300-switch/index.page]]'),
1009 => array ('chapter_id' => 26, 'dict_value' => '[[Cisco%GPASS%MDS 9124 | http://www.cisco.com/en/US/products/ps7079/index.html]]'),
1010 => array ('chapter_id' => 26, 'dict_value' => '[[Cisco%GPASS%MDS 9134 | http://www.cisco.com/en/US/products/ps8414/index.html]]'),
1011 => array ('chapter_id' => 26, 'dict_value' => '[[QLogic%GPASS%1400 | http://www.qlogic.com/Products/SAN_products_FCS_san1400.aspx]]'),
1012 => array ('chapter_id' => 26, 'dict_value' => '[[QLogic%GPASS%3800 | http://www.qlogic.com/Products/SAN_products_FCS_san3800.aspx]]'),
1013 => array ('chapter_id' => 26, 'dict_value' => '[[QLogic%GPASS%5600Q | http://www.qlogic.com/Products/SAN_products_FCS_san5600Q.aspx]]'),
1014 => array ('chapter_id' => 26, 'dict_value' => '[[QLogic%GPASS%5800V | http://www.qlogic.com/Products/SAN_products_FCS_san5802V.aspx]]'),
1015 => array ('chapter_id' => 26, 'dict_value' => '[[QLogic%GPASS%9000 | http://www.qlogic.com/Products/SAN_products_FCS_san9000.aspx]]'),
1016 => array ('chapter_id' => 17, 'dict_value' => '[[Cisco%GPASS%ASR 9006 | http://cisco.com/en/US/products/ps10075/index.html]]'),
1017 => array ('chapter_id' => 17, 'dict_value' => '[[Cisco%GPASS%ASR 9010 | http://cisco.com/en/US/products/ps10076/index.html]]'),
1018 => array ('chapter_id' => 12, 'dict_value' => '[[Cisco%GPASS%Catalyst 4900M | http://www.cisco.com/en/US/products/ps9310/index.html]]'),
1019 => array ('chapter_id' => 12, 'dict_value' => '[[Cisco%GPASS%Catalyst 4928-10GE | http://www.cisco.com/en/US/products/ps9903/index.html]]'),
1022 => array ('chapter_id' => 12, 'dict_value' => '[[Brocade%GPASS%FastIron CX 624S | http://www.brocade.com/products-solutions/products/ethernet-switches-routers/enterprise-mobility/product-details/fastiron-cx-series/overview.page]]'),
1023 => array ('chapter_id' => 12, 'dict_value' => '[[Brocade%GPASS%FastIron CX 624S-HPOE | http://www.brocade.com/products-solutions/products/ethernet-switches-routers/enterprise-mobility/product-details/fastiron-cx-series/overview.page]]'),
1024 => array ('chapter_id' => 12, 'dict_value' => '[[Brocade%GPASS%FastIron CX 648S | http://www.brocade.com/products-solutions/products/ethernet-switches-routers/enterprise-mobility/product-details/fastiron-cx-series/overview.page]]'),
1025 => array ('chapter_id' => 12, 'dict_value' => '[[Brocade%GPASS%FastIron CX 648S-HPOE | http://www.brocade.com/products-solutions/products/ethernet-switches-routers/enterprise-mobility/product-details/fastiron-cx-series/overview.page]]'),
1026 => array ('chapter_id' => 12, 'dict_value' => '[[Brocade%GPASS%FastIron WS 624 | http://www.brocade.com/products-solutions/products/ethernet-switches-routers/enterprise-mobility/product-details/fastiron-ws-series/overview.page]]'),
1027 => array ('chapter_id' => 12, 'dict_value' => '[[Brocade%GPASS%FastIron WS 624-POE | http://www.brocade.com/products-solutions/products/ethernet-switches-routers/enterprise-mobility/product-details/fastiron-ws-series/overview.page]]'),
1028 => array ('chapter_id' => 12, 'dict_value' => '[[Brocade%GPASS%FastIron WS 624G | http://www.brocade.com/products-solutions/products/ethernet-switches-routers/enterprise-mobility/product-details/fastiron-ws-series/overview.page]]'),
1029 => array ('chapter_id' => 12, 'dict_value' => '[[Brocade%GPASS%FastIron WS 624G-POE | http://www.brocade.com/products-solutions/products/ethernet-switches-routers/enterprise-mobility/product-details/fastiron-ws-series/overview.page]]'),
1030 => array ('chapter_id' => 12, 'dict_value' => '[[Brocade%GPASS%FastIron WS 648 | http://www.brocade.com/products-solutions/products/ethernet-switches-routers/enterprise-mobility/product-details/fastiron-ws-series/overview.page]]'),
1031 => array ('chapter_id' => 12, 'dict_value' => '[[Brocade%GPASS%FastIron WS 648-POE | http://www.brocade.com/products-solutions/products/ethernet-switches-routers/enterprise-mobility/product-details/fastiron-ws-series/overview.page]]'),
1032 => array ('chapter_id' => 12, 'dict_value' => '[[Brocade%GPASS%FastIron WS 648G | http://www.brocade.com/products-solutions/products/ethernet-switches-routers/enterprise-mobility/product-details/fastiron-ws-series/overview.page]]'),
1033 => array ('chapter_id' => 12, 'dict_value' => '[[Brocade%GPASS%FastIron WS 648G-POE | http://www.brocade.com/products-solutions/products/ethernet-switches-routers/enterprise-mobility/product-details/fastiron-ws-series/overview.page]]'),
1034 => array ('chapter_id' => 12, 'dict_value' => '[[Brocade%GPASS%NetIron CES 2024C | http://www.brocade.com/products-solutions/products/ethernet-switches-routers/service-provider/product-details/netiron-ces-2000-series/overview.page]]'),
1035 => array ('chapter_id' => 12, 'dict_value' => '[[Brocade%GPASS%NetIron CES 2024F | http://www.brocade.com/products-solutions/products/ethernet-switches-routers/service-provider/product-details/netiron-ces-2000-series/overview.page]]'),
1036 => array ('chapter_id' => 12, 'dict_value' => '[[Brocade%GPASS%NetIron CES 2048C | http://www.brocade.com/products-solutions/products/ethernet-switches-routers/service-provider/product-details/netiron-ces-2000-series/overview.page]]'),
1037 => array ('chapter_id' => 12, 'dict_value' => '[[Brocade%GPASS%NetIron CES 2048F | http://www.brocade.com/products-solutions/products/ethernet-switches-routers/service-provider/product-details/netiron-ces-2000-series/overview.page]]'),
1038 => array ('chapter_id' => 12, 'dict_value' => '[[Brocade%GPASS%NetIron CES 2048CX | http://www.brocade.com/products-solutions/products/ethernet-switches-routers/service-provider/product-details/netiron-ces-2000-series/overview.page]]'),
1039 => array ('chapter_id' => 12, 'dict_value' => '[[Brocade%GPASS%NetIron CES 2048FX | http://www.brocade.com/products-solutions/products/ethernet-switches-routers/service-provider/product-details/netiron-ces-2000-series/overview.page]]'),
1040 => array ('chapter_id' => 12, 'dict_value' => '[[Brocade%GPASS%ServerIron ADX 1000 | http://www.brocade.com/products-solutions/products/ethernet-switches-routers/application-switching/product-details/serveriron-adx-series/overview.page]]'),
1041 => array ('chapter_id' => 12, 'dict_value' => '[[Brocade%GPASS%ServerIron ADX 4000 | http://www.brocade.com/products-solutions/products/ethernet-switches-routers/application-switching/product-details/serveriron-adx-series/overview.page]]'),
1042 => array ('chapter_id' => 12, 'dict_value' => '[[Brocade%GPASS%ServerIron ADX 8000 | http://www.brocade.com/products-solutions/products/ethernet-switches-routers/application-switching/product-details/serveriron-adx-series/overview.page]]'),
1043 => array ('chapter_id' => 12, 'dict_value' => '[[Brocade%GPASS%ServerIron 4G-SSL-FIPS | http://www.brocade.com/sites/dotcom/products-solutions/products/ethernet-switches-routers/application-switching/product-details/serveriron-4g-application-switches/index.page]]'),
1044 => array ('chapter_id' => 12, 'dict_value' => '[[Brocade%GPASS%TurboIron 24X | http://www.brocade.com/sites/dotcom/products-solutions/products/ethernet-switches-routers/enterprise-mobility/product-details/turboiron-24x-switch/index.page]]'),
1045 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%RH Fedora 11'),
1046 => array ('chapter_id' => 13, 'dict_value' => '[[BSD%GSKIP%NetBSD 5.0 | http://netbsd.org/releases/formal-5/NetBSD-5.0.html]]'),
1047 => array ('chapter_id' => 13, 'dict_value' => '[[BSD%GSKIP%OpenBSD 4.5 | http://openbsd.org/45.html]]'),
1048 => array ('chapter_id' => 13, 'dict_value' => '[[BSD%GSKIP%OpenSolaris 2008.05 | http://opensolaris.org/os/project/indiana/resources/relnotes/200805/x86/]]'),
1049 => array ('chapter_id' => 13, 'dict_value' => '[[BSD%GSKIP%OpenSolaris 2008.11 | http://opensolaris.org/os/project/indiana/resources/relnotes/200811/x86/]]'),
1050 => array ('chapter_id' => 13, 'dict_value' => '[[BSD%GSKIP%OpenSolaris 2009.06 | http://opensolaris.org/os/project/indiana/resources/relnotes/200906/x86/]]'),
1051 => array ('chapter_id' => 13, 'dict_value' => '[[Linux%GSKIP%Gentoo 2006.0 | http://www.gentoo.org/proj/en/releng/release/2006.0/2006.0.xml]]'),
1052 => array ('chapter_id' => 13, 'dict_value' => '[[Linux%GSKIP%Gentoo 2007.0 | http://www.gentoo.org/proj/en/releng/release/2007.0/2007.0-press-release.txt]]'),
1053 => array ('chapter_id' => 13, 'dict_value' => '[[Linux%GSKIP%Gentoo 2008.0 | http://www.gentoo.org/proj/en/releng/release/2008.0/index.xml]]'),
1054 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%Ubuntu 9.04'),
1055 => array ('chapter_id' => 1, 'dict_value' => 'FC switch'),
1056 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst CBS3030-DEL'),
1057 => array ('chapter_id' => 13, 'dict_value' => '[[BSD%GSKIP%FreeBSD 7.1 | http://www.freebsd.org/releases/7.1R/relnotes.html]]'),
1058 => array ('chapter_id' => 13, 'dict_value' => '[[BSD%GSKIP%FreeBSD 7.2 | http://www.freebsd.org/releases/7.2R/relnotes.html]]'),
1059 => array ('chapter_id' => 11, 'dict_value' => 'Dell PowerEdge%GPASS%R200'),
1060 => array ('chapter_id' => 11, 'dict_value' => 'Dell PowerEdge%GPASS%R300'),
1061 => array ('chapter_id' => 12, 'dict_value' => 'Dell PowerConnect%GPASS%2808'),
1062 => array ('chapter_id' => 12, 'dict_value' => 'Dell PowerConnect%GPASS%2816'),
1063 => array ('chapter_id' => 12, 'dict_value' => 'Dell PowerConnect%GPASS%2824'),
1064 => array ('chapter_id' => 12, 'dict_value' => 'Dell PowerConnect%GPASS%2848'),
1065 => array ('chapter_id' => 12, 'dict_value' => 'Dell PowerConnect%GPASS%3524'),
1066 => array ('chapter_id' => 12, 'dict_value' => 'Dell PowerConnect%GPASS%3524P'),
1067 => array ('chapter_id' => 12, 'dict_value' => 'Dell PowerConnect%GPASS%3548'),
1068 => array ('chapter_id' => 12, 'dict_value' => 'Dell PowerConnect%GPASS%3548P'),
1069 => array ('chapter_id' => 12, 'dict_value' => 'Dell PowerConnect%GPASS%5424'),
1070 => array ('chapter_id' => 12, 'dict_value' => 'Dell PowerConnect%GPASS%5448'),
1071 => array ('chapter_id' => 26, 'dict_value' => 'Brocade%GPASS%Silkworm 2400'),
1072 => array ('chapter_id' => 26, 'dict_value' => 'Brocade%GPASS%Silkworm 2800'),
1073 => array ('chapter_id' => 26, 'dict_value' => 'Brocade%GPASS%Silkworm 3200'),
1074 => array ('chapter_id' => 26, 'dict_value' => 'Brocade%GPASS%Silkworm 3800'),
1075 => array ('chapter_id' => 26, 'dict_value' => 'Brocade%GPASS%Silkworm 3900'),
1076 => array ('chapter_id' => 26, 'dict_value' => 'Brocade%GPASS%Silkworm 4100'),
1077 => array ('chapter_id' => 2, 'dict_value' => 'empty SFP-1000'),
1078 => array ('chapter_id' => 2, 'dict_value' => 'empty GBIC'),
1079 => array ('chapter_id' => 2, 'dict_value' => 'empty XENPAK'),
1080 => array ('chapter_id' => 2, 'dict_value' => 'empty X2'),
1081 => array ('chapter_id' => 2, 'dict_value' => 'empty XPAK'),
1082 => array ('chapter_id' => 2, 'dict_value' => 'empty XFP'),
1083 => array ('chapter_id' => 2, 'dict_value' => '100Base-FX (MT-RJ)'),
1084 => array ('chapter_id' => 2, 'dict_value' => 'empty SFP+'),
1085 => array ('chapter_id' => 12, 'dict_value' => 'Nortel%GPASS%BES50GE-12T PWR'),
1086 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%4000M | http://www.hp.com/rnd/products/switches/switch4000/overview.htm]]'),
1087 => array ('chapter_id' => 2, 'dict_value' => '1000Base-T (Dell 1855)'),
1088 => array ('chapter_id' => 18, 'dict_value' => '[[NetApp%GPASS%FAS2020 | http://www.netapp.com/us/products/storage-systems/fas2000/]]'),
1089 => array ('chapter_id' => 18, 'dict_value' => '[[NetApp%GPASS%FAS2050 | http://www.netapp.com/us/products/storage-systems/fas2000/]]'),
1090 => array ('chapter_id' => 18, 'dict_value' => 'NetApp%GPASS%FAS3020'),
1091 => array ('chapter_id' => 18, 'dict_value' => 'NetApp%GPASS%FAS3040'),
1092 => array ('chapter_id' => 18, 'dict_value' => 'NetApp%GPASS%FAS3050'),
1093 => array ('chapter_id' => 18, 'dict_value' => 'NetApp%GPASS%FAS3070'),
1094 => array ('chapter_id' => 18, 'dict_value' => '[[NetApp%GPASS%FAS3140 | http://www.netapp.com/us/products/storage-systems/fas3100/]]'),
1095 => array ('chapter_id' => 18, 'dict_value' => '[[NetApp%GPASS%FAS3160 | http://www.netapp.com/us/products/storage-systems/fas3100/]]'),
1096 => array ('chapter_id' => 18, 'dict_value' => '[[NetApp%GPASS%FAS3170 | http://www.netapp.com/us/products/storage-systems/fas3100/]]'),
1097 => array ('chapter_id' => 18, 'dict_value' => 'NetApp%GPASS%FAS6030'),
1098 => array ('chapter_id' => 18, 'dict_value' => '[[NetApp%GPASS%FAS6040 | http://www.netapp.com/us/products/storage-systems/fas6000/]]'),
1099 => array ('chapter_id' => 18, 'dict_value' => 'NetApp%GPASS%FAS6070'),
1100 => array ('chapter_id' => 18, 'dict_value' => '[[NetApp%GPASS%FAS6080 | http://www.netapp.com/us/products/storage-systems/fas6000/]]'),
1101 => array ('chapter_id' => 18, 'dict_value' => '[[NetApp%GPASS%V3140 | http://www.netapp.com/us/products/storage-systems/v3100/]]'),
1102 => array ('chapter_id' => 18, 'dict_value' => '[[NetApp%GPASS%V3160 | http://www.netapp.com/us/products/storage-systems/v3100/]]'),
1103 => array ('chapter_id' => 18, 'dict_value' => '[[NetApp%GPASS%V3170 | http://www.netapp.com/us/products/storage-systems/v3100/]]'),
1104 => array ('chapter_id' => 18, 'dict_value' => '[[NetApp%GPASS%V6030 | http://www.netapp.com/us/products/storage-systems/v6000/]]'),
1105 => array ('chapter_id' => 18, 'dict_value' => '[[NetApp%GPASS%V6040 | http://www.netapp.com/us/products/storage-systems/v6000/]]'),
1106 => array ('chapter_id' => 18, 'dict_value' => '[[NetApp%GPASS%V6070 | http://www.netapp.com/us/products/storage-systems/v6000/]]'),
1107 => array ('chapter_id' => 18, 'dict_value' => '[[NetApp%GPASS%V6080 | http://www.netapp.com/us/products/storage-systems/v6000/]]'),
1108 => array ('chapter_id' => 18, 'dict_value' => 'NetApp%GPASS%DS14mk2 AT'),
1109 => array ('chapter_id' => 18, 'dict_value' => 'NetApp%GPASS%DS14mk2 FC'),
1110 => array ('chapter_id' => 18, 'dict_value' => 'NetApp%GPASS%DS14mk4 FC'),
1111 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7152 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7152]]'),
1112 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7155 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7155]]'),
1113 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7175 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7175]]'),
1114 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7526 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7526]]'),
1115 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7551 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7551]]'),
1116 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7552 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7552]]'),
1117 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7553 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7553]]'),
1118 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7554 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7554]]'),
1119 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7555 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7555]]'),
1120 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7557 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7557]]'),
1121 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7585 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7585]]'),
1122 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7586 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7586]]'),
1123 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7611 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7611]]'),
1124 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7631 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7631]]'),
1125 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7820 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7820]]'),
1126 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7821 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7821]]'),
1127 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7822 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7822]]'),
1128 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7850 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7850]]'),
1129 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7851 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7851]]'),
1130 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7852 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7852]]'),
1131 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7853 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7853]]'),
1132 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7854 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7854]]'),
1133 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7855A | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7855A]]'),
1134 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7856 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7856]]'),
1135 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7856A | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7856A]]'),
1136 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7857 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7857]]'),
1137 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7920 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7920]]'),
1138 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7921 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7921]]'),
1139 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7922 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7922]]'),
1140 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7950 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7950]]'),
1141 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7951 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7951]]'),
1142 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7952 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7952]]'),
1143 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7953 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7953]]'),
1144 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7954 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7954]]'),
1145 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7957 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7957]]'),
1146 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP9559 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP9559]]'),
1147 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP9565 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP9565]]'),
1148 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP9568 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP9568]]'),
1149 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP9572 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP9572]]'),
1150 => array ('chapter_id' => 12, 'dict_value' => '[[Cisco%GPASS%Catalyst 6509-V-E | http://www.cisco.com/en/US/products/ps9306/index.html]]'),
1151 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7902J | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7902J]]'),
1152 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7930J | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7930J]]'),
1153 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7932J | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7932J]]'),
1154 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7900 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7900]]'),
1155 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7901 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7901]]'),
1156 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7902 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7902]]'),
1157 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7930 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7930]]'),
1158 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7931 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7931]]'),
1159 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7932 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7932]]'),
1160 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7911 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7911]]'),
1161 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7940 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7940]]'),
1162 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7941 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7941]]'),
1163 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7960 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7960]]'),
1164 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7961 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7961]]'),
1165 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7968 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7968]]'),
1166 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7990 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7990]]'),
1167 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7991 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7991]]'),
1168 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7998 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7998]]'),
1169 => array ('chapter_id' => 12, 'dict_value' => '[[Hitachi Cable%GPASS%Apresia3108FG2 | http://www.apresia.jp/en/products/products/industrial/ap3108fg.html]]'),
1170 => array ('chapter_id' => 12, 'dict_value' => '[[Hitachi Cable%GPASS%Apresia3124GT-HR2 | http://www.apresia.jp/en/products/products/industrial/ap3124gt_hr.html]]'),
1171 => array ('chapter_id' => 12, 'dict_value' => '[[Hitachi Cable%GPASS%Apresia4348GT | http://www.apresia.jp/en/products/products/ent/solution/ap4348gt.html]]'),
1172 => array ('chapter_id' => 12, 'dict_value' => '[[Hitachi Cable%GPASS%Apresia4348GT-PSR | http://www.apresia.jp/en/products/products/ent/solution/ap4348gt_psr.html]]'),
1173 => array ('chapter_id' => 12, 'dict_value' => '[[Hitachi Cable%GPASS%Apresia4328GT | http://www.apresia.jp/en/products/products/ent/solution/ap4328gt.html]]'),
1174 => array ('chapter_id' => 12, 'dict_value' => '[[Hitachi Cable%GPASS%Apresia4224GT-PSR | http://www.apresia.jp/en/products/products/ent/solution/ap4224gt_psr.html]]'),
1175 => array ('chapter_id' => 12, 'dict_value' => '[[Hitachi Cable%GPASS%Apresia2248G2 | http://www.apresia.jp/en/products/products/ent/solution/ap2248g.html]]'),
1176 => array ('chapter_id' => 12, 'dict_value' => '[[Hitachi Cable%GPASS%Apresia2124GT2 | http://www.apresia.jp/en/products/products/ent/solution/ap2124gt.html]]'),
1177 => array ('chapter_id' => 12, 'dict_value' => '[[Hitachi Cable%GPASS%Apresia2124GT-SS2 | http://www.apresia.jp/en/products/products/ent/solution/ap2124gt_ss.html]]'),
1178 => array ('chapter_id' => 12, 'dict_value' => '[[Hitachi Cable%GPASS%Apresia2124-SS2 | http://www.apresia.jp/en/products/products/ent/solution/ap2124_ss.html]]'),
1179 => array ('chapter_id' => 12, 'dict_value' => '[[Hitachi Cable%GPASS%Apresia13000-24GX-PSR | http://www.apresia.jp/en/products/products/ent/full/ap13000_24gxpsr.html]]'),
1180 => array ('chapter_id' => 12, 'dict_value' => '[[Hitachi Cable%GPASS%Apresia13000-48X | http://www.apresia.jp/en/products/products/ent/full/ap13000_48x.html]]'),
1181 => array ('chapter_id' => 12, 'dict_value' => '[[Hitachi Cable%GPASS%Apresia3424GT-SS | http://www.apresia.jp/en/products/products/ent/full/ap3424gtss.html]]'),
1182 => array ('chapter_id' => 12, 'dict_value' => '[[Hitachi Cable%GPASS%Apresia3424GT-PoE | http://www.apresia.jp/en/products/products/ent/full/ap3424gtpoe.html]]'),
1183 => array ('chapter_id' => 12, 'dict_value' => '[[Hitachi Cable%GPASS%Apresia3248G-PSR2 | http://www.apresia.jp/en/products/products/ent/full/ap3248g_psr.html]]'),
1184 => array ('chapter_id' => 12, 'dict_value' => '[[Hitachi Cable%GPASS%Apresia3248G2 | http://www.apresia.jp/en/products/products/ent/full/ap3248g.html]]'),
1185 => array ('chapter_id' => 12, 'dict_value' => '[[Hitachi Cable%GPASS%Apresia3124GT-PSR2 | http://www.apresia.jp/en/products/products/ent/full/ap3124gt_psr.html]]'),
1186 => array ('chapter_id' => 12, 'dict_value' => '[[Hitachi Cable%GPASS%Apresia3124GT2 | http://www.apresia.jp/en/products/products/ent/full/ap3124gt.html]]'),
1187 => array ('chapter_id' => 12, 'dict_value' => '[[Hitachi Cable%GPASS%Apresia18020 | http://www.apresia.jp/en/products/products/sp/ap18020.html]]'),
1188 => array ('chapter_id' => 12, 'dict_value' => '[[Hitachi Cable%GPASS%Apresia18008 | http://www.apresia.jp/en/products/products/sp/ap18020.html]]'),
1189 => array ('chapter_id' => 12, 'dict_value' => '[[Hitachi Cable%GPASS%Apresia18005 | http://www.apresia.jp/en/products/products/sp/ap18020.html]]'),
1190 => array ('chapter_id' => 12, 'dict_value' => '[[Hitachi Cable%GPASS%Apresia8007 | http://www.apresia.jp/en/products/products/sp/ap8007.html]]'),
1191 => array ('chapter_id' => 12, 'dict_value' => '[[Hitachi Cable%GPASS%Apresia8004 | http://www.apresia.jp/en/products/products/sp/ap8004.html]]'),
1192 => array ('chapter_id' => 12, 'dict_value' => '[[Hitachi Cable%GPASS%Apresia6148G-PSR | http://www.apresia.jp/en/products/products/sp/ap6148gpsr.html]]'),
1193 => array ('chapter_id' => 12, 'dict_value' => '[[Hitachi Cable%GPASS%Apresia6148GT-PSR | http://www.apresia.jp/en/products/products/sp/ap6148gtpsr.html]]'),
1194 => array ('chapter_id' => 12, 'dict_value' => '[[Hitachi Cable%GPASS%VXC-1024FE | http://www.apresia.jp/en/products/products/sp/vxc1024fe.html]]'),
1195 => array ('chapter_id' => 2, 'dict_value' => '100Base-FX'),
1196 => array ('chapter_id' => 2, 'dict_value' => '100Base-SX'),
1197 => array ('chapter_id' => 2, 'dict_value' => '100Base-LX10'),
1198 => array ('chapter_id' => 2, 'dict_value' => '100Base-BX10-D'),
1199 => array ('chapter_id' => 2, 'dict_value' => '100Base-BX10-U'),
1200 => array ('chapter_id' => 2, 'dict_value' => '100Base-EX'),
1201 => array ('chapter_id' => 2, 'dict_value' => '100Base-ZX'),
1202 => array ('chapter_id' => 2, 'dict_value' => '1000Base-SX'),
1203 => array ('chapter_id' => 2, 'dict_value' => '1000Base-SX+'),
1204 => array ('chapter_id' => 2, 'dict_value' => '1000Base-LX'),
1205 => array ('chapter_id' => 2, 'dict_value' => '1000Base-LX/LH'),
1206 => array ('chapter_id' => 2, 'dict_value' => '1000Base-BX10-D'),
1207 => array ('chapter_id' => 2, 'dict_value' => '1000Base-BX10-U'),
1208 => array ('chapter_id' => 2, 'dict_value' => 'empty SFP-100'),
1209 => array ('chapter_id' => 2, 'dict_value' => '1000Base-CWDM80-1470 (gray)'),
1210 => array ('chapter_id' => 2, 'dict_value' => '1000Base-CWDM80-1490 (violet)'),
1211 => array ('chapter_id' => 2, 'dict_value' => '1000Base-CWDM80-1510 (blue)'),
1212 => array ('chapter_id' => 2, 'dict_value' => '1000Base-CWDM80-1530 (green)'),
1213 => array ('chapter_id' => 2, 'dict_value' => '1000Base-CWDM80-1550 (yellow)'),
1214 => array ('chapter_id' => 2, 'dict_value' => '1000Base-CWDM80-1570 (orange)'),
1215 => array ('chapter_id' => 2, 'dict_value' => '1000Base-CWDM80-1590 (red)'),
1216 => array ('chapter_id' => 2, 'dict_value' => '1000Base-CWDM80-1610 (brown)'),
1217 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-61.42 (ITU 20)'),
1218 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-60.61 (ITU 21)'),
1219 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-59.79 (ITU 22)'),
1220 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-58.98 (ITU 23)'),
1221 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-58.17 (ITU 24)'),
1222 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-57.36 (ITU 25)'),
1223 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-56.55 (ITU 26)'),
1224 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-55.75 (ITU 27)'),
1225 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-54.94 (ITU 28)'),
1226 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-54.13 (ITU 29)'),
1227 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-53.33 (ITU 30)'),
1228 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-52.52 (ITU 31)'),
1229 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-51.72 (ITU 32)'),
1230 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-50.92 (ITU 33)'),
1231 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-50.12 (ITU 34)'),
1232 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-49.32 (ITU 35)'),
1233 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-48.51 (ITU 36)'),
1234 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-47.72 (ITU 37)'),
1235 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-46.92 (ITU 38)'),
1236 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-46.12 (ITU 39)'),
1237 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-45.32 (ITU 40)'),
1238 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-44.53 (ITU 41)'),
1239 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-43.73 (ITU 42)'),
1240 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-42.94 (ITU 43)'),
1241 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-42.14 (ITU 44)'),
1242 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-41.35 (ITU 45)'),
1243 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-40.56 (ITU 46)'),
1244 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-39.77 (ITU 47)'),
1245 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-38.98 (ITU 48)'),
1246 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-38.19 (ITU 49)'),
1247 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-37.40 (ITU 50)'),
1248 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-36.61 (ITU 51)'),
1249 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-35.82 (ITU 52)'),
1250 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-35.04 (ITU 53)'),
1251 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-34.25 (ITU 54)'),
1252 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-33.47 (ITU 55)'),
1253 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-32.68 (ITU 56)'),
1254 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-31.90 (ITU 57)'),
1255 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-31.12 (ITU 58)'),
1256 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-30.33 (ITU 59)'),
1257 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-29.55 (ITU 60)'),
1258 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-28.77 (ITU 61)'),
1259 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-61.42 (ITU 20)'),
1260 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-60.61 (ITU 21)'),
1261 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-59.79 (ITU 22)'),
1262 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-58.98 (ITU 23)'),
1263 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-58.17 (ITU 24)'),
1264 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-57.36 (ITU 25)'),
1265 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-56.55 (ITU 26)'),
1266 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-55.75 (ITU 27)'),
1267 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-54.94 (ITU 28)'),
1268 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-54.13 (ITU 29)'),
1269 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-53.33 (ITU 30)'),
1270 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-52.52 (ITU 31)'),
1271 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-51.72 (ITU 32)'),
1272 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-50.92 (ITU 33)'),
1273 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-50.12 (ITU 34)'),
1274 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-49.32 (ITU 35)'),
1275 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-48.51 (ITU 36)'),
1276 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-47.72 (ITU 37)'),
1277 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-46.92 (ITU 38)'),
1278 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-46.12 (ITU 39)'),
1279 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-45.32 (ITU 40)'),
1280 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-44.53 (ITU 41)'),
1281 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-43.73 (ITU 42)'),
1282 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-42.94 (ITU 43)'),
1283 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-42.14 (ITU 44)'),
1284 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-41.35 (ITU 45)'),
1285 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-40.56 (ITU 46)'),
1286 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-39.77 (ITU 47)'),
1287 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-38.98 (ITU 48)'),
1288 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-38.19 (ITU 49)'),
1289 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-37.40 (ITU 50)'),
1290 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-36.61 (ITU 51)'),
1291 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-35.82 (ITU 52)'),
1292 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-35.04 (ITU 53)'),
1293 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-34.25 (ITU 54)'),
1294 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-33.47 (ITU 55)'),
1295 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-32.68 (ITU 56)'),
1296 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-31.90 (ITU 57)'),
1297 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-31.12 (ITU 58)'),
1298 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-30.33 (ITU 59)'),
1299 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-29.55 (ITU 60)'),
1300 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-28.77 (ITU 61)'),
1301 => array ('chapter_id' => 25, 'dict_value' => 'Cisco%GPASS%AIR-BR1410A'),
1302 => array ('chapter_id' => 25, 'dict_value' => 'Cisco%GPASS%AIR-BR1310G'),
1303 => array ('chapter_id' => 25, 'dict_value' => 'Cisco%GPASS%AIR-AP1252AG'),
1304 => array ('chapter_id' => 25, 'dict_value' => 'Cisco%GPASS%AIR-AP1252G'),
1305 => array ('chapter_id' => 25, 'dict_value' => 'Cisco%GPASS%AIR-AP1242AG'),
1306 => array ('chapter_id' => 25, 'dict_value' => 'Cisco%GPASS%AIR-AP1242G'),
1307 => array ('chapter_id' => 25, 'dict_value' => 'Cisco%GPASS%AIR-AP1231G'),
1308 => array ('chapter_id' => 25, 'dict_value' => 'Cisco%GPASS%AIR-AP1232AG'),
1309 => array ('chapter_id' => 25, 'dict_value' => 'Cisco%GPASS%AIR-AP1131AG'),
1310 => array ('chapter_id' => 25, 'dict_value' => 'Cisco%GPASS%AIR-AP1131G'),
1311 => array ('chapter_id' => 25, 'dict_value' => 'Cisco%GPASS%AIR-AP1121G'),
1312 => array ('chapter_id' => 25, 'dict_value' => 'Cisco%GPASS%AIR-AP521G'),
1313 => array ('chapter_id' => 25, 'dict_value' => 'Cisco%GPASS%AIR-WLC2106'),
1314 => array ('chapter_id' => 25, 'dict_value' => 'Cisco%GPASS%AIR-WLC526'),
1315 => array ('chapter_id' => 25, 'dict_value' => 'Cisco%GPASS%AIR-WLC4402'),
1316 => array ('chapter_id' => 2, 'dict_value' => '1000Base-T (Dell M1000e)'),
1317 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%SLES11'),
1318 => array ('chapter_id' => 13, 'dict_value' => 'Windows Server 2008'),
1319 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%Slackware 13.0'),
1320 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%Ubuntu 9.10'),
1321 => array ('chapter_id' => 12, 'dict_value' => 'Huawei%GPASS%Quidway S5328C-EI-24S'),
1322 => array ('chapter_id' => 2, 'dict_value' => 'AC-out'),
1323 => array ('chapter_id' => 1, 'dict_value' => 'Voice/video'),
1324 => array ('chapter_id' => 28, 'dict_value' => 'Cisco%GPASS%MCS 7816'),
1325 => array ('chapter_id' => 28, 'dict_value' => 'Cisco%GPASS%MCS 7825'),
1326 => array ('chapter_id' => 28, 'dict_value' => 'Cisco%GPASS%MCS 7835'),
1327 => array ('chapter_id' => 17, 'dict_value' => '[[ Cisco%GPASS%2901 | http://www.cisco.com/en/US/products/ps10539/index.html]]'),
1328 => array ('chapter_id' => 17, 'dict_value' => '[[ Cisco%GPASS%2911 | http://www.cisco.com/en/US/products/ps10540/index.html]]'),
1329 => array ('chapter_id' => 17, 'dict_value' => '[[ Cisco%GPASS%2921 | http://www.cisco.com/en/US/products/ps10543/index.html]]'),
1330 => array ('chapter_id' => 17, 'dict_value' => '[[ Cisco%GPASS%2951 | http://www.cisco.com/en/US/products/ps10544/index.html]]'),
1331 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%ALTLinux 5'),
1332 => array ('chapter_id' => 13, 'dict_value' => '[[Linux%GSKIP%RH Fedora 12 | http://docs.fedoraproject.org/release-notes/f12/en-US/html/]]'),
1333 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%Gentoo 10.0'),
1334 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%Gentoo 10.1'),
1335 => array ('chapter_id' => 12, 'dict_value' => 'Huawei%GPASS%Quidway S5328C-EI'),
1336 => array ('chapter_id' => 12, 'dict_value' => 'Huawei%GPASS%Quidway S5328C-PWR-EI'),
1337 => array ('chapter_id' => 12, 'dict_value' => 'Huawei%GPASS%Quidway S5352C-EI'),
1338 => array ('chapter_id' => 12, 'dict_value' => 'Huawei%GPASS%Quidway S5352C-PWR-EI'),
1339 => array ('chapter_id' => 12, 'dict_value' => 'Huawei%GPASS%Quidway S5328C-SI'),
1340 => array ('chapter_id' => 12, 'dict_value' => 'Huawei%GPASS%Quidway S5328C-PWR-SI'),
1341 => array ('chapter_id' => 12, 'dict_value' => 'Huawei%GPASS%Quidway S5352C-SI'),
1342 => array ('chapter_id' => 12, 'dict_value' => 'Huawei%GPASS%Quidway S5352C-PWR-SI'),
1343 => array ('chapter_id' => 12, 'dict_value' => 'Huawei%GPASS%Quidway S5324TP-SI'),
1344 => array ('chapter_id' => 12, 'dict_value' => 'Huawei%GPASS%Quidway S5324TP-PWR-SI'),
1345 => array ('chapter_id' => 12, 'dict_value' => 'Huawei%GPASS%Quidway S5348TP-SI'),
1346 => array ('chapter_id' => 12, 'dict_value' => 'Huawei%GPASS%Quidway S5348TP-PWR-SI'),
1347 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 2960G-24PC'),
1348 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 2350-48TD'),
1349 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%2910al-48G | http://h10010.www1.hp.com/wwpc/uk/en/sm/WF06b/12883-12883-3445275-427605-427605-3901671-3901675.html]]'),
1350 => array ('chapter_id' => 14, 'dict_value' => 'ExtremeXOS 10'),
1351 => array ('chapter_id' => 14, 'dict_value' => 'ExtremeXOS 11'),
1352 => array ('chapter_id' => 14, 'dict_value' => 'ExtremeXOS 12'),
1353 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%Summit X480-24x | http://extremenetworks.com/products/summit-X480.aspx]]'),
1354 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%Summit X480-48t | http://extremenetworks.com/products/summit-X480.aspx]]'),
1355 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%Summit X480-48x | http://extremenetworks.com/products/summit-X480.aspx]]'),
1356 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%Summit X650 | http://extremenetworks.com/products/summit-x650.aspx]]'),
1357 => array ('chapter_id' => 12, 'dict_value' => 'Huawei%GPASS%Quidway S9303'),
1358 => array ('chapter_id' => 12, 'dict_value' => 'Huawei%GPASS%Quidway S9306'),
1359 => array ('chapter_id' => 12, 'dict_value' => 'Huawei%GPASS%Quidway S9312'),
1360 => array ('chapter_id' => 14, 'dict_value' => 'Huawei VRP 5.3'),
1361 => array ('chapter_id' => 14, 'dict_value' => 'Huawei VRP 5.5'),
1362 => array ('chapter_id' => 12, 'dict_value' => '[[Brocade%GPASS%FCX 648 | http://www.brocade.com/sites/dotcom/products-solutions/products/ethernet-switches-routers/enterprise-mobility/product-details/fcx-series-data-center/index.page ]]'),
1363 => array ('chapter_id' => 14, 'dict_value' => 'IronWare 5'),
1364 => array ('chapter_id' => 14, 'dict_value' => 'IronWare 7'),
);
?>