aboutsummaryrefslogtreecommitdiff
path: root/h-source/Application
diff options
context:
space:
mode:
authorAntonio Gallo <tonicucoz@gmail.com>2011-03-02 23:48:56 +0000
committerAntonio Gallo <tonicucoz@gmail.com>2011-03-02 23:48:56 +0000
commitfdd5ccda63a6c6825035f99c3e6b6df93814cebe (patch)
tree5ba045ff3cb29d94f8216706130471e8fa6c71a7 /h-source/Application
parent632f611689562bb79dfb18065b6d0851a5c2077e (diff)
vendor is now automatically obtained from vendorid, except for notebooks
Diffstat (limited to 'h-source/Application')
-rw-r--r--h-source/Application/Controllers/BluetoothController.php4
-rw-r--r--h-source/Application/Controllers/GenericController.php96
-rw-r--r--h-source/Application/Controllers/PrintersController.php8
-rw-r--r--h-source/Application/Controllers/ScannersController.php8
-rw-r--r--h-source/Application/Controllers/SoundcardsController.php8
-rw-r--r--h-source/Application/Controllers/ThreegcardsController.php8
-rw-r--r--h-source/Application/Controllers/VideocardsController.php8
-rw-r--r--h-source/Application/Controllers/WebcamsController.php8
-rw-r--r--h-source/Application/Controllers/WifiController.php8
-rw-r--r--h-source/Application/Include/hardware.php53
-rw-r--r--h-source/Application/Include/myFunctions.php4114
-rw-r--r--h-source/Application/Include/vendors.php4149
-rw-r--r--h-source/Application/Models/HardwareModel.php6
-rw-r--r--h-source/Application/Views/Bluetooth/form.php8
-rw-r--r--h-source/Application/Views/Printers/catalogue.php12
-rw-r--r--h-source/Application/Views/Printers/form.php8
-rw-r--r--h-source/Application/Views/Printers/page.php2
-rw-r--r--h-source/Application/Views/Scanners/catalogue.php4
-rw-r--r--h-source/Application/Views/Scanners/form.php8
-rw-r--r--h-source/Application/Views/Scanners/page.php2
-rw-r--r--h-source/Application/Views/Soundcards/form.php6
-rw-r--r--h-source/Application/Views/Threegcards/form.php6
-rw-r--r--h-source/Application/Views/Videocards/catalogue.php2
-rw-r--r--h-source/Application/Views/Videocards/form.php6
-rw-r--r--h-source/Application/Views/Webcams/form.php6
-rw-r--r--h-source/Application/Views/Wifi/catalogue.php2
-rw-r--r--h-source/Application/Views/Wifi/form.php6
27 files changed, 8376 insertions, 180 deletions
diff --git a/h-source/Application/Controllers/BluetoothController.php b/h-source/Application/Controllers/BluetoothController.php
index c763aa6..4730081 100644
--- a/h-source/Application/Controllers/BluetoothController.php
+++ b/h-source/Application/Controllers/BluetoothController.php
@@ -43,7 +43,6 @@ class BluetoothController extends GenericController
//hardware conditions
$this->m['HardwareModel']->strongConditions['update'] = array(
- "checkIsStrings|".Bluetooth::vendorsList() => "vendor",
"checkNotEmpty" => "model|you have to fill the <i>model name</i> entry",
"checkMatch|/^[a-zA-Z0-9\-\_\.\+\s\(\)\@\[\]\/]+$/" => "model|characters not allowed in the <i>model name</i> entry",
"checkLength|99" => "model",
@@ -54,7 +53,6 @@ class BluetoothController extends GenericController
);
$this->m['HardwareModel']->strongConditions['insert'] = array(
- "checkIsStrings|".Bluetooth::vendorsList() => "vendor",
"checkNotEmpty" => "model|you have to fill the <i>model name</i> entry",
"checkMatch|/^[a-zA-Z0-9\-\_\.\+\s\(\)\@\[\]\/]+$/" => "model|characters not allowed in the <i>model name</i> entry",
"checkLength|99" => "model",
@@ -82,7 +80,7 @@ class BluetoothController extends GenericController
"++checkMatch|/^[a-zA-Z0-9\-\_\.\+\s\/\,\:\;\(\)\[\]]+$/" => "driver|only the following characters are allowed for the <i>driver</i> entry: a-z A-Z 0-9 - _ . + s / , : ; ( ) [ ]",
);
- $this->m['HardwareModel']->setFields('vendor,model,kernel,description,distribution,comm_year,bluetooth_works,pci_id,interface,driver','sanitizeAll');
+ $this->m['HardwareModel']->setFields('model,kernel,description,distribution,comm_year,bluetooth_works,pci_id,interface,driver','sanitizeAll');
$argKeys = array(
'page:forceNat' => 1,
diff --git a/h-source/Application/Controllers/GenericController.php b/h-source/Application/Controllers/GenericController.php
index 884f915..f58fa24 100644
--- a/h-source/Application/Controllers/GenericController.php
+++ b/h-source/Application/Controllers/GenericController.php
@@ -79,25 +79,31 @@ class GenericController extends BaseController
{
if ($this->checkDist())
{
- $pci_id = $this->request->post('pci_id','','sanitizeAll');
- if (strcmp($pci_id,'') !== 0)
+ if ($this->checkVendorId())
{
- $this->m['HardwareModel']->databaseConditions['insert']['+checkUnique'] = 'pci_id|<i>VendorID:ProductID</i> is already present in the database. This means that the device you are trying to insert is already in the database';
- }
-
- //insert the new device
- $this->m['HardwareModel']->updateTable('insert');
-
- if ($this->m['HardwareModel']->queryResult)
- {
- if (strcmp($this->controller,'notebooks') === 0)
+ $pci_id = $this->request->post('pci_id','','sanitizeAll');
+
+ if (strcmp($this->m['HardwareModel']->type,'notebook') !== 0)
+ {
+ $this->m['HardwareModel']->values['vendor'] = sanitizeAll(Vendors::getName($pci_id));
+
+ $this->m['HardwareModel']->databaseConditions['insert']['+checkUnique'] = 'pci_id|<i>VendorID:ProductID</i> is already present in the database. This means that the device you are trying to insert is already in the database';
+ }
+
+ //insert the new device
+ $this->m['HardwareModel']->updateTable('insert');
+
+ if ($this->m['HardwareModel']->queryResult)
{
- session_start();
- $_SESSION['notebook_inserted'] = 'yes';
+ if (strcmp($this->controller,'notebooks') === 0)
+ {
+ session_start();
+ $_SESSION['notebook_inserted'] = 'yes';
+ }
}
+
+ $this->viewRedirect($this->m['HardwareModel']->lastId);
}
-
- $this->viewRedirect($this->m['HardwareModel']->lastId);
}
}
@@ -216,16 +222,22 @@ class GenericController extends BaseController
{
if ($this->checkDist())
{
- $pci_id = $this->request->post('pci_id','','sanitizeAll');
- if (strcmp($pci_id,'') !== 0)
+ if ($this->checkVendorId())
{
- $this->m['HardwareModel']->databaseConditions['update']['+checkUniqueCompl'] = 'pci_id|<i>VendorID:ProductID</i> is already present in the database. This means that the device you are trying to insert is already in the database';
+ $pci_id = $this->request->post('pci_id','','sanitizeAll');
+
+ if (strcmp($this->m['HardwareModel']->type,'notebook') !== 0)
+ {
+ $this->m['HardwareModel']->values['vendor'] = sanitizeAll(Vendors::getName($pci_id));
+
+ $this->m['HardwareModel']->databaseConditions['update']['+checkUniqueCompl'] = 'pci_id|<i>VendorID:ProductID</i> is already present in the database. This means that the device you are trying to insert is already in the database';
+ }
+
+ //carry out the update database action
+ $this->m['HardwareModel']->updateTable('update');
+
+ $this->viewRedirect($this->m['HardwareModel']->lastId);
}
-
- //carry out the update database action
- $this->m['HardwareModel']->updateTable('update');
-
- $this->viewRedirect($this->m['HardwareModel']->lastId);
}
}
@@ -260,6 +272,44 @@ class GenericController extends BaseController
$this->redirect($this->controller.'/catalogue/'.$this->lang);
}
}
+
+ protected function checkVendorId()
+ {
+ if (strcmp($this->m['HardwareModel']->type,'notebook') === 0) return true;
+
+ if (array_key_exists('pci_id',$_POST))
+ {
+ if (strcmp($_POST['pci_id'],"") !== 0)
+ {
+ if (preg_match('/^[a-zA-Z0-9]{4}(\:)[a-zA-Z0-9]{4}$/',$_POST['pci_id']))
+ {
+ if (Vendors::check($_POST['pci_id']))
+ {
+ return true;
+ }
+ else
+ {
+ $this->m['HardwareModel']->result = false;
+ $this->m['HardwareModel']->notice = "<div class='alert'>Vendorid code non present in the list, please open an issue <a href='".$this->baseUrl."/issues/viewall/".Lang::$current."'>here</a> in order to ask the insertion of your vendor</div>\n";
+ return false;
+ }
+ }
+ else
+ {
+ $this->m['HardwareModel']->result = false;
+ $this->m['HardwareModel']->notice = "<div class='alert'><i>VendorID:ProductID</i> has to have the following format: [a-zA-Z0-9]{4}(\:)[a-zA-Z0-9]{4}</div>";
+ }
+ }
+ else
+ {
+ $this->m['HardwareModel']->result = false;
+ $this->m['HardwareModel']->notice = "<div class='alert'>Vendorid:Productid code not defined..</div>\n";
+ return false;
+ }
+ }
+ $this->m['HardwareModel']->result = false;
+ return false;
+ }
protected function checkDist()
{
diff --git a/h-source/Application/Controllers/PrintersController.php b/h-source/Application/Controllers/PrintersController.php
index 5ea6bf7..0251808 100644
--- a/h-source/Application/Controllers/PrintersController.php
+++ b/h-source/Application/Controllers/PrintersController.php
@@ -43,9 +43,9 @@ class PrintersController extends GenericController
//hardware conditions
$this->m['HardwareModel']->strongConditions['update'] = array(
- "checkIsStrings|".Printer::vendorsList() => "vendor",
"checkNotEmpty" => "model|you have to fill the <i>model name</i> entry",
"checkMatch|/^[a-zA-Z0-9\-\_\.\+\s\(\)\[\]\/]+$/" => "model|characters not allowed in the <i>model name</i> entry",
+ "+checkMatch|/^[a-zA-Z0-9]{4}(\:)[a-zA-Z0-9]{4}$/" => "pci_id|<i>VendorID:ProductID</i> has to have the following format: [a-zA-Z0-9]{4}(\:)[a-zA-Z0-9]{4}",
"checkLength|99" => "model",
"+checkLength|299" => "distribution",
"+checkIsStrings|".Printer::compatibilityList() => "compatibility",
@@ -55,9 +55,9 @@ class PrintersController extends GenericController
);
$this->m['HardwareModel']->strongConditions['insert'] = array(
- "checkIsStrings|".Printer::vendorsList() => "vendor",
"checkNotEmpty" => "model|you have to fill the <i>model name</i> entry",
"checkMatch|/^[a-zA-Z0-9\-\_\.\+\s\(\)\[\]\/]+$/" => "model|characters not allowed in the <i>model name</i> entry",
+ "+checkMatch|/^[a-zA-Z0-9]{4}(\:)[a-zA-Z0-9]{4}$/" => "pci_id|<i>VendorID:ProductID</i> has to have the following format: [a-zA-Z0-9]{4}(\:)[a-zA-Z0-9]{4}",
"checkLength|99" => "model",
"+checkLength|299" => "distribution",
"+checkIsStrings|".Printer::compatibilityList() => "compatibility",
@@ -71,7 +71,6 @@ class PrintersController extends GenericController
"checkLength|20000" => "description",
"+checkLength|49" => "driver",
"++checkLength|49" => "kernel",
- "+checkMatch|/^[a-zA-Z0-9]{4}(\:)[a-zA-Z0-9]{4}$/" => "pci_id|<i>VendorID:ProductID</i> has to have the following format: [a-zA-Z0-9]{4}(\:)[a-zA-Z0-9]{4}",
"++checkMatch|/^[a-zA-Z0-9\-\_\.\+\s\/\,\:\;\(\)\[\]]+$/" => "driver|only the following characters are allowed for the <i>driver</i> entry: a-z A-Z 0-9 - _ . + s / , : ; ( ) [ ]",
);
@@ -80,11 +79,10 @@ class PrintersController extends GenericController
"checkLength|20000" => "description",
"+checkLength|49" => "driver",
"++checkLength|49" => "kernel",
- "+checkMatch|/^[a-zA-Z0-9]{4}(\:)[a-zA-Z0-9]{4}$/" => "pci_id|<i>VendorID:ProductID</i> has to have the following format: [a-zA-Z0-9]{4}(\:)[a-zA-Z0-9]{4}",
"++checkMatch|/^[a-zA-Z0-9\-\_\.\+\s\/\,\:\;\(\)\[\]]+$/" => "driver|only the following characters are allowed for the <i>driver</i> entry: a-z A-Z 0-9 - _ . + s / , : ; ( ) [ ]",
);
- $this->m['HardwareModel']->setFields('vendor,model,kernel,description,compatibility,distribution,comm_year,pci_id,driver,interface,subtype','sanitizeAll');
+ $this->m['HardwareModel']->setFields('model,kernel,description,compatibility,distribution,comm_year,pci_id,driver,interface,subtype','sanitizeAll');
$argKeys = array(
'page:forceNat' => 1,
diff --git a/h-source/Application/Controllers/ScannersController.php b/h-source/Application/Controllers/ScannersController.php
index b6c84e3..1030fb8 100644
--- a/h-source/Application/Controllers/ScannersController.php
+++ b/h-source/Application/Controllers/ScannersController.php
@@ -43,9 +43,9 @@ class ScannersController extends GenericController
//hardware conditions
$this->m['HardwareModel']->strongConditions['update'] = array(
- "checkIsStrings|".Printer::vendorsList() => "vendor",
"checkNotEmpty" => "model|you have to fill the <i>model name</i> entry",
"checkMatch|/^[a-zA-Z0-9\-\_\.\+\s\(\)\[\]\/]+$/" => "model|characters not allowed in the <i>model name</i> entry",
+ "+checkMatch|/^[a-zA-Z0-9]{4}(\:)[a-zA-Z0-9]{4}$/" => "pci_id|<i>VendorID:ProductID</i> has to have the following format: [a-zA-Z0-9]{4}(\:)[a-zA-Z0-9]{4}",
"checkLength|99" => "model",
"+checkLength|299" => "distribution",
"+checkIsStrings|".Printer::compatibilityList() => "compatibility",
@@ -54,9 +54,9 @@ class ScannersController extends GenericController
);
$this->m['HardwareModel']->strongConditions['insert'] = array(
- "checkIsStrings|".Printer::vendorsList() => "vendor",
"checkNotEmpty" => "model|you have to fill the <i>model name</i> entry",
"checkMatch|/^[a-zA-Z0-9\-\_\.\+\s\(\)\[\]\/]+$/" => "model|characters not allowed in the <i>model name</i> entry",
+ "+checkMatch|/^[a-zA-Z0-9]{4}(\:)[a-zA-Z0-9]{4}$/" => "pci_id|<i>VendorID:ProductID</i> has to have the following format: [a-zA-Z0-9]{4}(\:)[a-zA-Z0-9]{4}",
"checkLength|99" => "model",
"+checkLength|299" => "distribution",
"+checkIsStrings|".Printer::compatibilityList() => "compatibility",
@@ -69,7 +69,6 @@ class ScannersController extends GenericController
"checkLength|20000" => "description",
"+checkLength|49" => "driver",
"++checkLength|49" => "kernel",
- "+checkMatch|/^[a-zA-Z0-9]{4}(\:)[a-zA-Z0-9]{4}$/" => "pci_id|<i>VendorID:ProductID</i> has to have the following format: [a-zA-Z0-9]{4}(\:)[a-zA-Z0-9]{4}",
"++checkMatch|/^[a-zA-Z0-9\-\_\.\+\s\/\,\:\;\(\)\[\]]+$/" => "driver|only the following characters are allowed for the <i>driver</i> entry: a-z A-Z 0-9 - _ . + s / , : ; ( ) [ ]",
);
@@ -78,11 +77,10 @@ class ScannersController extends GenericController
"checkLength|20000" => "description",
"+checkLength|49" => "driver",
"++checkLength|49" => "kernel",
- "+checkMatch|/^[a-zA-Z0-9]{4}(\:)[a-zA-Z0-9]{4}$/" => "pci_id|<i>VendorID:ProductID</i> has to have the following format: [a-zA-Z0-9]{4}(\:)[a-zA-Z0-9]{4}",
"++checkMatch|/^[a-zA-Z0-9\-\_\.\+\s\/\,\:\;\(\)\[\]]+$/" => "driver|only the following characters are allowed for the <i>driver</i> entry: a-z A-Z 0-9 - _ . + s / , : ; ( ) [ ]",
);
- $this->m['HardwareModel']->setFields('vendor,model,kernel,description,compatibility,distribution,comm_year,pci_id,driver,interface','sanitizeAll');
+ $this->m['HardwareModel']->setFields('model,kernel,description,compatibility,distribution,comm_year,pci_id,driver,interface','sanitizeAll');
$argKeys = array(
'page:forceNat' => 1,
diff --git a/h-source/Application/Controllers/SoundcardsController.php b/h-source/Application/Controllers/SoundcardsController.php
index b1d94ce..d1386e0 100644
--- a/h-source/Application/Controllers/SoundcardsController.php
+++ b/h-source/Application/Controllers/SoundcardsController.php
@@ -43,9 +43,9 @@ class SoundcardsController extends GenericController
//hardware conditions
$this->m['HardwareModel']->strongConditions['update'] = array(
- "checkIsStrings|".Soundcards::vendorsList() => "vendor",
"checkNotEmpty" => "model|you have to fill the <i>model name</i> entry",
"checkMatch|/^[a-zA-Z0-9\-\_\.\+\s\(\)\@\[\]\/]+$/" => "model|characters not allowed in the <i>model name</i> entry",
+ "+checkMatch|/^[a-zA-Z0-9]{4}(\:)[a-zA-Z0-9]{4}$/" => "pci_id|<i>VendorID:ProductID</i> has to have the following format: [a-zA-Z0-9]{4}(\:)[a-zA-Z0-9]{4}",
"checkLength|99" => "model",
"+checkLength|299" => "distribution",
"++checkIsStrings|".Wifi::$commYear => "comm_year",
@@ -54,9 +54,9 @@ class SoundcardsController extends GenericController
);
$this->m['HardwareModel']->strongConditions['insert'] = array(
- "checkIsStrings|".Soundcards::vendorsList() => "vendor",
"checkNotEmpty" => "model|you have to fill the <i>model name</i> entry",
"checkMatch|/^[a-zA-Z0-9\-\_\.\+\s\(\)\@\[\]\/]+$/" => "model|characters not allowed in the <i>model name</i> entry",
+ "+checkMatch|/^[a-zA-Z0-9]{4}(\:)[a-zA-Z0-9]{4}$/" => "pci_id|<i>VendorID:ProductID</i> has to have the following format: [a-zA-Z0-9]{4}(\:)[a-zA-Z0-9]{4}",
"checkLength|99" => "model",
"+checkLength|299" => "distribution",
"++checkIsStrings|".Wifi::$commYear => "comm_year",
@@ -69,7 +69,6 @@ class SoundcardsController extends GenericController
"checkLength|20000" => "description",
"+checkLength|49" => "kernel",
"++checkLength|49" => "driver",
- "+checkMatch|/^[a-zA-Z0-9]{4}(\:)[a-zA-Z0-9]{4}$/" => "pci_id|<i>VendorID:ProductID</i> has to have the following format: [a-zA-Z0-9]{4}(\:)[a-zA-Z0-9]{4}",
"++checkMatch|/^[a-zA-Z0-9\-\_\.\+\s\/\,\:\;\(\)\[\]]+$/" => "driver|only the following characters are allowed for the <i>driver</i> entry: a-z A-Z 0-9 - _ . + s / , : ; ( ) [ ]",
);
@@ -78,11 +77,10 @@ class SoundcardsController extends GenericController
"checkLength|20000" => "description",
"+checkLength|49" => "kernel",
"++checkLength|49" => "driver",
- "+checkMatch|/^[a-zA-Z0-9]{4}(\:)[a-zA-Z0-9]{4}$/" => "pci_id|<i>VendorID:ProductID</i> has to have the following format: [a-zA-Z0-9]{4}(\:)[a-zA-Z0-9]{4}",
"++checkMatch|/^[a-zA-Z0-9\-\_\.\+\s\/\,\:\;\(\)\[\]]+$/" => "driver|only the following characters are allowed for the <i>driver</i> entry: a-z A-Z 0-9 - _ . + s / , : ; ( ) [ ]",
);
- $this->m['HardwareModel']->setFields('vendor,model,kernel,description,distribution,comm_year,sound_card_works,pci_id,interface,driver','sanitizeAll');
+ $this->m['HardwareModel']->setFields('model,kernel,description,distribution,comm_year,sound_card_works,pci_id,interface,driver','sanitizeAll');
$argKeys = array(
'page:forceNat' => 1,
diff --git a/h-source/Application/Controllers/ThreegcardsController.php b/h-source/Application/Controllers/ThreegcardsController.php
index e0ee3fe..69484cd 100644
--- a/h-source/Application/Controllers/ThreegcardsController.php
+++ b/h-source/Application/Controllers/ThreegcardsController.php
@@ -43,9 +43,9 @@ class ThreegcardsController extends GenericController
//hardware conditions
$this->m['HardwareModel']->strongConditions['update'] = array(
- "checkIsStrings|".ThreeGcards::vendorsList() => "vendor",
"checkNotEmpty" => "model|you have to fill the <i>model name</i> entry",
"checkMatch|/^[a-zA-Z0-9\-\_\.\+\s\(\)\[\]\/]+$/" => "model|characters not allowed in the <i>model name</i> entry",
+ "+checkMatch|/^[a-zA-Z0-9]{4}(\:)[a-zA-Z0-9]{4}$/" => "pci_id|<i>VendorID:ProductID</i> has to have the following format: [a-zA-Z0-9]{4}(\:)[a-zA-Z0-9]{4}",
"checkLength|99" => "model",
"+checkLength|299" => "distribution",
"++checkIsStrings|".ThreeGcards::$commYear => "comm_year",
@@ -54,9 +54,9 @@ class ThreegcardsController extends GenericController
);
$this->m['HardwareModel']->strongConditions['insert'] = array(
- "checkIsStrings|".ThreeGcards::vendorsList() => "vendor",
"checkNotEmpty" => "model|you have to fill the <i>model name</i> entry",
"checkMatch|/^[a-zA-Z0-9\-\_\.\+\s\(\)\[\]\/]+$/" => "model|characters not allowed in the <i>model name</i> entry",
+ "+checkMatch|/^[a-zA-Z0-9]{4}(\:)[a-zA-Z0-9]{4}$/" => "pci_id|<i>VendorID:ProductID</i> has to have the following format: [a-zA-Z0-9]{4}(\:)[a-zA-Z0-9]{4}",
"checkLength|99" => "model",
"+checkLength|299" => "distribution",
"++checkIsStrings|".ThreeGcards::$commYear => "comm_year",
@@ -68,17 +68,15 @@ class ThreegcardsController extends GenericController
"checkMatch|/^[a-zA-Z0-9\-\_\.\+\s]+$/" => "kernel|characters not allowed in the <i>kernel</i> entry",
"checkLength|20000" => "description",
"+checkLength|49" => "kernel",
- "+checkMatch|/^[a-zA-Z0-9]{4}(\:)[a-zA-Z0-9]{4}$/" => "pci_id|<i>VendorID:ProductID</i> has to have the following format: [a-zA-Z0-9]{4}(\:)[a-zA-Z0-9]{4}",
);
$this->m['HardwareModel']->softConditions['insert'] = array(
"checkMatch|/^[a-zA-Z0-9\-\_\.\+\s]+$/" => "kernel|characters not allowed in the <i>kernel</i> entry",
"checkLength|20000" => "description",
"+checkLength|49" => "kernel",
- "+checkMatch|/^[a-zA-Z0-9]{4}(\:)[a-zA-Z0-9]{4}$/" => "pci_id|<i>VendorID:ProductID</i> has to have the following format: [a-zA-Z0-9]{4}(\:)[a-zA-Z0-9]{4}",
);
- $this->m['HardwareModel']->setFields('vendor,model,kernel,description,distribution,comm_year,wifi_works,pci_id,interface','sanitizeAll');
+ $this->m['HardwareModel']->setFields('model,kernel,description,distribution,comm_year,wifi_works,pci_id,interface','sanitizeAll');
$argKeys = array(
'page:forceNat' => 1,
diff --git a/h-source/Application/Controllers/VideocardsController.php b/h-source/Application/Controllers/VideocardsController.php
index 8167d27..3e47961 100644
--- a/h-source/Application/Controllers/VideocardsController.php
+++ b/h-source/Application/Controllers/VideocardsController.php
@@ -43,9 +43,9 @@ class VideocardsController extends GenericController
//hardware conditions
$this->m['HardwareModel']->strongConditions['update'] = array(
- "checkIsStrings|".Videocard::vendorsList() => "vendor",
"checkNotEmpty" => "model|you have to fill the <i>model name</i> entry",
"checkMatch|/^[a-zA-Z0-9\-\_\.\+\s\(\)\[\]\/]+$/" => "model|characters not allowed in the <i>model name</i> entry",
+ "+checkMatch|/^[a-zA-Z0-9]{4}(\:)[a-zA-Z0-9]{4}$/" => "pci_id|<i>VendorID:ProductID</i> has to have the following format: [a-zA-Z0-9]{4}(\:)[a-zA-Z0-9]{4}",
"checkLength|99" => "model",
"+checkLength|299" => "distribution",
"++checkIsStrings|".Notebooks::$commYear => "comm_year",
@@ -54,9 +54,9 @@ class VideocardsController extends GenericController
);
$this->m['HardwareModel']->strongConditions['insert'] = array(
- "checkIsStrings|".Videocard::vendorsList() => "vendor",
"checkNotEmpty" => "model|you have to fill the <i>model name</i> entry",
"checkMatch|/^[a-zA-Z0-9\-\_\.\+\s\(\)\[\]\/]+$/" => "model|characters not allowed in the <i>model name</i> entry",
+ "+checkMatch|/^[a-zA-Z0-9]{4}(\:)[a-zA-Z0-9]{4}$/" => "pci_id|<i>VendorID:ProductID</i> has to have the following format: [a-zA-Z0-9]{4}(\:)[a-zA-Z0-9]{4}",
"checkLength|99" => "model",
"+checkLength|299" => "distribution",
"++checkIsStrings|".Notebooks::$commYear => "comm_year",
@@ -68,17 +68,15 @@ class VideocardsController extends GenericController
"checkMatch|/^[a-zA-Z0-9\-\_\.\+\s]+$/" => "kernel|characters not allowed in the <i>kernel</i> entry",
"checkLength|20000" => "description",
"+checkLength|49" => "kernel",
- "+checkMatch|/^[a-zA-Z0-9]{4}(\:)[a-zA-Z0-9]{4}$/" => "pci_id|<i>VendorID:ProductID</i> has to have the following format: [a-zA-Z0-9]{4}(\:)[a-zA-Z0-9]{4}",
);
$this->m['HardwareModel']->softConditions['insert'] = array(
"checkMatch|/^[a-zA-Z0-9\-\_\.\+\s]+$/" => "kernel|characters not allowed in the <i>kernel</i> entry",
"checkLength|20000" => "description",
"+checkLength|49" => "kernel",
- "+checkMatch|/^[a-zA-Z0-9]{4}(\:)[a-zA-Z0-9]{4}$/" => "pci_id|<i>VendorID:ProductID</i> has to have the following format: [a-zA-Z0-9]{4}(\:)[a-zA-Z0-9]{4}",
);
- $this->m['HardwareModel']->setFields('vendor,model,kernel,description,distribution,video_card_works,comm_year,pci_id,interface','sanitizeAll');
+ $this->m['HardwareModel']->setFields('model,kernel,description,distribution,video_card_works,comm_year,pci_id,interface','sanitizeAll');
$argKeys = array(
'page:forceNat' => 1,
diff --git a/h-source/Application/Controllers/WebcamsController.php b/h-source/Application/Controllers/WebcamsController.php
index 74425a2..454f2ee 100644
--- a/h-source/Application/Controllers/WebcamsController.php
+++ b/h-source/Application/Controllers/WebcamsController.php
@@ -43,9 +43,9 @@ class WebcamsController extends GenericController
//hardware conditions
$this->m['HardwareModel']->strongConditions['update'] = array(
- "checkIsStrings|".Webcams::vendorsList() => "vendor",
"checkNotEmpty" => "model|you have to fill the <i>model name</i> entry",
"checkMatch|/^[a-zA-Z0-9\-\_\.\+\s\(\)\@\[\]\/]+$/" => "model|characters not allowed in the <i>model name</i> entry",
+ "+checkMatch|/^[a-zA-Z0-9]{4}(\:)[a-zA-Z0-9]{4}$/" => "pci_id|<i>VendorID:ProductID</i> has to have the following format: [a-zA-Z0-9]{4}(\:)[a-zA-Z0-9]{4}",
"checkLength|99" => "model",
"+checkLength|299" => "distribution",
"++checkIsStrings|".Webcams::$commYear => "comm_year",
@@ -54,9 +54,9 @@ class WebcamsController extends GenericController
);
$this->m['HardwareModel']->strongConditions['insert'] = array(
- "checkIsStrings|".Webcams::vendorsList() => "vendor",
"checkNotEmpty" => "model|you have to fill the <i>model name</i> entry",
"checkMatch|/^[a-zA-Z0-9\-\_\.\+\s\(\)\@\[\]\/]+$/" => "model|characters not allowed in the <i>model name</i> entry",
+ "+checkMatch|/^[a-zA-Z0-9]{4}(\:)[a-zA-Z0-9]{4}$/" => "pci_id|<i>VendorID:ProductID</i> has to have the following format: [a-zA-Z0-9]{4}(\:)[a-zA-Z0-9]{4}",
"checkLength|99" => "model",
"+checkLength|299" => "distribution",
"++checkIsStrings|".Webcams::$commYear => "comm_year",
@@ -69,7 +69,6 @@ class WebcamsController extends GenericController
"checkLength|20000" => "description",
"+checkLength|49" => "kernel",
"++checkLength|49" => "driver",
- "+checkMatch|/^[a-zA-Z0-9]{4}(\:)[a-zA-Z0-9]{4}$/" => "pci_id|<i>VendorID:ProductID</i> has to have the following format: [a-zA-Z0-9]{4}(\:)[a-zA-Z0-9]{4}",
"++checkMatch|/^[a-zA-Z0-9\-\_\.\+\s\/\,\:\;\(\)\[\]]+$/" => "driver|only the following characters are allowed for the <i>driver</i> entry: a-z A-Z 0-9 - _ . + s / , : ; ( ) [ ]",
);
@@ -78,11 +77,10 @@ class WebcamsController extends GenericController
"checkLength|20000" => "description",
"+checkLength|49" => "kernel",
"++checkLength|49" => "driver",
- "+checkMatch|/^[a-zA-Z0-9]{4}(\:)[a-zA-Z0-9]{4}$/" => "pci_id|<i>VendorID:ProductID</i> has to have the following format: [a-zA-Z0-9]{4}(\:)[a-zA-Z0-9]{4}",
"++checkMatch|/^[a-zA-Z0-9\-\_\.\+\s\/\,\:\;\(\)\[\]]+$/" => "driver|only the following characters are allowed for the <i>driver</i> entry: a-z A-Z 0-9 - _ . + s / , : ; ( ) [ ]",
);
- $this->m['HardwareModel']->setFields('vendor,model,kernel,description,distribution,comm_year,webcam_works,pci_id,interface,driver','sanitizeAll');
+ $this->m['HardwareModel']->setFields('model,kernel,description,distribution,comm_year,webcam_works,pci_id,interface,driver','sanitizeAll');
$argKeys = array(
'page:forceNat' => 1,
diff --git a/h-source/Application/Controllers/WifiController.php b/h-source/Application/Controllers/WifiController.php
index 8cf38e7..3b8f0f0 100644
--- a/h-source/Application/Controllers/WifiController.php
+++ b/h-source/Application/Controllers/WifiController.php
@@ -43,9 +43,9 @@ class WifiController extends GenericController
//hardware conditions
$this->m['HardwareModel']->strongConditions['update'] = array(
- "checkIsStrings|".Wifi::vendorsList() => "vendor",
"checkNotEmpty" => "model|you have to fill the <i>model name</i> entry",
"checkMatch|/^[a-zA-Z0-9\-\_\.\+\s\(\)\[\]\/]+$/" => "model|characters not allowed in the <i>model name</i> entry",
+ "+checkMatch|/^[a-zA-Z0-9]{4}(\:)[a-zA-Z0-9]{4}$/" => "pci_id|<i>VendorID:ProductID</i> has to have the following format: [a-zA-Z0-9]{4}(\:)[a-zA-Z0-9]{4}",
"checkLength|99" => "model",
"+checkLength|299" => "distribution",
"++checkIsStrings|".Wifi::$commYear => "comm_year",
@@ -54,9 +54,9 @@ class WifiController extends GenericController
);
$this->m['HardwareModel']->strongConditions['insert'] = array(
- "checkIsStrings|".Wifi::vendorsList() => "vendor",
"checkNotEmpty" => "model|you have to fill the <i>model name</i> entry",
"checkMatch|/^[a-zA-Z0-9\-\_\.\+\s\(\)\[\]\/]+$/" => "model|characters not allowed in the <i>model name</i> entry",
+ "+checkMatch|/^[a-zA-Z0-9]{4}(\:)[a-zA-Z0-9]{4}$/" => "pci_id|<i>VendorID:ProductID</i> has to have the following format: [a-zA-Z0-9]{4}(\:)[a-zA-Z0-9]{4}",
"checkLength|99" => "model",
"+checkLength|299" => "distribution",
"++checkIsStrings|".Wifi::$commYear => "comm_year",
@@ -68,17 +68,15 @@ class WifiController extends GenericController
"checkMatch|/^[a-zA-Z0-9\-\_\.\+\s]+$/" => "kernel|characters not allowed in the <i>kernel</i> entry",
"checkLength|20000" => "description",
"+checkLength|49" => "kernel",
- "+checkMatch|/^[a-zA-Z0-9]{4}(\:)[a-zA-Z0-9]{4}$/" => "pci_id|<i>VendorID:ProductID</i> has to have the following format: [a-zA-Z0-9]{4}(\:)[a-zA-Z0-9]{4}",
);
$this->m['HardwareModel']->softConditions['insert'] = array(
"checkMatch|/^[a-zA-Z0-9\-\_\.\+\s]+$/" => "kernel|characters not allowed in the <i>kernel</i> entry",
"checkLength|20000" => "description",
"+checkLength|49" => "kernel",
- "+checkMatch|/^[a-zA-Z0-9]{4}(\:)[a-zA-Z0-9]{4}$/" => "pci_id|<i>VendorID:ProductID</i> has to have the following format: [a-zA-Z0-9]{4}(\:)[a-zA-Z0-9]{4}",
);
- $this->m['HardwareModel']->setFields('vendor,model,kernel,description,distribution,comm_year,wifi_works,pci_id,interface','sanitizeAll');
+ $this->m['HardwareModel']->setFields('model,kernel,description,distribution,comm_year,wifi_works,pci_id,interface','sanitizeAll');
$argKeys = array(
'page:forceNat' => 1,
diff --git a/h-source/Application/Include/hardware.php b/h-source/Application/Include/hardware.php
index 2ea5dd5..cae6b74 100644
--- a/h-source/Application/Include/hardware.php
+++ b/h-source/Application/Include/hardware.php
@@ -464,67 +464,14 @@ class Soundcards extends Hardware
class Webcams extends Hardware
{
public static $vendors = array(
- "Acer" => "Acer",
- "Active Pixel" => "Active-Pixel",
- "ADOMAX technology" => "ADOMAX-technology",
- "Aiptek Inc" => "Aiptek-Inc",
- "Arkmicro Technologies Inc" => "Arkmicro-Technologies-Inc",
- "Askey Computer Corporation" => "Askey-Computer-Corporation",
- "Astak Inc" => "Astak-Inc",
"Chicony Electronics CO" => "Chicony-Electronics-CO",
- "Cisco" => "Cisco",
- "Conexant Systems, Inc" => "Conexant-Systems-Inc",
- "Creative Technology, Ltd" => "Creative-Technology-Ltd",
- "D-Link" => "D-Link",
- "Divio" => "Divio",
- "Dynex" => "Dynex",
- "eMPIA Technology, Inc" => "eMPIA-Technology-Inc",
- "Encore Electronics Inc" => "Encore-Electronics-Inc",
- "Gembird" => "Gembird",
- "Genesys Logic, Inc" => "Genesys-Logic-Inc",
- "Hama Trading Co" => "Hama-Trading-Co",
- "Hamlet" => "Hamlet",
- "Hewlett Packard" => "Hewlett-Packard",
- "IMC Networks" => "IMC-Networks",
- "iMicro Electronics" => "iMicro-Electronics",
- "Importek" => "Importek",
- "iPassion Technology Inc" => "iPassion-Technology-Inc",
"KYE Systems Corp" => "KYE-Systems-Corp",
- "Kinstone" => "Kinstone",
- "Lenovo" => "Lenovo",
- "LG Electronics" => "LG-Electronics",
"Logitech" => "Logitech",
- "LOREX Technology Inc" => "LOREX-Technology-Inc",
- "Linksys" => "Linksys",
- "Mediacom" => "Mediacom",
"Microdia Ltd" => "Microdia-Ltd",
- "Micron" => "Micron",
"Microsoft" => "Microsoft",
"mijuki" => "mijuki",
- "Omega Technology Corp" => "Omega-Technology-Corp",
- "OmniVision Technologies, Inc" => "OmniVision-Technologies-Inc",
- "Panasonic" => "Panasonic",
"Philips" => "Philips",
- "PixArt Imaging Inc" => "PixArt-Imaging-Inc",
- "Primax Electronics Ltd" => "Primax-Electronics-Ltd",
- "Quanta Computer Inc." => "Quanta-Computer-Inc",
- "Revoltec" => "Revoltec",
- "Ricoh Company, Ltd" => "Ricoh-Company-Ltd",
- "Shenzhen Vigor Electronic" => "Shenzhen-Vigor-Electronic",
- "Sony Corporation" => "Sony-Corporation",
- "STMicroelectronics" => "STMicroelectronics",
- "Syntek Semiconductor Ltd" => "Syntek-Semiconductor-Ltd",
- "Sunplus Technology Co" => "Sunplus-Technology-Co",
- "Suyin" => "Suyin",
- "Tekom Technologies, Inc" => "Tekom-Technologies-Inc",
- "Trust International" => "Trust-International",
- "USRobotics" => "USRobotics",
- "ViewQuest Technologies, Inc" => "ViewQuest-Technologies-Inc",
"Vimicro Corp" => "Vimicro-Corp",
- "Vista Imaging, Inc" => "Vista-Imaging-Inc",
- "Xirlink" => "Xirlink",
- "Z-Star Microelectronics Corporation" => "Z-Star-Microelectronics-Corporation",
- "Zonet" => "Zonet",
);
public static $select = 'yes,no';
diff --git a/h-source/Application/Include/myFunctions.php b/h-source/Application/Include/myFunctions.php
index ddbc16f..efa4eca 100644
--- a/h-source/Application/Include/myFunctions.php
+++ b/h-source/Application/Include/myFunctions.php
@@ -473,6 +473,4120 @@ function betterVendor($string)
"Active-Pixel" => "Active Pixel",
"Microdia-Ltd" => "Microdia Ltd",
"Silicon-Integrated-Systems-Corp" => "Silicon Integrated Systems Corp",
+ 'Allied-Telesis-Inc' => 'Allied Telesis, Inc',
+ 'Ascend-Communications-Inc.' => 'Ascend Communications, Inc.',
+ 'PEAK-System-Technik-GmbH' => 'PEAK-System Technik GmbH',
+ 'Paradyne-corp.' => 'Paradyne corp.',
+ 'Lockheed-Martin-Marietta-Corp' => 'Lockheed Martin-Marietta Corp',
+ 'Hauppauge-computer-works-Inc.' => 'Hauppauge computer works Inc.',
+ 'Nebula-Electronics-Ltd.' => 'Nebula Electronics Ltd.',
+ 'BFG-Technologies-Inc.' => 'BFG Technologies, Inc.',
+ 'Ncipher-Corp-Ltd' => 'Ncipher Corp Ltd',
+ 'General-Dynamics' => 'General Dynamics',
+ 'Davicom-Semiconductor-Inc.' => 'Davicom Semiconductor, Inc.',
+ 'XFX-Pine-Group-Inc' => 'XFX Pine Group Inc',
+ 'SK-Electronics-Co.-Ltd.' => 'SK-Electronics Co., Ltd.',
+ 'TTTech-AG' => 'TTTech AG',
+ 'Trigem-Computer-Inc.' => 'Trigem Computer Inc.',
+ 'SCM-Microsystems-Inc.' => 'SCM Microsystems, Inc.',
+ 'Microsoft' => 'Microsoft',
+ 'Kyocera' => 'Kyocera',
+ 'Myson-Century-Inc' => 'Myson Century, Inc',
+ 'Belkin' => 'Belkin',
+ 'Alcor-Micro-Corporation' => 'Alcor Micro Corporation',
+ 'OmniVision' => 'OmniVision',
+ 'CyberDoor' => 'CyberDoor',
+ 'Sigmatel-Inc.' => 'Sigmatel Inc.',
+ 'Dynalink' => 'Dynalink',
+ 'Hughes-Network-Systems-HNS' => 'Hughes Network Systems (HNS)',
+ 'Sapphire-Inc.' => 'Sapphire, Inc.',
+ 'Wired-Inc.' => 'Wired Inc.',
+ 'AVerMedia-Technologies-Inc.' => 'AVerMedia Technologies Inc.',
+ 'ITT-Geospatial-Systems' => 'ITT Geospatial Systems',
+ 'AuthenTec' => 'AuthenTec',
+ 'PixArt-Imaging-Inc.' => 'PixArt Imaging Inc.',
+ 'Arris' => 'Arris',
+ 'BREA-Technologies-Inc' => 'BREA Technologies Inc',
+ 'ZyDAS' => 'ZyDAS',
+ 'Rhino-Equipment-Corp.' => 'Rhino Equipment Corp.',
+ 'Brontes-Technologies' => 'Brontes Technologies',
+ 'ASCII-Corporation' => 'ASCII Corporation',
+ 'TerraTec-Electronic-GmbH' => 'TerraTec Electronic GmbH',
+ 'Compaq-Computer-Corporation' => 'Compaq Computer Corporation',
+ 'Cowon-Systems-Inc.' => 'Cowon Systems, Inc.',
+ 'HaSoTec-GmbH' => 'HaSoTec GmbH',
+ 'Acrox-Technologies-Co.-Ltd.' => 'Acrox Technologies Co., Ltd.',
+ 'Kolter-Electronic' => 'Kolter Electronic',
+ 'ATI-Technologies-Inc' => 'ATI Technologies Inc',
+ 'ULSI-Systems' => 'ULSI Systems',
+ 'VLSI-Technology-Inc' => 'VLSI Technology Inc',
+ 'Avance-Logic-Inc.-ALI' => 'Avance Logic Inc. [ALI]',
+ 'Reply-Group' => 'Reply Group',
+ 'NetFrame-Systems-Inc' => 'NetFrame Systems Inc',
+ 'Epson' => 'Epson',
+ 'Phoenix-Technologies' => 'Phoenix Technologies',
+ 'Tseng-Labs-Inc' => 'Tseng Labs Inc',
+ 'AST-Research-Inc' => 'AST Research Inc',
+ 'Weitek' => 'Weitek',
+ 'Video-Logic-Ltd.' => 'Video Logic, Ltd.',
+ 'Digital-Equipment-Corporation' => 'Digital Equipment Corporation',
+ 'Micronics-Computers-Inc' => 'Micronics Computers Inc',
+ 'Cirrus-Logic' => 'Cirrus Logic',
+ 'IBM' => 'IBM',
+ 'LSI-Logic-Corp-of-Canada' => 'LSI Logic Corp of Canada',
+ 'ICL-Personal-Systems' => 'ICL Personal Systems',
+ 'SPEA-Software-AG' => 'SPEA Software AG',
+ 'Unisys-Systems' => 'Unisys Systems',
+ 'Elitegroup-Computer-Systems' => 'Elitegroup Computer Systems',
+ 'AT-T-GIS-NCR' => 'AT&T GIS (NCR)',
+ 'Vitesse-Semiconductor' => 'Vitesse Semiconductor',
+ 'Western-Digital' => 'Western Digital',
+ 'American-Megatrends-Inc.' => 'American Megatrends Inc.',
+ 'PictureTel' => 'PictureTel',
+ 'Hitachi-Computer-Products' => 'Hitachi Computer Products',
+ 'Advanced-Micro-Devices-AMD' => 'Advanced Micro Devices [AMD]',
+ 'Trident-Microsystems' => 'Trident Microsystems',
+ 'Zenith-Data-Systems' => 'Zenith Data Systems',
+ 'Acer-Incorporated-ALI' => 'Acer Incorporated [ALI]',
+ 'Dell' => 'Dell',
+ 'Siemens-Nixdorf-IS' => 'Siemens Nixdorf IS',
+ 'LSI-Logic' => 'LSI Logic',
+ 'Matrox-Graphics-Inc.' => 'Matrox Graphics, Inc.',
+ 'Chips-and-Technologies' => 'Chips and Technologies',
+ 'Wyse-Technology-Inc.' => 'Wyse Technology Inc.',
+ 'Olivetti-Advanced-Technology' => 'Olivetti Advanced Technology',
+ 'Toshiba-America' => 'Toshiba America',
+ 'TMC-Research' => 'TMC Research',
+ 'Miro-Computer-Products-AG' => 'Miro Computer Products AG',
+ 'Compaq' => 'Compaq',
+ 'NEC-Corporation' => 'NEC Corporation',
+ 'Framatome-Connectors-USA-Inc.' => 'Framatome Connectors USA Inc.',
+ 'Comp.---Comm.-Research-Lab' => 'Comp. & Comm. Research Lab',
+ 'Future-Domain-Corp.' => 'Future Domain Corp.',
+ 'Hitachi-Micro-Systems' => 'Hitachi Micro Systems',
+ 'AMP-Inc' => 'AMP, Inc',
+ 'Seiko-Epson-Corporation' => 'Seiko Epson Corporation',
+ 'Tatung-Corp.-Of-America' => 'Tatung Corp. Of America',
+ 'Hewlett-Packard-Company' => 'Hewlett-Packard Company',
+ 'Solliday-Engineering' => 'Solliday Engineering',
+ 'Synopsys-Logic-Modeling-Group' => 'Synopsys/Logic Modeling Group',
+ 'Accelgraphics-Inc.' => 'Accelgraphics Inc.',
+ 'Computrend' => 'Computrend',
+ 'Micron' => 'Micron',
+ 'ASUSTeK-Computer-Inc.' => 'ASUSTeK Computer Inc.',
+ 'Adaptec-formerly-DPT' => 'Adaptec (formerly DPT)',
+ 'OPTi-Inc.' => 'OPTi Inc.',
+ 'IPC-Corporation-Ltd.' => 'IPC Corporation, Ltd.',
+ 'Genoa-Systems-Corp' => 'Genoa Systems Corp',
+ 'Elsa-AG' => 'Elsa AG',
+ 'Fountain-Technologies-Inc.' => 'Fountain Technologies, Inc.',
+ 'BusLogic' => 'BusLogic',
+ 'Texas-Instruments' => 'Texas Instruments',
+ 'Sony-Corporation' => 'Sony Corporation',
+ 'Oak-Technology-Inc' => 'Oak Technology, Inc',
+ 'Co-time-Computer-Ltd' => 'Co-time Computer Ltd',
+ 'Winbond-Electronics-Corp' => 'Winbond Electronics Corp',
+ 'Anigma-Inc.' => 'Anigma, Inc.',
+ '-Young-Micro-Systems' => '?Young Micro Systems',
+ 'Young-Micro-Systems' => 'Young Micro Systems',
+ 'Hitachi-Ltd' => 'Hitachi, Ltd',
+ 'Efar-Microsystems' => 'Efar Microsystems',
+ 'ICL' => 'ICL',
+ 'Promise-Technology-Inc.' => 'Promise Technology, Inc.',
+ 'Foxconn-International-Inc.' => 'Foxconn International, Inc.',
+ 'Wipro-Infotech-Limited' => 'Wipro Infotech Limited',
+ 'Number-9-Computer-Company' => 'Number 9 Computer Company',
+ 'Vtech-Computers-Ltd' => 'Vtech Computers Ltd',
+ 'Infotronic-America-Inc' => 'Infotronic America Inc',
+ 'United-Microelectronics-UMC' => 'United Microelectronics [UMC]',
+ 'I.I.T.' => 'I.I.T.',
+ 'Maspar-Computer-Corp' => 'Maspar Computer Corp',
+ 'Ocean-Office-Automation' => 'Ocean Office Automation',
+ 'Alcatel' => 'Alcatel',
+ 'Texas-Microsystems' => 'Texas Microsystems',
+ 'PicoPower-Technology' => 'PicoPower Technology',
+ 'Mitsubishi-Electric' => 'Mitsubishi Electric',
+ 'Diversified-Technology' => 'Diversified Technology',
+ 'Mylex-Corporation' => 'Mylex Corporation',
+ 'Aten-Research-Inc' => 'Aten Research Inc',
+ 'Apple-Computer-Inc.' => 'Apple Computer Inc.',
+ 'Hynix-Semiconductor' => 'Hynix Semiconductor',
+ 'Sequent-Computer-Systems' => 'Sequent Computer Systems',
+ 'DFI-Inc' => 'DFI, Inc',
+ 'City-Gate-Development-Ltd' => 'City Gate Development Ltd',
+ 'Daewoo-Telecom-Ltd' => 'Daewoo Telecom Ltd',
+ 'Mitac' => 'Mitac',
+ 'GIT-Co-Ltd' => 'GIT Co Ltd',
+ 'Yamaha-Corporation' => 'Yamaha Corporation',
+ 'NexGen-Microsystems' => 'NexGen Microsystems',
+ 'Chaintech-Computer-Co.-Ltd' => 'Chaintech Computer Co. Ltd',
+ 'QLogic-Corp.' => 'QLogic Corp.',
+ 'Cyrix-Corporation' => 'Cyrix Corporation',
+ 'I-Bus' => 'I-Bus',
+ 'NetWorth' => 'NetWorth',
+ 'Gateway-2000' => 'Gateway 2000',
+ 'LeadTek-Research-Inc.' => 'LeadTek Research Inc.',
+ 'Interphase-Corporation' => 'Interphase Corporation',
+ 'Data-Technology-Corporation' => 'Data Technology Corporation',
+ 'Contaq-Microsystems' => 'Contaq Microsystems',
+ 'Supermac-Technology' => 'Supermac Technology',
+ 'EFA-Corporation-of-America' => 'EFA Corporation of America',
+ 'Forex-Computer-Corporation' => 'Forex Computer Corporation',
+ 'Parador' => 'Parador',
+ 'Tulip-Computers-Int.B.V.' => 'Tulip Computers Int.B.V.',
+ 'J.-Bond-Computer-Systems' => 'J. Bond Computer Systems',
+ 'Cache-Computer' => 'Cache Computer',
+ 'Microcomputer-Systems-M-Son' => 'Microcomputer Systems (M) Son',
+ 'Data-General-Corporation' => 'Data General Corporation',
+ 'Oakleigh-Systems-Inc.' => 'Oakleigh Systems Inc.',
+ 'Olicom' => 'Olicom',
+ 'Systemsoft' => 'Systemsoft',
+ 'Intergraph-Corporation' => 'Intergraph Corporation',
+ 'Diamond-Multimedia-Systems' => 'Diamond Multimedia Systems',
+ 'National-Instruments' => 'National Instruments',
+ 'Alacron' => 'Alacron',
+ 'Appian-Technology' => 'Appian Technology',
+ 'Quantum-Designs-H.K.-Ltd' => 'Quantum Designs (H.K.) Ltd',
+ 'Samsung-Electronics-Co.-Ltd' => 'Samsung Electronics Co., Ltd',
+ 'Packard-Bell' => 'Packard Bell',
+ 'Gemlight-Computer-Ltd.' => 'Gemlight Computer Ltd.',
+ 'Megachips-Corporation' => 'Megachips Corporation',
+ 'Zida-Technologies-Ltd.' => 'Zida Technologies Ltd.',
+ 'Brooktree-Corporation' => 'Brooktree Corporation',
+ 'Trigem-Computer-Inc.' => 'Trigem Computer Inc.',
+ 'Meidensha-Corporation' => 'Meidensha Corporation',
+ 'Juko-Electronics-Ind.-Co.-Ltd' => 'Juko Electronics Ind. Co. Ltd',
+ 'Quantum-Corporation' => 'Quantum Corporation',
+ 'Everex-Systems-Inc' => 'Everex Systems Inc',
+ 'Globe-Manufacturing-Sales' => 'Globe Manufacturing Sales',
+ 'Smart-Link-Ltd.' => 'Smart Link Ltd.',
+ 'Informtech-Industrial-Ltd.' => 'Informtech Industrial Ltd.',
+ 'Benchmarq-Microelectronics' => 'Benchmarq Microelectronics',
+ 'Sierra-Semiconductor' => 'Sierra Semiconductor',
+ 'Silicon-Graphics-Inc.' => 'Silicon Graphics, Inc.',
+ 'ACC-Microelectronics' => 'ACC Microelectronics',
+ 'Digicom' => 'Digicom',
+ 'Honeywell-IAC' => 'Honeywell IAC',
+ 'Symphony-Labs' => 'Symphony Labs',
+ 'Cornerstone-Technology' => 'Cornerstone Technology',
+ 'Micro-Computer-Systems-Inc' => 'Micro Computer Systems Inc',
+ 'CardExpert-Technology' => 'CardExpert Technology',
+ 'Cabletron-Systems-Inc' => 'Cabletron Systems Inc',
+ 'Raytheon-Company' => 'Raytheon Company',
+ 'Databook-Inc' => 'Databook Inc',
+ 'STB-Systems-Inc' => 'STB Systems Inc',
+ 'PLX-Technology-Inc.' => 'PLX Technology, Inc.',
+ 'Madge-Networks' => 'Madge Networks',
+ '3Com-Corporation' => '3Com Corporation',
+ 'ALi-Corporation' => 'ALi Corporation',
+ 'Mitsubishi-Electric-Corp.' => 'Mitsubishi Electric Corp.',
+ 'Dapha-Electronics-Corporation' => 'Dapha Electronics Corporation',
+ 'Advanced-Logic-Research' => 'Advanced Logic Research',
+ 'Surecom-Technology' => 'Surecom Technology',
+ 'Tseng-Labs-International-Co.' => 'Tseng Labs International Co.',
+ 'Most-Inc' => 'Most Inc',
+ 'Boca-Research-Inc.' => 'Boca Research Inc.',
+ 'ICM-Co.-Ltd.' => 'ICM Co., Ltd.',
+ 'Auspex-Systems-Inc.' => 'Auspex Systems Inc.',
+ 'Samsung-Semiconductors-Inc.' => 'Samsung Semiconductors, Inc.',
+ 'Xerox-Corporation' => 'Xerox Corporation',
+ 'Rambus-Inc.' => 'Rambus Inc.',
+ 'Media-Vision' => 'Media Vision',
+ 'Neomagic-Corporation' => 'Neomagic Corporation',
+ 'Dataexpert-Corporation' => 'Dataexpert Corporation',
+ 'Fujitsu-Microelectr.-Inc.' => 'Fujitsu Microelectr., Inc.',
+ 'Omron-Corporation' => 'Omron Corporation',
+ 'Advanced-System-Products-Inc' => 'Advanced System Products, Inc',
+ 'Radius' => 'Radius',
+ 'FuturePlus-Systems-Corp.' => 'FuturePlus Systems Corp.',
+ 'Molex-Incorporated' => 'Molex Incorporated',
+ 'Jabil-Circuit-Inc' => 'Jabil Circuit Inc',
+ 'Hualon-Microelectronics' => 'Hualon Microelectronics',
+ 'Autologic-Inc.' => 'Autologic Inc.',
+ 'Cetia' => 'Cetia',
+ 'BCM-Advanced-Research' => 'BCM Advanced Research',
+ 'Advanced-Peripherals-Labs' => 'Advanced Peripherals Labs',
+ 'Macronix-Inc.-MXIC' => 'Macronix, Inc. [MXIC]',
+ 'Compaq-IPG-Austin' => 'Compaq IPG-Austin',
+ 'Rohm-LSI-Systems-Inc.' => 'Rohm LSI Systems, Inc.',
+ 'CERN-ECP-EDU' => 'CERN/ECP/EDU',
+ 'Evans---Sutherland' => 'Evans & Sutherland',
+ 'nVidia-Corporation' => 'nVidia Corporation',
+ 'Emulex-Corporation' => 'Emulex Corporation',
+ 'Tekram-Technology-Co.Ltd.' => 'Tekram Technology Co.,Ltd.',
+ 'Aptix-Corporation' => 'Aptix Corporation',
+ 'Tundra-Semiconductor-Corp.' => 'Tundra Semiconductor Corp.',
+ 'Tandem-Computers' => 'Tandem Computers',
+ 'Micro-Industries-Corporation' => 'Micro Industries Corporation',
+ 'Vadem' => 'Vadem',
+ 'Applied-Micro-Circuits-Corp.' => 'Applied Micro Circuits Corp.',
+ 'Alps-Electric-Co.-Ltd.' => 'Alps Electric Co., Ltd.',
+ 'Integraphics' => 'Integraphics',
+ 'Artists-Graphics' => 'Artists Graphics',
+ 'Ascii-Corporation' => 'Ascii Corporation',
+ 'Xilinx-Corporation' => 'Xilinx Corporation',
+ 'Peritek-Corporation' => 'Peritek Corporation',
+ 'Tyan-Computer' => 'Tyan Computer',
+ 'Achme-Computer-Inc.' => 'Achme Computer, Inc.',
+ 'Alaris-Inc.' => 'Alaris, Inc.',
+ 'S-MOS-Systems-Inc.' => 'S-MOS Systems, Inc.',
+ 'NKK-Corporation' => 'NKK Corporation',
+ 'Altos-India-Ltd' => 'Altos India Ltd',
+ 'PC-Direct' => 'PC Direct',
+ 'Truevision' => 'Truevision',
+ 'I-O-Data-Device-Inc.' => 'I-O Data Device, Inc.',
+ 'Soyo-Computer-Inc' => 'Soyo Computer, Inc',
+ 'Fast-Multimedia-AG' => 'Fast Multimedia AG',
+ 'NCube' => 'NCube',
+ 'Jazz-Multimedia' => 'Jazz Multimedia',
+ 'Initio-Corporation' => 'Initio Corporation',
+ 'Creative-Labs' => 'Creative Labs',
+ 'RasterOps-Corp.' => 'RasterOps Corp.',
+ 'Sigma-Designs-Inc.' => 'Sigma Designs, Inc.',
+ 'VIA-Technologies-Inc.' => 'VIA Technologies, Inc.',
+ 'Stratus-Computers' => 'Stratus Computers',
+ 'Proteon-Inc.' => 'Proteon, Inc.',
+ 'Siemens-Nixdorf-AG' => 'Siemens Nixdorf AG',
+ 'Chromatic-Research-Inc.' => 'Chromatic Research Inc.',
+ 'Mini-Max-Technology-Inc.' => 'Mini-Max Technology, Inc.',
+ 'Znyx-Advanced-Systems' => 'Znyx Advanced Systems',
+ 'CPU-Technology' => 'CPU Technology',
+ 'Ross-Technology' => 'Ross Technology',
+ 'Powerhouse-Systems' => 'Powerhouse Systems',
+ 'Santa-Cruz-Operation' => 'Santa Cruz Operation',
+ 'Accton-Technology-Corporation' => 'Accton Technology Corporation',
+ 'Atmel-Corporation' => 'Atmel Corporation',
+ '3D-Labs' => '3D Labs',
+ 'Data-Translation' => 'Data Translation',
+ 'Datacube-Inc' => 'Datacube, Inc',
+ 'Berg-Electronics' => 'Berg Electronics',
+ 'Efficient-Networks-Inc' => 'Efficient Networks, Inc',
+ 'Teledyne-Electronic-Systems' => 'Teledyne Electronic Systems',
+ 'Tricord-Systems-Inc.' => 'Tricord Systems Inc.',
+ 'Eldec' => 'Eldec',
+ 'Precision-Digital-Images' => 'Precision Digital Images',
+ 'EMC-Corporation' => 'EMC Corporation',
+ 'Zilog' => 'Zilog',
+ 'Multi-tech-Systems-Inc.' => 'Multi-tech Systems, Inc.',
+ 'Excellent-Design-Inc.' => 'Excellent Design, Inc.',
+ 'Leutron-Vision-AG' => 'Leutron Vision AG',
+ 'Eurocore' => 'Eurocore',
+ 'Vigra' => 'Vigra',
+ 'FORE-Systems-Inc' => 'FORE Systems Inc',
+ 'Firmworks' => 'Firmworks',
+ 'Linotype---Hell-AG' => 'Linotype - Hell AG',
+ 'Zenith-Data-Systems' => 'Zenith Data Systems',
+ 'Ravicad' => 'Ravicad',
+ 'Dalsa-Inc.' => 'Dalsa Inc.',
+ 'Computervision' => 'Computervision',
+ 'Philips-Semiconductors' => 'Philips Semiconductors',
+ 'Mitel-Corp.' => 'Mitel Corp.',
+ 'Dialogic-Corporation' => 'Dialogic Corporation',
+ 'Mercury-Computer-Systems' => 'Mercury Computer Systems',
+ 'Fuji-Xerox-Co-Ltd' => 'Fuji Xerox Co Ltd',
+ 'Momentum-Data-Systems' => 'Momentum Data Systems',
+ 'Cisco-Systems-Inc' => 'Cisco Systems Inc',
+ 'Ziatech-Corporation' => 'Ziatech Corporation',
+ 'Dynamic-Pictures-Inc' => 'Dynamic Pictures, Inc',
+ 'FWB-Inc' => 'FWB Inc',
+ 'Network-Computing-Devices' => 'Network Computing Devices',
+ 'Cyclone-Microsystems-Inc.' => 'Cyclone Microsystems, Inc.',
+ 'Leading-Edge-Products-Inc' => 'Leading Edge Products Inc',
+ 'Equinox-Systems-Inc.' => 'Equinox Systems, Inc.',
+ 'Intervoice-Inc' => 'Intervoice Inc',
+ 'Crest-Microsystem-Inc' => 'Crest Microsystem Inc',
+ 'NetPower-Inc' => 'NetPower, Inc',
+ 'Cincinnati-Milacron' => 'Cincinnati Milacron',
+ 'Workbit-Corporation' => 'Workbit Corporation',
+ 'Force-Computers' => 'Force Computers',
+ 'Interface-Corp' => 'Interface Corp',
+ 'Win-System-Corporation' => 'Win System Corporation',
+ 'VMIC' => 'VMIC',
+ 'Canopus-Co.-Ltd' => 'Canopus Co., Ltd',
+ 'Annabooks' => 'Annabooks',
+ 'IC-Corporation' => 'IC Corporation',
+ 'Nikon-Systems-Inc' => 'Nikon Systems Inc',
+ 'Digi-International' => 'Digi International',
+ 'Thinking-Machines-Corp' => 'Thinking Machines Corp',
+ 'JAE-Electronics-Inc.' => 'JAE Electronics Inc.',
+ 'Megatek' => 'Megatek',
+ 'Land-Win-Electronic-Corp' => 'Land Win Electronic Corp',
+ 'Melco-Inc' => 'Melco Inc',
+ 'Pine-Technology-Ltd' => 'Pine Technology Ltd',
+ 'Periscope-Engineering' => 'Periscope Engineering',
+ 'Avsys-Corporation' => 'Avsys Corporation',
+ 'Voarx-R---D-Inc' => 'Voarx R & D Inc',
+ 'Mutech-Corp' => 'Mutech Corp',
+ 'Harlequin-Ltd' => 'Harlequin Ltd',
+ 'Parallax-Graphics' => 'Parallax Graphics',
+ 'Photron-Ltd.' => 'Photron Ltd.',
+ 'Xircom' => 'Xircom',
+ 'Peer-Protocols-Inc' => 'Peer Protocols Inc',
+ 'Maxtor-Corporation' => 'Maxtor Corporation',
+ 'Megasoft-Inc' => 'Megasoft Inc',
+ 'PFU-Limited' => 'PFU Limited',
+ 'OA-Laboratory-Co-Ltd' => 'OA Laboratory Co Ltd',
+ 'Rendition' => 'Rendition',
+ 'Imagraph-Corporation' => 'Imagraph Corporation',
+ 'Broadcom nee-ServerWorks' => 'Broadcom nee ServerWorks',
+ 'Mutoh-Industries-Inc' => 'Mutoh Industries Inc',
+ 'Thine-Electronics-Inc' => 'Thine Electronics Inc',
+ 'Connectware-Inc' => 'Connectware Inc',
+ 'Martin-Marietta' => 'Martin-Marietta',
+ 'Electronics-for-Imaging' => 'Electronics for Imaging',
+ 'Workstation-Technology' => 'Workstation Technology',
+ 'Inventec-Corporation' => 'Inventec Corporation',
+ 'Loughborough-Sound-Images-Plc' => 'Loughborough Sound Images Plc',
+ 'Altera-Corporation' => 'Altera Corporation',
+ 'Adobe-Systems-Inc' => 'Adobe Systems, Inc',
+ 'Bridgeport-Machines' => 'Bridgeport Machines',
+ 'Mitron-Computer-Inc.' => 'Mitron Computer Inc.',
+ 'SBE-Incorporated' => 'SBE Incorporated',
+ 'Silicon-Engineering' => 'Silicon Engineering',
+ 'Alfa-Inc.' => 'Alfa, Inc.',
+ 'Toshiba-America-Info-Systems' => 'Toshiba America Info Systems',
+ 'A-Trend-Technology' => 'A-Trend Technology',
+ 'L-G-Electronics-Inc.' => 'L G Electronics, Inc.',
+ 'Atto-Technology' => 'Atto Technology',
+ 'Becton---Dickinson' => 'Becton & Dickinson',
+ 'T-R-Systems' => 'T/R Systems',
+ 'Integrated-Circuit-Systems' => 'Integrated Circuit Systems',
+ 'Ricoh-Co-Ltd' => 'Ricoh Co Ltd',
+ 'Telmatics-International' => 'Telmatics International',
+ 'Fujikura-Ltd' => 'Fujikura Ltd',
+ 'Forks-Inc' => 'Forks Inc',
+ 'Dataworld-International-Ltd' => 'Dataworld International Ltd',
+ 'D-Link-System-Inc' => 'D-Link System Inc',
+ 'Matsushita-Electronics-Co-Ltd' => 'Matsushita Electronics Co Ltd',
+ 'Hilevel-Technology' => 'Hilevel Technology',
+ 'Hypertec-Pty-Limited' => 'Hypertec Pty Limited',
+ 'Corollary-Inc' => 'Corollary, Inc',
+ 'BitFlow-Inc' => 'BitFlow Inc',
+ 'Hermstedt-GmbH' => 'Hermstedt GmbH',
+ 'Green-Logic' => 'Green Logic',
+ 'Tripace' => 'Tripace',
+ 'Artop-Electronic-Corp' => 'Artop Electronic Corp',
+ 'Densan-Company-Ltd' => 'Densan Company Ltd',
+ 'Zeitnet-Inc.' => 'Zeitnet Inc.',
+ 'Toucan-Technology' => 'Toucan Technology',
+ 'Ratoc-System-Inc' => 'Ratoc System Inc',
+ 'Hytec-Electronics-Ltd' => 'Hytec Electronics Ltd',
+ 'Gage-Applied-Sciences-Inc.' => 'Gage Applied Sciences, Inc.',
+ 'Lambda-Systems-Inc' => 'Lambda Systems Inc',
+ 'Attachmate-Corporation' => 'Attachmate Corporation',
+ 'Mind-Share-Inc.' => 'Mind Share, Inc.',
+ 'Omega-Micro-Inc.' => 'Omega Micro Inc.',
+ 'Information-Technology-Inst.' => 'Information Technology Inst.',
+ 'Bug-Inc.-Sapporo-Japan' => 'Bug, Inc. Sapporo Japan',
+ 'Fujitsu-Microelectronics-Ltd.' => 'Fujitsu Microelectronics Ltd.',
+ 'Bull-HN-Information-Systems' => 'Bull HN Information Systems',
+ 'Convex-Computer-Corporation' => 'Convex Computer Corporation',
+ 'Hamamatsu-Photonics-K.K.' => 'Hamamatsu Photonics K.K.',
+ 'Barco-Graphics-NV' => 'Barco Graphics NV',
+ 'Microunity-Systems-Eng.-Inc' => 'Microunity Systems Eng. Inc',
+ 'Pure-Data-Ltd.' => 'Pure Data Ltd.',
+ 'Power-Computing-Corp.' => 'Power Computing Corp.',
+ 'Systech-Corp.' => 'Systech Corp.',
+ 'InnoSys-Inc.' => 'InnoSys Inc.',
+ 'Actel' => 'Actel',
+ 'Lite-On-Communications-Inc' => 'Lite-On Communications Inc',
+ 'Aztech-System-Ltd' => 'Aztech System Ltd',
+ 'Avid-Technology-Inc.' => 'Avid Technology Inc.',
+ 'V3-Semiconductor-Inc.' => 'V3 Semiconductor Inc.',
+ 'Apricot-Computers' => 'Apricot Computers',
+ 'Eastman-Kodak' => 'Eastman Kodak',
+ 'Barr-Systems-Inc.' => 'Barr Systems Inc.',
+ 'Radstone-Technology-Plc' => 'Radstone Technology Plc',
+ 'United-Video-Corp' => 'United Video Corp',
+ 'Motorola' => 'Motorola',
+ 'XPoint-Technologies-Inc' => 'XPoint Technologies, Inc',
+ 'Pathlight-Technology-Inc.' => 'Pathlight Technology Inc.',
+ 'Videotron-Corp' => 'Videotron Corp',
+ 'Pyramid-Technology' => 'Pyramid Technology',
+ 'Network-Peripherals-Inc' => 'Network Peripherals Inc',
+ 'Pinnacle-Systems-Inc.' => 'Pinnacle Systems Inc.',
+ 'Astrodesign-Inc.' => 'Astrodesign, Inc.',
+ 'Hewlett-Packard' => 'Hewlett Packard',
+ 'Sand-Microelectronics' => 'Sand Microelectronics',
+ 'NEC-Corporation' => 'NEC Corporation',
+ 'Document-Technologies-Inc' => 'Document Technologies, Inc',
+ 'Shiva-Corporation' => 'Shiva Corporation',
+ 'Dainippon-Screen-Mfg.-Co.-Ltd' => 'Dainippon Screen Mfg. Co. Ltd',
+ 'D.C.M.-Data-Systems' => 'D.C.M. Data Systems',
+ 'Magma' => 'Magma',
+ 'LSI-Systems-Inc' => 'LSI Systems, Inc',
+ 'Specialix-Research-Ltd.' => 'Specialix Research Ltd.',
+ 'HAL-Computer-Systems-Inc.' => 'HAL Computer Systems, Inc.',
+ 'Netaccess' => 'Netaccess',
+ 'Auravision' => 'Auravision',
+ 'Intercom-Inc.' => 'Intercom Inc.',
+ 'Trancell-Systems-Inc' => 'Trancell Systems Inc',
+ 'Analog-Devices' => 'Analog Devices',
+ 'Ikon-Corporation' => 'Ikon Corporation',
+ 'Tekelec-Telecom' => 'Tekelec Telecom',
+ 'Trenton-Technology-Inc.' => 'Trenton Technology, Inc.',
+ 'TEC-Corporation' => 'TEC Corporation',
+ 'Novell' => 'Novell',
+ 'Sega-Enterprises-Ltd' => 'Sega Enterprises Ltd',
+ 'Questra-Corporation' => 'Questra Corporation',
+ 'Crosfield-Electronics-Limited' => 'Crosfield Electronics Limited',
+ 'Zoran-Corporation' => 'Zoran Corporation',
+ 'New-Wave-PDG' => 'New Wave PDG',
+ 'Cray-Communications-A-S' => 'Cray Communications A/S',
+ 'GEC-Plessey-Semi-Inc.' => 'GEC Plessey Semi Inc.',
+ 'Quicklogic-Corporation' => 'Quicklogic Corporation',
+ 'Second-Wave-Inc' => 'Second Wave Inc',
+ 'IIX-Consulting' => 'IIX Consulting',
+ 'Mitsui-Zosen-System-Research' => 'Mitsui-Zosen System Research',
+ 'Highwater-Designs-Ltd.' => 'Highwater Designs Ltd.',
+ 'Elsag-Bailey' => 'Elsag Bailey',
+ 'Formation-Inc.' => 'Formation Inc.',
+ 'Coreco-Inc' => 'Coreco Inc',
+ 'Mediamatics' => 'Mediamatics',
+ 'Dome-Imaging-Systems-Inc' => 'Dome Imaging Systems Inc',
+ 'Nicolet-Technologies-B.V.' => 'Nicolet Technologies B.V.',
+ 'Compu-Shack' => 'Compu-Shack',
+ 'Symbios-Logic-Inc' => 'Symbios Logic Inc',
+ 'Picture-Tel-Japan-K.K.' => 'Picture Tel Japan K.K.',
+ 'Keithley-Metrabyte' => 'Keithley Metrabyte',
+ 'Kinetic-Systems-Corporation' => 'Kinetic Systems Corporation',
+ 'Compex' => 'Compex',
+ 'Scientific-Atlanta' => 'Scientific Atlanta',
+ 'PMC-Sierra-Inc.' => 'PMC-Sierra Inc.',
+ 'I-Cube-Inc' => 'I-Cube Inc',
+ 'Datel-Inc' => 'Datel Inc',
+ 'Silicon-Magic' => 'Silicon Magic',
+ 'High-Street-Consultants' => 'High Street Consultants',
+ 'Comtrol-Corporation' => 'Comtrol Corporation',
+ 'Scion-Corporation' => 'Scion Corporation',
+ 'CSS-Corporation' => 'CSS Corporation',
+ 'Vista-Controls-Corp' => 'Vista Controls Corp',
+ 'Network-General-Corp.' => 'Network General Corp.',
+ 'Array-Corporation' => 'Array Corporation',
+ 'Amdahl-Corporation' => 'Amdahl Corporation',
+ 'Parsytec-GmbH' => 'Parsytec GmbH',
+ 'SCI-Systems-Inc' => 'SCI Systems Inc',
+ 'Synaptel' => 'Synaptel',
+ 'Adaptive-Solutions' => 'Adaptive Solutions',
+ 'Technical-Corp.' => 'Technical Corp.',
+ 'Compression-Labs-Inc.' => 'Compression Labs, Inc.',
+ 'Cyclades-Corporation' => 'Cyclades Corporation',
+ 'Essential-Communications' => 'Essential Communications',
+ 'Hyperparallel-Technologies' => 'Hyperparallel Technologies',
+ 'Braintech-Inc' => 'Braintech Inc',
+ 'Kingston-Technology-Corp.' => 'Kingston Technology Corp.',
+ 'Interware-Co.-Ltd' => 'Interware Co., Ltd',
+ 'Purup-Prepress-A-S' => 'Purup Prepress A/S',
+ 'O2-Micro-Inc.' => 'O2 Micro, Inc.',
+ 'Hybricon-Corp.' => 'Hybricon Corp.',
+ 'First-Virtual-Corporation' => 'First Virtual Corporation',
+ '3Dfx-Interactive-Inc.' => '3Dfx Interactive, Inc.',
+ 'Nippon-Texaco.-Ltd' => 'Nippon Texaco., Ltd',
+ 'CSPI' => 'CSPI',
+ 'Arcus-Technology-Inc.' => 'Arcus Technology, Inc.',
+ 'Ariel-Corporation' => 'Ariel Corporation',
+ 'Contec-Co.-Ltd' => 'Contec Co., Ltd',
+ 'Ancor-Communications-Inc.' => 'Ancor Communications, Inc.',
+ 'Interactive-Images' => 'Interactive Images',
+ 'Power-I-O-Inc.' => 'Power I/O, Inc.',
+ 'Tech-Source' => 'Tech-Source',
+ 'Norsk-Elektro-Optikk-A-S' => 'Norsk Elektro Optikk A/S',
+ 'Data-Kinesis-Inc.' => 'Data Kinesis Inc.',
+ 'Integrated-Telecom' => 'Integrated Telecom',
+ 'Sican-GmbH' => 'Sican GmbH',
+ 'Aztech-System-Ltd' => 'Aztech System Ltd',
+ 'Xyratex' => 'Xyratex',
+ 'Andrew-Corporation' => 'Andrew Corporation',
+ 'Fishcamp-Engineering' => 'Fishcamp Engineering',
+ 'Woodward-McCoach-Inc.' => 'Woodward McCoach, Inc.',
+ 'GPT-Limited' => 'GPT Limited',
+ 'Bus-Tech-Inc.' => 'Bus-Tech, Inc.',
+ 'Risq-Modular-Systems-Inc.' => 'Risq Modular Systems, Inc.',
+ 'Sigma-Designs-Corporation' => 'Sigma Designs Corporation',
+ 'Alta-Technology-Corporation' => 'Alta Technology Corporation',
+ 'Adtran' => 'Adtran',
+ '3DO-Company' => '3DO Company',
+ 'Visicom-Laboratories-Inc.' => 'Visicom Laboratories, Inc.',
+ 'Seeq-Technology-Inc.' => 'Seeq Technology, Inc.',
+ 'Century-Systems-Inc.' => 'Century Systems, Inc.',
+ 'Engineering-Design-Team-Inc.' => 'Engineering Design Team, Inc.',
+ 'Simutech-Inc.' => 'Simutech, Inc.',
+ 'C-Cube-Microsystems' => 'C-Cube Microsystems',
+ 'Marathon-Technologies-Corp.' => 'Marathon Technologies Corp.',
+ 'DSC-Communications' => 'DSC Communications',
+ 'Delphax' => 'Delphax',
+ 'A.P.D.-S.A.' => 'A.P.D., S.A.',
+ 'Dipix-Technologies-Inc.' => 'Dipix Technologies, Inc.',
+ 'Xylon-Research-Inc.' => 'Xylon Research, Inc.',
+ 'Central-Data-Corporation' => 'Central Data Corporation',
+ 'Samsung-Electronics-Co.-Ltd.' => 'Samsung Electronics Co., Ltd.',
+ 'AEG-Electrocom-GmbH' => 'AEG Electrocom GmbH',
+ 'SBS-Greenspring-Modular-I-O' => 'SBS/Greenspring Modular I/O',
+ 'Solitron-Technologies-Inc.' => 'Solitron Technologies, Inc.',
+ 'Stallion-Technologies-Inc.' => 'Stallion Technologies, Inc.',
+ 'Cylink' => 'Cylink',
+ 'Infortrend-Technology-Inc.' => 'Infortrend Technology, Inc.',
+ 'VLSI-Solutions-Oy' => 'VLSI Solutions Oy',
+ 'Guzik-Technical-Enterprises' => 'Guzik Technical Enterprises',
+ 'Linear-Systems-Ltd.' => 'Linear Systems Ltd.',
+ 'Optibase-Ltd' => 'Optibase Ltd',
+ 'Perceptive-Solutions-Inc.' => 'Perceptive Solutions, Inc.',
+ 'Vertex-Networks-Inc.' => 'Vertex Networks, Inc.',
+ 'Gilbarco-Inc.' => 'Gilbarco, Inc.',
+ 'Allied-Telesyn-International' => 'Allied Telesyn International',
+ 'ABB-Power-Systems' => 'ABB Power Systems',
+ 'Asix-Electronics-Corporation' => 'Asix Electronics Corporation',
+ 'Aurora-Technologies-Inc.' => 'Aurora Technologies, Inc.',
+ 'ESS-Technology' => 'ESS Technology',
+ 'Specialvideo-Engineering-SRL' => 'Specialvideo Engineering SRL',
+ 'Concurrent-Technologies-Inc.' => 'Concurrent Technologies, Inc.',
+ 'Intersil-Corporation' => 'Intersil Corporation',
+ 'ES-Computer-Company-Ltd.' => 'ES Computer Company, Ltd.',
+ 'Sonic-Solutions' => 'Sonic Solutions',
+ 'Aval-Nagasaki-Corporation' => 'Aval Nagasaki Corporation',
+ 'Casio-Computer-Co.-Ltd.' => 'Casio Computer Co., Ltd.',
+ 'Microdyne-Corporation' => 'Microdyne Corporation',
+ 'S.-A.-Telecommunications' => 'S. A. Telecommunications',
+ 'Tektronix' => 'Tektronix',
+ 'Thomson-CSF-TTM' => 'Thomson-CSF/TTM',
+ 'Lexmark-International-Inc.' => 'Lexmark International, Inc.',
+ 'Adax-Inc.' => 'Adax, Inc.',
+ 'Northern-Telecom' => 'Northern Telecom',
+ 'Splash-Technology-Inc.' => 'Splash Technology, Inc.',
+ 'Silicon-Motion-Inc.' => 'Silicon Motion, Inc.',
+ 'Olympus-Optical-Co.-Ltd.' => 'Olympus Optical Co., Ltd.',
+ 'GW-Instruments' => 'GW Instruments',
+ 'Telematics-International' => 'Telematics International',
+ 'Hughes-Network-Systems' => 'Hughes Network Systems',
+ 'Ensoniq' => 'Ensoniq',
+ 'Network-Appliance-Corporation' => 'Network Appliance Corporation',
+ 'Comstream' => 'Comstream',
+ 'Transmeta-Corporation' => 'Transmeta Corporation',
+ 'Rockwell-International' => 'Rockwell International',
+ 'Pixera-Corporation' => 'Pixera Corporation',
+ 'Crosspoint-Solutions-Inc.' => 'Crosspoint Solutions, Inc.',
+ 'Vela-Research' => 'Vela Research',
+ 'Winnov-L.P.' => 'Winnov, L.P.',
+ 'Fujifilm' => 'Fujifilm',
+ 'Photoscript-Group-Ltd.' => 'Photoscript Group Ltd.',
+ 'Yokogawa-Electric-Corporation' => 'Yokogawa Electric Corporation',
+ 'Davicom-Semiconductor-Inc.' => 'Davicom Semiconductor, Inc.',
+ 'Sahara-Networks-Inc.' => 'Sahara Networks, Inc.',
+ 'Platform-Technologies-Inc.' => 'Platform Technologies, Inc.',
+ 'Mazet-GmbH' => 'Mazet GmbH',
+ 'M-Pact-Inc.' => 'M-Pact, Inc.',
+ 'Timestep-Corporation' => 'Timestep Corporation',
+ 'AVC-Technology-Inc.' => 'AVC Technology, Inc.',
+ 'Asante-Technologies-Inc.' => 'Asante Technologies, Inc.',
+ 'Transwitch-Corporation' => 'Transwitch Corporation',
+ 'Retix-Corporation' => 'Retix Corporation',
+ 'G2-Networks-Inc.' => 'G2 Networks, Inc.',
+ 'Tateno-Dennou-Inc.' => 'Tateno Dennou, Inc.',
+ 'Sord-Computer-Corporation' => 'Sord Computer Corporation',
+ 'NCS-Computer-Italia' => 'NCS Computer Italia',
+ 'Tritech-Microelectronics-Inc' => 'Tritech Microelectronics Inc',
+ 'Media-Reality-Technology' => 'Media Reality Technology',
+ 'Rhetorex-Inc.' => 'Rhetorex, Inc.',
+ 'Imagenation-Corporation' => 'Imagenation Corporation',
+ 'Kofax-Image-Products' => 'Kofax Image Products',
+ 'Knowledge-Technology-Lab.' => 'Knowledge Technology Lab.',
+ 'VMetro-inc.' => 'VMetro, inc.',
+ 'Image-Access' => 'Image Access',
+ 'Jaycor' => 'Jaycor',
+ 'Compcore-Multimedia-Inc.' => 'Compcore Multimedia, Inc.',
+ 'Victor-Company-of-Japan-Ltd.' => 'Victor Company of Japan, Ltd.',
+ 'OEC-Medical-Systems-Inc.' => 'OEC Medical Systems, Inc.',
+ 'Allen-Bradley-Company' => 'Allen-Bradley Company',
+ 'Simpact-Associates-Inc.' => 'Simpact Associates, Inc.',
+ 'Newgen-Systems-Corporation' => 'Newgen Systems Corporation',
+ 'Lucent-Technologies' => 'Lucent Technologies',
+ 'Vision-Dynamics-Ltd.' => 'Vision Dynamics Ltd.',
+ 'Scalable-Networks-Inc.' => 'Scalable Networks, Inc.',
+ 'AMO-GmbH' => 'AMO GmbH',
+ 'News-Datacom' => 'News Datacom',
+ 'Xiotech-Corporation' => 'Xiotech Corporation',
+ 'SDL-Communications-Inc.' => 'SDL Communications, Inc.',
+ 'Measurex-Corporation' => 'Measurex Corporation',
+ 'Multidata-GmbH' => 'Multidata GmbH',
+ 'Alteon-Networks-Inc.' => 'Alteon Networks Inc.',
+ 'TDK-USA-Corp' => 'TDK USA Corp',
+ 'Jorge-Scientific-Corp' => 'Jorge Scientific Corp',
+ 'GammaLink' => 'GammaLink',
+ 'General-Signal-Networks' => 'General Signal Networks',
+ 'Inter-Face-Co-Ltd' => 'Inter-Face Co Ltd',
+ 'FutureTel-Inc' => 'FutureTel Inc',
+ 'Granite-Systems-Inc.' => 'Granite Systems Inc.',
+ 'Natural-Microsystems' => 'Natural Microsystems',
+ 'Korg' => 'Korg',
+ 'BittWare-Inc.' => 'BittWare, Inc.',
+ 'Nippon-Unisoft-Corporation' => 'Nippon Unisoft Corporation',
+ 'Array-Microsystems' => 'Array Microsystems',
+ 'Computerm-Corp.' => 'Computerm Corp.',
+ 'Anchor-Chips-Inc.' => 'Anchor Chips Inc.',
+ 'Fujifilm-Microdevices' => 'Fujifilm Microdevices',
+ 'Infimed' => 'Infimed',
+ 'GMM-Research-Corp' => 'GMM Research Corp',
+ 'Mentec-Limited' => 'Mentec Limited',
+ 'Holtek-Microelectronics-Inc' => 'Holtek Microelectronics Inc',
+ 'Connect-Tech-Inc' => 'Connect Tech Inc',
+ 'Picture-Elements-Incorporated' => 'Picture Elements Incorporated',
+ 'Mitani-Corporation' => 'Mitani Corporation',
+ 'Dialogic-Corp' => 'Dialogic Corp',
+ 'G-Force-Co-Ltd' => 'G Force Co, Ltd',
+ 'Gigi-Operations' => 'Gigi Operations',
+ 'Integrated-Computing-Engines' => 'Integrated Computing Engines',
+ 'Antex-Electronics-Corporation' => 'Antex Electronics Corporation',
+ 'Aims-Lab' => 'Aims Lab',
+ 'Netspeed-Inc.' => 'Netspeed Inc.',
+ 'Prophet-Systems-Inc.' => 'Prophet Systems, Inc.',
+ 'GDE-Systems-Inc.' => 'GDE Systems, Inc.',
+ 'PSITech' => 'PSITech',
+ 'Vingmed-Sound-A-S' => 'Vingmed Sound A/S',
+ 'Ulticom-Formerly-DGM-S' => 'Ulticom (Formerly DGM&S)',
+ 'Equator-Technologies-Inc' => 'Equator Technologies Inc',
+ 'Analogic-Corp' => 'Analogic Corp',
+ 'Biotronic-SRL' => 'Biotronic SRL',
+ 'Pericom-Semiconductor' => 'Pericom Semiconductor',
+ 'Aculab-PLC' => 'Aculab PLC',
+ 'True-Time-Inc.' => 'True Time Inc.',
+ 'Annapolis-Micro-Systems-Inc' => 'Annapolis Micro Systems, Inc',
+ 'Management-Graphics' => 'Management Graphics',
+ 'Rainbow-Technologies' => 'Rainbow Technologies',
+ 'SBS-Technologies-Inc' => 'SBS Technologies Inc',
+ 'Chase-Research' => 'Chase Research',
+ 'Nintendo-Co-Ltd' => 'Nintendo Co, Ltd',
+ 'Brooktrout-Technology-Inc' => 'Brooktrout Technology Inc',
+ 'Apex-Semiconductor-Inc' => 'Apex Semiconductor Inc',
+ 'Cirel-Systems' => 'Cirel Systems',
+ 'Sunsgroup-Corporation' => 'Sunsgroup Corporation',
+ 'Crisc-Corp' => 'Crisc Corp',
+ 'GE-Spacenet' => 'GE Spacenet',
+ 'Zuken' => 'Zuken',
+ 'Aureal-Semiconductor' => 'Aureal Semiconductor',
+ '3A-International-Inc.' => '3A International, Inc.',
+ 'Optivision-Inc.' => 'Optivision Inc.',
+ 'Orange-Micro' => 'Orange Micro',
+ 'Vienna-Systems' => 'Vienna Systems',
+ 'Pentek' => 'Pentek',
+ 'Sorenson-Vision-Inc' => 'Sorenson Vision Inc',
+ 'Gammagraphx-Inc.' => 'Gammagraphx, Inc.',
+ 'Radstone-Technology' => 'Radstone Technology',
+ 'Megatel' => 'Megatel',
+ 'Forks' => 'Forks',
+ 'Dawson-France' => 'Dawson France',
+ 'Cognex' => 'Cognex',
+ 'Electronic-Design-GmbH' => 'Electronic Design GmbH',
+ 'Four-Fold-Ltd' => 'Four Fold Ltd',
+ 'Spectrum-Signal-Processing' => 'Spectrum Signal Processing',
+ 'Capital-Equipment-Corp' => 'Capital Equipment Corp',
+ 'I2S' => 'I2S',
+ 'Lexicon' => 'Lexicon',
+ 'Computer-Sciences-Corp' => 'Computer Sciences Corp',
+ 'Innovative-Integration' => 'Innovative Integration',
+ 'Juniper-Networks' => 'Juniper Networks',
+ 'Netphone-Inc' => 'Netphone, Inc',
+ 'Duet-Technologies' => 'Duet Technologies',
+ 'Jato-Technologies-Inc.' => 'Jato Technologies Inc.',
+ 'AB-Semiconductor-Ltd' => 'AB Semiconductor Ltd',
+ 'Ambex-Technologies-Inc' => 'Ambex Technologies, Inc',
+ 'Accelerix-Inc' => 'Accelerix Inc',
+ 'Yamatake-Honeywell-Co.-Ltd' => 'Yamatake-Honeywell Co. Ltd',
+ 'Advanet-Inc' => 'Advanet Inc',
+ 'Gespac' => 'Gespac',
+ 'Videoserver-Inc' => 'Videoserver, Inc',
+ 'Acuity-Imaging-Inc' => 'Acuity Imaging, Inc',
+ 'Yaskawa-Electric-Co.' => 'Yaskawa Electric Co.',
+ 'Wavesat' => 'Wavesat',
+ 'Teradyne-Inc' => 'Teradyne Inc',
+ 'ADMtek' => 'ADMtek',
+ 'Packet-Engines-Inc.' => 'Packet Engines Inc.',
+ 'Fortemedia-Inc' => 'Fortemedia, Inc',
+ 'Finisar-Corp.' => 'Finisar Corp.',
+ 'Sysmic-Inc.' => 'Sysmic, Inc.',
+ 'Xinex-Networks-Inc' => 'Xinex Networks Inc',
+ 'Siig-Inc' => 'Siig Inc',
+ 'Crypto-AG' => 'Crypto AG',
+ 'Arcobel-Graphics-BV' => 'Arcobel Graphics BV',
+ 'MTT-Co.-Ltd' => 'MTT Co., Ltd',
+ 'Dome-Inc' => 'Dome Inc',
+ 'Sphere-Communications' => 'Sphere Communications',
+ 'Salix-Technologies-Inc' => 'Salix Technologies, Inc',
+ 'Seachange-international' => 'Seachange international',
+ 'Voss-scientific' => 'Voss scientific',
+ 'quadrant-international' => 'quadrant international',
+ 'Productivity-Enhancement' => 'Productivity Enhancement',
+ 'Microcom-Inc.' => 'Microcom Inc.',
+ 'Broadband-Technologies' => 'Broadband Technologies',
+ 'Micrel-Inc' => 'Micrel Inc',
+ 'MMC-Networks' => 'MMC Networks',
+ 'RadiSys-Corporation' => 'RadiSys Corporation',
+ 'Micro-Memory' => 'Micro Memory',
+ 'Redcreek-Communications-Inc' => 'Redcreek Communications, Inc',
+ 'Videomail-Inc' => 'Videomail, Inc',
+ 'Third-Planet-Publishing' => 'Third Planet Publishing',
+ 'BT-Electronics' => 'BT Electronics',
+ 'Vtel-Corp' => 'Vtel Corp',
+ 'Softcom-Microsystems' => 'Softcom Microsystems',
+ 'Holontech-Corp' => 'Holontech Corp',
+ 'SS-Technologies' => 'SS Technologies',
+ 'Virtual-Computer-Corp' => 'Virtual Computer Corp',
+ 'SCM-Microsystems' => 'SCM Microsystems',
+ 'Atalla-Corp' => 'Atalla Corp',
+ 'Kyoto-Microcomputer-Co' => 'Kyoto Microcomputer Co',
+ 'Promax-Systems-Inc' => 'Promax Systems Inc',
+ 'Phylon-Communications-Inc' => 'Phylon Communications Inc',
+ 'Arescom-Inc' => 'Arescom Inc',
+ 'Odetics' => 'Odetics',
+ 'DTC-Technology-Corp.' => 'DTC Technology Corp.',
+ 'ARK-Research-Corp.' => 'ARK Research Corp.',
+ 'Chori-Joho-System-Co.-Ltd' => 'Chori Joho System Co. Ltd',
+ 'PCTel-Inc' => 'PCTel Inc',
+ 'CSTI' => 'CSTI',
+ 'Algo-System-Co-Ltd' => 'Algo System Co Ltd',
+ 'Systec-Co.-Ltd' => 'Systec Co. Ltd',
+ 'Sonix-Inc' => 'Sonix Inc',
+ 'Thales-Idatys' => 'Thales Idatys',
+ 'Dwave-System-Inc' => 'Dwave System Inc',
+ 'Kratos-Analytical-Ltd' => 'Kratos Analytical Ltd',
+ 'The-Logical-Co' => 'The Logical Co',
+ 'Prisa-Networks' => 'Prisa Networks',
+ 'Brain-Boxes' => 'Brain Boxes',
+ 'Giganet-Inc' => 'Giganet Inc',
+ 'Quatech-Inc' => 'Quatech Inc',
+ 'ABB-Network-Partner-AB' => 'ABB Network Partner AB',
+ 'Sealevel-Systems-Inc' => 'Sealevel Systems Inc',
+ 'I-Data-International-A-S' => 'I-Data International A-S',
+ 'Meinberg-Funkuhren' => 'Meinberg Funkuhren',
+ 'Soliton-Systems-K.K.' => 'Soliton Systems K.K.',
+ 'Fujifacom-Corporation' => 'Fujifacom Corporation',
+ 'Phoenix-Technology-Ltd' => 'Phoenix Technology Ltd',
+ 'ATM-Communications-Inc' => 'ATM Communications Inc',
+ 'Hypercope-GmbH' => 'Hypercope GmbH',
+ 'Teijin-Seiki-Co.-Ltd' => 'Teijin Seiki Co. Ltd',
+ 'Hitachi-Zosen-Corporation' => 'Hitachi Zosen Corporation',
+ 'Skyware-Corporation' => 'Skyware Corporation',
+ 'Digigram' => 'Digigram',
+ 'High-Soft-Tech' => 'High Soft Tech',
+ 'Kawasaki-Steel-Corporation' => 'Kawasaki Steel Corporation',
+ 'Adtek-System-Science-Co-Ltd' => 'Adtek System Science Co Ltd',
+ 'Gigalabs-Inc' => 'Gigalabs Inc',
+ 'Applied-Magic-Inc' => 'Applied Magic Inc',
+ 'ATL-Products' => 'ATL Products',
+ 'CNet-Technology-Inc' => 'CNet Technology Inc',
+ 'Silicon-Vision-Inc' => 'Silicon Vision Inc',
+ 'Silicom-Ltd.' => 'Silicom Ltd.',
+ 'Argosystems-Inc' => 'Argosystems Inc',
+ 'LMC' => 'LMC',
+ 'Telemann-Co.-Ltd' => 'Telemann Co. Ltd',
+ 'Mark-of-the-Unicorn-Inc' => 'Mark of the Unicorn Inc',
+ 'PPT-Vision' => 'PPT Vision',
+ 'Iwatsu-Electric-Co-Ltd' => 'Iwatsu Electric Co Ltd',
+ 'Dynachip-Corporation' => 'Dynachip Corporation',
+ 'Japan-Satellite-Systems-Inc' => 'Japan Satellite Systems Inc',
+ 'Sanritz-Automation-Co-Ltd' => 'Sanritz Automation Co Ltd',
+ 'Brains-Co.-Ltd' => 'Brains Co. Ltd',
+ 'Controlnet-Inc' => 'Controlnet Inc',
+ 'Netgear' => 'Netgear',
+ 'Video-Domain-Technologies' => 'Video Domain Technologies',
+ 'Systran-Corp' => 'Systran Corp',
+ 'Applicom-International' => 'Applicom International',
+ 'Fusion-Micromedia-Corp' => 'Fusion Micromedia Corp',
+ 'Tokimec-Inc' => 'Tokimec Inc',
+ 'Silicon-Reality' => 'Silicon Reality',
+ 'Future-Techno-Designs-pte-Ltd' => 'Future Techno Designs pte Ltd',
+ 'Basler-GmbH' => 'Basler GmbH',
+ 'Patapsco-Designs-Inc' => 'Patapsco Designs Inc',
+ 'Concept-Development-Inc' => 'Concept Development Inc',
+ 'Development-Concepts-Inc' => 'Development Concepts Inc',
+ 'Medialight-Inc' => 'Medialight Inc',
+ 'Moxa-Technologies-Co-Ltd' => 'Moxa Technologies Co Ltd',
+ 'Level-One-Communications' => 'Level One Communications',
+ 'Ambicom-Inc' => 'Ambicom Inc',
+ 'Cipher-Systems-Inc' => 'Cipher Systems Inc',
+ 'Cologne-Chip-Designs-GmbH' => 'Cologne Chip Designs GmbH',
+ 'Clarion-co.-Ltd' => 'Clarion co. Ltd',
+ 'Rios-systems-Co-Ltd' => 'Rios systems Co Ltd',
+ 'Alacritech-Inc' => 'Alacritech Inc',
+ 'Quantum-3d-Inc' => 'Quantum 3d Inc',
+ 'EPL-limited' => 'EPL limited',
+ 'Media4' => 'Media4',
+ 'Aethra-s.r.l.' => 'Aethra s.r.l.',
+ 'Crystal-Group-Inc' => 'Crystal Group Inc',
+ 'Kawasaki-Heavy-Industries-Ltd' => 'Kawasaki Heavy Industries Ltd',
+ 'Ositech-Communications-Inc' => 'Ositech Communications Inc',
+ 'Hifn-Inc.' => 'Hifn Inc.',
+ 'Rascom-Inc' => 'Rascom Inc',
+ 'Audio-Digital-Imaging-Inc' => 'Audio Digital Imaging Inc',
+ 'Videonics-Inc' => 'Videonics Inc',
+ 'Teles-AG' => 'Teles AG',
+ 'Exar-Corp.' => 'Exar Corp.',
+ 'Broadband-Networks-Inc' => 'Broadband Networks Inc',
+ 'Arcom-Control-Systems-Ltd' => 'Arcom Control Systems Ltd',
+ 'Motion-Media-Technology-Ltd' => 'Motion Media Technology Ltd',
+ 'Nexus-Inc' => 'Nexus Inc',
+ 'ALD-Technology-Ltd' => 'ALD Technology Ltd',
+ 'T.Sqware' => 'T.Sqware',
+ 'Maxspeed-Corp' => 'Maxspeed Corp',
+ 'Tamura-corporation' => 'Tamura corporation',
+ 'Techno-Chips-Co.-Ltd' => 'Techno Chips Co. Ltd',
+ 'Lanart-Corporation' => 'Lanart Corporation',
+ 'Wellbean-Co-Inc' => 'Wellbean Co Inc',
+ 'ARM' => 'ARM',
+ 'Dlog-GmbH' => 'Dlog GmbH',
+ 'Logic-Devices-Inc' => 'Logic Devices Inc',
+ 'Nokia-Telecommunications-oy' => 'Nokia Telecommunications oy',
+ 'Elecom-Co-Ltd' => 'Elecom Co Ltd',
+ 'Oxford-Instruments' => 'Oxford Instruments',
+ 'Sanyo-Technosound-Co-Ltd' => 'Sanyo Technosound Co Ltd',
+ 'Bitran-Corporation' => 'Bitran Corporation',
+ 'Sharp-corporation' => 'Sharp corporation',
+ 'Miroku-Jyoho-Service-Co.-Ltd' => 'Miroku Jyoho Service Co. Ltd',
+ 'Sharewave-Inc' => 'Sharewave Inc',
+ 'Microgate-Corporation' => 'Microgate Corporation',
+ '3ware-Inc' => '3ware Inc',
+ 'Janz-Computer-AG' => 'Janz Computer AG',
+ 'Phase-Metrics' => 'Phase Metrics',
+ 'Alphi-Technology-Corp' => 'Alphi Technology Corp',
+ 'Condor-Engineering-Inc' => 'Condor Engineering Inc',
+ 'Blue-Chip-Technology-Ltd' => 'Blue Chip Technology Ltd',
+ 'Apptech-Inc' => 'Apptech Inc',
+ 'Eaton-Corporation' => 'Eaton Corporation',
+ 'Iomega-Corporation' => 'Iomega Corporation',
+ 'Yano-Electric-Co-Ltd' => 'Yano Electric Co Ltd',
+ 'Metheus-Corporation' => 'Metheus Corporation',
+ 'Cocom-A-S' => 'Cocom A/S',
+ 'Studio-Audio---Video-Ltd' => 'Studio Audio & Video Ltd',
+ 'Techsan-Electronics-Co-Ltd' => 'Techsan Electronics Co Ltd',
+ 'Abocom-Systems-Inc' => 'Abocom Systems Inc',
+ 'Shark-Multimedia-Inc' => 'Shark Multimedia Inc',
+ 'IMC-Networks' => 'IMC Networks',
+ 'Graphics-Microsystems-Inc' => 'Graphics Microsystems Inc',
+ 'Media-100-Inc' => 'Media 100 Inc',
+ 'K.I.-Technology-Co-Ltd' => 'K.I. Technology Co Ltd',
+ 'Phobos-corporation' => 'Phobos corporation',
+ 'Apex-PC-Solutions-Inc' => 'Apex PC Solutions Inc',
+ 'Intresource-Systems-pte-Ltd' => 'Intresource Systems pte Ltd',
+ 'Netboost-Corporation' => 'Netboost Corporation',
+ 'Multimedia-Bundle-Inc' => 'Multimedia Bundle Inc',
+ 'ABB-Robotics-Products-AB' => 'ABB Robotics Products AB',
+ 'E-Tech-Inc' => 'E-Tech Inc',
+ 'GVC-Corporation' => 'GVC Corporation',
+ 'Dynamics-Research-Corporation' => 'Dynamics Research Corporation',
+ 'Nest-Inc' => 'Nest Inc',
+ 'Calculex-Inc' => 'Calculex Inc',
+ 'Telesoft-Design-Ltd' => 'Telesoft Design Ltd',
+ 'Argosy-research-Inc' => 'Argosy research Inc',
+ 'NAC-Incorporated' => 'NAC Incorporated',
+ 'Chip-Express-Corporation' => 'Chip Express Corporation',
+ 'Intraserver-Technology-Inc' => 'Intraserver Technology Inc',
+ 'Dallas-Semiconductor' => 'Dallas Semiconductor',
+ 'Hauppauge-Computer-Works-Inc' => 'Hauppauge Computer Works Inc',
+ 'Zydacron-Inc' => 'Zydacron Inc',
+ 'Raytheion-E-Systems' => 'Raytheion E-Systems',
+ 'Coppercom-Inc' => 'Coppercom Inc',
+ 'Oce---Technologies-B.V.' => 'Oce - Technologies B.V.',
+ 'Ford-Microelectronics-Inc' => 'Ford Microelectronics Inc',
+ 'Mcdata-Corporation' => 'Mcdata Corporation',
+ 'Troika-Networks-Inc.' => 'Troika Networks, Inc.',
+ 'Kansai-Electric-Co.-Ltd' => 'Kansai Electric Co. Ltd',
+ 'C-Media-Electronics-Inc' => 'C-Media Electronics Inc',
+ 'Wildfire-Communications' => 'Wildfire Communications',
+ 'Ad-Lib-Multimedia-Inc' => 'Ad Lib Multimedia Inc',
+ 'NTT-Advanced-Technology-Corp.' => 'NTT Advanced Technology Corp.',
+ 'Pentland-Systems-Ltd' => 'Pentland Systems Ltd',
+ 'Aydin-Corp' => 'Aydin Corp',
+ 'Micro-Science-Inc' => 'Micro Science Inc',
+ 'Advantech-Co.-Ltd' => 'Advantech Co. Ltd',
+ 'Silicon-Spice-Inc' => 'Silicon Spice Inc',
+ 'Artx-Inc' => 'Artx Inc',
+ 'CR-Systems-A-S' => 'CR-Systems A/S',
+ 'Meilhaus-Electronic-GmbH' => 'Meilhaus Electronic GmbH',
+ 'Ascor-Inc' => 'Ascor Inc',
+ 'Fundamental-Software-Inc' => 'Fundamental Software Inc',
+ 'Excalibur-Systems-Inc' => 'Excalibur Systems Inc',
+ 'Oce-Printing-Systems-GmbH' => 'Oce Printing Systems GmbH',
+ 'Lava-Computer-mfg-Inc' => 'Lava Computer mfg Inc',
+ 'Aloka-Co.-Ltd' => 'Aloka Co. Ltd',
+ 'Timedia-Technology-Co-Ltd' => 'Timedia Technology Co Ltd',
+ 'DSP-Research-Inc' => 'DSP Research Inc',
+ 'Elmic-Systems-Inc' => 'Elmic Systems Inc',
+ 'Matsushita-Electric-Works-Ltd' => 'Matsushita Electric Works Ltd',
+ 'Goepel-Electronic-GmbH' => 'Goepel Electronic GmbH',
+ 'Salient-Systems-Corp' => 'Salient Systems Corp',
+ 'Midas-lab-Inc' => 'Midas lab Inc',
+ 'Ikos-Systems-Inc' => 'Ikos Systems Inc',
+ 'Addonics' => 'Addonics',
+ 'Microsoft-Corporation' => 'Microsoft Corporation',
+ 'Oxford-Semiconductor-Ltd' => 'Oxford Semiconductor Ltd',
+ 'Multiwave-Innovation-pte-Ltd' => 'Multiwave Innovation pte Ltd',
+ 'Convergenet-Technologies-Inc' => 'Convergenet Technologies Inc',
+ 'Excel-Switching-Corp' => 'Excel Switching Corp',
+ 'Apache-Micro-Peripherals-Inc' => 'Apache Micro Peripherals Inc',
+ 'Zoom-Telephonics-Inc' => 'Zoom Telephonics Inc',
+ 'Digitan-Systems-Inc' => 'Digitan Systems Inc',
+ 'Fanuc-Ltd' => 'Fanuc Ltd',
+ 'Visiontech-Ltd' => 'Visiontech Ltd',
+ 'Psion-Dacom-plc' => 'Psion Dacom plc',
+ 'Ads-Technologies-Inc' => 'Ads Technologies Inc',
+ 'Ygrec-Systems-Co-Ltd' => 'Ygrec Systems Co Ltd',
+ 'Custom-Technology-Corp.' => 'Custom Technology Corp.',
+ 'Videoserver-Connections' => 'Videoserver Connections',
+ 'Chelsio-Communications-Inc' => 'Chelsio Communications Inc',
+ 'Storage-Technology-Corp.' => 'Storage Technology Corp.',
+ 'Better-On-Line-Solutions' => 'Better On-Line Solutions',
+ 'Edec-Co-Ltd' => 'Edec Co Ltd',
+ 'Unex-Technology-Corp.' => 'Unex Technology Corp.',
+ 'Kingmax-Technology-Inc' => 'Kingmax Technology Inc',
+ 'Radiolan' => 'Radiolan',
+ 'Minton-Optic-Industry-Co-Ltd' => 'Minton Optic Industry Co Ltd',
+ 'Pix-stream-Inc' => 'Pix stream Inc',
+ 'Vitec-Multimedia' => 'Vitec Multimedia',
+ 'Radicom-Research-Inc' => 'Radicom Research Inc',
+ 'Gilat-Satellite-Networks' => 'Gilat Satellite Networks',
+ 'Edimax-Computer-Co.' => 'Edimax Computer Co.',
+ 'Eltec-Elektronik-GmbH' => 'Eltec Elektronik GmbH',
+ 'CIS-Technology-Inc' => 'CIS Technology Inc',
+ 'Nissin-Inc-Co' => 'Nissin Inc Co',
+ 'Atmel-dream' => 'Atmel-dream',
+ 'Stargate-Solutions-Inc' => 'Stargate Solutions Inc',
+ 'Amlogic-Inc' => 'Amlogic Inc',
+ 'Tamarack-Microelectronics-Inc' => 'Tamarack Microelectronics Inc',
+ 'Jones-Futurex-Inc' => 'Jones Futurex Inc',
+ 'ALGOL-Corp.' => 'ALGOL Corp.',
+ 'AGIE-Ltd' => 'AGIE Ltd',
+ 'Phoenix-Contact-GmbH---Co.' => 'Phoenix Contact GmbH & Co.',
+ 'Unibrain-S.A.' => 'Unibrain S.A.',
+ 'TRW' => 'TRW',
+ 'Logical-DO-Ltd' => 'Logical DO Ltd',
+ 'Graphin-Co-Ltd' => 'Graphin Co Ltd',
+ 'AIM-GmBH' => 'AIM GmBH',
+ 'Alesis-Studio-Electronics' => 'Alesis Studio Electronics',
+ 'TUT-Systems-Inc' => 'TUT Systems Inc',
+ 'Adlink-Technology' => 'Adlink Technology',
+ 'Catalina-Research-Inc' => 'Catalina Research Inc',
+ 'Samsung-Electronics-Co-Ltd' => 'Samsung Electronics Co Ltd',
+ 'OLITEC' => 'OLITEC',
+ 'Askey-Computer-Corp.' => 'Askey Computer Corp.',
+ 'Octave-Communications-Ind.' => 'Octave Communications Ind.',
+ 'SP3D-Chip-Design-GmBH' => 'SP3D Chip Design GmBH',
+ 'MYCOM-Inc' => 'MYCOM Inc',
+ 'Altiga-Networks' => 'Altiga Networks',
+ 'Logic-Plus-Plus-Inc' => 'Logic Plus Plus Inc',
+ 'Nuera-Communications-Inc' => 'Nuera Communications Inc',
+ 'Giga-byte-Technology' => 'Giga-byte Technology',
+ 'DOOIN-Electronics' => 'DOOIN Electronics',
+ 'Escalate-Networks-Inc' => 'Escalate Networks Inc',
+ 'PRAIM-SRL' => 'PRAIM SRL',
+ 'Cryptek' => 'Cryptek',
+ 'Gallant-Computer-Inc' => 'Gallant Computer Inc',
+ 'Aashima-Technology-B.V.' => 'Aashima Technology B.V.',
+ 'Baldor-Electric-Company' => 'Baldor Electric Company',
+ 'DYNARC-INC' => 'DYNARC INC',
+ 'Avermedia-Technologies-Inc' => 'Avermedia Technologies Inc',
+ 'Fast-Corporation' => 'Fast Corporation',
+ 'GN-NETTEST-Telecom-DIV.' => 'GN NETTEST Telecom DIV.',
+ 'Designpro-Inc.' => 'Designpro Inc.',
+ 'DIGICOM-SPA' => 'DIGICOM SPA',
+ 'AMBIT-Microsystem-Corp.' => 'AMBIT Microsystem Corp.',
+ 'Cleveland-Motion-Controls' => 'Cleveland Motion Controls',
+ 'IFR' => 'IFR',
+ 'Parascan-Technologies-Ltd' => 'Parascan Technologies Ltd',
+ 'Ruby-Tech-Corp.' => 'Ruby Tech Corp.',
+ 'Tachyon-INC.' => 'Tachyon, INC.',
+ 'Bay-Networks' => 'Bay Networks',
+ 'DAIKIN-Industries-Ltd' => 'DAIKIN Industries, Ltd',
+ 'ZAPEX-Technologies-Inc' => 'ZAPEX Technologies Inc',
+ 'Doug-Carson---Associates' => 'Doug Carson & Associates',
+ 'PICAZO-Communications' => 'PICAZO Communications',
+ 'MORTARA-Instrument-Inc' => 'MORTARA Instrument Inc',
+ 'Net-Insight' => 'Net Insight',
+ 'DIATREND-Corporation' => 'DIATREND Corporation',
+ 'TORAY-Industries-Inc' => 'TORAY Industries Inc',
+ 'FORMOSA-Industrial-Computing' => 'FORMOSA Industrial Computing',
+ 'ABIT-Computer-Corp.' => 'ABIT Computer Corp.',
+ 'AWARE-Inc.' => 'AWARE, Inc.',
+ 'Interworks-Computer-Products' => 'Interworks Computer Products',
+ 'NIHON-UNISYS-Ltd.' => 'NIHON UNISYS, Ltd.',
+ 'SCII-Telecom' => 'SCII Telecom',
+ 'BIOPAC-Systems-Inc' => 'BIOPAC Systems Inc',
+ 'LABWAY-Corporation' => 'LABWAY Corporation',
+ 'Logic-Corporation' => 'Logic Corporation',
+ 'ERMA---Electronic-GmBH' => 'ERMA - Electronic GmBH',
+ 'MARQUETTE-Medical-Systems' => 'MARQUETTE Medical Systems',
+ 'KONTRON-Electronik-GmBH' => 'KONTRON Electronik GmBH',
+ 'KYE-Systems-Corporation' => 'KYE Systems Corporation',
+ 'OPTO' => 'OPTO',
+ 'INNOMEDIALOGIC-Inc.' => 'INNOMEDIALOGIC Inc.',
+ 'C.P.-Technology-Co.-Ltd' => 'C.P. Technology Co. Ltd',
+ 'DIGICOM-Systems-Inc.' => 'DIGICOM Systems, Inc.',
+ 'OSI-Plus-Corporation' => 'OSI Plus Corporation',
+ 'Plant-Equipment-Inc.' => 'Plant Equipment, Inc.',
+ 'Stone-Microsystems-PTY-Ltd.' => 'Stone Microsystems PTY Ltd.',
+ 'ZEAL-Corporation' => 'ZEAL Corporation',
+ 'Time-Logic-Corporation' => 'Time Logic Corporation',
+ 'MAKER-Communications' => 'MAKER Communications',
+ 'WINTOP-Technology-Inc.' => 'WINTOP Technology, Inc.',
+ 'JOYTECH-Computer-Co.-Ltd.' => 'JOYTECH Computer Co., Ltd.',
+ 'SMA-Regelsysteme-GmBH' => 'SMA Regelsysteme GmBH',
+ 'TEWS-Technologies-GmbH' => 'TEWS Technologies GmbH',
+ 'EMTEC-CO.-Ltd' => 'EMTEC CO., Ltd',
+ 'ANDOR-Technology-Ltd' => 'ANDOR Technology Ltd',
+ 'SEIKO-Instruments-Inc' => 'SEIKO Instruments Inc',
+ 'OVISLINK-Corp.' => 'OVISLINK Corp.',
+ 'NEWTEK-Inc' => 'NEWTEK Inc',
+ 'Mapletree-Networks-Inc.' => 'Mapletree Networks Inc.',
+ 'LECTRON-Co-Ltd' => 'LECTRON Co Ltd',
+ 'SOFTING-GmBH' => 'SOFTING GmBH',
+ 'Systembase-Co-Ltd' => 'Systembase Co Ltd',
+ 'Millennium-Engineering-Inc' => 'Millennium Engineering Inc',
+ 'Maverick-Networks' => 'Maverick Networks',
+ 'GVC-BCM-Advanced-Research' => 'GVC/BCM Advanced Research',
+ 'INOVA-Computers-GmBH---Co-KG' => 'INOVA Computers GmBH & Co KG',
+ 'MYTHOS-Systems-Inc' => 'MYTHOS Systems Inc',
+ 'HIVERTEC-Inc' => 'HIVERTEC Inc',
+ 'Advanced-MOS-Technology-Inc' => 'Advanced MOS Technology Inc',
+ 'Mentor-Graphics-Corp.' => 'Mentor Graphics Corp.',
+ 'Novaweb-Technologies-Inc' => 'Novaweb Technologies Inc',
+ 'Time-Space-Radio-AB' => 'Time Space Radio AB',
+ 'CTI-Inc' => 'CTI, Inc',
+ 'Guillemot-Corporation' => 'Guillemot Corporation',
+ 'Nextcom-K.K.' => 'Nextcom K.K.',
+ 'ENNOVATE-Networks-Inc' => 'ENNOVATE Networks Inc',
+ 'XPEED-Inc' => 'XPEED Inc',
+ 'Creamware-GmBH' => 'Creamware GmBH',
+ 'Quantum-Data-Corp.' => 'Quantum Data Corp.',
+ 'PROXIM-Inc' => 'PROXIM Inc',
+ 'Techsoft-Technology-Co-Ltd' => 'Techsoft Technology Co Ltd',
+ 'INTERNIX-Inc.' => 'INTERNIX Inc.',
+ 'SEMTECH-Corporation' => 'SEMTECH Corporation',
+ 'Globespan-Semiconductor-Inc.' => 'Globespan Semiconductor Inc.',
+ 'CARDIO-Control-N.V.' => 'CARDIO Control N.V.',
+ 'L3-Communications' => 'L3 Communications',
+ 'SPIDER-Communications-Inc.' => 'SPIDER Communications Inc.',
+ 'COMPAL-Electronics-Inc' => 'COMPAL Electronics Inc',
+ 'MYRICOM-Inc.' => 'MYRICOM Inc.',
+ 'DTK-Computer' => 'DTK Computer',
+ 'MEDIATEK-Corp.' => 'MEDIATEK Corp.',
+ 'Automation-Products-AB' => 'Automation Products AB',
+ 'Data-Race-Inc' => 'Data Race Inc',
+ 'Turbocomm-Tech.-Inc.' => 'Turbocomm Tech. Inc.',
+ 'ODIN-Telesystems-Inc' => 'ODIN Telesystems Inc',
+ 'PE-Logic-Corp.' => 'PE Logic Corp.',
+ 'Billionton-Systems-Inc' => 'Billionton Systems Inc',
+ 'NAKAYO-Telecommunications-Inc' => 'NAKAYO Telecommunications Inc',
+ 'Universal-Scientific-Ind.' => 'Universal Scientific Ind.',
+ 'Whistle-Communications' => 'Whistle Communications',
+ 'TEK-Microsystems-Inc.' => 'TEK Microsystems Inc.',
+ 'Ericsson-Axe-R---D' => 'Ericsson Axe R & D',
+ 'Computer-Hi-Tech-Co-Ltd' => 'Computer Hi-Tech Co Ltd',
+ 'Titan-Electronics-Inc' => 'Titan Electronics Inc',
+ 'CIRTECH-UK-Ltd' => 'CIRTECH (UK) Ltd',
+ 'Panacom-Technology-Corp' => 'Panacom Technology Corp',
+ 'Nitsuko-Corporation' => 'Nitsuko Corporation',
+ 'Accusys-Inc' => 'Accusys Inc',
+ 'Hirakawa-Hewtech-Corp' => 'Hirakawa Hewtech Corp',
+ 'HOPF-Elektronik-GmBH' => 'HOPF Elektronik GmBH',
+ 'AFAVLAB-Technology-Inc' => 'AFAVLAB Technology Inc',
+ 'Amplicon-Liveline-Ltd' => 'Amplicon Liveline Ltd',
+ 'Boulder-Design-Labs-Inc' => 'Boulder Design Labs Inc',
+ 'ASIC-Communications-Corp' => 'ASIC Communications Corp',
+ 'INVERTEX' => 'INVERTEX',
+ 'INFOLIBRIA' => 'INFOLIBRIA',
+ 'AMTELCO' => 'AMTELCO',
+ 'Broadcom-Corporation' => 'Broadcom Corporation',
+ 'Pixelfusion-Ltd' => 'Pixelfusion Ltd',
+ 'SHINING-Technology-Inc' => 'SHINING Technology Inc',
+ '3CX' => '3CX',
+ 'RAYCER-Inc' => 'RAYCER Inc',
+ 'GARNETS-System-CO-Ltd' => 'GARNETS System CO Ltd',
+ 'Planex-Communications-Inc' => 'Planex Communications, Inc',
+ 'SEIKO-EPSON-Corp' => 'SEIKO EPSON Corp',
+ 'ACQIRIS' => 'ACQIRIS',
+ 'DATAKINETICS-Ltd' => 'DATAKINETICS Ltd',
+ 'MASPRO-KENKOH-Corp' => 'MASPRO KENKOH Corp',
+ 'CARRY-Computer-ENG.-CO-Ltd' => 'CARRY Computer ENG. CO Ltd',
+ 'CANON-RESEACH-CENTRE-FRANCE' => 'CANON RESEACH CENTRE FRANCE',
+ 'Conexant-Systems-Inc.' => 'Conexant Systems, Inc.',
+ 'MOBILITY-Electronics' => 'MOBILITY Electronics',
+ 'BroadLogic' => 'BroadLogic',
+ 'SOPAC-Ltd' => 'SOPAC Ltd',
+ 'COYOTE-Technologies-LLC' => 'COYOTE Technologies LLC',
+ 'WOLF-Technology-Inc' => 'WOLF Technology Inc',
+ 'AUDIOCODES-Inc' => 'AUDIOCODES Inc',
+ 'AG-COMMUNICATIONS' => 'AG COMMUNICATIONS',
+ 'WANDEL---GOLTERMANN' => 'WANDEL & GOLTERMANN',
+ 'TRANSAS-MARINE-UK-Ltd' => 'TRANSAS MARINE (UK) Ltd',
+ 'Quadrics-Ltd' => 'Quadrics Ltd',
+ 'JAPAN-Computer-Industry-Inc' => 'JAPAN Computer Industry Inc',
+ 'ARCHTEK-TELECOM-Corp' => 'ARCHTEK TELECOM Corp',
+ 'TWINHEAD-INTERNATIONAL-Corp' => 'TWINHEAD INTERNATIONAL Corp',
+ 'DELTA-Electronics-Inc' => 'DELTA Electronics, Inc',
+ 'BANKSOFT-CANADA-Ltd' => 'BANKSOFT CANADA Ltd',
+ 'KAWASAKI-LSI-USA-Inc' => 'KAWASAKI LSI USA Inc',
+ 'KAISER-Electronics' => 'KAISER Electronics',
+ 'CHAMELEON-Systems-Inc' => 'CHAMELEON Systems Inc',
+ 'FORVUS-RESEARCH-Inc' => 'FORVUS RESEARCH Inc',
+ 'YAMASHITA-Systems-Corp' => 'YAMASHITA Systems Corp',
+ 'KYOPAL-CO-Ltd' => 'KYOPAL CO Ltd',
+ 'WARPSPPED-Inc' => 'WARPSPPED Inc',
+ 'C-PORT-Corp' => 'C-PORT Corp',
+ 'INTEC-GmbH' => 'INTEC GmbH',
+ 'BEHAVIOR-TECH-Computer-Corp' => 'BEHAVIOR TECH Computer Corp',
+ 'CENTILLIUM-Technology-Corp' => 'CENTILLIUM Technology Corp',
+ 'ROSUN-Technologies-Inc' => 'ROSUN Technologies Inc',
+ 'Raychem' => 'Raychem',
+ 'TFL-LAN-Inc' => 'TFL LAN Inc',
+ 'Advent-design' => 'Advent design',
+ 'MYSON-Technology-Inc' => 'MYSON Technology Inc',
+ 'ECHOTEK-Corp' => 'ECHOTEK Corp',
+ 'Globetek' => 'Globetek',
+ 'COMBOX-Ltd' => 'COMBOX Ltd',
+ 'DIGITAL-AUDIO-LABS-Inc' => 'DIGITAL AUDIO LABS Inc',
+ 'MATRIX-Corp' => 'MATRIX Corp',
+ 'TOPIC-SEMICONDUCTOR-Corp' => 'TOPIC SEMICONDUCTOR Corp',
+ 'CHAPLET-System-Inc' => 'CHAPLET System Inc',
+ 'BELL-Corp' => 'BELL Corp',
+ 'MainPine-Ltd' => 'MainPine Ltd',
+ 'MUSIC-Semiconductors' => 'MUSIC Semiconductors',
+ 'ENE-Technology-Inc' => 'ENE Technology Inc',
+ 'IMPACT-Technologies' => 'IMPACT Technologies',
+ 'ISS-Inc' => 'ISS, Inc',
+ 'SOLECTRON' => 'SOLECTRON',
+ 'ACKSYS' => 'ACKSYS',
+ 'AMERICAN-MICROSystems-Inc' => 'AMERICAN MICROSystems Inc',
+ 'QUICKTURN-DESIGN-Systems' => 'QUICKTURN DESIGN Systems',
+ 'FLYTECH-Technology-CO-Ltd' => 'FLYTECH Technology CO Ltd',
+ 'MACRAIGOR-Systems-LLC' => 'MACRAIGOR Systems LLC',
+ 'QUANTA-Computer-Inc' => 'QUANTA Computer Inc',
+ 'MELEC-Inc' => 'MELEC Inc',
+ 'PHILIPS---CRYPTO' => 'PHILIPS - CRYPTO',
+ 'ACQIS-Technology-Inc' => 'ACQIS Technology Inc',
+ 'CHRYON-Corp' => 'CHRYON Corp',
+ 'ECHELON-Corp' => 'ECHELON Corp',
+ 'BALTIMORE' => 'BALTIMORE',
+ 'ROAD-Corp' => 'ROAD Corp',
+ 'EVERGREEN-Technologies-Inc' => 'EVERGREEN Technologies Inc',
+ 'ACTIS-Computer' => 'ACTIS Computer',
+ 'DATALEX-COMMUNCATIONS' => 'DATALEX COMMUNCATIONS',
+ 'ARALION-Inc' => 'ARALION Inc',
+ 'ONO-SOKKI' => 'ONO SOKKI',
+ 'TERRATEC-Electronic-GmbH' => 'TERRATEC Electronic GmbH',
+ 'ANTAL-Electronic' => 'ANTAL Electronic',
+ 'FILANET-Corp' => 'FILANET Corp',
+ 'TECHWELL-Inc' => 'TECHWELL Inc',
+ 'MIPS-Technologies-Inc.' => 'MIPS Technologies, Inc.',
+ 'PROVIDEO-MULTIMEDIA-Co-Ltd' => 'PROVIDEO MULTIMEDIA Co Ltd',
+ 'MACHONE-Communications' => 'MACHONE Communications',
+ 'SILICON-Laboratories' => 'SILICON Laboratories',
+ 'DCM-DATA-Systems' => 'DCM DATA Systems',
+ 'VISIONTEK' => 'VISIONTEK',
+ 'IOI-Technology-Corp' => 'IOI Technology Corp',
+ 'MITUTOYO-Corp' => 'MITUTOYO Corp',
+ 'JET-PROPULSION-Laboratory' => 'JET PROPULSION Laboratory',
+ 'MAX-Technologies-Inc' => 'MAX Technologies Inc',
+ 'COMPUTEX-Co-Ltd' => 'COMPUTEX Co Ltd',
+ 'VISUAL-Technology-Inc' => 'VISUAL Technology Inc',
+ 'SERVOTEST-Ltd' => 'SERVOTEST Ltd',
+ 'STRATABEAM-Technology' => 'STRATABEAM Technology',
+ 'OPEN-NETWORK-Co-Ltd' => 'OPEN NETWORK Co Ltd',
+ 'RACAL-AIRTECH-Ltd' => 'RACAL AIRTECH Ltd',
+ 'CHICONY-Electronics-Co-Ltd' => 'CHICONY Electronics Co Ltd',
+ 'PROLINK-Microsystems-Corp' => 'PROLINK Microsystems Corp',
+ 'GESYTEC-GmBH' => 'GESYTEC GmBH',
+ 'PLD-APPLICATIONS' => 'PLD APPLICATIONS',
+ 'MEDIASTAR-Co-Ltd' => 'MEDIASTAR Co Ltd',
+ 'CLEVO-KAPOK-Computer' => 'CLEVO/KAPOK Computer',
+ 'SI-LOGIC-Ltd' => 'SI LOGIC Ltd',
+ 'INNOMEDIA-Inc' => 'INNOMEDIA Inc',
+ 'PROTAC-INTERNATIONAL-Corp' => 'PROTAC INTERNATIONAL Corp',
+ 'Cemax-Icon-Inc' => 'Cemax-Icon Inc',
+ 'Mac-System-Co-Ltd' => 'Mac System Co Ltd',
+ 'LP-Elektronik-GmbH' => 'LP Elektronik GmbH',
+ 'Perle-Systems-Ltd' => 'Perle Systems Ltd',
+ 'Viewgraphics-Inc' => 'Viewgraphics Inc',
+ 'Symbol-Technologies' => 'Symbol Technologies',
+ 'A-Trend-Technology-Co-Ltd' => 'A-Trend Technology Co Ltd',
+ 'Biostar-Microtech-Intl-Corp' => 'Biostar Microtech Intl Corp',
+ 'Ardent-Technologies-Inc' => 'Ardent Technologies Inc',
+ 'Jungsoft' => 'Jungsoft',
+ 'DDK-Electronics-Inc' => 'DDK Electronics Inc',
+ 'Palit-Microsystems-Inc.' => 'Palit Microsystems Inc.',
+ 'Avtec-Systems' => 'Avtec Systems',
+ '2wire-Inc' => '2wire Inc',
+ 'Vidac-Electronics-GmbH' => 'Vidac Electronics GmbH',
+ 'Alpha-Top-Corp' => 'Alpha-Top Corp',
+ 'Alfa-Inc' => 'Alfa Inc',
+ 'Lecroy-Corp' => 'Lecroy Corp',
+ 'Contemporary-Controls' => 'Contemporary Controls',
+ 'Otis-Elevator-Company' => 'Otis Elevator Company',
+ 'Lattice---Vantis' => 'Lattice - Vantis',
+ 'Fairchild-Semiconductor' => 'Fairchild Semiconductor',
+ 'Viewcast-COM' => 'Viewcast COM',
+ 'HITT' => 'HITT',
+ 'Dual-Technology-Corp' => 'Dual Technology Corp',
+ 'Japan-Elecronics-Ind-Inc' => 'Japan Elecronics Ind Inc',
+ 'Star-Multimedia-Corp' => 'Star Multimedia Corp',
+ 'Eurosoft-UK' => 'Eurosoft (UK)',
+ 'Gemflex-Networks' => 'Gemflex Networks',
+ 'Transition-Networks' => 'Transition Networks',
+ 'PX-Instruments-Technology-Ltd' => 'PX Instruments Technology Ltd',
+ 'Primex-Aerospace-Co' => 'Primex Aerospace Co',
+ 'SEH-Computertechnik-GmbH' => 'SEH Computertechnik GmbH',
+ 'Cytec-Corp' => 'Cytec Corp',
+ 'Inet-Technologies-Inc' => 'Inet Technologies Inc',
+ 'Uniwill-Computer-Corp' => 'Uniwill Computer Corp',
+ 'Logitron' => 'Logitron',
+ 'Lancast-Inc' => 'Lancast Inc',
+ 'Konica-Corp' => 'Konica Corp',
+ 'Solidum-Systems-Corp' => 'Solidum Systems Corp',
+ 'Atlantek-Microsystems-Pty-Ltd' => 'Atlantek Microsystems Pty Ltd',
+ 'Digalog-Systems-Inc' => 'Digalog Systems Inc',
+ 'Allied-Data-Technologies' => 'Allied Data Technologies',
+ 'Point-Multimedia-Systems' => 'Point Multimedia Systems',
+ 'Lara-Technology-Inc' => 'Lara Technology Inc',
+ 'Ditect-Coop' => 'Ditect Coop',
+ '3PAR-Inc.' => '3PAR Inc.',
+ 'ARN' => 'ARN',
+ 'Syba-Tech-Ltd' => 'Syba Tech Ltd',
+ 'Bops-Inc' => 'Bops Inc',
+ 'Netgame-Ltd' => 'Netgame Ltd',
+ 'Diva-Systems-Corp' => 'Diva Systems Corp',
+ 'Folsom-Research-Inc' => 'Folsom Research Inc',
+ 'Memec-Design-Services' => 'Memec Design Services',
+ 'Granite-Microsystems' => 'Granite Microsystems',
+ 'Delta-Electronics-Inc' => 'Delta Electronics Inc',
+ 'General-Instrument' => 'General Instrument',
+ 'Faraday-Technology-Corp' => 'Faraday Technology Corp',
+ 'Stratus-Computer-Systems' => 'Stratus Computer Systems',
+ 'A-Max-Technology-Co-Ltd' => 'A-Max Technology Co Ltd',
+ 'Galea-Network-Security' => 'Galea Network Security',
+ 'Compumaster-SRL' => 'Compumaster SRL',
+ 'Geocast-Network-Systems' => 'Geocast Network Systems',
+ 'Catalyst-Enterprises-Inc' => 'Catalyst Enterprises Inc',
+ 'Italtel' => 'Italtel',
+ 'X-Net-OY' => 'X-Net OY',
+ 'Toyota-Macs-Inc' => 'Toyota Macs Inc',
+ 'SSE-Telecom-Inc' => 'SSE Telecom Inc',
+ 'Moreton-Bay' => 'Moreton Bay',
+ 'Bluesteel-Networks-Inc' => 'Bluesteel Networks Inc',
+ 'North-Atlantic-Instruments' => 'North Atlantic Instruments',
+ 'VMware' => 'VMware',
+ 'Amersham-Pharmacia-Biotech' => 'Amersham Pharmacia Biotech',
+ 'Zoltrix-International-Ltd' => 'Zoltrix International Ltd',
+ 'Source-Technology-Inc' => 'Source Technology Inc',
+ 'Mosaid-Technologies-Inc' => 'Mosaid Technologies Inc',
+ 'Mellanox-Technologies' => 'Mellanox Technologies',
+ 'CCI-TRIAD' => 'CCI/TRIAD',
+ 'Cimetrics-Inc' => 'Cimetrics Inc',
+ 'Texas-Memory-Systems-Inc' => 'Texas Memory Systems Inc',
+ 'Sandisk-Corp' => 'Sandisk Corp',
+ 'ADDI-DATA-GmbH' => 'ADDI-DATA GmbH',
+ 'Impacct-Technology-Corp' => 'Impacct Technology Corp',
+ 'Portwell-Inc' => 'Portwell Inc',
+ 'Agilent-Technologies' => 'Agilent Technologies',
+ 'DFI-Inc' => 'DFI Inc',
+ 'Sola-Electronics' => 'Sola Electronics',
+ 'High-Tech-Computer-Corp-HTC' => 'High Tech Computer Corp (HTC)',
+ 'BVM-Ltd' => 'BVM Ltd',
+ 'Quantel' => 'Quantel',
+ 'Newer-Technology-Inc' => 'Newer Technology Inc',
+ 'Taiwan-Mycomp-Co-Ltd' => 'Taiwan Mycomp Co Ltd',
+ 'EVSX-Inc' => 'EVSX Inc',
+ 'Procomp-Informatics-Ltd' => 'Procomp Informatics Ltd',
+ 'Penta-Media-Co-Ltd' => 'Penta Media Co Ltd',
+ 'Serome-Technology-Inc' => 'Serome Technology Inc',
+ 'Bitboys-OY' => 'Bitboys OY',
+ 'AG-Electronics-Ltd' => 'AG Electronics Ltd',
+ 'Hotrail-Inc' => 'Hotrail Inc',
+ 'Dreamtech-Co-Ltd' => 'Dreamtech Co Ltd',
+ 'Genrad-Inc' => 'Genrad Inc',
+ 'Hilscher-GmbH' => 'Hilscher GmbH',
+ 'Infineon-Technologies-AG' => 'Infineon Technologies AG',
+ 'NDS-Technologies-Israel-Ltd' => 'NDS Technologies Israel Ltd',
+ 'Iwill-Corp' => 'Iwill Corp',
+ 'Tatung-Co' => 'Tatung Co',
+ 'Entridia-Corp' => 'Entridia Corp',
+ 'Rockwell-Collins-Inc' => 'Rockwell-Collins Inc',
+ 'Cybernetics-Technology-Co-Ltd' => 'Cybernetics Technology Co Ltd',
+ 'Super-Micro-Computer-Inc' => 'Super Micro Computer Inc',
+ 'Cyberfirm-Inc' => 'Cyberfirm Inc',
+ 'Applied-Computing-Systems-Inc' => 'Applied Computing Systems Inc',
+ 'Litronic-Inc' => 'Litronic Inc',
+ 'Sigmatel-Inc' => 'Sigmatel Inc',
+ 'Malleable-Technologies-Inc' => 'Malleable Technologies Inc',
+ 'Infinilink-Corp' => 'Infinilink Corp',
+ 'Cacheflow-Inc' => 'Cacheflow Inc',
+ 'Voice-Technologies-Group-Inc' => 'Voice Technologies Group Inc',
+ 'Quicknet-Technologies-Inc' => 'Quicknet Technologies Inc',
+ 'Networth-Technologies-Inc' => 'Networth Technologies Inc',
+ 'VSN-Systemen-BV' => 'VSN Systemen BV',
+ 'Valley-technologies-Inc' => 'Valley technologies Inc',
+ 'Agere-Inc' => 'Agere Inc',
+ 'Get-Engineering-Corp' => 'Get Engineering Corp',
+ 'National-Datacomm-Corp' => 'National Datacomm Corp',
+ 'Pacific-Digital-Corp' => 'Pacific Digital Corp',
+ 'Tokyo-Denshi-Sekei-K.K.' => 'Tokyo Denshi Sekei K.K.',
+ 'Beckhoff-GmbH' => 'Beckhoff GmbH',
+ 'Macrolink-Inc' => 'Macrolink Inc',
+ 'In-Win-Development-Inc' => 'In Win Development Inc',
+ 'Intelligent-Paradigm-Inc' => 'Intelligent Paradigm Inc',
+ 'B-Tree-Systems-Inc' => 'B-Tree Systems Inc',
+ 'Times-N-Systems-Inc' => 'Times N Systems Inc',
+ 'Diagnostic-Instruments-Inc' => 'Diagnostic Instruments Inc',
+ 'Digitmedia-Corp' => 'Digitmedia Corp',
+ 'Valuesoft' => 'Valuesoft',
+ 'Power-Micro-Research' => 'Power Micro Research',
+ 'Extreme-Packet-Device-Inc' => 'Extreme Packet Device Inc',
+ 'Banctec' => 'Banctec',
+ 'Koga-Electronics-Co' => 'Koga Electronics Co',
+ 'Zenith-Electronics-Corp' => 'Zenith Electronics Corp',
+ 'J.P.-Axzam-Corp' => 'J.P. Axzam Corp',
+ 'Zilog-Inc' => 'Zilog Inc',
+ 'Techsan-Electronics-Co-Ltd' => 'Techsan Electronics Co Ltd',
+ 'N-CUBED.NET' => 'N-CUBED.NET',
+ 'Kinpo-Electronics-Inc' => 'Kinpo Electronics Inc',
+ 'Fastpoint-Technologies-Inc' => 'Fastpoint Technologies Inc',
+ 'Northrop-Grumman---Canada-Ltd' => 'Northrop Grumman - Canada Ltd',
+ 'Tenta-Technology' => 'Tenta Technology',
+ 'Prosys-tec-Inc' => 'Prosys-tec Inc',
+ 'Nokia-Wireless-Communications' => 'Nokia Wireless Communications',
+ 'Pairgain-Technologies' => 'Pairgain Technologies',
+ 'Europop-AG' => 'Europop AG',
+ 'Scimetric-Instruments-Inc' => 'Scimetric Instruments Inc',
+ 'Telesynergy-Research-Inc.' => 'Telesynergy Research Inc.',
+ 'Stone-Ridge-Technology' => 'Stone Ridge Technology',
+ 'FarSite-Communications-Ltd' => 'FarSite Communications Ltd',
+ 'Rioworks' => 'Rioworks',
+ 'TDK-Semiconductor-Corp.' => 'TDK Semiconductor Corp.',
+ 'Kongsberg-Spacetec-AS' => 'Kongsberg Spacetec AS',
+ 'Packard-Bell-B.V.' => 'Packard Bell B.V.',
+ 'Smart-Link-Ltd.' => 'Smart Link Ltd.',
+ 'MKNet-Corp.' => 'MKNet Corp.',
+ 'Epix-Inc' => 'Epix Inc',
+ 'Linux-Media-Labs-LLC' => 'Linux Media Labs, LLC',
+ 'Worldspace-Corp.' => 'Worldspace Corp.',
+ 'Actiontec-Electronics-Inc' => 'Actiontec Electronics Inc',
+ 'Bernecker-+-Rainer' => 'Bernecker + Rainer',
+ 'NetEffect' => 'NetEffect',
+ 'Tokyo-Electron-Device-Ltd.' => 'Tokyo Electron Device Ltd.',
+ 'ZyDAS-Technology-Corp.' => 'ZyDAS Technology Corp.',
+ 'ONNTO-Corp.' => 'ONNTO Corp.',
+ 'Hercules' => 'Hercules',
+ 'XFX-Pine-Group-Inc.' => 'XFX Pine Group Inc.',
+ 'CastleNet-Technology-Inc.' => 'CastleNet Technology Inc.',
+ 'Atheros-Communications-Inc.' => 'Atheros Communications Inc.',
+ 'EPoX-Computer-Co.-Ltd.' => 'EPoX Computer Co., Ltd.',
+ 'Netcell-Corporation' => 'Netcell Corporation',
+ 'Tekram-Technology-Co.Ltd.' => 'Tekram Technology Co.,Ltd.',
+ 'Global-Sun-Technology-Inc' => 'Global Sun Technology Inc',
+ 'SafeNet-Inc' => 'SafeNet Inc',
+ 'SparkLAN-Communications-Inc.' => 'SparkLAN Communications, Inc.',
+ 'Aspex-Semiconductor-Ltd' => 'Aspex Semiconductor Ltd',
+ 'Sonnet-Technologies-Inc.' => 'Sonnet Technologies, Inc.',
+ 'Creatix-Polymedia-GmbH' => 'Creatix Polymedia GmbH',
+ 'Micrel-Kendin' => 'Micrel-Kendin',
+ 'Octasic-Inc.' => 'Octasic Inc.',
+ 'EONIC-B.V.-The-Netherlands' => 'EONIC B.V. The Netherlands',
+ 'CENATEK-Inc' => 'CENATEK Inc',
+ 'Densitron-Technologies' => 'Densitron Technologies',
+ 'Roland-Corp.' => 'Roland Corp.',
+ 'Acromag-Inc.' => 'Acromag, Inc.',
+ 'Advantech-Co.-Ltd.' => 'Advantech Co., Ltd.',
+ 'PIKA-Technologies-Inc.' => 'PIKA Technologies Inc.',
+ 'Geotest-MTS' => 'Geotest-MTS',
+ 'European-Space-Agency' => 'European Space Agency',
+ 'Intellon-Corp.' => 'Intellon Corp.',
+ 'U.S.-Robotics' => 'U.S. Robotics',
+ 'Sycron-N.-V.' => 'Sycron N. V.',
+ 'Jetway-Information-Co.-Ltd.' => 'Jetway Information Co., Ltd.',
+ 'Vweb-Corp' => 'Vweb Corp',
+ 'VideoTele.com-Inc.' => 'VideoTele.com, Inc.',
+ 'Digital-First-Inc.' => 'Digital First, Inc.',
+ 'NetOctave' => 'NetOctave',
+ 'YottaYotta-Inc.' => 'YottaYotta Inc.',
+ 'EZChip-Technologies' => 'EZChip Technologies',
+ 'Accelerated-Encryption' => 'Accelerated Encryption',
+ 'Fujitsu-Technology-Solutions' => 'Fujitsu Technology Solutions',
+ 'Aten-International-Co.-Ltd.' => 'Aten International Co. Ltd.',
+ 'Linksys' => 'Linksys',
+ 'Altima-nee-Broadcom' => 'Altima (nee Broadcom)',
+ 'Peppercon-AG' => 'Peppercon AG',
+ 'ViXS-Systems-Inc.' => 'ViXS Systems, Inc.',
+ 'RLX-Technologies' => 'RLX Technologies',
+ 'PC-Partner-Limited' => 'PC Partner Limited',
+ 'WellX-Telecom-SA' => 'WellX Telecom SA',
+ 'AudioScience-Inc' => 'AudioScience Inc',
+ 'Sanera-Systems-Inc.' => 'Sanera Systems, Inc.',
+ 'TEDIA-spol.-s-r.-o.' => 'TEDIA spol. s r. o.',
+ 'InnoVISION-Multimedia-Ltd.' => 'InnoVISION Multimedia Ltd.',
+ 'Cavium-Networks' => 'Cavium Networks',
+ 'Ennyah-Technologies-Corp.' => 'Ennyah Technologies Corp.',
+ 'Techwell-Inc.' => 'Techwell Inc.',
+ 'Belkin' => 'Belkin',
+ 'id-Quantique' => 'id Quantique',
+ 'Data-Patterns' => 'Data Patterns',
+ 'Genesys-Logic-Inc' => 'Genesys Logic, Inc',
+ 'Lenovo' => 'Lenovo',
+ 'Phillips-Components' => 'Phillips Components',
+ 'Hawking-Technologies' => 'Hawking Technologies',
+ 'Indra-Networks-Inc.' => 'Indra Networks, Inc.',
+ 'Wistron-Corp.' => 'Wistron Corp.',
+ 'Newisys-Inc.' => 'Newisys, Inc.',
+ 'Airgo-Networks-Inc' => 'Airgo Networks Inc',
+ 'NetChip-Technology-Inc' => 'NetChip Technology, Inc',
+ 'Z-Com-Inc.' => 'Z-Com, Inc.',
+ 'Areca-Technology-Corp.' => 'Areca Technology Corp.',
+ 'Cray-Inc' => 'Cray Inc',
+ 'KWorld-Computer-Co.-Ltd.' => 'KWorld Computer Co. Ltd.',
+ 'Sectra-AB' => 'Sectra AB',
+ 'Entropic-Communications-Inc.' => 'Entropic Communications Inc.',
+ 'Connect-Components-Ltd' => 'Connect Components Ltd',
+ 'Albatron-Corp.' => 'Albatron Corp.',
+ 'RDC-Semiconductor-Inc.' => 'RDC Semiconductor, Inc.',
+ 'Topdek-Semiconductor-Inc.' => 'Topdek Semiconductor Inc.',
+ 'InProComm-Inc.' => 'InProComm Inc.',
+ 'Benq-Corporation' => 'Benq Corporation',
+ 'ProdaSafe-GmbH' => 'ProdaSafe GmbH',
+ 'Euresys-S.A.' => 'Euresys S.A.',
+ 'Lumanate-Inc.' => 'Lumanate, Inc.',
+ 'Ambient-Technologies-Inc' => 'Ambient Technologies Inc',
+ 'RaLink' => 'RaLink',
+ 'Devolo-AG' => 'Devolo AG',
+ 'InfiniCon-Systems-Inc.' => 'InfiniCon Systems Inc.',
+ 'Twinhan-Technology-Co.-Ltd' => 'Twinhan Technology Co. Ltd',
+ 'SiteCom-Europe-BV' => 'SiteCom Europe BV',
+ 'Raza-Microelectronics-Inc.' => 'Raza Microelectronics, Inc.',
+ 'Credence-Systems-Corporation' => 'Credence Systems Corporation',
+ 'MikroM-GmbH' => 'MikroM GmbH',
+ 'ASRock-Incorporation' => 'ASRock Incorporation',
+ 'Thales-Computers' => 'Thales Computers',
+ 'Microtune-Inc.' => 'Microtune, Inc.',
+ 'Anritsu-Corp.' => 'Anritsu Corp.',
+ 'LG-Electronics-Inc.' => 'LG Electronics, Inc.',
+ 'Compro-Technology-Inc.' => 'Compro Technology, Inc.',
+ 'Wistron-NeWeb-Corp.' => 'Wistron NeWeb Corp.',
+ 'SilverBack' => 'SilverBack',
+ 'Topspin-Communications' => 'Topspin Communications',
+ 'Humusoft-s.r.o.' => 'Humusoft, s.r.o.',
+ 'WiNRADiO-Communications' => 'WiNRADiO Communications',
+ 'L-3-Communications' => 'L-3 Communications',
+ 'Avvida-Systems-Inc.' => 'Avvida Systems Inc.',
+ 'Varisys-Ltd' => 'Varisys Ltd',
+ 'Ample-Communications-Inc' => 'Ample Communications, Inc',
+ 'Egenera-Inc.' => 'Egenera, Inc.',
+ 'KNC-One' => 'KNC One',
+ 'AMtek' => 'AMtek',
+ 'Astute-Networks-Inc.' => 'Astute Networks Inc.',
+ 'Stretch-Inc.' => 'Stretch Inc.',
+ 'AT-T' => 'AT&T',
+ 'DViCO-Corporation' => 'DViCO Corporation',
+ 'Ammasso' => 'Ammasso',
+ 'Info-Tek-Corp.' => 'Info-Tek Corp.',
+ 'Cray-Inc Nee-Octigabay-System' => 'Cray Inc Nee Octigabay System',
+ 'ARVOO-Engineering-BV' => 'ARVOO Engineering BV',
+ 'Sitecom' => 'Sitecom',
+ 'Dialogue-Technology-Corp.' => 'Dialogue Technology Corp.',
+ 'Artimi-Inc' => 'Artimi Inc',
+ 'MPL-AG' => 'MPL AG',
+ 'Cesnet-z.s.p.o.' => 'Cesnet, z.s.p.o.',
+ 'Chenming-Mold-Ind.-Corp.' => 'Chenming Mold Ind. Corp.',
+ 'Spectrum-GmbH' => 'Spectrum GmbH',
+ 'Napatech-A-S' => 'Napatech A/S',
+ 'NextIO' => 'NextIO',
+ 'Commtech-Inc.' => 'Commtech, Inc.',
+ 'Resilience-Corporation' => 'Resilience Corporation',
+ 'Micronas-USA-Inc.' => 'Micronas USA, Inc.',
+ 'Renesas-Technology-Corp.' => 'Renesas Technology Corp.',
+ 'Soltek-Computer-Inc.' => 'Soltek Computer Inc.',
+ 'Sangoma-Technologies-Corp.' => 'Sangoma Technologies Corp.',
+ 'Solarflare-Communications' => 'Solarflare Communications',
+ 'TransDimension' => 'TransDimension',
+ 'Option-N.V.' => 'Option N.V.',
+ 'DiBcom' => 'DiBcom',
+ 'MAXIM-Integrated-Products' => 'MAXIM Integrated Products',
+ 'Comtech-AHA-Corp.' => 'Comtech AHA Corp.',
+ 'ClearSpeed-Technology-plc' => 'ClearSpeed Technology plc',
+ 'C-guys-Inc.' => 'C-guys, Inc.',
+ 'Enterasys-Networks' => 'Enterasys Networks',
+ 'DapTechnology-B.V.' => 'DapTechnology B.V.',
+ 'Curtis-Inc.' => 'Curtis, Inc.',
+ 'Freescale-Semiconductor-Inc' => 'Freescale Semiconductor Inc',
+ 'Faster-Technology-LLC.' => 'Faster Technology, LLC.',
+ 'PA-Semi-Inc' => 'PA Semi, Inc',
+ 'Orad-Hi-Tec-Systems' => 'Orad Hi-Tec Systems',
+ 'Sensory-Networks-Inc.' => 'Sensory Networks Inc.',
+ 'Club-3D-BV' => 'Club-3D BV',
+ 'AGEIA-Technologies-Inc.' => 'AGEIA Technologies, Inc.',
+ 'Parsec' => 'Parsec',
+ 'JMicron-Technology-Corp.' => 'JMicron Technology Corp.',
+ 'Montilio-Inc.' => 'Montilio Inc.',
+ 'Nallatech-Ltd.' => 'Nallatech Ltd.',
+ 'Pulse-LINK-Inc.' => 'Pulse-LINK, Inc.',
+ 'Xsigo-Systems' => 'Xsigo Systems',
+ 'Auvitek' => 'Auvitek',
+ 'DAQDATA-GmbH' => 'DAQDATA GmbH',
+ 'Kasten-Chase-Applied-Research' => 'Kasten Chase Applied Research',
+ 'Progeny-Systems-Corporation' => 'Progeny Systems Corporation',
+ 'Exegy-Inc.' => 'Exegy Inc.',
+ 'Quixant-Limited' => 'Quixant Limited',
+ 'Pico-Computing' => 'Pico Computing',
+ 'Vector-Informatik-GmbH' => 'Vector Informatik GmbH',
+ 'DDRdrive-LLC' => 'DDRdrive LLC',
+ 'Netronome-Systems-Inc.' => 'Netronome Systems, Inc.',
+ 'ASPEED-Technology-Inc.' => 'ASPEED Technology, Inc.',
+ 'Kvaser-AB' => 'Kvaser AB',
+ 'Sierra-semiconductor' => 'Sierra semiconductor',
+ 'DekTec-Digital-Video-B.V.' => 'DekTec Digital Video B.V.',
+ 'Force10-Networks-Inc.' => 'Force10 Networks, Inc.',
+ 'GFaI-e.V.' => 'GFaI e.V.',
+ '3Leaf-Systems-Inc.' => '3Leaf Systems, Inc.',
+ 'Ambric-Inc.' => 'Ambric Inc.',
+ 'Fortinet-Inc.' => 'Fortinet, Inc.',
+ 'Ascom-AG' => 'Ascom AG',
+ 'AzureWave' => 'AzureWave',
+ 'Hectronic-AB' => 'Hectronic AB',
+ 'Bigfoot-Networks-Inc.' => 'Bigfoot Networks, Inc.',
+ 'Highly-Reliable-Systems' => 'Highly Reliable Systems',
+ 'Razer-USA-Ltd.' => 'Razer USA Ltd.',
+ 'Celoxica' => 'Celoxica',
+ 'Aprius-Inc.' => 'Aprius Inc.',
+ 'System-TALKS-Inc.' => 'System TALKS Inc.',
+ 'VirtenSys-Limited' => 'VirtenSys Limited',
+ 'XenSource-Inc.' => 'XenSource, Inc.',
+ 'Violin-Memory-Inc' => 'Violin Memory, Inc',
+ 'Wavesat' => 'Wavesat',
+ 'Lightfleet-Corporation' => 'Lightfleet Corporation',
+ 'Virident-Systems-Inc.' => 'Virident Systems Inc.',
+ 'Commex-Technologies' => 'Commex Technologies',
+ 'MEN-Mikro-Elektronik' => 'MEN Mikro Elektronik',
+ 'Verigy-Pte.-Ltd.' => 'Verigy Pte. Ltd.',
+ 'DRS-Technologies' => 'DRS Technologies',
+ 'Ciprico-Inc.' => 'Ciprico, Inc.',
+ 'Global-Velocity-Inc.' => 'Global Velocity, Inc.',
+ 'CalDigit-Inc.' => 'CalDigit, Inc.',
+ 'Espia-Srl' => 'Espia Srl',
+ 'Spectracom-Corporation' => 'Spectracom Corporation',
+ 'Spin-Master-Ltd.' => 'Spin Master Ltd.',
+ 'Google-Inc.' => 'Google, Inc.',
+ 'Silicon-Software-GmbH' => 'Silicon Software GmbH',
+ 'Wolfson-Microelectronics' => 'Wolfson Microelectronics',
+ 'Fusion-io' => 'Fusion-io',
+ 'Caustic-Graphics-Inc.' => 'Caustic Graphics Inc.',
+ 'Netezza-Corp.' => 'Netezza Corp.',
+ 'J---W-Electronics-Co.-Ltd.' => 'J & W Electronics Co., Ltd.',
+ 'Magnum-Semiconductor-Inc' => 'Magnum Semiconductor, Inc,',
+ 'Jaton-Corp' => 'Jaton Corp',
+ 'K-F-Computing-Research-Co.' => 'K&F Computing Research Co.',
+ 'Red-Hat-Inc.' => 'Red Hat, Inc.',
+ 'Westar-Display-Technologies' => 'Westar Display Technologies',
+ 'Teradata-Corp.' => 'Teradata Corp.',
+ 'Marvell-Technology-Group-Ltd.' => 'Marvell Technology Group Ltd.',
+ 'NetUP-Inc.' => 'NetUP Inc.',
+ 'Fresco-Logic' => 'Fresco Logic',
+ 'ReFLEX-CES' => 'ReFLEX CES',
+ 'Bluecherry' => 'Bluecherry',
+ 'VTI-Instruments-Corporation' => 'VTI Instruments Corporation',
+ 'Symphony' => 'Symphony',
+ 'DPT' => 'DPT',
+ 'Tekram-Technology-Co.Ltd.' => 'Tekram Technology Co.,Ltd.',
+ 'Tehuti-Networks-Ltd.' => 'Tehuti Networks Ltd.',
+ 'Cognio-Inc.' => 'Cognio Inc.',
+ 'SUNIX-Co.-Ltd.' => 'SUNIX Co., Ltd.',
+ 'Smart-Link-Ltd.' => 'Smart Link Ltd.',
+ 'Temporal-Research-Ltd' => 'Temporal Research Ltd',
+ 'Smart-Link-Ltd.' => 'Smart Link Ltd.',
+ 'Smart-Link-Ltd.' => 'Smart Link Ltd.',
+ 'ZyDAS-Technology-Corp.' => 'ZyDAS Technology Corp.',
+ '21st-Century-Computer-Corp.' => '21st Century Computer Corp.',
+ 'Racore' => 'Racore',
+ 'Kingston-Technologies' => 'Kingston Technologies',
+ 'Xantel-Corporation' => 'Xantel Corporation',
+ 'Chaintech-Computer-Co.-Ltd' => 'Chaintech Computer Co. Ltd',
+ 'AVID-Technology-Inc.' => 'AVID Technology Inc.',
+ '82q35-Express-MEI-Controller' => '82q35 Express MEI Controller',
+ '3D-Vision---' => '3D Vision(???)',
+ 'Hansol-Electronics-Inc.' => 'Hansol Electronics Inc.',
+ 'Post-Impression-Systems.' => 'Post Impression Systems.',
+ 'Hint-Corp' => 'Hint Corp',
+ 'Quantum-Designs-H.K.-Inc' => 'Quantum Designs (H.K.) Inc',
+ 'Bihl+Wiedemann-GmbH' => 'Bihl+Wiedemann GmbH',
+ 'Arastra-Inc.' => 'Arastra Inc.',
+ 'ARCOM-Control-Systems-Ltd' => 'ARCOM Control Systems Ltd',
+ 'eVga.com.-Corp.' => 'eVga.com. Corp.',
+ '4Links' => '4Links',
+ '3DLabs' => '3DLabs',
+ 'Avance-Logic-Inc.' => 'Avance Logic Inc.',
+ 'Addtron-Technology-Co-Inc.' => 'Addtron Technology Co, Inc.',
+ 'NetXen-Incorporated' => 'NetXen Incorporated',
+ 'Digital-Equipment-Corp' => 'Digital Equipment Corp',
+ 'Alpha-Data' => 'Alpha Data',
+ 'ONA-Electroerosion' => 'ONA Electroerosion',
+ 'Auzentech-Inc.' => 'Auzentech, Inc.',
+ 'Aladdin-Knowledge-Systems' => 'Aladdin Knowledge Systems',
+ 'CAST-Navigation-LLC' => 'CAST Navigation LLC',
+ 'Internext-Compression-Inc' => 'Internext Compression Inc',
+ 'Bridgeport-machines' => 'Bridgeport machines',
+ 'Cogetec-Informatique-Inc' => 'Cogetec Informatique Inc',
+ 'Baldor-Electric-Company' => 'Baldor Electric Company',
+ 'Umax-Computer-Corp' => 'Umax Computer Corp',
+ 'RedCreek-Communications-Inc' => 'RedCreek Communications Inc',
+ 'Growth-Networks' => 'Growth Networks',
+ 'ACCES-I-O-Products-Inc.' => 'ACCES I/O Products, Inc.',
+ 'Axil-Computer-Inc' => 'Axil Computer Inc',
+ 'NetVin' => 'NetVin',
+ 'Buslogic-Inc.' => 'Buslogic Inc.',
+ 'LUNG-HWA-Electronics' => 'LUNG HWA Electronics',
+ 'SBS-Technologies' => 'SBS Technologies',
+ 'Seanix-Technology-Inc' => 'Seanix Technology Inc',
+ 'MediaQ-Inc.' => 'MediaQ Inc.',
+ 'Microtechnica-Co-Ltd' => 'Microtechnica Co Ltd',
+ 'MATRIX-VISION-GmbH' => 'MATRIX VISION GmbH',
+ 'ILC-Data-Device-Corp' => 'ILC Data Device Corp',
+ 'University-of-Toronto' => 'University of Toronto',
+ 'GemTek-Technology-Corporation' => 'GemTek Technology Corporation',
+ 'Voyetra-Technologies' => 'Voyetra Technologies',
+ 'TerraTec-Electronic-GmbH' => 'TerraTec Electronic GmbH',
+ 'S-S-Technologies' => 'S S Technologies',
+ 'Qualcomm-Inc' => 'Qualcomm Inc',
+ 'Ensoniq-Old' => 'Ensoniq (Old)',
+ 'Animation-Technologies-Inc.' => 'Animation Technologies Inc.',
+ 'Alliance-Semiconductor-Corp.' => 'Alliance Semiconductor Corp.',
+ 'S3-Inc.' => 'S3 Inc.',
+ 'AuzenTech-Inc.' => 'AuzenTech, Inc.',
+ 'Teralogic-Inc' => 'Teralogic Inc',
+ 'Technische-University-Berlin' => 'Technische University Berlin',
+ 'GoTView' => 'GoTView',
+ 'Cnet-Technologies-Inc.' => 'Cnet Technologies, Inc.',
+ 'Dunord-Technologies' => 'Dunord Technologies',
+ 'Genroco-Inc' => 'Genroco, Inc',
+ 'Vector-Fabrics-BV' => 'Vector Fabrics BV',
+ 'VoiceTronix-Pty-Ltd' => 'VoiceTronix Pty Ltd',
+ 'Netpower' => 'Netpower',
+ 'AuzenTech-Co.-Ltd.' => 'AuzenTech Co., Ltd.',
+ 'Exacq-Technologies' => 'Exacq Technologies',
+ 'XenSource-Inc.' => 'XenSource, Inc.',
+ 'Beholder-International-Ltd.' => 'Beholder International Ltd.',
+ 'SmartInfra-Ltd' => 'SmartInfra Ltd',
+ 'UltraStor' => 'UltraStor',
+ 'Logitec-Corp.' => 'Logitec Corp.',
+ 'Teradici-Corp.' => 'Teradici Corp.',
+ 'Red-Hat-Inc. nee-Qumranet' => 'Red Hat, Inc. nee Qumranet',
+ 'pcHDTV' => 'pcHDTV',
+ 'HT-OMEGA-Inc.' => 'HT OMEGA Inc.',
+ 'O.N.-Electronic-Co-Ltd.' => 'O.N. Electronic Co Ltd.',
+ 'MIDAC-Corporation' => 'MIDAC Corporation',
+ 'PowerTV' => 'PowerTV',
+ 'Quancom-Electronic-GmbH' => 'Quancom Electronic GmbH',
+ 'Intel-Corporation' => 'Intel Corporation',
+ 'InnoTek-Systemberatung-GmbH' => 'InnoTek Systemberatung GmbH',
+ 'Sodick-America-Corp.' => 'Sodick America Corp.',
+ 'SigmaTel' => 'SigmaTel',
+ 'TRENDware-International-Inc.' => 'TRENDware International Inc.',
+ 'ScaleMP' => 'ScaleMP',
+ 'Trigem-Computer-Inc.' => 'Trigem Computer Inc.',
+ 'T-Square-Design-Inc.' => 'T-Square Design Inc.',
+ 'Silicon-Magic' => 'Silicon Magic',
+ 'TRX' => 'TRX',
+ 'Computone-Corporation' => 'Computone Corporation',
+ 'KTI' => 'KTI',
+ 'Adaptec' => 'Adaptec',
+ 'Adaptec' => 'Adaptec',
+ 'Atronics' => 'Atronics',
+ 'Gigapixel-Corp' => 'Gigapixel Corp',
+ 'Holtek' => 'Holtek',
+ 'Omni-Media-Technology-Inc' => 'Omni Media Technology Inc',
+ 'NetMos-Technology' => 'NetMos Technology',
+ 'Stargen-Inc.' => 'Stargen Inc.',
+ 'AOPEN-Inc.' => 'AOPEN Inc.',
+ 'UNISYS-Corporation' => 'UNISYS Corporation',
+ 'NEC-Corporation' => 'NEC Corporation',
+ 'Hewlett-Packard' => 'Hewlett Packard',
+ 'Hewlett-Packard-GmbH-PL24-MKT' => 'Hewlett Packard GmbH PL24-MKT',
+ 'Sony' => 'Sony',
+ '3Com-Corporation' => '3Com Corporation',
+ 'Scitex-Digital-Video' => 'Scitex Digital Video',
+ 'Ncomputing-X300-PCI-Engine' => 'Ncomputing X300 PCI-Engine',
+ 'Adnaco-Technology-Inc.' => 'Adnaco Technology Inc.',
+ 'Vadatech-Inc.' => 'Vadatech Inc.',
+ 'Actuality-Systems' => 'Actuality Systems',
+ 'Alta-Data-Technologies-LLC' => 'Alta Data Technologies LLC',
+ 'Shiva-Europe-Limited' => 'Shiva Europe Limited',
+ 'Blackmagic-Design' => 'Blackmagic Design',
+ 'TSI-Telsys' => 'TSI Telsys',
+ 'Micron-Crucial-Technology' => 'Micron/Crucial Technology',
+ 'Motorola' => 'Motorola',
+ 'Motion-Engineering-Inc.' => 'Motion Engineering, Inc.',
+ 'Varian-Australia-Pty-Ltd' => 'Varian Australia Pty Ltd',
+ 'CACE-Technologies-Inc.' => 'CACE Technologies, Inc.',
+ 'Chrysalis-ITS' => 'Chrysalis-ITS',
+ 'Catapult-Communications' => 'Catapult Communications',
+ 'Tyzx-Inc.' => 'Tyzx, Inc.',
+ 'KEBA-AG' => 'KEBA AG',
+ 'Digium-Inc.' => 'Digium, Inc.',
+ 'Dy4-Systems-Inc' => 'Dy4 Systems Inc',
+ 'I+ME-ACTIA-GmbH' => 'I+ME ACTIA GmbH',
+ 'Exsys' => 'Exsys',
+ 'Diablo-Technologies' => 'Diablo Technologies',
+ 'Indigita-Corporation' => 'Indigita Corporation',
+ 'Middle-Digital-Inc.' => 'Middle Digital Inc.',
+ 'SoftHard-Technology-Ltd.' => 'SoftHard Technology Ltd.',
+ 'Winbond' => 'Winbond',
+ 'Tiger-Jet-Network-Inc.' => 'Tiger Jet Network Inc.',
+ 'EKF-Elektronik-GmbH' => 'EKF Elektronik GmbH',
+ 'Essence-Technology-Inc.' => 'Essence Technology, Inc.',
+ 'Eagle-Technology' => 'Eagle Technology',
+ 'Aashima-Technology-B.V.' => 'Aashima Technology B.V.',
+ 'Belkin-Corporation' => 'Belkin Corporation',
+ 'ARK-Logic-Inc' => 'ARK Logic Inc',
+ 'AJA-Video' => 'AJA Video',
+ 'F5-Networks-Inc.' => 'F5 Networks, Inc.',
+ 'Interagon-AS' => 'Interagon AS',
+ 'Fabric7-Systems-Inc.' => 'Fabric7 Systems, Inc.',
+ 'Ultraview-Corp.' => 'Ultraview Corp.',
+ 'Broadcom-Inc Nee-Epigram' => 'Broadcom Inc Nee Epigram',
+ 'Fedetec-Inc.' => 'Fedetec Inc.',
+ 'XenSource-Inc.' => 'XenSource, Inc.',
+ 'Frys-Electronics' => 'Frys Electronics',
+ 'Ingram' => 'Ingram',
+ 'Club-Mac' => 'Club Mac',
+ 'Nebraska-Furniture-Mart' => 'Nebraska Furniture Mart',
+ 'Planex' => 'Planex',
+ 'DragonRise-Inc.' => 'DragonRise Inc.',
+ 'Trust-International-B.V.' => 'Trust International B.V.',
+ 'Unknown' => 'Unknown',
+ 'LW154-Wireless-150N-Adapter' => 'LW154 Wireless 150N Adapter',
+ 'Hangzhou-Worlde' => 'Hangzhou Worlde',
+ 'HUMAX-Co.-Ltd.' => 'HUMAX Co., Ltd.',
+ 'MM300-eBook-Reader' => 'MM300 eBook Reader',
+ 'OCZ-Technology-Inc' => 'OCZ Technology Inc',
+ 'OCZ-Technology-Inc' => 'OCZ Technology Inc',
+ 'LTS' => 'LTS',
+ 'EndPoints-Inc.' => 'EndPoints, Inc.',
+ 'Thesys-Microelectronics' => 'Thesys Microelectronics',
+ 'Data-Broadcasting-Corp.' => 'Data Broadcasting Corp.',
+ 'Atmel-Corp.' => 'Atmel Corp.',
+ 'Iwatsu-America-Inc.' => 'Iwatsu America, Inc.',
+ 'Mitel-Corp.' => 'Mitel Corp.',
+ 'Mitsumi' => 'Mitsumi',
+ 'Hewlett-Packard' => 'Hewlett-Packard',
+ 'Genoa-Technology' => 'Genoa Technology',
+ 'Oak-Technology-Inc.' => 'Oak Technology, Inc.',
+ 'Adaptec-Inc.' => 'Adaptec, Inc.',
+ 'Diebold-Inc.' => 'Diebold, Inc.',
+ 'Siemens-Electromechanical' => 'Siemens Electromechanical',
+ 'KeyTronic-Corp.' => 'KeyTronic Corp.',
+ 'OPTi-Inc.' => 'OPTi, Inc.',
+ 'Elitegroup-Computer-Systems' => 'Elitegroup Computer Systems',
+ 'Xilinx-Inc.' => 'Xilinx, Inc.',
+ 'Farallon-Comunications' => 'Farallon Comunications',
+ 'National-Semiconductor-Corp.' => 'National Semiconductor Corp.',
+ 'National-Registry-Inc.' => 'National Registry, Inc.',
+ 'ALi-Corp.' => 'ALi Corp.',
+ 'NCR-Corp.' => 'NCR Corp.',
+ 'Synopsys-Inc.' => 'Synopsys, Inc.',
+ 'Fujitsu-ICL-Computers' => 'Fujitsu-ICL Computers',
+ 'Quanta-Computer-Inc.' => 'Quanta Computer, Inc.',
+ 'NEC-Corp.' => 'NEC Corp.',
+ 'Kodak-Co.' => 'Kodak Co.',
+ 'Weltrend-Semiconductor' => 'Weltrend Semiconductor',
+ 'VTech-Computers-Ltd' => 'VTech Computers, Ltd',
+ 'VIA-Technologies-Inc.' => 'VIA Technologies, Inc.',
+ 'MCCI' => 'MCCI',
+ 'Echo-Speech-Corp.' => 'Echo Speech Corp.',
+ 'Award-Software-International' => 'Award Software International',
+ 'Leadtek-Research-Inc.' => 'Leadtek Research, Inc.',
+ 'Giga-Byte-Technology-Co.-Ltd' => 'Giga-Byte Technology Co., Ltd',
+ 'Winbond-Electronics-Corp.' => 'Winbond Electronics Corp.',
+ 'Symbios-Logic' => 'Symbios Logic',
+ 'AST-Research' => 'AST Research',
+ 'Phoenix-Technologies-Ltd' => 'Phoenix Technologies, Ltd',
+ 'dTV' => 'dTV',
+ 'S3-Inc.' => 'S3, Inc.',
+ 'Creative-Technology-Ltd' => 'Creative Technology, Ltd',
+ 'LCS-Telegraphics' => 'LCS Telegraphics',
+ 'Chips-and-Technologies' => 'Chips and Technologies',
+ 'Nokia-Mobile-Phones' => 'Nokia Mobile Phones',
+ 'ADI-Systems-Inc.' => 'ADI Systems, Inc.',
+ 'Standard-Microsystems-Corp.' => 'Standard Microsystems Corp.',
+ 'Cirrus-Logic' => 'Cirrus Logic',
+ 'Ericsson-Austrian-AG' => 'Ericsson Austrian, AG',
+ 'Intel-Corp.' => 'Intel Corp.',
+ 'Micronics' => 'Micronics',
+ 'Acer-Inc.' => 'Acer, Inc.',
+ 'Molex-Inc.' => 'Molex, Inc.',
+ 'Sun-Microsystems-Inc.' => 'Sun Microsystems, Inc.',
+ 'Itac-Systems-Inc.' => 'Itac Systems, Inc.',
+ 'Unisys-Corp.' => 'Unisys Corp.',
+ 'Alps-Electric-Inc.' => 'Alps Electric, Inc.',
+ 'Hyundai-Electronics-America' => 'Hyundai Electronics America',
+ 'Taugagreining-HF' => 'Taugagreining HF',
+ 'Framatome-Connectors-USA' => 'Framatome Connectors USA',
+ 'Advanced-Micro-Devices-Inc.' => 'Advanced Micro Devices, Inc.',
+ 'Voice-Technologies-Group' => 'Voice Technologies Group',
+ 'Lexmark-International-Inc.' => 'Lexmark International, Inc.',
+ 'LG-Electronics-USA-Inc.' => 'LG Electronics USA, Inc.',
+ 'RadiSys-Corp.' => 'RadiSys Corp.',
+ 'Eizo-Nanao-Corp.' => 'Eizo Nanao Corp.',
+ 'Winbond-Systems-Lab.' => 'Winbond Systems Lab.',
+ 'Ericsson-Inc.' => 'Ericsson, Inc.',
+ 'Gateway-Inc.' => 'Gateway, Inc.',
+ 'Lucent-Technologies-Inc.' => 'Lucent Technologies, Inc.',
+ 'NMB-Technologies-Corp.' => 'NMB Technologies Corp.',
+ 'Momentum-Microsystems' => 'Momentum Microsystems',
+ 'Shamrock-Tech.-Co.-Ltd' => 'Shamrock Tech. Co., Ltd',
+ 'WSI' => 'WSI',
+ 'CCL-ITRI' => 'CCL/ITRI',
+ 'Siemens-Nixdorf-AG' => 'Siemens Nixdorf AG',
+ 'Alps-Electric-Co.-Ltd' => 'Alps Electric Co., Ltd',
+ 'ThrustMaster-Inc.' => 'ThrustMaster, Inc.',
+ 'DFI-Inc.' => 'DFI, Inc.',
+ 'Texas-Instruments-Inc.' => 'Texas Instruments, Inc.',
+ 'CMD-Technology' => 'CMD Technology',
+ 'Vobis-Microcomputer-AG' => 'Vobis Microcomputer AG',
+ 'Analog-Devices-Inc.' => 'Analog Devices, Inc.',
+ 'Adobe-Systems-Inc.' => 'Adobe Systems, Inc.',
+ 'SONICblue-Inc.' => 'SONICblue, Inc.',
+ 'Hitachi-Ltd' => 'Hitachi, Ltd',
+ 'Nortel-Networks-Ltd' => 'Nortel Networks, Ltd',
+ 'Microsoft-Corp.' => 'Microsoft Corp.',
+ 'Ace-Cad-Enterprise-Co.-Ltd' => 'Ace Cad Enterprise Co., Ltd',
+ 'Primax-Electronics-Ltd' => 'Primax Electronics, Ltd',
+ 'MGE-UPS-Systems' => 'MGE UPS Systems',
+ 'AMP-Tycoelectronics-Corp.' => 'AMP/Tycoelectronics Corp.',
+ 'AT-T-Paradyne' => 'AT&T Paradyne',
+ 'Wieson-Technologies-Co.-Ltd' => 'Wieson Technologies Co., Ltd',
+ 'Cherry-GmbH' => 'Cherry GmbH',
+ 'American-Megatrends-Inc.' => 'American Megatrends, Inc.',
+ 'Logitech-Inc.' => 'Logitech, Inc.',
+ 'Behavior-Tech.-Computer-Corp.' => 'Behavior Tech. Computer Corp.',
+ 'Crystal-Semiconductor' => 'Crystal Semiconductor',
+ 'Philips-or-NXP' => 'Philips (or NXP)',
+ 'Chicony-Electronics-Co.-Ltd' => 'Chicony Electronics Co., Ltd',
+ 'Sanyo-Electric-Co.-Ltd' => 'Sanyo Electric Co., Ltd',
+ 'AESP' => 'AESP',
+ 'Seagate-Technology-Inc.' => 'Seagate Technology, Inc.',
+ 'Connectix-Corp.' => 'Connectix Corp.',
+ 'Semtech-Corp.' => 'Semtech Corp.',
+ 'Silitek-Corp.' => 'Silitek Corp.',
+ 'Dell-Computer-Corp.' => 'Dell Computer Corp.',
+ 'Kensington' => 'Kensington',
+ 'Agere-Systems-Inc.-Lucent' => 'Agere Systems, Inc. (Lucent)',
+ 'Plantronics-Inc.' => 'Plantronics, Inc.',
+ 'Zenith-Data-Systems' => 'Zenith Data Systems',
+ 'Kyocera-Corp.' => 'Kyocera Corp.',
+ 'SGS-Thomson-Microelectronics' => 'SGS Thomson Microelectronics',
+ 'Specialix' => 'Specialix',
+ 'Nokia-Monitors' => 'Nokia Monitors',
+ 'ASUS-Computers-Inc.' => 'ASUS Computers, Inc.',
+ 'Stewart-Connector' => 'Stewart Connector',
+ 'Cirque-Corp.' => 'Cirque Corp.',
+ 'Foxconn---Hon-Hai' => 'Foxconn / Hon Hai',
+ 'S-MOS-Systems-Inc.' => 'S-MOS Systems, Inc.',
+ 'Alps-Electric-Ireland-Ltd' => 'Alps Electric Ireland, Ltd',
+ 'Eicon-Tech.' => 'Eicon Tech.',
+ 'United-Microelectronics-Corp.' => 'United Microelectronics Corp.',
+ 'Capetronic' => 'Capetronic',
+ 'Samsung-SemiConductor-Inc.' => 'Samsung SemiConductor, Inc.',
+ 'MAG-Technology-Co.-Ltd' => 'MAG Technology Co., Ltd',
+ 'ESS-Technology-Inc.' => 'ESS Technology, Inc.',
+ 'Micron-Electronics' => 'Micron Electronics',
+ 'Smile-International' => 'Smile International',
+ 'Capetronic-Kaohsiung-Corp.' => 'Capetronic (Kaohsiung) Corp.',
+ 'Yamaha-Corp.' => 'Yamaha Corp.',
+ 'Gandalf-Technologies-Ltd' => 'Gandalf Technologies, Ltd',
+ 'Curtis-Computer-Products' => 'Curtis Computer Products',
+ 'Acer-Advanced-Labs-Inc.' => 'Acer Advanced Labs, Inc.',
+ 'VLSI-Technology' => 'VLSI Technology',
+ 'Compaq-Computer-Corp.' => 'Compaq Computer Corp.',
+ 'Digital-Equipment-Corp.' => 'Digital Equipment Corp.',
+ 'SystemSoft-Corp.' => 'SystemSoft Corp.',
+ 'FirePower-Systems' => 'FirePower Systems',
+ 'Trident-Microsystems-Inc.' => 'Trident Microsystems, Inc.',
+ 'Hitachi-Ltd' => 'Hitachi, Ltd',
+ 'Nokia-Display-Products' => 'Nokia Display Products',
+ 'Visioneer' => 'Visioneer',
+ 'Multivideo-Labs-Inc.' => 'Multivideo Labs, Inc.',
+ 'Canon-Inc.' => 'Canon, Inc.',
+ 'DaeWoo-Telecom-Ltd' => 'DaeWoo Telecom, Ltd',
+ 'Chromatic-Research' => 'Chromatic Research',
+ 'Micro-Audiometrics-Corp.' => 'Micro Audiometrics Corp.',
+ 'Dooin-Electronics' => 'Dooin Electronics',
+ 'Winnov-L.P.' => 'Winnov L.P.',
+ 'Nikon-Corp.' => 'Nikon Corp.',
+ 'Pan-International' => 'Pan International',
+ 'IBM-Corp.' => 'IBM Corp.',
+ 'Cypress-Semiconductor-Corp.' => 'Cypress Semiconductor Corp.',
+ 'ROHM-LSI-Systems-USA-LLC' => 'ROHM LSI Systems USA, LLC',
+ 'Hint-Corp.' => 'Hint Corp.',
+ 'Compal-Electronics-Inc.' => 'Compal Electronics, Inc.',
+ 'Seiko-Epson-Corp.' => 'Seiko Epson Corp.',
+ 'Rainbow-Technologies-Inc.' => 'Rainbow Technologies, Inc.',
+ 'Toucan-Systems-Ltd' => 'Toucan Systems, Ltd',
+ 'I-O-Data-Device-Inc.' => 'I-O Data Device, Inc.',
+ 'Telia-Research-AB' => 'Telia Research AB',
+ 'TDK-Corp.' => 'TDK Corp.',
+ 'U.S.-Robotics-3Com' => 'U.S. Robotics (3Com)',
+ 'Maxi-Switch-Inc.' => 'Maxi Switch, Inc.',
+ 'Fujitsu-Ltd' => 'Fujitsu, Ltd',
+ 'Micro-Macro-Technologies' => 'Micro Macro Technologies',
+ 'Konica-Corp.' => 'Konica Corp.',
+ 'Lite-On-Technology-Corp.' => 'Lite-On Technology Corp.',
+ 'Fuji-Photo-Film-Co.-Ltd' => 'Fuji Photo Film Co., Ltd',
+ 'ST-Ericsson' => 'ST-Ericsson',
+ 'Tatung-Co.-Of-America' => 'Tatung Co. Of America',
+ 'ScanLogic-Corp.' => 'ScanLogic Corp.',
+ 'Myson-Century-Inc.' => 'Myson Century, Inc.',
+ 'Digi-International' => 'Digi International',
+ 'ITT-Canon' => 'ITT Canon',
+ 'Altec-Lansing-Technologies' => 'Altec Lansing Technologies',
+ 'VidUS-Inc.' => 'VidUS, Inc.',
+ 'LSI-Logic-Inc.' => 'LSI Logic, Inc.',
+ 'Forte-Technologies-Inc.' => 'Forte Technologies, Inc.',
+ 'Mentor-Graphics' => 'Mentor Graphics',
+ 'Oki-Semiconductor' => 'Oki Semiconductor',
+ 'Microchip-Technology-Inc.' => 'Microchip Technology, Inc.',
+ 'Holtek-Semiconductor-Inc.' => 'Holtek Semiconductor, Inc.',
+ 'Panasonic-Matsushita' => 'Panasonic (Matsushita)',
+ 'Hypertec-Pty-Ltd' => 'Hypertec Pty, Ltd',
+ 'Huan-Hsin-Holdings-Ltd' => 'Huan Hsin Holdings, Ltd',
+ 'Sharp-Corp.' => 'Sharp Corp.',
+ 'MindShare-Inc.' => 'MindShare, Inc.',
+ 'Interlink-Electronics' => 'Interlink Electronics',
+ 'Iiyama-North-America-Inc.' => 'Iiyama North America, Inc.',
+ 'Exar-Corp.' => 'Exar Corp.',
+ 'Zilog-Inc.' => 'Zilog, Inc.',
+ 'ACC-Microelectronics' => 'ACC Microelectronics',
+ 'Promise-Technology' => 'Promise Technology',
+ 'SCM-Microsystems-Inc.' => 'SCM Microsystems, Inc.',
+ 'Elo-TouchSystems' => 'Elo TouchSystems',
+ 'Samsung-Electronics-Co.-Ltd' => 'Samsung Electronics Co., Ltd',
+ 'PC-Tel-Inc.' => 'PC-Tel, Inc.',
+ 'Brooktree-Corp.' => 'Brooktree Corp.',
+ 'Northstar-Systems-Inc.' => 'Northstar Systems, Inc.',
+ 'Tokyo-Electron-Device-Ltd' => 'Tokyo Electron Device, Ltd',
+ 'Annabooks' => 'Annabooks',
+ 'Daewoo-Electronics-Co.-Ltd' => 'Daewoo Electronics Co., Ltd',
+ 'Victor-Company-of-Japan-Ltd' => 'Victor Company of Japan, Ltd',
+ 'Chicony-Electronics-Co.-Ltd' => 'Chicony Electronics Co., Ltd',
+ 'Elan-Microelectronics-Corp.' => 'Elan Microelectronics Corp.',
+ 'Harting-Elektronik-Inc.' => 'Harting Elektronik, Inc.',
+ 'Fujitsu-ICL-Systems-Inc.' => 'Fujitsu-ICL Systems, Inc.',
+ 'Norand-Corp.' => 'Norand Corp.',
+ 'Newnex-Technology-Corp.' => 'Newnex Technology Corp.',
+ 'FuturePlus-Systems' => 'FuturePlus Systems',
+ 'Brother-Industries-Ltd' => 'Brother Industries, Ltd',
+ 'Dallas-Semiconductor' => 'Dallas Semiconductor',
+ 'Sunplus-Technology-Co.-Ltd' => 'Sunplus Technology Co., Ltd',
+ 'Soliton-Systems-K.K.' => 'Soliton Systems, K.K.',
+ 'PFU-Ltd' => 'PFU, Ltd',
+ 'E-CMOS-Corp.' => 'E-CMOS Corp.',
+ 'Siam-United-Hi-Tech' => 'Siam United Hi-Tech',
+ 'Fujikura-DDK-Ltd' => 'Fujikura DDK, Ltd',
+ 'Acer-Inc.' => 'Acer, Inc.',
+ 'Hitachi-America-Ltd' => 'Hitachi America, Ltd',
+ 'Hayes-Microcomputer-Products' => 'Hayes Microcomputer Products',
+ '3Com-Corp.' => '3Com Corp.',
+ 'Hosiden-Corp.' => 'Hosiden Corp.',
+ 'Clarion-Co.-Ltd' => 'Clarion Co., Ltd',
+ 'Aztech-Systems-Ltd' => 'Aztech Systems, Ltd',
+ 'Cinch-Connectors' => 'Cinch Connectors',
+ 'Cable-System-International' => 'Cable System International',
+ 'InnoMedia-Inc.' => 'InnoMedia, Inc.',
+ 'Belkin-Components' => 'Belkin Components',
+ 'Neon-Technology-Inc.' => 'Neon Technology, Inc.',
+ 'KC-Technology-Inc.' => 'KC Technology, Inc.',
+ 'Sejin-Electron-Inc.' => 'Sejin Electron, Inc.',
+ 'Hualon-Microelectronics-Corp.' => 'Hualon Microelectronics Corp.',
+ 'digital-X-Inc.' => 'digital-X, Inc.',
+ 'FCI-Electronics' => 'FCI Electronics',
+ 'ACTC' => 'ACTC',
+ 'Longwell-Electronics' => 'Longwell Electronics',
+ 'Butterfly-Communications' => 'Butterfly Communications',
+ 'EzKEY-Corp.' => 'EzKEY Corp.',
+ 'Star-Micronics-Co.-Ltd' => 'Star Micronics Co., Ltd',
+ 'WYSE-Technology' => 'WYSE Technology',
+ 'Silicon-Graphics' => 'Silicon Graphics',
+ 'Shuttle-Inc.' => 'Shuttle, Inc.',
+ 'American-Power-Conversion' => 'American Power Conversion',
+ 'Scientific-Atlanta-Inc.' => 'Scientific Atlanta, Inc.',
+ 'Airborn-Connectors' => 'Airborn Connectors',
+ 'Advanced-Connectek-Inc.' => 'Advanced Connectek, Inc.',
+ 'ATEN-GmbH' => 'ATEN GmbH',
+ 'Sola-Electronics' => 'Sola Electronics',
+ 'Netchip-Technology-Inc.' => 'Netchip Technology, Inc.',
+ 'Temic-MHS-S.A.' => 'Temic MHS S.A.',
+ 'ALTRA' => 'ALTRA',
+ 'ATI-Technologies-Inc.' => 'ATI Technologies, Inc.',
+ 'Aladdin-Knowledge-Systems' => 'Aladdin Knowledge Systems',
+ 'Crescent-Heart-Software' => 'Crescent Heart Software',
+ 'Tekom-Technologies-Inc.' => 'Tekom Technologies, Inc.',
+ 'Avid-Electronics-Corp.' => 'Avid Electronics Corp.',
+ 'Standard-Microsystems-Corp.' => 'Standard Microsystems Corp.',
+ 'Unicore-Software-Inc.' => 'Unicore Software, Inc.',
+ 'American-Microsystems-Inc.' => 'American Microsystems, Inc.',
+ 'Wacom-Technology-Corp.' => 'Wacom Technology Corp.',
+ 'Systech-Corp.' => 'Systech Corp.',
+ 'Alcatel-Mobile-Phones' => 'Alcatel Mobile Phones',
+ 'Motorola-Inc.' => 'Motorola, Inc.',
+ 'LIH-TZU-Electric-Co.-Ltd' => 'LIH TZU Electric Co., Ltd',
+ 'Inventec-Corp.' => 'Inventec Corp.',
+ 'Shyh-Shiun-Terminals-Co.-Ltd' => 'Shyh Shiun Terminals Co., Ltd',
+ 'PrehKeyTec-GmbH' => 'PrehKeyTec GmbH',
+ 'Global-Village-Communication' => 'Global Village Communication',
+ 'Silicon-Architect' => 'Silicon Architect',
+ 'Mobility-Electronics' => 'Mobility Electronics',
+ 'Synopsys-Inc.' => 'Synopsys, Inc.',
+ 'UniAccess-AB' => 'UniAccess AB',
+ 'Sirf-Technology-Inc.' => 'Sirf Technology, Inc.',
+ 'ViewSonic-Corp.' => 'ViewSonic Corp.',
+ 'Cristie-Electronics-Ltd' => 'Cristie Electronics, Ltd',
+ 'Xirlink-Inc.' => 'Xirlink, Inc.',
+ 'Polaroid-Corp.' => 'Polaroid Corp.',
+ 'Anchor-Chips-Inc.' => 'Anchor Chips, Inc.',
+ 'Tyan-Computer-Corp.' => 'Tyan Computer Corp.',
+ 'Pixera-Corp.' => 'Pixera Corp.',
+ 'New-Media-Corp.' => 'New Media Corp.',
+ 'Sony-Corp.' => 'Sony Corp.',
+ 'Try-Corp.' => 'Try Corp.',
+ 'Proside-Corp.' => 'Proside Corp.',
+ 'WYSE-Technology-Taiwan' => 'WYSE Technology Taiwan',
+ 'Fuji-Xerox-Co.-Ltd' => 'Fuji Xerox Co., Ltd',
+ 'CompuTrend-Systems-Inc.' => 'CompuTrend Systems, Inc.',
+ 'Philips-Monitors' => 'Philips Monitors',
+ 'Dictaphone-Corp.' => 'Dictaphone Corp.',
+ 'ANAM-S-T-Co.-Ltd' => 'ANAM S&T Co., Ltd',
+ 'ATEN-International-Co.-Ltd' => 'ATEN International Co., Ltd',
+ 'Truevision-Inc.' => 'Truevision, Inc.',
+ 'Cadence-Design-Systems-Inc.' => 'Cadence Design Systems, Inc.',
+ 'Kenwood-USA' => 'Kenwood USA',
+ 'KnowledgeTek-Inc.' => 'KnowledgeTek, Inc.',
+ 'Proton-Electronic-Ind.' => 'Proton Electronic Ind.',
+ 'Samsung-Electro-Mechanics-Co.' => 'Samsung Electro-Mechanics Co.',
+ 'CTX-Opto-Electronics-Corp.' => 'CTX Opto-Electronics Corp.',
+ 'Mustek-Systems-Inc.' => 'Mustek Systems, Inc.',
+ 'Interface-Corp.' => 'Interface Corp.',
+ 'Oasis-Design-Inc.' => 'Oasis Design, Inc.',
+ 'Telex-Communications-Inc.' => 'Telex Communications, Inc.',
+ 'Immersion-Corp.' => 'Immersion Corp.',
+ 'Peracom-Networks-Inc.' => 'Peracom Networks, Inc.',
+ 'Monterey-International-Corp.' => 'Monterey International Corp.',
+ 'Xyratex-International-Ltd' => 'Xyratex International, Ltd',
+ 'Quartz-Ingenierie' => 'Quartz Ingenierie',
+ 'SegaSoft' => 'SegaSoft',
+ 'Wacom-Co.-Ltd' => 'Wacom Co., Ltd',
+ 'Decicon-Inc.' => 'Decicon, Inc.',
+ 'eTEK-Labs' => 'eTEK Labs',
+ 'EIZO-Corp.' => 'EIZO Corp.',
+ 'Elecom-Co.-Ltd' => 'Elecom Co., Ltd',
+ 'Korea-Data-Systems-Co.-Ltd' => 'Korea Data Systems Co., Ltd',
+ 'Epson-America' => 'Epson America',
+ 'Interex-Inc.' => 'Interex, Inc.',
+ 'City-University-of-Hong-Kong' => 'City University of Hong Kong',
+ 'ELSA' => 'ELSA',
+ 'Intrinsix-Corp.' => 'Intrinsix Corp.',
+ 'GVC-Corp.' => 'GVC Corp.',
+ 'Samsung-Electronics-America' => 'Samsung Electronics America',
+ 'Y-E-Data-Inc.' => 'Y-E Data, Inc.',
+ 'AVM-GmbH' => 'AVM GmbH',
+ 'Shark-Multimedia-Inc.' => 'Shark Multimedia, Inc.',
+ 'Nintendo-Co.-Ltd' => 'Nintendo Co., Ltd',
+ 'QuickShot-Ltd' => 'QuickShot, Ltd',
+ 'Denron-Inc.' => 'Denron, Inc.',
+ 'Racal-Data-Group' => 'Racal Data Group',
+ 'Roland-Corp.' => 'Roland Corp.',
+ 'Padix-Co.-Ltd-Rockfire' => 'Padix Co., Ltd (Rockfire)',
+ 'RATOC-System-Inc.' => 'RATOC System, Inc.',
+ 'FlashPoint-Technology-Inc.' => 'FlashPoint Technology, Inc.',
+ 'ZyXEL-Communications-Corp.' => 'ZyXEL Communications Corp.',
+ 'Sapien-Design' => 'Sapien Design',
+ 'Victron' => 'Victron',
+ 'Nohau-Corp.' => 'Nohau Corp.',
+ 'Infineon-Technologies' => 'Infineon Technologies',
+ 'In-Focus-Systems' => 'In Focus Systems',
+ 'Micrel-Semiconductor' => 'Micrel Semiconductor',
+ 'Tripath-Technology-Inc.' => 'Tripath Technology, Inc.',
+ 'Alcor-Micro-Corp.' => 'Alcor Micro Corp.',
+ 'Omron-Corp.' => 'Omron Corp.',
+ 'Questra-Consulting' => 'Questra Consulting',
+ 'Powerware-Corp.' => 'Powerware Corp.',
+ 'Incite' => 'Incite',
+ 'Princeton-Graphic-Systems' => 'Princeton Graphic Systems',
+ 'Zoran-Microelectronics-Ltd' => 'Zoran Microelectronics, Ltd',
+ 'MicroTouch-Systems-Inc.' => 'MicroTouch Systems, Inc.',
+ 'Trisignal-Communications' => 'Trisignal Communications',
+ 'Niigata-Canotec-Co.-Inc.' => 'Niigata Canotec Co., Inc.',
+ 'Iomega-Corp.' => 'Iomega Corp.',
+ 'A-Trend-Technology-Co.-Ltd' => 'A-Trend Technology Co., Ltd',
+ 'Advanced-Input-Devices' => 'Advanced Input Devices',
+ 'Intelligent-Instrumentation' => 'Intelligent Instrumentation',
+ 'LaCie-Ltd' => 'LaCie, Ltd',
+ 'Vetronix-Corp.' => 'Vetronix Corp.',
+ 'USC-Corp.' => 'USC Corp.',
+ 'ARC-International' => 'ARC International',
+ 'Ortek-Technology-Inc.' => 'Ortek Technology, Inc.',
+ 'Sampo-Technology-Corp.' => 'Sampo Technology Corp.',
+ 'Cisco-Systems-Inc.' => 'Cisco Systems, Inc.',
+ 'Bose-Corp.' => 'Bose Corp.',
+ 'Spacetec-IMC-Corp.' => 'Spacetec IMC Corp.',
+ 'OmniVision-Technologies-Inc.' => 'OmniVision Technologies, Inc.',
+ 'Utilux-South-China-Ltd' => 'Utilux South China, Ltd',
+ 'In-System-Design' => 'In-System Design',
+ 'Apple-Inc.' => 'Apple, Inc.',
+ 'Y.C.-Cable-U.S.A.-Inc.' => 'Y.C. Cable U.S.A., Inc.',
+ 'Synopsys-Inc.' => 'Synopsys, Inc.',
+ 'Jing-Mold-Enterprise-Co.-Ltd' => 'Jing-Mold Enterprise Co., Ltd',
+ 'Fountain-Technologies-Inc.' => 'Fountain Technologies, Inc.',
+ 'LG-Semicon-Co.-Ltd' => 'LG Semicon Co., Ltd',
+ 'Dialogic-Corp.' => 'Dialogic Corp.',
+ 'Proxima-Corp.' => 'Proxima Corp.',
+ 'Medianix-Semiconductor-Inc.' => 'Medianix Semiconductor, Inc.',
+ 'Agiler-Inc.' => 'Agiler, Inc.',
+ 'Philips-Research-Laboratories' => 'Philips Research Laboratories',
+ 'DigitalPersona-Inc.' => 'DigitalPersona, Inc.',
+ 'Grey-Cell-Systems' => 'Grey Cell Systems',
+ '3G-Green-Green-Globe-Co.-Ltd' => '3G Green Green Globe Co., Ltd',
+ 'RAFI-GmbH---Co.-KG' => 'RAFI GmbH & Co. KG',
+ 'Tyco-Electronics-Raychem' => 'Tyco Electronics (Raychem)',
+ 'S---S-Research' => 'S & S Research',
+ 'Keil-Software' => 'Keil Software',
+ 'Media-Phonics-Suisse-S.A.' => 'Media Phonics (Suisse) S.A.',
+ 'Digi-International-Inc.' => 'Digi International, Inc.',
+ 'Qualcomm-Inc.' => 'Qualcomm, Inc.',
+ 'Qtronix-Corp.' => 'Qtronix Corp.',
+ 'Semtech-Corp.' => 'Semtech Corp.',
+ 'Ricoh-Co.-Ltd' => 'Ricoh Co., Ltd',
+ 'ELSA-AG' => 'ELSA AG',
+ 'Silicom-Ltd' => 'Silicom, Ltd',
+ 'sci-worx-GmbH' => 'sci-worx GmbH',
+ 'Sung-Forn-Co.-Ltd' => 'Sung Forn Co., Ltd',
+ 'GE-Medical-Systems-Lunar' => 'GE Medical Systems Lunar',
+ 'Brainboxes-Ltd' => 'Brainboxes, Ltd',
+ 'Wave-Systems-Corp.' => 'Wave Systems Corp.',
+ 'Tohoku-Ricoh-Co.-Ltd' => 'Tohoku Ricoh Co., Ltd',
+ 'Philips-Semiconductors-CICT' => 'Philips Semiconductors, CICT',
+ 'Thomas---Betts-Corp.' => 'Thomas & Betts Corp.',
+ 'Ultima-Electronics-Corp.' => 'Ultima Electronics Corp.',
+ 'Axiohm-Transaction-Solutions' => 'Axiohm Transaction Solutions',
+ 'Microtek-International-Inc.' => 'Microtek International, Inc.',
+ 'Sun-Corp.-Suntac-' => 'Sun Corp. (Suntac?)',
+ 'Lexar-Media-Inc.' => 'Lexar Media, Inc.',
+ 'Delta-Electronics-Inc.' => 'Delta Electronics, Inc.',
+ 'Silicon-Vision-Inc.' => 'Silicon Vision, Inc.',
+ 'Symbol-Technologies' => 'Symbol Technologies',
+ 'Syntek-Semiconductor-Co.-Ltd' => 'Syntek Semiconductor Co., Ltd',
+ 'ElecVision-Inc.' => 'ElecVision, Inc.',
+ 'Genesys-Logic-Inc.' => 'Genesys Logic, Inc.',
+ 'Red-Wing-Corp.' => 'Red Wing Corp.',
+ 'Fuji-Electric-Co.-Ltd' => 'Fuji Electric Co., Ltd',
+ 'Keithley-Instruments' => 'Keithley Instruments',
+ 'ICC-Inc.' => 'ICC, Inc.',
+ 'Kawasaki-LSI' => 'Kawasaki LSI',
+ 'FFC-Ltd' => 'FFC, Ltd',
+ 'COM21-Inc.' => 'COM21, Inc.',
+ 'Cytechinfo-Inc.' => 'Cytechinfo Inc.',
+ 'AVB-Inc.-anko-' => 'AVB, Inc. [anko?]',
+ 'Canopus-Co.-Ltd' => 'Canopus Co., Ltd',
+ 'Compass-Communications' => 'Compass Communications',
+ 'Dexin-Corp.-Ltd' => 'Dexin Corp., Ltd',
+ 'PI-Engineering-Inc.' => 'PI Engineering, Inc.',
+ 'Unixtar-Technology-Inc.' => 'Unixtar Technology, Inc.',
+ 'AOC-International' => 'AOC International',
+ 'RFC-Distributions-PTE-Ltd' => 'RFC Distribution(s) PTE, Ltd',
+ 'PSC-Scanning-Inc.' => 'PSC Scanning, Inc.',
+ 'Harman-Multimedia' => 'Harman Multimedia',
+ 'InterAct-Inc.' => 'InterAct, Inc.',
+ 'Chic-Technology-Corp.' => 'Chic Technology Corp.',
+ 'LeCroy-Corp.' => 'LeCroy Corp.',
+ 'Barco-Display-Systems' => 'Barco Display Systems',
+ 'Jazz-Hipster-Corp.' => 'Jazz Hipster Corp.',
+ 'Vista-Imaging-Inc.' => 'Vista Imaging, Inc.',
+ 'Jean-Co.-Ltd' => 'Jean Co., Ltd',
+ 'Anchor-C-C-Co.-Ltd' => 'Anchor C&C Co., Ltd',
+ 'Bridge-Information-Co.-Ltd' => 'Bridge Information Co., Ltd',
+ 'Genrad-Ads' => 'Genrad Ads',
+ 'SMK-Manufacturing-Inc.' => 'SMK Manufacturing, Inc.',
+ 'Solid-Year' => 'Solid Year',
+ 'EEH-Datalink-GmbH' => 'EEH Datalink GmbH',
+ 'Auctor-Corp.' => 'Auctor Corp.',
+ 'Transmonde-Technologies-Inc.' => 'Transmonde Technologies, Inc.',
+ 'Costar-Electronics-Inc.' => 'Costar Electronics, Inc.',
+ 'Totoku-Electric-Co.-Ltd' => 'Totoku Electric Co., Ltd',
+ 'TransAct-Technologies-Inc.' => 'TransAct Technologies, Inc.',
+ 'Bio-Rad-Laboratories' => 'Bio-Rad Laboratories',
+ 'MacAlly' => 'MacAlly',
+ 'Seiko-Instruments-Inc.' => 'Seiko Instruments, Inc.',
+ 'Veridicom-International-Inc.' => 'Veridicom International, Inc.',
+ 'Promptus-Communications-Inc.' => 'Promptus Communications, Inc.',
+ 'Act-Labs-Ltd' => 'Act Labs, Ltd',
+ 'Quatech-Inc.' => 'Quatech, Inc.',
+ 'Nissei-Electric-Co.' => 'Nissei Electric Co.',
+ 'Alaris-Inc.' => 'Alaris, Inc.',
+ 'Iotech-Inc.' => 'Iotech, Inc.',
+ 'Littelfuse-Inc.' => 'Littelfuse, Inc.',
+ 'Avocent-Corp.' => 'Avocent Corp.',
+ 'TiMedia-Technology-Co.-Ltd' => 'TiMedia Technology Co., Ltd',
+ 'Adomax-Technology-Co.-Ltd' => 'Adomax Technology Co., Ltd',
+ 'Tasking-Software-Inc.' => 'Tasking Software, Inc.',
+ 'Zida-Technologies-Ltd' => 'Zida Technologies, Ltd',
+ 'Creative-Labs' => 'Creative Labs',
+ 'JUJO-Electronics-Corp.' => 'JUJO Electronics Corp.',
+ 'Cyrix-Corp.' => 'Cyrix Corp.',
+ 'Micron-Technology-Inc.' => 'Micron Technology, Inc.',
+ 'Methode-Electronics-Inc.' => 'Methode Electronics, Inc.',
+ 'Sierra-Imaging-Inc.' => 'Sierra Imaging, Inc.',
+ 'Avision-Inc.' => 'Avision, Inc.',
+ 'Chrontel-Inc.' => 'Chrontel, Inc.',
+ 'Techwin-Corp.' => 'Techwin Corp.',
+ 'Taugagreining-HF' => 'Taugagreining HF',
+ 'Fong-Kai-Industrial-Co.-Ltd' => 'Fong Kai Industrial Co., Ltd',
+ 'RealMedia-Technology-Inc.' => 'RealMedia Technology, Inc.',
+ 'New-Technology-Cable-Ltd' => 'New Technology Cable, Ltd',
+ 'Hitex-Development-Tools' => 'Hitex Development Tools',
+ 'Woods-Industries-Inc.' => 'Woods Industries, Inc.',
+ 'VIA-Medical-Corp.' => 'VIA Medical Corp.',
+ 'TEAC-Corp.' => 'TEAC Corp.',
+ 'Who--Vision-Systems-Inc.' => 'Who? Vision Systems, Inc.',
+ 'UMAX' => 'UMAX',
+ 'Acton-Research-Corp.' => 'Acton Research Corp.',
+ 'Inside-Out-Networks' => 'Inside Out Networks',
+ 'Weli-Science-Co.-Ltd' => 'Weli Science Co., Ltd',
+ 'Ji-Haw-Industrial-Co.-Ltd' => 'Ji-Haw Industrial Co., Ltd',
+ 'TriTech-Microelectronics-Ltd' => 'TriTech Microelectronics, Ltd',
+ 'Suyin-Corp.' => 'Suyin Corp.',
+ 'WIBU-Systems-AG' => 'WIBU-Systems AG',
+ 'Dynapro-Systems' => 'Dynapro Systems',
+ 'Likom-Technology-Sdn.-Bhd.' => 'Likom Technology Sdn. Bhd.',
+ 'Stargate-Solutions-Inc.' => 'Stargate Solutions, Inc.',
+ 'CNF-Inc.' => 'CNF, Inc.',
+ 'Granite-Microsystems-Inc.' => 'Granite Microsystems, Inc.',
+ 'Glory-Mark-Electronic-Ltd' => 'Glory Mark Electronic, Ltd',
+ 'Tekcon-Electronics-Corp.' => 'Tekcon Electronics Corp.',
+ 'Sigma-Designs-Inc.' => 'Sigma Designs, Inc.',
+ 'Aethra' => 'Aethra',
+ 'Optoelectronics-Co.-Ltd' => 'Optoelectronics Co., Ltd',
+ 'Tracewell-Systems' => 'Tracewell Systems',
+ 'Silicon-Graphics' => 'Silicon Graphics',
+ 'Hamamatsu-Photonics-K.K.' => 'Hamamatsu Photonics K.K.',
+ 'Kansai-Electric-Co.-Ltd' => 'Kansai Electric Co., Ltd',
+ 'Topmax-Electronic-Co.-Ltd' => 'Topmax Electronic Co., Ltd',
+ 'Groovy-Technology-Corp.' => 'Groovy Technology Corp.',
+ 'Cypress-Semiconductor' => 'Cypress Semiconductor',
+ 'Aiwa-Co.-Ltd' => 'Aiwa Co., Ltd',
+ 'WordWand' => 'WordWand',
+ 'Oce-Printing-Systems-GmbH' => 'Oce Printing Systems GmbH',
+ 'Total-Technologies-Ltd' => 'Total Technologies, Ltd',
+ 'Linksys-Inc.' => 'Linksys, Inc.',
+ 'Entrega-Inc.' => 'Entrega, Inc.',
+ 'SigmaTel-Inc.' => 'SigmaTel, Inc.',
+ 'Sequel-Imaging' => 'Sequel Imaging',
+ 'Labtec-Inc.' => 'Labtec, Inc.',
+ 'HCL' => 'HCL',
+ 'DrayTek-Corp.' => 'DrayTek Corp.',
+ 'Teles-AG' => 'Teles AG',
+ 'Aiwa-Co.-Ltd' => 'Aiwa Co., Ltd',
+ 'ACard-Technology-Corp.' => 'ACard Technology Corp.',
+ 'Prolific-Technology-Inc.' => 'Prolific Technology, Inc.',
+ 'Efficient-Networks-Inc.' => 'Efficient Networks, Inc.',
+ 'Hohner-Corp.' => 'Hohner Corp.',
+ 'Intermec-Technologies-Corp.' => 'Intermec Technologies Corp.',
+ 'Virata-Ltd' => 'Virata, Ltd',
+ 'Victor-Company-of-Japan-Ltd' => 'Victor Company of Japan, Ltd',
+ 'Actiontec-Electronics-Inc.' => 'Actiontec Electronics, Inc.',
+ 'Minolta-Co.-Ltd' => 'Minolta Co., Ltd',
+ 'Pertech-Inc.' => 'Pertech, Inc.',
+ 'Potrans-International-Inc.' => 'Potrans International, Inc.',
+ 'CH-Products-Inc.' => 'CH Products, Inc.',
+ 'Golden-Bridge-Electech-Inc.' => 'Golden Bridge Electech, Inc.',
+ 'Hagiwara-Sys-Com-Co.-Ltd' => 'Hagiwara Sys-Com Co., Ltd',
+ 'Lego-Group' => 'Lego Group',
+ 'Chuntex-CTX' => 'Chuntex (CTX)',
+ 'Tektronix-Inc.' => 'Tektronix, Inc.',
+ 'Askey-Computer-Corp.' => 'Askey Computer Corp.',
+ 'Thomson-Inc.' => 'Thomson, Inc.',
+ 'Hughes-Network-Systems-HNS' => 'Hughes Network Systems (HNS)',
+ 'Marx' => 'Marx',
+ 'Allied-Data-Technologies-BV' => 'Allied Data Technologies BV',
+ 'Topro-Technology-Inc.' => 'Topro Technology, Inc.',
+ 'Saitek-PLC' => 'Saitek PLC',
+ 'Divio' => 'Divio',
+ 'MicroStore-Inc.' => 'MicroStore, Inc.',
+ 'Topaz-Systems-Inc.' => 'Topaz Systems, Inc.',
+ 'Westell' => 'Westell',
+ 'Sysgration-Ltd' => 'Sysgration, Ltd',
+ 'Pixela-Corp.' => 'Pixela Corp.',
+ 'Alcatel-Telecom' => 'Alcatel Telecom',
+ 'EDA-Inc.' => 'EDA, Inc.',
+ 'Oki-Data-Corp.' => 'Oki Data Corp.',
+ 'AGFA-Gevaert-NV' => 'AGFA-Gevaert NV',
+ 'Leoco-Corp.' => 'Leoco Corp.',
+ 'Phidgets-Inc.-formerly-GLAB' => 'Phidgets Inc. (formerly GLAB)',
+ 'Bizlink-International-Corp.' => 'Bizlink International Corp.',
+ 'Hagenuk-GmbH' => 'Hagenuk, GmbH',
+ 'Infowave-Software-Inc.' => 'Infowave Software, Inc.',
+ 'SIIG-Inc.' => 'SIIG, Inc.',
+ 'Taxan-Europe-Ltd' => 'Taxan (Europe), Ltd',
+ 'Newer-Technology-Inc.' => 'Newer Technology, Inc.',
+ 'Synaptics-Inc.' => 'Synaptics, Inc.',
+ 'Terayon-Communication-Systems' => 'Terayon Communication Systems',
+ 'Keyspan' => 'Keyspan',
+ 'SpheronVR-AG' => 'SpheronVR AG',
+ 'LapLink-Inc.' => 'LapLink, Inc.',
+ 'Daewoo-Electronics-Co.-Ltd' => 'Daewoo Electronics Co., Ltd',
+ 'Mitsubishi-Electric-Corp.' => 'Mitsubishi Electric Corp.',
+ 'Cisco-Systems' => 'Cisco Systems',
+ 'Toshiba' => 'Toshiba',
+ 'Aashima-Technology-B.V.' => 'Aashima Technology B.V.',
+ 'Phoenixtec-Power-Co.-Ltd' => 'Phoenixtec Power Co., Ltd',
+ 'Paradyne' => 'Paradyne',
+ 'Heisei-Electronics-Co.-Ltd' => 'Heisei Electronics Co., Ltd',
+ 'Multi-Tech-Systems-Inc.' => 'Multi-Tech Systems, Inc.',
+ 'ADS-Technologies-Inc.' => 'ADS Technologies, Inc.',
+ 'Alcatel-Microelectronics' => 'Alcatel Microelectronics',
+ 'Tiger-Jet-Network-Inc.' => 'Tiger Jet Network, Inc.',
+ 'Sirius-Technologies' => 'Sirius Technologies',
+ 'PC-Expert-Tech.-Co.-Ltd' => 'PC Expert Tech. Co., Ltd',
+ 'T.N.C-Industrial-Co.-Ltd' => 'T.N.C Industrial Co., Ltd',
+ 'Opcode-Systems-Inc.' => 'Opcode Systems, Inc.',
+ 'Emine-Technology-Co.' => 'Emine Technology Co.',
+ 'Wintrend-Technology-Co.-Ltd' => 'Wintrend Technology Co., Ltd',
+ 'Wailly-Technology-Ltd' => 'Wailly Technology Ltd',
+ 'Guillemot-Corp.' => 'Guillemot Corp.',
+ 'ASYST-electronic-d.o.o.' => 'ASYST electronic d.o.o.',
+ 'HSD-S.r.L' => 'HSD S.r.L',
+ 'Boston-Acoustics' => 'Boston Acoustics',
+ 'Gallant-Computer-Inc.' => 'Gallant Computer, Inc.',
+ 'Bvtech-Industry-Inc.' => 'Bvtech Industry, Inc.',
+ 'NKK-Corp.' => 'NKK Corp.',
+ 'Ariel-Corp.' => 'Ariel Corp.',
+ 'Standard-Microsystems-Corp.' => 'Standard Microsystems Corp.',
+ 'Putercom-Co.-Ltd' => 'Putercom Co., Ltd',
+ 'Silicon-Systems-Ltd-SSL' => 'Silicon Systems, Ltd (SSL)',
+ 'Comoss-Electronic-Co.-Ltd' => 'Comoss Electronic Co., Ltd',
+ 'Connect-Tech-Inc.' => 'Connect Tech, Inc.',
+ 'Interval-Research-Corp.' => 'Interval Research Corp.',
+ 'NewMotion-Inc.' => 'NewMotion, Inc.',
+ 'ZNK-Corp.' => 'ZNK Corp.',
+ 'Imation-Corp.' => 'Imation Corp.',
+ 'Tremon-Enterprises-Co.-Ltd' => 'Tremon Enterprises Co., Ltd',
+ 'Domain-Technologies-Inc.' => 'Domain Technologies, Inc.',
+ 'Eicon-Networks-Corp.' => 'Eicon Networks Corp.',
+ 'Ariston-Technologies' => 'Ariston Technologies',
+ 'Amitm' => 'Amitm',
+ 'Sunix-Co.-Ltd' => 'Sunix Co., Ltd',
+ 'Advanced-Card-Systems-Ltd' => 'Advanced Card Systems, Ltd',
+ 'Susteen-Inc.' => 'Susteen, Inc.',
+ 'ViewQuest-Technologies-Inc.' => 'ViewQuest Technologies, Inc.',
+ 'Lasat-Communications-A-S' => 'Lasat Communications A/S',
+ 'Asuscom-Network' => 'Asuscom Network',
+ 'Lorom-Industrial-Co.-Ltd' => 'Lorom Industrial Co., Ltd',
+ 'Mad-Catz-Inc.' => 'Mad Catz, Inc.',
+ 'Chaplet-Systems-Inc.' => 'Chaplet Systems, Inc.',
+ 'Suncom-Technologies' => 'Suncom Technologies',
+ 'Eutron-S.p.a.' => 'Eutron S.p.a.',
+ 'NEC-Inc.' => 'NEC, Inc.',
+ 'Syntech-Information-Co.-Ltd' => 'Syntech Information Co., Ltd',
+ 'Onkyo-Corp.' => 'Onkyo Corp.',
+ 'Labway-Corp.' => 'Labway Corp.',
+ 'EVer-Electronics-Corp.' => 'EVer Electronics Corp.',
+ 'Polestar-Tech.-Corp.' => 'Polestar Tech. Corp.',
+ 'C-C-C-Group-PLC' => 'C-C-C Group PLC',
+ 'Micronas-GmbH' => 'Micronas GmbH',
+ 'Digital-Stream-Corp.' => 'Digital Stream Corp.',
+ 'Aureal-Semiconductor' => 'Aureal Semiconductor',
+ 'Network-Technologies-Inc.' => 'Network Technologies, Inc.',
+ 'Sophisticated-Circuits-Inc.' => 'Sophisticated Circuits, Inc.',
+ 'Midiman' => 'Midiman',
+ 'Cyber-Power-System-Inc.' => 'Cyber Power System, Inc.',
+ 'X-Rite-Inc.' => 'X-Rite, Inc.',
+ 'Jess-Link-Products-Co.-Ltd' => 'Jess-Link Products Co., Ltd',
+ 'Tokheim-Corp.' => 'Tokheim Corp.',
+ 'Camtel-Technology-Corp.' => 'Camtel Technology Corp.',
+ 'Surecom-Technology-Corp.' => 'Surecom Technology Corp.',
+ 'OmniKey-AG' => 'OmniKey AG',
+ 'Partner-Tech' => 'Partner Tech',
+ 'Denso-Corp.' => 'Denso Corp.',
+ 'Kuan-Tech-Enterprise-Co.-Ltd' => 'Kuan Tech Enterprise Co., Ltd',
+ 'Jhen-Vei-Electronic-Co.-Ltd' => 'Jhen Vei Electronic Co., Ltd',
+ 'Observator-Instruments-BV' => 'Observator Instruments BV',
+ 'AmTRAN-Technology-Co.-Ltd' => 'AmTRAN Technology Co., Ltd',
+ 'Longshine-Electronics-Corp.' => 'Longshine Electronics Corp.',
+ 'Inalways-Corp.' => 'Inalways Corp.',
+ 'Comda-Enterprise-Corp.' => 'Comda Enterprise Corp.',
+ 'Volex-Inc.' => 'Volex, Inc.',
+ 'Fairchild-Semiconductor' => 'Fairchild Semiconductor',
+ 'Sankyo-Seiki-Mfg.-Co.-Ltd' => 'Sankyo Seiki Mfg. Co., Ltd',
+ 'Linksys' => 'Linksys',
+ 'Forward-Electronics-Co.-Ltd' => 'Forward Electronics Co., Ltd',
+ 'Griffin-Technology' => 'Griffin Technology',
+ 'Well-Excellent---Most-Corp.' => 'Well Excellent & Most Corp.',
+ 'Sagem-Monetel-GmbH' => 'Sagem Monetel GmbH',
+ 'SanDisk-Corp.' => 'SanDisk Corp.',
+ 'Trackerball' => 'Trackerball',
+ 'C3PO' => 'C3PO',
+ 'Vivitar-Inc.' => 'Vivitar, Inc.',
+ 'NTT-ME' => 'NTT-ME',
+ 'Logitec-Corp.' => 'Logitec Corp.',
+ 'Happ-Controls-Inc.' => 'Happ Controls, Inc.',
+ 'GTCO-CalComp' => 'GTCO/CalComp',
+ 'Brincom-Inc.' => 'Brincom, Inc.',
+ 'Axis-Communications-AB' => 'Axis Communications AB',
+ 'Wha-Yu-Industrial-Co.-Ltd' => 'Wha Yu Industrial Co., Ltd',
+ 'ABL-Electronics-Corp.' => 'ABL Electronics Corp.',
+ 'RealChip-Inc.' => 'RealChip, Inc.',
+ 'Certicom-Corp.' => 'Certicom Corp.',
+ 'Grandtech-Semiconductor-Corp.' => 'Grandtech Semiconductor Corp.',
+ 'Optelec' => 'Optelec',
+ 'Altera' => 'Altera',
+ 'Sagem' => 'Sagem',
+ 'Alfadata-Computer-Corp.' => 'Alfadata Computer Corp.',
+ 'Digicom-S.p.A.' => 'Digicom S.p.A.',
+ 'National-Technical-Systems' => 'National Technical Systems',
+ 'Onnto-Corp.' => 'Onnto Corp.',
+ 'Be-Inc.' => 'Be, Inc.',
+ 'ADMtek-Inc.' => 'ADMtek, Inc.',
+ 'Corega-K.K.' => 'Corega K.K.',
+ 'Freecom-Technologies' => 'Freecom Technologies',
+ 'Microtech' => 'Microtech',
+ 'Trust-Technologies' => 'Trust Technologies',
+ 'IMP-Inc.' => 'IMP, Inc.',
+ 'Motorola-BCS-Inc.' => 'Motorola BCS, Inc.',
+ 'Plustek-Inc.' => 'Plustek, Inc.',
+ 'Olympus-Optical-Co.-Ltd' => 'Olympus Optical Co., Ltd',
+ 'Mega-World-International-Ltd' => 'Mega World International, Ltd',
+ 'Marubun-Corp.' => 'Marubun Corp.',
+ 'TIME-Interconnect-Ltd' => 'TIME Interconnect, Ltd',
+ 'AboCom-Systems-Inc' => 'AboCom Systems Inc',
+ 'Canon-Computer-Systems-Inc.' => 'Canon Computer Systems, Inc.',
+ 'Webgear-Inc.' => 'Webgear, Inc.',
+ 'Veridicom' => 'Veridicom',
+ 'Keisokugiken' => 'Keisokugiken',
+ 'Datafab-Systems-Inc.' => 'Datafab Systems, Inc.',
+ 'APG-Cash-Drawer' => 'APG Cash Drawer',
+ 'ShareWave-Inc.' => 'ShareWave, Inc.',
+ 'Powertech-Industrial-Co.-Ltd' => 'Powertech Industrial Co., Ltd',
+ 'B.U.G.-Inc.' => 'B.U.G., Inc.',
+ 'Allied-Telesyn-International' => 'Allied Telesyn International',
+ 'AVerMedia-Technologies-Inc.' => 'AVerMedia Technologies, Inc.',
+ 'Kingmax-Technology-Inc.' => 'Kingmax Technology, Inc.',
+ 'Carry-Computer-Eng.-Co.-Ltd' => 'Carry Computer Eng., Co., Ltd',
+ 'Elektor' => 'Elektor',
+ 'Casio-Computer-Co.-Ltd' => 'Casio Computer Co., Ltd',
+ 'Dazzle' => 'Dazzle',
+ 'D-Link-System' => 'D-Link System',
+ 'Aptio-Products-Inc.' => 'Aptio Products, Inc.',
+ 'Cyberdata-Corp.' => 'Cyberdata Corp.',
+ 'Radiant-Systems' => 'Radiant Systems',
+ 'GCC-Technologies-Inc.' => 'GCC Technologies, Inc.',
+ 'Arasan-Chip-Systems' => 'Arasan Chip Systems',
+ 'Diamond-Multimedia' => 'Diamond Multimedia',
+ 'David-Electronics-Co.-Ltd' => 'David Electronics Co., Ltd',
+ 'Ambient-Technologies-Inc.' => 'Ambient Technologies, Inc.',
+ 'Elmeg-GmbH---Co.-Ltd' => 'Elmeg GmbH & Co., Ltd',
+ 'Planex-Communications-Inc.' => 'Planex Communications, Inc.',
+ 'Movado-Enterprise-Co.-Ltd' => 'Movado Enterprise Co., Ltd',
+ 'QPS-Inc.' => 'QPS, Inc.',
+ 'Allied-Cable-Corp.' => 'Allied Cable Corp.',
+ 'Mirvo-Toys-Inc.' => 'Mirvo Toys, Inc.',
+ 'Labsystems' => 'Labsystems',
+ 'Iwatsu-Electric-Co.-Ltd' => 'Iwatsu Electric Co., Ltd',
+ 'Double-H-Technology-Co.-Ltd' => 'Double-H Technology Co., Ltd',
+ 'STSN' => 'STSN',
+ 'Circuit-Assembly-Corp.' => 'Circuit Assembly Corp.',
+ 'Century-Corp.' => 'Century Corp.',
+ 'Dotop-Technology-Inc.' => 'Dotop Technology, Inc.',
+ 'DrayTek-Corp.' => 'DrayTek Corp.',
+ 'Mark-of-the-Unicorn' => 'Mark of the Unicorn',
+ 'Unknown' => 'Unknown',
+ 'Mag-Tek' => 'Mag-Tek',
+ 'Mako-Technologies-LLC' => 'Mako Technologies, LLC',
+ 'Zoom-Telephonics-Inc.' => 'Zoom Telephonics, Inc.',
+ 'Genicom-Technology-Inc.' => 'Genicom Technology, Inc.',
+ 'Evermuch-Technology-Co.-Ltd' => 'Evermuch Technology Co., Ltd',
+ 'Cross-Match-Technologies' => 'Cross Match Technologies',
+ 'Datalogic-S.p.A.' => 'Datalogic S.p.A.',
+ 'Teco-Image-Systems-Co.-Ltd' => 'Teco Image Systems Co., Ltd',
+ 'Mattel-Inc.' => 'Mattel, Inc.',
+ 'eLicenser' => 'eLicenser',
+ 'MG-Logic' => 'MG Logic',
+ 'Indigita-Corp.' => 'Indigita Corp.',
+ 'Mipsys' => 'Mipsys',
+ 'AlphaSmart-Inc.' => 'AlphaSmart, Inc.',
+ 'Reudo-Corp.' => 'Reudo Corp.',
+ 'GC-Protronics' => 'GC Protronics',
+ 'Data-Transit' => 'Data Transit',
+ 'BroadLogic-Inc.' => 'BroadLogic, Inc.',
+ 'Sato-Corp.' => 'Sato Corp.',
+ 'Handspring' => 'Handspring',
+ 'Palm-Inc.' => 'Palm, Inc.',
+ 'Kouwell-Electronics-Corp.' => 'Kouwell Electronics Corp.',
+ 'Sourcenext-Corp.' => 'Sourcenext Corp.',
+ 'Samsung-Techwin-Co.-Ltd' => 'Samsung Techwin Co., Ltd',
+ 'Accton-Technology-Corp.' => 'Accton Technology Corp.',
+ 'Global-Village' => 'Global Village',
+ 'Argosy-Research-Inc.' => 'Argosy Research, Inc.',
+ 'Rioport.com-Inc.' => 'Rioport.com, Inc.',
+ 'Welland-Industrial-Co.-Ltd' => 'Welland Industrial Co., Ltd',
+ 'NetGear-Inc.' => 'NetGear, Inc.',
+ 'KB-Gear' => 'KB Gear',
+ 'Empeg' => 'Empeg',
+ 'Fast-Point-Technologies-Inc.' => 'Fast Point Technologies, Inc.',
+ 'CSEM' => 'CSEM',
+ 'Topre-Corporation' => 'Topre Corporation',
+ 'ActiveWire-Inc.' => 'ActiveWire, Inc.',
+ 'B-B-Electronics' => 'B&B Electronics',
+ 'Hitachi-Maxell-Ltd' => 'Hitachi Maxell, Ltd',
+ 'Xircom' => 'Xircom',
+ 'ColorVision-Inc.' => 'ColorVision, Inc.',
+ 'Teletrol-Systems-Inc.' => 'Teletrol Systems, Inc.',
+ 'Filanet-Corp.' => 'Filanet Corp.',
+ 'NetGear-Inc.' => 'NetGear, Inc.',
+ 'Data-Translation-Inc.' => 'Data Translation, Inc.',
+ 'System-TALKS-Inc.' => 'System TALKS, Inc.',
+ 'MEC-IMEX-Inc.' => 'MEC IMEX, Inc.',
+ 'Metricom' => 'Metricom',
+ 'SanDisk-Inc.' => 'SanDisk, Inc.',
+ 'Xpeed-Inc.' => 'Xpeed, Inc.',
+ 'A-Tec-Subsystem-Inc.' => 'A-Tec Subsystem, Inc.',
+ 'Comtrol-Corp.' => 'Comtrol Corp.',
+ 'Adesso-Kbtek-America-Inc.' => 'Adesso/Kbtek America, Inc.',
+ 'Jaton-Corp.' => 'Jaton Corp.',
+ 'Virtual-IP-Group-Inc.' => 'Virtual IP Group, Inc.',
+ 'APT-Technologies-Inc.' => 'APT Technologies, Inc.',
+ 'Boca-Research-Inc.' => 'Boca Research, Inc.',
+ 'XAC-Automation-Corp.' => 'XAC Automation Corp.',
+ 'Hannstar-Electronics-Corp.' => 'Hannstar Electronics Corp.',
+ 'MassWorks-Inc.' => 'MassWorks, Inc.',
+ 'Swecoin-AB' => 'Swecoin AB',
+ 'iLok' => 'iLok',
+ 'DioGraphy-Inc.' => 'DioGraphy, Inc.',
+ 'Lauterbach' => 'Lauterbach',
+ 'Icron-Technologies-Corp.' => 'Icron Technologies Corp.',
+ 'NST-Co.-Ltd' => 'NST Co., Ltd',
+ 'Primex-Aerospace-Co.' => 'Primex Aerospace Co.',
+ 'e9-Inc.' => 'e9, Inc.',
+ 'Andrea-Electronics' => 'Andrea Electronics',
+ 'Macally-Mace-Group-Inc.' => 'Macally (Mace Group, Inc.)',
+ 'Sorenson-Vision-Inc.' => 'Sorenson Vision, Inc.',
+ 'NATSU' => 'NATSU',
+ 'RadioShack-Corp.-Tandy' => 'RadioShack Corp. (Tandy)',
+ 'Texas-Instruments-Japan' => 'Texas Instruments Japan',
+ 'Citizen-Watch-Co.-Ltd' => 'Citizen Watch Co., Ltd',
+ 'Precise-Biometrics' => 'Precise Biometrics',
+ 'Proxim-Inc.' => 'Proxim, Inc.',
+ 'Key-Nice-Enterprise-Co.-Ltd' => 'Key Nice Enterprise Co., Ltd',
+ '2Wire-Inc.' => '2Wire, Inc.',
+ 'Aiptek-International-Inc.' => 'Aiptek International, Inc.',
+ 'Jue-Hsun-Ind.-Corp.' => 'Jue Hsun Ind. Corp.',
+ 'Long-Well-Electronics-Corp.' => 'Long Well Electronics Corp.',
+ 'smartBridges-Inc.' => 'smartBridges, Inc.',
+ 'Virtual-Ink' => 'Virtual Ink',
+ 'Fujitsu-Siemens-Computers' => 'Fujitsu Siemens Computers',
+ 'IXXAT-Automation-GmbH' => 'IXXAT Automation GmbH',
+ 'Increment-P-Corp.' => 'Increment P Corp.',
+ 'Billionton-Systems-Inc.' => 'Billionton Systems, Inc.',
+ '---' => '???',
+ 'Spyrus-Inc.' => 'Spyrus, Inc.',
+ 'Olitec-Inc.' => 'Olitec, Inc.',
+ 'Pioneer-Corp.' => 'Pioneer Corp.',
+ 'Litronic' => 'Litronic',
+ 'Gemplus' => 'Gemplus',
+ 'Integrated-Memory-Logic' => 'Integrated Memory Logic',
+ 'Extended-Systems-Inc.' => 'Extended Systems, Inc.',
+ 'M-Systems-Flash-Disk-Pioneers' => 'M-Systems Flash Disk Pioneers',
+ 'MediaTek-Inc.' => 'MediaTek Inc.',
+ 'CCSI-Hesso' => 'CCSI/Hesso',
+ 'Corex-Technologies' => 'Corex Technologies',
+ 'CTI-Electronics-Corp.' => 'CTI Electronics Corp.',
+ 'Gotop-Information-Inc.' => 'Gotop Information Inc.',
+ 'SysTec-Co.-Ltd' => 'SysTec Co., Ltd',
+ 'Logic-3-International-Ltd' => 'Logic 3 International, Ltd',
+ 'Vernier' => 'Vernier',
+ 'Wipro-Technologies' => 'Wipro Technologies',
+ 'Caere' => 'Caere',
+ 'Socket-Communications' => 'Socket Communications',
+ 'Digianswer-A-S' => 'Digianswer A/S',
+ 'AuthenTec-Inc.' => 'AuthenTec, Inc.',
+ 'Pinnacle-Systems-Inc.' => 'Pinnacle Systems, Inc.',
+ 'VST-Technologies' => 'VST Technologies',
+ 'Faraday-Technology-Corp.' => 'Faraday Technology Corp.',
+ 'Audio-Technica-Corp.' => 'Audio-Technica Corp.',
+ 'Neurosmith' => 'Neurosmith',
+ 'Shining-Technology-Inc.' => 'Shining Technology, Inc.',
+ 'Fujitsu-Devices-Inc.' => 'Fujitsu Devices, Inc.',
+ 'Alation-Systems-Inc.' => 'Alation Systems, Inc.',
+ 'Philips-Speech-Processing' => 'Philips Speech Processing',
+ 'Voquette-Inc.' => 'Voquette, Inc.',
+ 'GlobeSpan-Inc.' => 'GlobeSpan, Inc.',
+ 'SmartDisk-Corp.' => 'SmartDisk Corp.',
+ 'Tiger-Electronics' => 'Tiger Electronics',
+ 'Garmin-International' => 'Garmin International',
+ 'Echelon-Co.' => 'Echelon Co.',
+ 'GoHubs-Inc.' => 'GoHubs, Inc.',
+ 'Dymo-CoStar-Corp.' => 'Dymo-CoStar Corp.',
+ 'IC-Media-Corp.' => 'IC Media Corp.',
+ 'Xerox' => 'Xerox',
+ 'Lakeview-Research' => 'Lakeview Research',
+ 'Summus-Ltd' => 'Summus, Ltd',
+ 'Oxford-Semiconductor-Ltd' => 'Oxford Semiconductor, Ltd',
+ 'American-Biometric-Co.' => 'American Biometric Co.',
+ 'Sena-Technologies-Inc.' => 'Sena Technologies, Inc.',
+ 'Toshiba-Corp.' => 'Toshiba Corp.',
+ 'Harmonic-Data-Systems-Ltd' => 'Harmonic Data Systems, Ltd',
+ 'Crescentec-Corp.' => 'Crescentec Corp.',
+ 'Quantum-Corp.' => 'Quantum Corp.',
+ 'Netcom-Systems' => 'Netcom Systems',
+ 'NuTesla' => 'NuTesla',
+ 'Lumberg-Inc.' => 'Lumberg, Inc.',
+ 'Pixart-Imaging-Inc.' => 'Pixart Imaging, Inc.',
+ 'Plextor-Corp.' => 'Plextor Corp.',
+ 'InnoSync-Inc.' => 'InnoSync, Inc.',
+ 'J.S.T.-Mfg.-Co.-Ltd' => 'J.S.T. Mfg. Co., Ltd',
+ 'Photobit-Corp.' => 'Photobit Corp.',
+ 'i2Go.com-LLC' => 'i2Go.com, LLC',
+ 'KORG-Inc.' => 'KORG, Inc.',
+ 'Pasco-Scientific' => 'Pasco Scientific',
+ 'Kronauer-music-in-digital' => 'Kronauer music in digital',
+ 'Linkup-Systems-Corp.' => 'Linkup Systems Corp.',
+ 'Cable-Television-Laboratories' => 'Cable Television Laboratories',
+ 'Yano' => 'Yano',
+ 'Kingston-Technology' => 'Kingston Technology',
+ 'RPM-Systems-Corp.' => 'RPM Systems Corp.',
+ 'NVidia-Corp.' => 'NVidia Corp.',
+ 'BSquare-Corp.' => 'BSquare Corp.',
+ 'Agilent-Technologies-Inc.' => 'Agilent Technologies, Inc.',
+ 'CompuLink-Research-Inc.' => 'CompuLink Research, Inc.',
+ 'Cologne-Chip-AG' => 'Cologne Chip AG',
+ 'Portsmith' => 'Portsmith',
+ 'Medialogic-Corp.' => 'Medialogic Corp.',
+ 'K-Tec-Electronics' => 'K-Tec Electronics',
+ 'Polycom-Inc.' => 'Polycom, Inc.',
+ 'Acer---' => 'Acer (??)',
+ 'Catalyst-Enterprises-Inc.' => 'Catalyst Enterprises, Inc.',
+ 'Feitian-Technologies-Inc.' => 'Feitian Technologies, Inc.',
+ 'Gretag-Macbeth-AG' => 'Gretag-Macbeth AG',
+ 'Schlumberger' => 'Schlumberger',
+ 'OLE-Communications-Inc.' => 'OLE Communications, Inc.',
+ 'Adirondack-Wire---Cable' => 'Adirondack Wire & Cable',
+ 'Lightsurf-Technologies' => 'Lightsurf Technologies',
+ 'Beckhoff-GmbH' => 'Beckhoff GmbH',
+ 'Jeilin-Technology-Corp.-Ltd' => 'Jeilin Technology Corp., Ltd',
+ 'Minds-At-Work-LLC' => 'Minds At Work LLC',
+ 'Knudsen-Engineering-Ltd' => 'Knudsen Engineering, Ltd',
+ 'Marunix-Co.-Ltd' => 'Marunix Co., Ltd',
+ 'Rosun-Technologies-Inc.' => 'Rosun Technologies, Inc.',
+ 'Barun-Electronics-Co.-Ltd' => 'Barun Electronics Co., Ltd',
+ 'Oak-Technology-Ltd' => 'Oak Technology, Ltd',
+ 'Apricorn' => 'Apricorn',
+ 'Vitana-Corp.' => 'Vitana Corp.',
+ 'INDesign' => 'INDesign',
+ 'Kenwood-TMI-Corp.' => 'Kenwood TMI Corp.',
+ 'Gemstar-eBook-Group-Ltd' => 'Gemstar eBook Group, Ltd',
+ 'Zippy-Technology-Corp.' => 'Zippy Technology Corp.',
+ 'PairGain-Technologies' => 'PairGain Technologies',
+ 'Contech-Research-Inc.' => 'Contech Research, Inc.',
+ 'VCON-Telecommunications' => 'VCON Telecommunications',
+ 'Poinchips' => 'Poinchips',
+ 'Intersil-Corp.' => 'Intersil Corp.',
+ 'Japan-Cash-Machine-Co.-Ltd.' => 'Japan Cash Machine Co., Ltd.',
+ 'Tripp-Lite' => 'Tripp Lite',
+ 'Altius-Solutions-Inc.' => 'Altius Solutions, Inc.',
+ 'MDS-Telephone-Systems' => 'MDS Telephone Systems',
+ 'Celltrix-Technology-Co.-Ltd' => 'Celltrix Technology Co., Ltd',
+ 'Grundig' => 'Grundig',
+ 'MySmart.Com' => 'MySmart.Com',
+ 'Auerswald-GmbH---Co.-KG' => 'Auerswald GmbH & Co. KG',
+ 'Arris-Interactive-LLC' => 'Arris Interactive LLC',
+ 'Nisca-Corp.' => 'Nisca Corp.',
+ 'ActivCard-Inc.' => 'ActivCard, Inc.',
+ 'ACTiSYS-Corp.' => 'ACTiSYS Corp.',
+ 'Memory-Corp.' => 'Memory Corp.',
+ 'Workbit-Corp.' => 'Workbit Corp.',
+ 'City-Electronics-Ltd' => 'City Electronics, Ltd',
+ 'NeoMagic-Inc.' => 'NeoMagic, Inc.',
+ 'Vreelin-Engineering-Inc.' => 'Vreelin Engineering, Inc.',
+ 'Com-One' => 'Com One',
+ 'Novatel-Wireless' => 'Novatel Wireless',
+ 'KRF-Tech-Ltd' => 'KRF Tech, Ltd',
+ 'A4-Tech-Co.-Ltd' => 'A4 Tech Co., Ltd',
+ 'Measurement-Computing-Corp.' => 'Measurement Computing Corp.',
+ 'Aimex-Corp.' => 'Aimex Corp.',
+ 'Fellowes-Inc.' => 'Fellowes, Inc.',
+ 'Addonics-Technologies-Corp.' => 'Addonics Technologies Corp.',
+ 'Intellon-Corp.' => 'Intellon Corp.',
+ 'Jo-Dan-International-Inc.' => 'Jo-Dan International, Inc.',
+ 'Silutia-Inc.' => 'Silutia, Inc.',
+ 'Real-3D-Inc.' => 'Real 3D, Inc.',
+ 'AKAI-Professional-M.I.-Corp.' => 'AKAI Professional M.I. Corp.',
+ 'Chen-Source-Inc.' => 'Chen-Source, Inc.',
+ 'IM-Networks-Inc.' => 'IM Networks, Inc.',
+ 'Xitel' => 'Xitel',
+ 'GoFlight-Inc.' => 'GoFlight, Inc.',
+ 'AresCom' => 'AresCom',
+ 'RocketChips-Inc.' => 'RocketChips, Inc.',
+ 'Edu-Science-H.K.-Ltd' => 'Edu-Science (H.K.), Ltd',
+ 'SoftConnex-Technologies-Inc.' => 'SoftConnex Technologies, Inc.',
+ 'Bay-Associates' => 'Bay Associates',
+ 'Mtek-Vision' => 'Mtek Vision',
+ 'Altera' => 'Altera',
+ 'Gain-Technology-Corp.' => 'Gain Technology Corp.',
+ 'Liquid-Audio' => 'Liquid Audio',
+ 'ViA-Inc.' => 'ViA, Inc.',
+ 'Ontrak-Control-Systems-Inc.' => 'Ontrak Control Systems Inc.',
+ 'Cybex-Computer-Products-Co.' => 'Cybex Computer Products Co.',
+ 'Xentec-Inc.' => 'Xentec, Inc.',
+ 'Cambridge-Silicon-Radio-Ltd' => 'Cambridge Silicon Radio, Ltd',
+ 'Telebyte-Inc.' => 'Telebyte, Inc.',
+ 'Spacelabs-Medical-Inc.' => 'Spacelabs Medical, Inc.',
+ 'Scalar-Corp.' => 'Scalar Corp.',
+ 'Trek-Technology-S-PTE-Ltd' => 'Trek Technology (S) PTE, Ltd',
+ 'Pentax-Corp.' => 'Pentax Corp.',
+ 'Hua-Geng-Technologies-Inc.' => 'Hua Geng Technologies, Inc.',
+ 'Datacard-Group' => 'Datacard Group',
+ 'AK-Modul-Bus-Computer-GmbH' => 'AK-Modul-Bus Computer GmbH',
+ 'TG3-Electronics-Inc.' => 'TG3 Electronics, Inc.',
+ 'Radikal-Technologies' => 'Radikal Technologies',
+ 'Gilat-Satellite-Networks-Ltd' => 'Gilat Satellite Networks, Ltd',
+ 'PentaMedia-Co.-Ltd' => 'PentaMedia Co., Ltd',
+ 'NTT-DoCoMo-Inc.' => 'NTT DoCoMo, Inc.',
+ 'Varo-Vision' => 'Varo Vision',
+ 'Swissonic-AG' => 'Swissonic AG',
+ 'Boca-Systems-Inc.' => 'Boca Systems, Inc.',
+ 'Davicom-Semiconductor-Inc.' => 'Davicom Semiconductor, Inc.',
+ 'Hirose-Electric' => 'Hirose Electric',
+ 'I-O-Interconnect' => 'I/O Interconnect',
+ 'Fujitsu-Media-Devices-Ltd' => 'Fujitsu Media Devices, Ltd',
+ 'Computex-Co.-Ltd' => 'Computex Co., Ltd',
+ 'Evolution-Electronics-Ltd' => 'Evolution Electronics, Ltd',
+ 'Litton-Systems-Inc.' => 'Litton Systems, Inc.',
+ 'Mimaki-Engineering-Co.-Ltd' => 'Mimaki Engineering Co., Ltd',
+ 'Sony-Electronics-Inc.' => 'Sony Electronics, Inc.',
+ 'Jebsee-Electronics-Co.-Ltd' => 'Jebsee Electronics Co., Ltd',
+ 'Portable-Peripheral-Co.-Ltd' => 'Portable Peripheral Co., Ltd',
+ 'Electronics-For-Imaging-Inc.' => 'Electronics For Imaging, Inc.',
+ 'EAsics-NV' => 'EAsics NV',
+ 'Broadcom-Corp.' => 'Broadcom Corp.',
+ 'Diatrend-Corp.' => 'Diatrend Corp.',
+ 'Zebra' => 'Zebra',
+ 'MPMan' => 'MPMan',
+ 'ClearCube-Technology' => 'ClearCube Technology',
+ 'Medeli-Electronics-Co.-Ltd' => 'Medeli Electronics Co., Ltd',
+ 'Comaide-Corp.' => 'Comaide Corp.',
+ 'Chroma-ate-Inc.' => 'Chroma ate, Inc.',
+ 'Green-House-Co.-Ltd' => 'Green House Co., Ltd',
+ 'UPS-Manufacturing' => 'UPS Manufacturing',
+ 'Benwin' => 'Benwin',
+ 'Core-Technology-Inc.' => 'Core Technology, Inc.',
+ 'International-Game-Technology' => 'International Game Technology',
+ 'Sanwa-Denshi' => 'Sanwa Denshi',
+ 'NSTL-Inc.' => 'NSTL, Inc.',
+ 'Octagon-Systems-Corp.' => 'Octagon Systems Corp.',
+ 'Rexon-Technology-Corp.-Ltd' => 'Rexon Technology Corp., Ltd',
+ 'Chesen-Electronics-Corp.' => 'Chesen Electronics Corp.',
+ 'Syscan' => 'Syscan',
+ 'NextComm-Inc.' => 'NextComm, Inc.',
+ 'Maui-Innovative-Peripherals' => 'Maui Innovative Peripherals',
+ 'Idexx-Labs' => 'Idexx Labs',
+ 'NITGen-Co.-Ltd' => 'NITGen Co., Ltd',
+ 'Picturetel' => 'Picturetel',
+ 'Candy-Technology-Co.-Ltd' => 'Candy Technology Co., Ltd',
+ 'Globlink-Technology-Inc.' => 'Globlink Technology, Inc.',
+ 'EGO-SYStems-Inc.' => 'EGO SYStems, Inc.',
+ 'C-Technologies-AB' => 'C Technologies AB',
+ 'Intersense' => 'Intersense',
+ 'Lava-Computer-Mfg.-Inc.' => 'Lava Computer Mfg., Inc.',
+ 'Develco-Elektronik' => 'Develco Elektronik',
+ 'First-International-Digital' => 'First International Digital',
+ 'Perception-Digital-Ltd' => 'Perception Digital, Ltd',
+ 'TriGem-Computer-Inc.' => 'TriGem Computer, Inc.',
+ 'Baromtec-Co.' => 'Baromtec Co.',
+ 'Japan-CBM-Corp.' => 'Japan CBM Corp.',
+ 'Vision-Shape-Europe-SA' => 'Vision Shape Europe SA',
+ 'iCompression-Inc.' => 'iCompression, Inc.',
+ 'Rohde---Schwarz-GmbH---Co.-KG' => 'Rohde & Schwarz GmbH & Co. KG',
+ 'NEC-infrontia-Corp.-Nitsuko' => 'NEC infrontia Corp. (Nitsuko)',
+ 'Digitalway-Co.-Ltd' => 'Digitalway Co., Ltd',
+ 'FEIG-ELECTRONIC-GmbH' => 'FEIG ELECTRONIC GmbH',
+ 'Ellisys' => 'Ellisys',
+ 'Stereo-Link' => 'Stereo-Link',
+ 'Diolan' => 'Diolan',
+ 'Leco-Corp.' => 'Leco Corp.',
+ 'I---C-Corp.' => 'I & C Corp.',
+ 'Singing-Electrons-Inc.' => 'Singing Electrons, Inc.',
+ 'Panwest-Corp.' => 'Panwest Corp.',
+ 'Z-Star-Microelectronics-Corp.' => 'Z-Star Microelectronics Corp.',
+ 'Micro-Solutions-Inc.' => 'Micro Solutions, Inc.',
+ 'OPEN-Networks-Ltd' => 'OPEN Networks Ltd',
+ 'Koga-Electronics-Co.' => 'Koga Electronics Co.',
+ 'ID-Tech' => 'ID Tech',
+ 'ZyDAS' => 'ZyDAS',
+ 'Intoto-Inc.' => 'Intoto, Inc.',
+ 'Intellix-Corp.' => 'Intellix Corp.',
+ 'Remotec-Technology-Ltd' => 'Remotec Technology, Ltd',
+ 'Data-Encryption-Systems-Ltd.' => 'Data Encryption Systems Ltd.',
+ 'Allion-Computer-Inc.' => 'Allion Computer, Inc.',
+ 'Taito-Corp.' => 'Taito Corp.',
+ 'Neodym-Systems-Inc.' => 'Neodym Systems, Inc.',
+ 'System-Support-Co.-Ltd' => 'System Support Co., Ltd',
+ 'SciEssence-LLC' => 'SciEssence, LLC',
+ 'TTP-Communications-Ltd' => 'TTP Communications, Ltd',
+ 'Neodio-Technologies-Corp.' => 'Neodio Technologies Corp.',
+ 'Option' => 'Option',
+ 'Silver-I-Co.-Ltd' => 'Silver I Co., Ltd',
+ 'B2C2-Inc.' => 'B2C2, Inc.',
+ 'Hama-Inc.' => 'Hama, Inc.',
+ 'Zaptronix-Ltd' => 'Zaptronix Ltd',
+ 'Tateno-Dennou-Inc.' => 'Tateno Dennou, Inc.',
+ 'Cummins-Engine-Co.' => 'Cummins Engine Co.',
+ 'INGENICO' => 'INGENICO',
+ 'ASUSTek-Computer-Inc.' => 'ASUSTek Computer, Inc.',
+ 'Datamax-ONeil' => 'Datamax-ONeil',
+ 'Todos-AB' => 'Todos AB',
+ 'ProjectLab' => 'ProjectLab',
+ 'GN-Netcom' => 'GN Netcom',
+ 'AVID-Technology' => 'AVID Technology',
+ 'Pcally' => 'Pcally',
+ 'I-Tech-Solutions-Co.-Ltd' => 'I Tech Solutions Co., Ltd',
+ 'Insyde-Software-Corp.' => 'Insyde Software Corp.',
+ 'TransDimension-Inc.' => 'TransDimension, Inc.',
+ 'Yokogawa-Electric-Corp.' => 'Yokogawa Electric Corp.',
+ 'Pan-Asia-Electronics-Co.-Ltd' => 'Pan-Asia Electronics Co., Ltd',
+ 'Link-Evolution-Corp.' => 'Link Evolution Corp.',
+ 'Ritek-Corp.' => 'Ritek Corp.',
+ 'Kenwood-Corp.' => 'Kenwood Corp.',
+ 'Village-Center-Inc.' => 'Village Center, Inc.',
+ 'PNY-Technologies-Inc.' => 'PNY Technologies, Inc.',
+ 'Contour-Design-Inc.' => 'Contour Design, Inc.',
+ 'Hitachi-ULSI-Systems-Co.-Ltd' => 'Hitachi ULSI Systems Co., Ltd',
+ 'Gear-Head' => 'Gear Head',
+ 'IPaxess' => 'IPaxess',
+ 'Tekram-Technology-Co.-Ltd' => 'Tekram Technology Co., Ltd',
+ 'Olivetti-Techcenter' => 'Olivetti Techcenter',
+ 'Kikusui-Electronics-Corp.' => 'Kikusui Electronics Corp.',
+ 'Hal-Corp.' => 'Hal Corp.',
+ 'Play.com-Inc.' => 'Play.com, Inc.',
+ 'Sportbug.com-Inc.' => 'Sportbug.com, Inc.',
+ 'TechnoTrend-AG' => 'TechnoTrend AG',
+ 'ASCII-Corp.' => 'ASCII Corp.',
+ 'Pine-Corp.-Ltd.' => 'Pine Corp. Ltd.',
+ 'Graphtec-America-Inc.' => 'Graphtec America, Inc.',
+ 'Musical-Electronics-Ltd' => 'Musical Electronics, Ltd',
+ 'Dumpries-Co.-Ltd' => 'Dumpries Co., Ltd',
+ 'Comfort-Keyboard-Co.' => 'Comfort Keyboard Co.',
+ 'Colorado-MicroDisplay-Inc.' => 'Colorado MicroDisplay, Inc.',
+ 'Sinbon-Electronics-Co.-Ltd' => 'Sinbon Electronics Co., Ltd',
+ 'TYI-Systems-Ltd' => 'TYI Systems, Ltd',
+ 'Lake-Communications-Ltd' => 'Lake Communications, Ltd',
+ 'Corel-Corp.' => 'Corel Corp.',
+ 'Green-Electronics-Co.-Ltd' => 'Green Electronics Co., Ltd',
+ 'Nsine-Ltd' => 'Nsine, Ltd',
+ 'NEC-Viewtechnology-Ltd' => 'NEC Viewtechnology, Ltd',
+ 'Orange-Micro-Inc.' => 'Orange Micro, Inc.',
+ 'ADLink-Technology-Inc.' => 'ADLink Technology, Inc.',
+ 'Wonderful-Wire-Cable-Co.-Ltd' => 'Wonderful Wire Cable Co., Ltd',
+ 'Expert-Magnetics-Corp.' => 'Expert Magnetics Corp.',
+ 'CacheVision' => 'CacheVision',
+ 'Maxim-Integrated-Products' => 'Maxim Integrated Products',
+ 'Nagano-Japan-Radio-Co.-Ltd' => 'Nagano Japan Radio Co., Ltd',
+ 'PortalPlayer-Inc.' => 'PortalPlayer, Inc.',
+ 'SHIN-EI-Sangyo-Co.-Ltd' => 'SHIN-EI Sangyo Co., Ltd',
+ 'Computone-Corp.' => 'Computone Corp.',
+ 'Roland-DG-Corp.' => 'Roland DG Corp.',
+ 'Sunrise-Telecom-Inc.' => 'Sunrise Telecom, Inc.',
+ 'Zeevo-Inc.' => 'Zeevo, Inc.',
+ 'Taiko-Denki-Co.-Ltd' => 'Taiko Denki Co., Ltd',
+ 'ITRAN-Communications-Ltd' => 'ITRAN Communications, Ltd',
+ 'Astrodesign-Inc.' => 'Astrodesign, Inc.',
+ 'id3-Semiconductors' => 'id3 Semiconductors',
+ 'Rextron-Technology-Inc.' => 'Rextron Technology, Inc.',
+ 'Elkat-Electronics-Sdn.-Bhd.' => 'Elkat Electronics, Sdn., Bhd.',
+ 'Exputer-Systems-Inc.' => 'Exputer Systems, Inc.',
+ 'Plus-One-I---T-Inc.' => 'Plus-One I & T, Inc.',
+ 'SMART-Technologies-Inc.' => 'SMART Technologies Inc.',
+ 'ASIX-Electronics-Corp.' => 'ASIX Electronics Corp.',
+ 'Sewon-Telecom' => 'Sewon Telecom',
+ 'O2-Micro-Inc.' => 'O2 Micro, Inc.',
+ 'Playmates-Toys-Inc.' => 'Playmates Toys, Inc.',
+ 'Audio-International-Inc.' => 'Audio International, Inc.',
+ 'Dipl.-Ing.-Stefan-Kunde' => 'Dipl.-Ing. Stefan Kunde',
+ 'Softprotec-Co.' => 'Softprotec Co.',
+ 'Chippo-Technologies' => 'Chippo Technologies',
+ 'U.S.-Robotics' => 'U.S. Robotics',
+ 'Concord-Camera-Corp.' => 'Concord Camera Corp.',
+ 'Infinilink-Corp.' => 'Infinilink Corp.',
+ 'Ambit-Microsystems-Corp.' => 'Ambit Microsystems Corp.',
+ 'Ofuji-Technology' => 'Ofuji Technology',
+ 'High-Tech-Computer-Corp.' => 'High Tech Computer Corp.',
+ 'Murata-Manufacturing-Co.-Ltd' => 'Murata Manufacturing Co., Ltd',
+ 'Network-Alchemy' => 'Network Alchemy',
+ 'Joytech-Computer-Co.-Ltd' => 'Joytech Computer Co., Ltd',
+ 'Eiger-M-C-Co.-Ltd' => 'Eiger M&C Co., Ltd',
+ 'ZAccess-Systems' => 'ZAccess Systems',
+ 'General-Meters-Corp.' => 'General Meters Corp.',
+ 'Assistive-Technology-Inc.' => 'Assistive Technology, Inc.',
+ 'System-Connection-Inc.' => 'System Connection, Inc.',
+ 'Knilink-Technology-Inc.' => 'Knilink Technology, Inc.',
+ 'Fuw-Yng-Electronics-Co.-Ltd' => 'Fuw Yng Electronics Co., Ltd',
+ 'Seagate-RSS-LLC' => 'Seagate RSS LLC',
+ 'IPWireless-Inc.' => 'IPWireless, Inc.',
+ 'Microcube-Corp.' => 'Microcube Corp.',
+ 'JCN-Co.-Ltd' => 'JCN Co., Ltd',
+ 'ExWAY-Inc.' => 'ExWAY, Inc.',
+ 'X10-Wireless-Technology-Inc.' => 'X10 Wireless Technology, Inc.',
+ 'Telmax-Communications' => 'Telmax Communications',
+ 'ECI-Telecom-Ltd' => 'ECI Telecom, Ltd',
+ 'Startek-Engineering-Inc.' => 'Startek Engineering, Inc.',
+ 'Andrew-Pargeter---Associates' => 'Andrew Pargeter & Associates',
+ 'Realtek-Semiconductor-Corp.' => 'Realtek Semiconductor Corp.',
+ 'Y-Media-Corp.' => 'Y Media Corp.',
+ 'Orange-PCS' => 'Orange PCS',
+ 'Kanda-Tsushin-Kogyo-Co.-Ltd' => 'Kanda Tsushin Kogyo Co., Ltd',
+ 'TOYO-Corp.' => 'TOYO Corp.',
+ 'Elka-International-Ltd' => 'Elka International, Ltd',
+ 'DOME-imaging-systems-Inc.' => 'DOME imaging systems, Inc.',
+ 'Silicon-Labs' => 'Silicon Labs',
+ 'LTK-Industries-Ltd' => 'LTK Industries, Ltd',
+ 'Way2Call-Communications' => 'Way2Call Communications',
+ 'Pace-Micro-Technology-PLC' => 'Pace Micro Technology PLC',
+ 'Intracom-S.A.' => 'Intracom S.A.',
+ 'Konexx' => 'Konexx',
+ 'Addonics-Technologies-Inc.' => 'Addonics Technologies, Inc.',
+ 'Sunny-Giken-Inc.' => 'Sunny Giken, Inc.',
+ 'Fujitsu-Siemens-Computers' => 'Fujitsu Siemens Computers',
+ 'MOTO-Development-Group-Inc.' => 'MOTO Development Group, Inc.',
+ 'Appian-Graphics' => 'Appian Graphics',
+ 'Hasbro-Games-Inc.' => 'Hasbro Games, Inc.',
+ 'Infinite-Data-Storage-Ltd' => 'Infinite Data Storage, Ltd',
+ 'Agate' => 'Agate',
+ 'Comjet-Information-System' => 'Comjet Information System',
+ 'Highpoint-Technologies-Inc.' => 'Highpoint Technologies, Inc.',
+ 'Dura-Micro-Inc.-Acomdata' => 'Dura Micro, Inc. (Acomdata)',
+ 'Zeroplus' => 'Zeroplus',
+ 'Iris-Graphics' => 'Iris Graphics',
+ 'Gyration-Inc.' => 'Gyration, Inc.',
+ 'Cyberboard-A-S' => 'Cyberboard A/S',
+ 'SynerTek-Korea-Inc.' => 'SynerTek Korea, Inc.',
+ 'cyberPIXIE-Inc.' => 'cyberPIXIE, Inc.',
+ 'Silicon-Motion-Inc.' => 'Silicon Motion, Inc.',
+ 'MIPS-Technologies' => 'MIPS Technologies',
+ 'Tally-Printer-Corp.' => 'Tally Printer Corp.',
+ 'Lernout-+-Hauspie' => 'Lernout + Hauspie',
+ 'Taiyo-Yuden' => 'Taiyo Yuden',
+ 'Sampo-Corp.' => 'Sampo Corp.',
+ 'Prolific-Technology-Inc.' => 'Prolific Technology Inc.',
+ 'RFIDeas-Inc' => 'RFIDeas, Inc',
+ 'Metro' => 'Metro',
+ 'Eagletron-Inc.' => 'Eagletron, Inc.',
+ 'E-Ink-Corp.' => 'E Ink Corp.',
+ 'e.Digital' => 'e.Digital',
+ 'IFR' => 'IFR',
+ 'Komatsu-Ltd' => 'Komatsu, Ltd',
+ 'Radius-Co.-Ltd' => 'Radius Co., Ltd',
+ 'Innocom-Inc.' => 'Innocom, Inc.',
+ 'Nextcell-Inc.' => 'Nextcell, Inc.',
+ 'Motorola-iDEN' => 'Motorola iDEN',
+ 'Microdia' => 'Microdia',
+ 'Reiner-SCT-Kartensysteme-GmbH' => 'Reiner SCT Kartensysteme GmbH',
+ 'Sealevel-Systems-Inc.' => 'Sealevel Systems, Inc.',
+ 'ViewPLUS-Inc.' => 'ViewPLUS, Inc.',
+ 'Glory-Ltd' => 'Glory, Ltd',
+ 'Spectrum-Digital-Inc.' => 'Spectrum Digital, Inc.',
+ 'Billion-Bright-Ltd' => 'Billion Bright, Ltd',
+ 'Vidar-Systems-Corp.' => 'Vidar Systems Corp.',
+ 'TRS-International-Mfg.-Inc.' => 'TRS International Mfg., Inc.',
+ 'Xytronix-Research---Design' => 'Xytronix Research & Design',
+ 'Apogee-Electronics-Corp.' => 'Apogee Electronics Corp.',
+ 'Chant-Sincere-Co.-Ltd' => 'Chant Sincere Co., Ltd',
+ 'Toko-Inc.' => 'Toko, Inc.',
+ 'Eminence-Enterprise-Co.-Ltd' => 'Eminence Enterprise Co., Ltd',
+ 'Rexon-Electronics-Corp.' => 'Rexon Electronics Corp.',
+ 'Concept-Telecom-Ltd' => 'Concept Telecom, Ltd',
+ 'MCT-Elektronikladen' => 'MCT Elektronikladen',
+ 'Optronic-Laboratories-Inc.' => 'Optronic Laboratories Inc.',
+ 'JMTek-LLC.' => 'JMTek, LLC.',
+ 'Sipix-Group-Ltd' => 'Sipix Group, Ltd',
+ 'Detto-Corp.' => 'Detto Corp.',
+ 'Wing-Span-Enterprise-Co.-Ltd' => 'Wing-Span Enterprise Co., Ltd',
+ 'NDA-Technologies-Inc.' => 'NDA Technologies, Inc.',
+ 'Kyocera-Wireless-Corp.' => 'Kyocera Wireless Corp.',
+ 'Honda-Tsushin-Kogyo-Co.-Ltd' => 'Honda Tsushin Kogyo Co., Ltd',
+ 'Pathway-Connectivity-Inc.' => 'Pathway Connectivity, Inc.',
+ 'Wavefly-Corp.' => 'Wavefly Corp.',
+ 'Coactive-Networks' => 'Coactive Networks',
+ 'Tempo' => 'Tempo',
+ 'Cesscom-Co.-Ltd' => 'Cesscom Co., Ltd',
+ 'Applied-Microsystems' => 'Applied Microsystems',
+ 'Berkshire-Products-Inc.' => 'Berkshire Products, Inc.',
+ 'Innochips-Co.-Ltd' => 'Innochips Co., Ltd',
+ 'Hanwool-Robotics-Corp.' => 'Hanwool Robotics Corp.',
+ 'Jobin-Yvon-Inc.' => 'Jobin Yvon, Inc.',
+ 'SemTek' => 'SemTek',
+ 'Zyfer' => 'Zyfer',
+ 'Sega-Corp.' => 'Sega Corp.',
+ 'ST-T-Instrument-Corp.' => 'ST&T Instrument Corp.',
+ 'BAE-Systems-Canada-Inc.' => 'BAE Systems Canada, Inc.',
+ 'Castles-Technology-Co.-Ltd' => 'Castles Technology Co., Ltd',
+ 'Motorola-CGISS' => 'Motorola CGISS',
+ 'Ascom-Business-Systems-Ltd' => 'Ascom Business Systems, Ltd',
+ 'Buslink' => 'Buslink',
+ 'Flying-Pig-Systems' => 'Flying Pig Systems',
+ 'Innovonics-Inc.' => 'Innovonics, Inc.',
+ 'Celestix-Networks-Pte.-Ltd' => 'Celestix Networks, Pte., Ltd',
+ 'Singatron-Enterprise-Co.-Ltd' => 'Singatron Enterprise Co., Ltd',
+ 'Opticis-Co.-Ltd' => 'Opticis Co., Ltd',
+ 'Palmax-Technology-Co.-Ltd' => 'Palmax Technology Co., Ltd',
+ 'Keryx-Technologies-Inc.' => 'Keryx Technologies, Inc.',
+ 'Kuon-Yi-Industrial-Corp.' => 'Kuon Yi Industrial Corp.',
+ 'Given-Imaging-Ltd' => 'Given Imaging, Ltd',
+ 'Timex-Corp.' => 'Timex Corp.',
+ 'Rimage-Corp.' => 'Rimage Corp.',
+ 'emsys-GmbH' => 'emsys GmbH',
+ 'Sendo' => 'Sendo',
+ 'Intermagic-Corp.' => 'Intermagic Corp.',
+ 'Kontron-Medical-AG' => 'Kontron Medical AG',
+ 'Technotools-Corp.' => 'Technotools Corp.',
+ 'BroadMAX-Technologies-Inc.' => 'BroadMAX Technologies, Inc.',
+ 'Amphenol' => 'Amphenol',
+ 'SKNet-Co.-Ltd' => 'SKNet Co., Ltd',
+ 'Domex-Technology-Corp.' => 'Domex Technology Corp.',
+ 'TerraTec-Electronic-GmbH' => 'TerraTec Electronic GmbH',
+ 'Bang-Olufsen' => 'Bang Olufsen',
+ 'LabJack-Corporation' => 'LabJack Corporation',
+ 'NewChip-S.r.l.' => 'NewChip S.r.l.',
+ 'JS-Digitech-Inc.' => 'JS Digitech, Inc.',
+ 'Hitachi-Shin-Din-Cable-Ltd' => 'Hitachi Shin Din Cable, Ltd',
+ 'Z-Com' => 'Z-Com',
+ 'pico-Technology' => 'pico Technology',
+ 'e-Conn-Electronic-Co.-Ltd' => 'e-Conn Electronic Co., Ltd',
+ 'ENE-Technology-Inc.' => 'ENE Technology, Inc.',
+ 'Atheros-Communications-Inc.' => 'Atheros Communications, Inc.',
+ 'Fomtex-Corp.' => 'Fomtex Corp.',
+ 'Cellink-Co.-Ltd' => 'Cellink Co., Ltd',
+ 'Compucable-Corp.' => 'Compucable Corp.',
+ 'ishoni-Networks' => 'ishoni Networks',
+ 'Clarisys-Inc.' => 'Clarisys, Inc.',
+ 'Inviso-Inc.' => 'Inviso, Inc.',
+ 'Minolta-QMS-Inc.' => 'Minolta-QMS, Inc.',
+ 'SAFA-MEDIA-Co.-Ltd.' => 'SAFA MEDIA Co., Ltd.',
+ 'UTStarcom' => 'UTStarcom',
+ 'Contemporary-Controls' => 'Contemporary Controls',
+ 'Astron-Electronics-Co.-Ltd' => 'Astron Electronics Co., Ltd',
+ 'MKNet-Corp.' => 'MKNet Corp.',
+ 'Hybrid-Networks-Inc.' => 'Hybrid Networks, Inc.',
+ 'Feng-Shin-Cable-Co.-Ltd' => 'Feng Shin Cable Co., Ltd',
+ 'Elastic-Networks' => 'Elastic Networks',
+ 'Maspro-Denkoh-Corp.' => 'Maspro Denkoh Corp.',
+ 'Hansol-Electronics-Inc.' => 'Hansol Electronics, Inc.',
+ 'BMF-Corp.' => 'BMF Corp.',
+ 'Array-Comm-Inc.' => 'Array Comm, Inc.',
+ 'OnStream-b.v.' => 'OnStream b.v.',
+ 'NALTEC-Inc.' => 'NALTEC, Inc.',
+ 'coaXmedia' => 'coaXmedia',
+ 'NXP' => 'NXP',
+ 'AirSpeak-Inc.' => 'AirSpeak, Inc.',
+ 'Rearden-Steel-Technologies' => 'Rearden Steel Technologies',
+ 'Dah-Kun-Co.-Ltd' => 'Dah Kun Co., Ltd',
+ 'Posiflex-Technologies-Inc.' => 'Posiflex Technologies, Inc.',
+ 'Sri-Cable-Technology-Ltd' => 'Sri Cable Technology, Ltd',
+ 'Tangtop-Technology-Co.-Ltd' => 'Tangtop Technology Co., Ltd',
+ 'Fitcom-inc.' => 'Fitcom, inc.',
+ 'MTS-Systems-Corp.' => 'MTS Systems Corp.',
+ 'Ascor-Inc.' => 'Ascor, Inc.',
+ 'Full-Der-Co.-Ltd' => 'Full Der Co., Ltd',
+ 'Kobil-Systems-GmbH' => 'Kobil Systems GmbH',
+ 'Maxtor' => 'Maxtor',
+ 'NF-Corp.' => 'NF Corp.',
+ 'Grape-Systems-Inc.' => 'Grape Systems, Inc.',
+ 'Tedas-AG' => 'Tedas AG',
+ 'Coherent-Inc.' => 'Coherent, Inc.',
+ 'Agere-Systems-Netherland-BV' => 'Agere Systems Netherland BV',
+ 'EADS-Airbus-France' => 'EADS Airbus France',
+ 'Cleware-GmbH' => 'Cleware GmbH',
+ 'Volex-Asia-Pte.-Ltd' => 'Volex (Asia) Pte., Ltd',
+ 'HMI-Co.-Ltd' => 'HMI Co., Ltd',
+ 'Holon-Corp.' => 'Holon Corp.',
+ 'ASKA-Technologies-Inc.' => 'ASKA Technologies, Inc.',
+ 'AVLAB-Technology-Inc.' => 'AVLAB Technology, Inc.',
+ 'Solomon-Microtech-Ltd' => 'Solomon Microtech, Ltd',
+ 'SMC-Networks-Inc.' => 'SMC Networks, Inc.',
+ 'Myacom-Ltd' => 'Myacom, Ltd',
+ 'CSI-Inc.' => 'CSI, Inc.',
+ 'IVL-Technologies-Ltd' => 'IVL Technologies, Ltd',
+ 'Darfon-Electronics-Corp.' => 'Darfon Electronics Corp.',
+ 'Fritz-Gegauf-AG' => 'Fritz Gegauf AG',
+ 'DXG-Technology-Corp.' => 'DXG Technology Corp.',
+ 'KMJP-Co.-Ltd' => 'KMJP Co., Ltd',
+ 'TMT' => 'TMT',
+ 'Advanet-Inc.' => 'Advanet, Inc.',
+ 'NSI' => 'NSI',
+ 'Megapower-International-Corp.' => 'Megapower International Corp.',
+ 'And-Or-Logic' => 'And-Or Logic',
+ 'Try-Computer-Co.-Ltd' => 'Try Computer Co., Ltd',
+ 'Hirakawa-Hewtech-Corp.' => 'Hirakawa Hewtech Corp.',
+ 'Winmate-Communication-Inc.' => 'Winmate Communication, Inc.',
+ 'Hits-Communications-Inc.' => 'Hits Communications, Inc.',
+ 'MFP-Korea-Inc.' => 'MFP Korea, Inc.',
+ 'Power-Sentry-Newpoint' => 'Power Sentry/Newpoint',
+ 'Japan-Distributor-Corp.' => 'Japan Distributor Corp.',
+ 'MARX-Datentechnik-GmbH' => 'MARX Datentechnik GmbH',
+ 'Wellco-Technology-Co.-Ltd' => 'Wellco Technology Co., Ltd',
+ 'Phison-Electronics-Corp.' => 'Phison Electronics Corp.',
+ 'Essential-Reality-LLC' => 'Essential Reality LLC',
+ 'TechnoVision' => 'TechnoVision',
+ 'Think-Outside-Inc.' => 'Think Outside, Inc.',
+ 'Dolby-Laboratories-Inc.' => 'Dolby Laboratories Inc.',
+ 'Oz-Software' => 'Oz Software',
+ 'King-Jim-Co.-Ltd' => 'King Jim Co., Ltd',
+ 'Ascom-Telecommunications-Ltd' => 'Ascom Telecommunications, Ltd',
+ 'C-Media-Electronics-Inc.' => 'C-Media Electronics, Inc.',
+ 'Global-Sun-Technology-Inc.' => 'Global Sun Technology, Inc.',
+ 'Pitney-Bowes' => 'Pitney Bowes',
+ 'Sure-Fire-Electrical-Corp.' => 'Sure-Fire Electrical Corp.',
+ 'Skanhex-Technology-Inc.' => 'Skanhex Technology, Inc.',
+ 'Mars-Semiconductor-Corp.' => 'Mars Semiconductor Corp.',
+ 'Trazer-Technologies-Inc.' => 'Trazer Technologies, Inc.',
+ 'RTX-Telecom-AS' => 'RTX Telecom AS',
+ 'Tat-Shing-Electrical-Co.' => 'Tat Shing Electrical Co.',
+ 'Sanwa-Supply-Inc.' => 'Sanwa Supply, Inc.',
+ 'Avaya' => 'Avaya',
+ 'Powercom-Co.-Ltd' => 'Powercom Co., Ltd',
+ 'Danger-Research' => 'Danger Research',
+ 'Polar-Electro-OY' => 'Polar Electro OY',
+ 'IOGear-Inc.' => 'IOGear, Inc.',
+ 'softDSP-Co.-Ltd' => 'softDSP Co., Ltd',
+ 'Cubig-Group' => 'Cubig Group',
+ 'Westover-Scientific' => 'Westover Scientific',
+ 'Micro-Star-International' => 'Micro Star International',
+ 'Wen-Te-Electronics-Co.-Ltd' => 'Wen Te Electronics Co., Ltd',
+ 'Tekram-Technology-Co.-Ltd' => 'Tekram Technology Co., Ltd',
+ 'ELCON-Systemtechnik' => 'ELCON Systemtechnik',
+ 'A-D-Medical' => 'A&D Medical',
+ 'Quik-Tech-Solutions' => 'Quik Tech Solutions',
+ 'Tamagawa-Seiki-Co.-Ltd' => 'Tamagawa Seiki Co., Ltd',
+ 'Macpower-Peripherals-Ltd' => 'Macpower Peripherals, Ltd',
+ 'SDK-Co.-Ltd' => 'SDK Co., Ltd',
+ 'First-Cable-Line-Inc.' => 'First Cable Line, Inc.',
+ 'NetworkFab-Corp.' => 'NetworkFab Corp.',
+ 'Access-Solutions' => 'Access Solutions',
+ 'Contek-Electronics-Co.-Ltd' => 'Contek Electronics Co., Ltd',
+ 'MediaQ' => 'MediaQ',
+ 'Custom-Engineering-SPA' => 'Custom Engineering SPA',
+ 'California-Micro-Devices' => 'California Micro Devices',
+ 'Kocom-Co.-Ltd' => 'Kocom Co., Ltd',
+ 'Netac-Technology-Co.-Ltd' => 'Netac Technology Co., Ltd',
+ 'HighSpeed-Surfing' => 'HighSpeed Surfing',
+ 'Tamarack-Inc.' => 'Tamarack, Inc.',
+ 'Datelink-Technology-Co.-Ltd' => 'Datelink Technology Co., Ltd',
+ 'Ubicom-Inc.' => 'Ubicom, Inc.',
+ 'BD-Consumer-Healthcare' => 'BD Consumer Healthcare',
+ 'Novasonics' => 'Novasonics',
+ 'Lifetime-Memory-Products' => 'Lifetime Memory Products',
+ 'Full-Rise-Electronic-Co.-Ltd' => 'Full Rise Electronic Co., Ltd',
+ 'NET-SYS' => 'NET&SYS',
+ 'Sitecom-Europe-B.V.' => 'Sitecom Europe B.V.',
+ 'Nippon-Systemware-Co.-Ltd' => 'Nippon Systemware Co., Ltd',
+ 'Winbest-Technology-Co.-Ltd' => 'Winbest Technology Co., Ltd',
+ 'Amigo-Technology-Inc.' => 'Amigo Technology Inc.',
+ 'Gesytec' => 'Gesytec',
+ 'VMware-Inc.' => 'VMware, Inc.',
+ 'JMTek-LLC' => 'JMTek, LLC',
+ 'Walex-Electronic-Ltd' => 'Walex Electronic, Ltd',
+ 'Crewave' => 'Crewave',
+ 'Pegasus-Technologies-Ltd.' => 'Pegasus Technologies Ltd.',
+ 'Cowon-Systems-Inc.' => 'Cowon Systems, Inc.',
+ 'Symbian-Ltd.' => 'Symbian Ltd.',
+ 'VinChip-Systems-Inc.' => 'VinChip Systems, Inc.',
+ 'J-Phone-East-Co.-Ltd' => 'J-Phone East Co., Ltd',
+ 'HeartMath-LLC' => 'HeartMath LLC',
+ 'Micro-Computer-Control-Corp.' => 'Micro Computer Control Corp.',
+ '3Pea-Technologies-Inc.' => '3Pea Technologies, Inc.',
+ 'TiePie-engineering' => 'TiePie engineering',
+ 'Stratitec-Inc.' => 'Stratitec, Inc.',
+ 'Neostar-Technology-Co.-Ltd' => 'Neostar Technology Co., Ltd',
+ 'Mansella-Ltd' => 'Mansella, Ltd',
+ 'Line6-Inc.' => 'Line6, Inc.',
+ 'Julia-Corp.-Ltd' => 'Julia Corp., Ltd',
+ 'Radica-Games-Ltd' => 'Radica Games, Ltd',
+ 'Speed-Dragon-Multimedia-Ltd' => 'Speed Dragon Multimedia, Ltd',
+ 'Active-Co.-Ltd' => 'Active Co., Ltd',
+ 'Neltron-Industrial-Co.-Ltd' => 'Neltron Industrial Co., Ltd',
+ 'Conwise-Technology-Co.-Ltd.' => 'Conwise Technology Co., Ltd.',
+ 'Hawking-Technologies' => 'Hawking Technologies',
+ 'Fossil-Inc.' => 'Fossil, Inc.',
+ 'Megawin-Technology-Co.-Ltd' => 'Megawin Technology Co., Ltd',
+ 'Logic3' => 'Logic3',
+ 'Hsi-Chin-Electronics-Co.-Ltd' => 'Hsi-Chin Electronics Co., Ltd',
+ 'TVS-Electronics-Ltd' => 'TVS Electronics, Ltd',
+ 'Archos-Inc.' => 'Archos, Inc.',
+ 'On-Tech-Industry-Co.-Ltd' => 'On-Tech Industry Co., Ltd',
+ 'Gmate-Inc.' => 'Gmate, Inc.',
+ 'Shin-An-Wire---Cable-Co.' => 'Shin An Wire & Cable Co.',
+ 'MediaTek-Inc.' => 'MediaTek Inc.',
+ 'GreenAsia-Inc.' => 'GreenAsia Inc.',
+ 'WiebeTech-LLC' => 'WiebeTech, LLC',
+ 'VTech-Engineering-Canada-Ltd' => 'VTech Engineering Canada, Ltd',
+ 'Cs-Glory-Enterprise-Co.-Ltd' => 'Cs Glory Enterprise Co., Ltd',
+ 'eM-Technics-Co.-Ltd' => 'eM Technics Co., Ltd',
+ 'Future-Technology-Co.-Ltd' => 'Future Technology Co., Ltd',
+ 'Aplux-Communications-Ltd' => 'Aplux Communications, Ltd',
+ 'Fingerworks-Inc.' => 'Fingerworks, Inc.',
+ 'Parallel-Dice-Co.-Ltd' => 'Parallel Dice Co., Ltd',
+ 'TA-HSING-Industries-Ltd' => 'TA HSING Industries, Ltd',
+ 'ADTEC-Corp.' => 'ADTEC Corp.',
+ 'Streamzap-Inc.' => 'Streamzap, Inc.',
+ 'Tamura-Corp.' => 'Tamura Corp.',
+ 'Ours-Technology-Inc.' => 'Ours Technology, Inc.',
+ 'Nihon-Computer-Co.-Ltd' => 'Nihon Computer Co., Ltd',
+ 'MSL-Enterprises-Corp.' => 'MSL Enterprises Corp.',
+ 'CenDyne-Inc.' => 'CenDyne, Inc.',
+ 'Humax-Co.-Ltd' => 'Humax Co., Ltd',
+ 'NovaTech' => 'NovaTech',
+ 'WIS-Technologies-Inc.' => 'WIS Technologies, Inc.',
+ 'Y-S-Electronic-Co.-Ltd' => 'Y-S Electronic Co., Ltd',
+ 'Saint-Technology-Corp.' => 'Saint Technology Corp.',
+ 'Endor-AG' => 'Endor AG',
+ 'VWeb-Corp.' => 'VWeb Corp.',
+ 'Abit-Computer-Corp.' => 'Abit Computer Corp.',
+ 'Sweetray-Industrial-Ltd' => 'Sweetray Industrial, Ltd',
+ 'Axell-Co.-Ltd' => 'Axell Co., Ltd',
+ 'Ballracing-Developments-Ltd' => 'Ballracing Developments, Ltd',
+ 'InnoVISION-Multimedia-Ltd' => 'InnoVISION Multimedia, Ltd',
+ 'Theta-Link-Corp.' => 'Theta Link Corp.',
+ 'Lite-On-IT-Corp.' => 'Lite-On IT Corp.',
+ 'TaiSol-Electronics-Co.-Ltd' => 'TaiSol Electronics Co., Ltd',
+ 'Phogenix-Imaging-LLC' => 'Phogenix Imaging, LLC',
+ 'WinMaxGroup' => 'WinMaxGroup',
+ 'Kyoto-Micro-Computer-Co.-Ltd' => 'Kyoto Micro Computer Co., Ltd',
+ 'Wing-Tech-Enterprise-Co.-Ltd' => 'Wing-Tech Enterprise Co., Ltd',
+ 'Fiberbyte' => 'Fiberbyte',
+ 'Noriake-Itron-Corp.' => 'Noriake Itron Corp.',
+ 'e-MDT-Co.-Ltd' => 'e-MDT Co., Ltd',
+ 'Shima-Seiki-Mfg.-Ltd' => 'Shima Seiki Mfg., Ltd',
+ 'Sarotech-Co.-Ltd' => 'Sarotech Co., Ltd',
+ 'AMI-Semiconductor-Inc.' => 'AMI Semiconductor, Inc.',
+ 'ComTrue-Technology-Corp.' => 'ComTrue Technology Corp.',
+ 'Sunrich-Technology-Ltd' => 'Sunrich Technology, Ltd',
+ 'D-WAV-Scientific-Co.-Ltd' => 'D-WAV Scientific Co., Ltd',
+ 'Hitachi-Cable-Ltd' => 'Hitachi Cable, Ltd',
+ 'Aichi-Micro-Intelligent-Corp.' => 'Aichi Micro Intelligent Corp.',
+ 'I-O-Magic-Corp.' => 'I/O Magic Corp.',
+ 'Lynn-Products-Inc.' => 'Lynn Products, Inc.',
+ 'DSI-Datotech' => 'DSI Datotech',
+ 'PointChips' => 'PointChips',
+ 'Yield-Microelectronics-Corp.' => 'Yield Microelectronics Corp.',
+ 'SM-Tech-Co.-Ltd-Tulip' => 'SM Tech Co., Ltd (Tulip)',
+ 'Oasis-Semiconductor' => 'Oasis Semiconductor',
+ 'Wem-Technology-Inc.' => 'Wem Technology, Inc.',
+ 'CAS-Corp.' => 'CAS Corp.',
+ 'Hori-Co.-Ltd' => 'Hori Co., Ltd',
+ 'Energy-Full-Corp.' => 'Energy Full Corp.',
+ 'LD-Didactic-GmbH' => 'LD Didactic GmbH',
+ 'Mars-Engineering-Corp.' => 'Mars Engineering Corp.',
+ 'Acetek-Technology-Co.-Ltd' => 'Acetek Technology Co., Ltd',
+ 'Finger-Lakes-Instrumentation' => 'Finger Lakes Instrumentation',
+ 'Oracom-Co.-Ltd' => 'Oracom Co., Ltd',
+ 'Onset-Computer-Corp.' => 'Onset Computer Corp.',
+ 'Funai-Electric-Co.-Ltd' => 'Funai Electric Co., Ltd',
+ 'Iwill-Corp.' => 'Iwill Corp.',
+ 'IOI-Technology-Corp.' => 'IOI Technology Corp.',
+ 'Senior-Industries-Inc.' => 'Senior Industries, Inc.',
+ 'Flex-P-Industries-Snd.-Bhd.' => 'Flex-P Industries, Snd., Bhd.',
+ 'ViPower-Inc.' => 'ViPower, Inc.',
+ 'Priva-Design-Services' => 'Priva Design Services',
+ 'Jess-Technology-Co.-Ltd' => 'Jess Technology Co., Ltd',
+ 'Chrysalis-Development' => 'Chrysalis Development',
+ 'Kokuyo-Co.-Ltd' => 'Kokuyo Co., Ltd',
+ 'Nien-Yi-Industrial-Corp.' => 'Nien-Yi Industrial Corp.',
+ 'Airprime-Incorporated' => 'Airprime, Incorporated',
+ 'RDC-Semiconductor-Co.-Ltd' => 'RDC Semiconductor Co., Ltd',
+ 'Polhemus' => 'Polhemus',
+ 'St.-John-Technology-Co.-Ltd' => 'St. John Technology Co., Ltd',
+ 'WorldWide-Cable-Opto-Corp.' => 'WorldWide Cable Opto Corp.',
+ 'Microtune-Inc.' => 'Microtune, Inc.',
+ 'Freedom-Scientific' => 'Freedom Scientific',
+ 'Wing-Key-Electrical-Co.-Ltd' => 'Wing Key Electrical Co., Ltd',
+ 'AmbiCom-Inc.' => 'AmbiCom, Inc.',
+ 'Prairiecomm-Inc.' => 'Prairiecomm, Inc.',
+ 'NewAge-International-LLC' => 'NewAge International, LLC',
+ 'Key-Technology-Corp.' => 'Key Technology Corp.',
+ 'NTK-Ltd' => 'NTK, Ltd',
+ 'Varian-Inc.' => 'Varian, Inc.',
+ 'Acrox-Technologies-Co.-Ltd' => 'Acrox Technologies Co., Ltd',
+ 'LeapFrog-Enterprises' => 'LeapFrog Enterprises',
+ 'Kobe-Steel-Ltd' => 'Kobe Steel, Ltd',
+ 'Dionex-Corp.' => 'Dionex Corp.',
+ 'Vibren-Technologies-Inc.' => 'Vibren Technologies, Inc.',
+ 'INTELLIGENT-SYSTEMS' => 'INTELLIGENT SYSTEMS',
+ 'DFI' => 'DFI',
+ 'DQ-Technology-Inc.' => 'DQ Technology, Inc.',
+ 'NetBotz-Inc.' => 'NetBotz, Inc.',
+ 'Fluke-Corp.' => 'Fluke Corp.',
+ 'VTech-Holdings-Ltd' => 'VTech Holdings, Ltd',
+ 'Yazaki-Corp.' => 'Yazaki Corp.',
+ 'Uniwill-Computer-Corp.' => 'Uniwill Computer Corp.',
+ 'Kingnet-Technology-Co.-Ltd' => 'Kingnet Technology Co., Ltd',
+ 'Soma-Networks' => 'Soma Networks',
+ 'CviLux-Corp.' => 'CviLux Corp.',
+ 'CyberBank-Corp.' => 'CyberBank Corp.',
+ 'Hyun-Won-Inc.' => 'Hyun Won, Inc.',
+ 'Lucent-Technologies' => 'Lucent Technologies',
+ 'Starconn-Electronic-Co.-Ltd' => 'Starconn Electronic Co., Ltd',
+ 'ATL-Technology' => 'ATL Technology',
+ 'Sotec-Co.-Ltd' => 'Sotec Co., Ltd',
+ 'Epox-Computer-Co.-Ltd' => 'Epox Computer Co., Ltd',
+ 'Logic-Controls-Inc.' => 'Logic Controls, Inc.',
+ 'Winpoint-Electronic-Corp.' => 'Winpoint Electronic Corp.',
+ 'Inclose-Design-Inc.' => 'Inclose Design, Inc.',
+ 'Wistron-Corp.' => 'Wistron Corp.',
+ 'AACom-Corp.' => 'AACom Corp.',
+ 'Bitwise-Systems-Inc.' => 'Bitwise Systems, Inc.',
+ 'Mitac-Internatinal-Corp.' => 'Mitac Internatinal Corp.',
+ 'Delcom-Engineering' => 'Delcom Engineering',
+ 'Dataplus-Supplies-Inc.' => 'Dataplus Supplies, Inc.',
+ 'Research-In-Motion-Ltd.' => 'Research In Motion, Ltd.',
+ 'Dynastream-Innovations-Inc.' => 'Dynastream Innovations, Inc.',
+ 'Tulip-Computers-B.V.' => 'Tulip Computers B.V.',
+ 'Giant-Electronics-Ltd.' => 'Giant Electronics Ltd.',
+ 'Tenovis-GmbH---Co.-KG' => 'Tenovis GmbH & Co., KG',
+ 'Micro-Plus' => 'Micro Plus',
+ 'IN-Tech-Electronics-Ltd' => 'IN-Tech Electronics, Ltd',
+ 'Greenconn-U.S.A.-Inc.' => 'Greenconn (U.S.A.), Inc.',
+ 'DVICO' => 'DVICO',
+ 'United-Computer-Accessories' => 'United Computer Accessories',
+ 'CRS-Electronic-Co.-Ltd' => 'CRS Electronic Co., Ltd',
+ 'UMC-Electronics-Co.-Ltd' => 'UMC Electronics Co., Ltd',
+ 'Access-Co.-Ltd' => 'Access Co., Ltd',
+ 'Xsido-Corp.' => 'Xsido Corp.',
+ 'MJ-Research-Inc.' => 'MJ Research, Inc.',
+ 'Core-Valley-Co.-Ltd' => 'Core Valley Co., Ltd',
+ 'Aopen-Inc.' => 'Aopen, Inc.',
+ 'Speed-Tech-Corp.' => 'Speed Tech Corp.',
+ 'Sigma-Corp.' => 'Sigma Corp.',
+ 'LG-Electronics-Inc.' => 'LG Electronics, Inc.',
+ 'Apacer-Technology-Inc.' => 'Apacer Technology, Inc.',
+ 'iRiver-Ltd.' => 'iRiver, Ltd.',
+ 'Emuzed-Inc.' => 'Emuzed, Inc.',
+ 'AV-Chaseway-Ltd' => 'AV Chaseway, Ltd',
+ 'Chou-Chin-Industrial-Co.-Ltd' => 'Chou Chin Industrial Co., Ltd',
+ 'Netopia-Inc.' => 'Netopia, Inc.',
+ 'Fukuda-Denshi-Co.-Ltd' => 'Fukuda Denshi Co., Ltd',
+ 'Mobile-Media-Tech.' => 'Mobile Media Tech.',
+ 'Densitron-Technologies-PLC' => 'Densitron Technologies PLC',
+ 'Softronics-Pty.-Ltd' => 'Softronics Pty., Ltd',
+ 'Labtec' => 'Labtec',
+ 'Shinko-Shoji-Co.-Ltd' => 'Shinko Shoji Co., Ltd',
+ 'Hyper-Paltek' => 'Hyper-Paltek',
+ 'Newly-Corp.' => 'Newly Corp.',
+ 'Time-Domain' => 'Time Domain',
+ 'Inovys-Corp.' => 'Inovys Corp.',
+ 'Atlantic-Coast-Telesys' => 'Atlantic Coast Telesys',
+ 'Ramos-Technology-Co.-Ltd' => 'Ramos Technology Co., Ltd',
+ 'Infotronic-America-Inc.' => 'Infotronic America, Inc.',
+ 'Etoms-Electronics-Corp.' => 'Etoms Electronics Corp.',
+ 'Winic-Corp.' => 'Winic Corp.',
+ 'Comax-Technology-Inc.' => 'Comax Technology, Inc.',
+ 'C-One-Technology-Corp.' => 'C-One Technology Corp.',
+ 'Nucam-Corp.' => 'Nucam Corp.',
+ 'Ideazon-Inc.' => 'Ideazon, Inc.',
+ 'devolo-AG' => 'devolo AG',
+ 'Stanton' => 'Stanton',
+ 'iCreate-Technologies-Corp.' => 'iCreate Technologies Corp.',
+ 'Chu-Yuen-Enterprise-Co.-Ltd' => 'Chu Yuen Enterprise Co., Ltd',
+ 'Targus-Group-International' => 'Targus Group International',
+ 'Mylex---Buslogic' => 'Mylex / Buslogic',
+ 'AMCO-TEC-International-Inc.' => 'AMCO TEC International, Inc.',
+ 'Newport-Corporation' => 'Newport Corporation',
+ 'WB-Electronics' => 'WB Electronics',
+ 'Yubico.com' => 'Yubico.com',
+ 'Immanuel-Electronics-Co.-Ltd' => 'Immanuel Electronics Co., Ltd',
+ 'BMS-International-Beheer-N.V.' => 'BMS International Beheer N.V.',
+ 'Hsin-Chen-Ent-Co.-Ltd' => 'Hsin Chen Ent Co., Ltd',
+ 'ON-Semiconductor' => 'ON Semiconductor',
+ 'Giesecke---Devrient-GmbH' => 'Giesecke & Devrient GmbH',
+ 'Delkin-Devices-Inc.' => 'Delkin Devices, Inc.',
+ 'Easthome-Industrial-Co.-Ltd' => 'Easthome Industrial Co., Ltd',
+ 'CCYU-Technology' => 'CCYU Technology',
+ 'Loyal-Legend-Ltd' => 'Loyal Legend, Ltd',
+ 'Curitel-Communications-Inc.' => 'Curitel Communications, Inc.',
+ 'San-Chieh-Manufacturing-Ltd' => 'San Chieh Manufacturing, Ltd',
+ 'ConectL' => 'ConectL',
+ 'Money-Controls' => 'Money Controls',
+ 'GCT-Semiconductor-Inc.' => 'GCT Semiconductor, Inc.',
+ 'Gateway-Inc.' => 'Gateway, Inc.',
+ 'Arlec-Australia-Ltd' => 'Arlec Australia, Ltd',
+ 'Midoriya-Electric-Co.-Ltd' => 'Midoriya Electric Co., Ltd',
+ 'KidzMouse-Inc.' => 'KidzMouse, Inc.',
+ 'Shin-Etsukaken-Co.-Ltd' => 'Shin-Etsukaken Co., Ltd',
+ 'Canon-Electronics-Inc.' => 'Canon Electronics, Inc.',
+ 'Pantech-Co.-Ltd' => 'Pantech Co., Ltd',
+ 'Chloride-Power-Protection' => 'Chloride Power Protection',
+ 'Grand-tek-Technology-Co.-Ltd' => 'Grand-tek Technology Co., Ltd',
+ 'Robert-Bosch-GmbH' => 'Robert Bosch GmbH',
+ 'Lotes-Co.-Ltd.' => 'Lotes Co., Ltd.',
+ 'Surface-Optics-Corp.' => 'Surface Optics Corp.',
+ 'DATASOFT-Systems-GmbH' => 'DATASOFT Systems GmbH',
+ 'eSOL-Co.-Ltd' => 'eSOL Co., Ltd',
+ 'Hirotech-Inc.' => 'Hirotech, Inc.',
+ 'Mitsubishi-Materials-Corp.' => 'Mitsubishi Materials Corp.',
+ 'SK-Teletech-Co.-Ltd' => 'SK Teletech Co., Ltd',
+ 'Cables-To-Go' => 'Cables To Go',
+ 'USI-Co.-Ltd' => 'USI Co., Ltd',
+ 'Honeywell-Inc.' => 'Honeywell, Inc.',
+ 'Princeton-Technology-Corp.' => 'Princeton Technology Corp.',
+ 'Liebert-Corp.' => 'Liebert Corp.',
+ 'Comodo-PLX-' => 'Comodo (PLX?)',
+ 'DiBcom' => 'DiBcom',
+ 'TM-Technology-Inc.' => 'TM Technology, Inc.',
+ 'Dinging-Technology-Co.-Ltd' => 'Dinging Technology Co., Ltd',
+ 'TMT-Technology-Inc.' => 'TMT Technology, Inc.',
+ 'SmartHome' => 'SmartHome',
+ 'Sanei-Electric-Inc.' => 'Sanei Electric, Inc.',
+ 'Intec-Inc.' => 'Intec, Inc.',
+ 'Eratech' => 'Eratech',
+ 'GBM-Connector-Co.-Ltd' => 'GBM Connector Co., Ltd',
+ 'Kycon-Inc.' => 'Kycon, Inc.',
+ 'Silicon-Labs' => 'Silicon Labs',
+ 'Velleman-Components-Inc.' => 'Velleman Components, Inc.',
+ 'Hottinger-Baldwin-Measurement' => 'Hottinger Baldwin Measurement',
+ 'Man-Boon-Manufactory-Ltd' => 'Man Boon Manufactory, Ltd',
+ 'Uni-Class-Technology-Co.-Ltd' => 'Uni Class Technology Co., Ltd',
+ 'Authenex-Inc.' => 'Authenex, Inc.',
+ 'In-Win-Development-Inc.' => 'In-Win Development, Inc.',
+ 'Post-Op-Video-Inc.' => 'Post-Op Video, Inc.',
+ 'CablePlus-Ltd' => 'CablePlus, Ltd',
+ 'Nada-Electronics-Ltd' => 'Nada Electronics, Ltd',
+ 'Vast-Technologies-Inc.' => 'Vast Technologies, Inc.',
+ 'Nexio-Co.-Ltd' => 'Nexio Co., Ltd',
+ 'Importek' => 'Importek',
+ 'Turtle-Beach' => 'Turtle Beach',
+ 'Pictos-Technologies-Inc.' => 'Pictos Technologies, Inc.',
+ 'Anubis-Electronics-Ltd' => 'Anubis Electronics, Ltd',
+ 'VirTouch-Ltd' => 'VirTouch, Ltd',
+ 'EasyPass-Industrial-Co.-Ltd' => 'EasyPass Industrial Co., Ltd',
+ 'Brightcom-Technologies-Ltd' => 'Brightcom Technologies, Ltd',
+ 'Moxa-Technologies-Co.-Ltd.' => 'Moxa Technologies Co., Ltd.',
+ 'Pandora-International-Ltd.' => 'Pandora International Ltd.',
+ 'YM-ELECTRIC-CO.-Ltd' => 'YM ELECTRIC CO., Ltd',
+ 'Medion-AG' => 'Medion AG',
+ 'VSO-Electric-Co.-Ltd' => 'VSO Electric Co., Ltd',
+ 'RedRat' => 'RedRat',
+ 'Cellon-International-Inc.' => 'Cellon International, Inc.',
+ 'Tenx-Technology-Inc.' => 'Tenx Technology, Inc.',
+ 'CTS-Electronincs' => 'CTS Electronincs',
+ 'Arin-Tech-Co.-Ltd' => 'Arin Tech Co., Ltd',
+ 'Mapower-Electronics-Co.-Ltd' => 'Mapower Electronics Co., Ltd',
+ 'V-One-Multimedia-Pte.-Ltd' => 'V One Multimedia, Pte., Ltd',
+ 'CyberScan-Technologies-Inc.' => 'CyberScan Technologies, Inc.',
+ 'Japan-Radio-Company' => 'Japan Radio Company',
+ 'Sphairon-Access-Systems-GmbH' => 'Sphairon Access Systems GmbH',
+ 'Wavecom' => 'Wavecom',
+ 'Salix-Technology-Co.-Ltd.' => 'Salix Technology Co., Ltd.',
+ 'Secugen-Corp.' => 'Secugen Corp.',
+ 'DeLorme-Publishing-Inc.' => 'DeLorme Publishing, Inc.',
+ 'Telson-Electronics-Co.-Ltd' => 'Telson Electronics Co., Ltd',
+ 'Salient-Systems-Corp.' => 'Salient Systems Corp.',
+ 'BizConn-International-Corp.' => 'BizConn International Corp.',
+ 'Gigastorage-Corp.' => 'Gigastorage Corp.',
+ 'Silicon-10-Technology-Corp.' => 'Silicon 10 Technology Corp.',
+ 'Shengyih-Steel-Mold-Co.-Ltd' => 'Shengyih Steel Mold Co., Ltd',
+ 'Santa-Electronic-Inc.' => 'Santa Electronic, Inc.',
+ 'JNC-Inc.' => 'JNC, Inc.',
+ 'Venture-Corp.-Ltd' => 'Venture Corp., Ltd',
+ 'Kyocera-Elco-Corp.' => 'Kyocera Elco Corp.',
+ 'Bloomberg-L.P.' => 'Bloomberg L.P.',
+ 'You-Yang-Technology-Co.-Ltd' => 'You Yang Technology Co., Ltd',
+ 'Tripace' => 'Tripace',
+ 'Yankee-Robotics-LLC' => 'Yankee Robotics, LLC',
+ 'Technoimagia-Co.-Ltd' => 'Technoimagia Co., Ltd',
+ 'StarShine-Technology-Corp.' => 'StarShine Technology Corp.',
+ 'Sierra-Wireless-Inc.' => 'Sierra Wireless, Inc.',
+ 'ZHAN-QI-Technology-Co.-Ltd' => 'ZHAN QI Technology Co., Ltd',
+ 'ruwido-austria-GmbH' => 'ruwido austria GmbH',
+ 'Chipcon-AS' => 'Chipcon AS',
+ 'Technovas-Co.-Ltd' => 'Technovas Co., Ltd',
+ 'GlobalMedia-Group-LLC' => 'GlobalMedia Group, LLC',
+ 'Exito-Electronics-Co.-Ltd' => 'Exito Electronics Co., Ltd',
+ 'ATECH-FLASH-TECHNOLOGY' => 'ATECH FLASH TECHNOLOGY',
+ 'Inmax' => 'Inmax',
+ 'Topfield-Co.-Ltd.' => 'Topfield Co., Ltd.',
+ 'K.I.-Technology-Co.-Ltd.' => 'K.I. Technology Co. Ltd.',
+ 'Siemens-AG' => 'Siemens AG',
+ 'Prolific' => 'Prolific',
+ 'Alcatel--' => 'Alcatel (?)',
+ 'InterBiometrics' => 'InterBiometrics',
+ 'Hudson-Soft-Co.-Ltd' => 'Hudson Soft Co., Ltd',
+ 'Magellan' => 'Magellan',
+ 'DigiTech' => 'DigiTech',
+ 'Jungsoft-Co.-Ltd' => 'Jungsoft Co., Ltd',
+ 'Denver-Electronics' => 'Denver Electronics',
+ 'Unknown' => 'Unknown',
+ 'Novation-EMS' => 'Novation EMS',
+ 'Belkin' => 'Belkin',
+ 'AirVast' => 'AirVast',
+ 'Nyko-Honey-Bee' => 'Nyko (Honey Bee)',
+ 'Apogee-Inc.' => 'Apogee Inc.',
+ 'A-DATA-Technology-Co.-Ltd.' => 'A-DATA Technology Co., Ltd.',
+ 'Standard-Microsystems-Corp.' => 'Standard Microsystems Corp.',
+ 'Covidien-Energy-based-Devices' => 'Covidien Energy-based Devices',
+ 'Pirelli-Broadband-Solutions' => 'Pirelli Broadband Solutions',
+ 'Logic3---SpectraVideo-plc' => 'Logic3 / SpectraVideo plc',
+ 'Aristocrat-Technologies' => 'Aristocrat Technologies',
+ 'Bel-Stewart' => 'Bel Stewart',
+ 'Strobe-Data-Inc.' => 'Strobe Data, Inc.',
+ 'TwinMOS' => 'TwinMOS',
+ 'Ensoniq' => 'Ensoniq',
+ 'zebris-Medical-GmbH' => 'zebris Medical GmbH',
+ 'Marvell-Semiconductor-Inc.' => 'Marvell Semiconductor, Inc.',
+ 'Innomedia' => 'Innomedia',
+ 'Belkin-Components-hex' => 'Belkin Components [hex]',
+ 'RISO-KAGAKU-CORP.' => 'RISO KAGAKU CORP.',
+ 'CyberTAN-Technology' => 'CyberTAN Technology',
+ 'Trendchip-Technologies-Corp.' => 'Trendchip Technologies Corp.',
+ 'Autocue-Group-Ltd' => 'Autocue Group Ltd',
+ 'Huawei-Technologies-Co.-Ltd.' => 'Huawei Technologies Co., Ltd.',
+ 'EMS-Dr.-Thomas-Wuensche' => 'EMS Dr. Thomas Wuensche',
+ 'BETTER-WIRE-FACTORY-CO.-LTD.' => 'BETTER WIRE FACTORY CO., LTD.',
+ 'Waldorf-Music-GmbH' => 'Waldorf Music GmbH',
+ 'Tapwave-Inc.' => 'Tapwave, Inc.',
+ 'Memorex-Products-Inc.' => 'Memorex Products, Inc.',
+ 'AIN-Comm.-Technology-Co.-Ltd' => 'AIN Comm. Technology Co., Ltd',
+ 'Fascinating-Electronics-Inc.' => 'Fascinating Electronics, Inc.',
+ 'Transcend-Information-Inc.' => 'Transcend Information, Inc.',
+ 'Shuttle-Inc.' => 'Shuttle, Inc.',
+ 'Roper' => 'Roper',
+ 'ICS-Electronics' => 'ICS Electronics',
+ 'Natural-Point' => 'Natural Point',
+ 'Envara-Inc.' => 'Envara Inc.',
+ 'Konica-Minolta' => 'Konica Minolta',
+ 'Mobility' => 'Mobility',
+ 'Sino-Lite-Technology-Corp.' => 'Sino Lite Technology Corp.',
+ 'Moravian-Instruments' => 'Moravian Instruments',
+ 'PanJit-International-Inc.' => 'PanJit International Inc.',
+ 'P-E-Microcomputer-Systems' => 'P&E Microcomputer Systems',
+ 'SEGGER' => 'SEGGER',
+ 'STEC' => 'STEC',
+ 'Swissbit' => 'Swissbit',
+ 'CNet-Technology-Inc.' => 'CNet Technology Inc.',
+ 'Vimtron-Electronics-Co.-Ltd.' => 'Vimtron Electronics Co., Ltd.',
+ 'SCAPS-GmbH' => 'SCAPS GmbH',
+ 'Netgear-Inc' => 'Netgear, Inc',
+ 'Validity-Sensors-Inc.' => 'Validity Sensors, Inc.',
+ 'Jungo-LTD' => 'Jungo LTD',
+ 'TOMTOM-B.V.' => 'TOMTOM B.V.',
+ 'IdealTEK-Inc.' => 'IdealTEK, Inc.',
+ 'Sennheiser-Communications' => 'Sennheiser Communications',
+ 'BEHRINGER-International-GmbH' => 'BEHRINGER International GmbH',
+ 'Q-tec' => 'Q-tec',
+ 'Baltech' => 'Baltech',
+ 'PerkinElmer-Optoelectronics' => 'PerkinElmer Optoelectronics',
+ 'Linksys' => 'Linksys',
+ 'Alesis' => 'Alesis',
+ 'Nippon-Dics-Co.-Ltd.' => 'Nippon Dics Co., Ltd.',
+ 'Unknown' => 'Unknown',
+ 'Ricoh-Printing-Systems-Ltd.' => 'Ricoh Printing Systems, Ltd.',
+ 'Wisair-Ltd.' => 'Wisair Ltd.',
+ 'Techsan-Electronics-Co.-Ltd.' => 'Techsan Electronics Co., Ltd.',
+ 'Shark-Multimedia' => 'Shark Multimedia',
+ 'IMC-Networks' => 'IMC Networks',
+ 'ALEREON-INC.' => 'ALEREON, INC.',
+ 'i.Tech-Dynamic-Limited' => 'i.Tech Dynamic Limited',
+ 'Rane' => 'Rane',
+ 'TechnoScope-Co.-Ltd.' => 'TechnoScope Co., Ltd.',
+ 'Zydacron' => 'Zydacron',
+ 'Initio-Corporation' => 'Initio Corporation',
+ 'Axxion-Group-Corp.' => 'Axxion Group Corp.',
+ 'Bowe-Bell---Howell' => 'Bowe Bell & Howell',
+ 'Sitronix' => 'Sitronix',
+ 'Telechips-Inc.' => 'Telechips, Inc.',
+ 'Novatel-Wireless' => 'Novatel Wireless',
+ 'ABILITY-ENTERPRISE-CO.-LTD.' => 'ABILITY ENTERPRISE CO., LTD.',
+ 'Thales-E-Transactions' => 'Thales E-Transactions',
+ 'Arbiter-Systems-Inc.' => 'Arbiter Systems, Inc.',
+ 'RedOctane' => 'RedOctane',
+ 'Pertech-Resources-Inc.' => 'Pertech Resources, Inc.',
+ 'Wistron-NeWeb' => 'Wistron NeWeb',
+ 'Denali-Software-Inc.' => 'Denali Software, Inc.',
+ 'Altek-Corporation' => 'Altek Corporation',
+ 'Digilent' => 'Digilent',
+ 'Radio-Shack' => 'Radio Shack',
+ 'Trust' => 'Trust',
+ 'Tatung-Co.' => 'Tatung Co.',
+ 'Staccato-Communications' => 'Staccato Communications',
+ 'Micro-Star-International' => 'Micro Star International',
+ 'Huawei-3Com' => 'Huawei-3Com',
+ 'Upek' => 'Upek',
+ 'Hama-GmbH---Co.-KG' => 'Hama GmbH & Co., KG',
+ 'Vaillant' => 'Vaillant',
+ 'Elsa-AG-hex' => 'Elsa AG [hex]',
+ 'Silicom' => 'Silicom',
+ 'DSP-Group-Ltd.' => 'DSP Group, Ltd.',
+ 'EVATRONIX-SA' => 'EVATRONIX SA',
+ 'Ralink-Technology-Corp.' => 'Ralink Technology, Corp.',
+ 'Panstrong-Company-Ltd.' => 'Panstrong Company Ltd.',
+ 'Microtek-International-Inc.' => 'Microtek International Inc.',
+ 'Imagination-Technologies' => 'Imagination Technologies',
+ 'WideView-Technology-Inc.' => 'WideView Technology Inc.',
+ 'CTK-Corporation' => 'CTK Corporation',
+ 'Printronix-Inc.' => 'Printronix Inc.',
+ 'ATP-Electronics-Inc.' => 'ATP Electronics Inc.',
+ 'StarTech.com-Ltd.' => 'StarTech.com Ltd.',
+ 'Ralink-Technology-Corp.' => 'Ralink Technology, Corp.',
+ 'Rockwell-Automation-Inc.' => 'Rockwell Automation, Inc.',
+ 'Gemlight-Computer-Ltd' => 'Gemlight Computer, Ltd',
+ 'Super-Top' => 'Super Top',
+ 'JAMER-INDUSTRIES-CO.-LTD.' => 'JAMER INDUSTRIES CO., LTD.',
+ 'Raritan-Computer-Inc.' => 'Raritan Computer, Inc.',
+ 'Dialogue-Technology-Corp.' => 'Dialogue Technology Corp.',
+ 'Planex-Communications' => 'Planex Communications',
+ 'Shure-Inc.' => 'Shure Inc.',
+ 'TechniSat-Digital-GmbH' => 'TechniSat Digital GmbH',
+ 'Ellisys' => 'Ellisys',
+ 'Pine-Tum-Enterprise-Co.-Ltd.' => 'Pine-Tum Enterprise Co., Ltd.',
+ 'medMobile' => 'medMobile',
+ 'Actel' => 'Actel',
+ 'CompUSA' => 'CompUSA',
+ 'Cheshire-Engineering-Corp.' => 'Cheshire Engineering Corp.',
+ 'Bitwire-Corp.' => 'Bitwire Corp.',
+ 'ENE-Technology-Inc' => 'ENE Technology Inc',
+ 'Silicon-Portals' => 'Silicon Portals',
+ 'UBIQUAM-Co.-Ltd.' => 'UBIQUAM Co., Ltd.',
+ 'LG-HLDS' => 'LG (HLDS)',
+ 'Razer-USA-Ltd' => 'Razer USA, Ltd',
+ 'U-Blox-AG' => 'U-Blox AG',
+ 'Celectronic-GmbH' => 'Celectronic GmbH',
+ 'PNY' => 'PNY',
+ 'ConnectCounty-Holdings-Berhad' => 'ConnectCounty Holdings Berhad',
+ 'Prolink-Microsystems-Corp.' => 'Prolink Microsystems Corp.',
+ 'OQO' => 'OQO',
+ 'Sunf-Pu-Technology-Co.-Ltd' => 'Sunf Pu Technology Co., Ltd',
+ 'Quantum-Corporation' => 'Quantum Corporation',
+ 'ALLTOP-TECHNOLOGY-CO.-LTD.' => 'ALLTOP TECHNOLOGY CO., LTD.',
+ 'Ketron-SRL' => 'Ketron SRL',
+ 'TRENDnet' => 'TRENDnet',
+ 'Fiberline' => 'Fiberline',
+ 'SMA-Technologie-AG' => 'SMA Technologie AG',
+ 'Oakley-Inc.' => 'Oakley Inc.',
+ 'Freescale-Semiconductor-Inc.' => 'Freescale Semiconductor, Inc.',
+ 'Afatech-Technologies-Inc.' => 'Afatech Technologies, Inc.',
+ 'Teams-Power-Limited' => 'Teams Power Limited',
+ 'Gemtek' => 'Gemtek',
+ 'VMware-Inc.' => 'VMware Inc.',
+ 'Olimex-Ltd.' => 'Olimex Ltd.',
+ 'XL-Imaging' => 'XL Imaging',
+ 'SoundGraph-Inc.' => 'SoundGraph Inc.',
+ 'Laboratoires-MXM' => 'Laboratoires MXM',
+ 'KTF-Technologies' => 'KTF Technologies',
+ 'D-Box-Technologies' => 'D-Box Technologies',
+ 'Textech-International-Ltd.' => 'Textech International Ltd.',
+ 'Coulomb-Electronics-Ltd.' => 'Coulomb Electronics Ltd.',
+ 'Trust-International-B.V.' => 'Trust International B.V.',
+ 'Hynix-Semiconductor-Inc.' => 'Hynix Semiconductor Inc.',
+ 'Seong-Ji-Industrial-Co.-Ltd.' => 'Seong Ji Industrial Co., Ltd.',
+ 'RSA' => 'RSA',
+ 'SohoWare' => 'SohoWare',
+ 'Pacific-Digital-Corp.' => 'Pacific Digital Corp.',
+ 'Belcarra-Technologies-Corp.' => 'Belcarra Technologies Corp.',
+ 'HanfTek' => 'HanfTek',
+ 'Tascam' => 'Tascam',
+ 'Umax' => 'Umax',
+ 'Inside-Out-Networks-hex' => 'Inside Out Networks [hex]',
+ 'VIA-Technologies-Inc.' => 'VIA Technologies, Inc.',
+ 'Amoi-Electronics' => 'Amoi Electronics',
+ 'Wionics-Research' => 'Wionics Research',
+ 'Stonestreet-One-Inc.' => 'Stonestreet One, Inc.',
+ 'Airgo-Networks-Inc.' => 'Airgo Networks Inc.',
+ 'WiQuest-Communications-Inc.' => 'WiQuest Communications, Inc.',
+ '2Wire-Inc.' => '2Wire, Inc.',
+ 'Good-Way-Technology' => 'Good Way Technology',
+ 'Cross-Match-Technologies-GmbH' => 'Cross Match Technologies GmbH',
+ 'SofTec-Microsystems' => 'SofTec Microsystems',
+ 'ChipX' => 'ChipX',
+ 'Matrix-Vision-GmbH' => 'Matrix Vision GmbH',
+ 'Frontier-Design-Group' => 'Frontier Design Group',
+ 'Creatix-Polymedia-GmbH' => 'Creatix Polymedia GmbH',
+ 'PiKRON-Ltd.-hex' => 'PiKRON Ltd. [hex]',
+ 'Total-Phase' => 'Total Phase',
+ 'Golden-Bridge-Electech-Inc.' => 'Golden Bridge Electech Inc.',
+ 'Prevo-Technologies-Inc.' => 'Prevo Technologies, Inc.',
+ 'Godspeed-Computer-Corp.' => 'Godspeed Computer Corp.',
+ 'Delock' => 'Delock',
+ 'ZOOM-Corporation' => 'ZOOM Corporation',
+ 'Kingmax-Digital-Inc.' => 'Kingmax Digital Inc.',
+ 'Saab-AB' => 'Saab AB',
+ 'Atheros-Communications' => 'Atheros Communications',
+ 'Askey-Computer-Corp.-hex' => 'Askey Computer Corp. [hex]',
+ 'VTec-Test-Inc.' => 'VTec Test, Inc.',
+ 'Unigraf' => 'Unigraf',
+ 'Global-Sun-Technology' => 'Global Sun Technology',
+ 'iStation' => 'iStation',
+ 'Persentec-Inc.' => 'Persentec, Inc.',
+ 'VOTI' => 'VOTI',
+ 'Wireless-Cables-Inc.' => 'Wireless Cables, Inc.',
+ 'silex-technology-Inc.' => 'silex technology, Inc.',
+ 'GrauTec' => 'GrauTec',
+ 'AnyDATA-Corporation' => 'AnyDATA Corporation',
+ 'JABLOCOM-s.r.o.' => 'JABLOCOM s.r.o.',
+ 'CMOTECH-Co.-Ltd.' => 'CMOTECH Co., Ltd.',
+ 'Wiener-Plein---Baus' => 'Wiener, Plein & Baus',
+ 'GN-ReSound-A-S' => 'GN ReSound A/S',
+ 'Futurelogic-Inc.' => 'Futurelogic Inc.',
+ 'BlueView-Technologies-Inc.' => 'BlueView Technologies, Inc.',
+ 'ARTIMI' => 'ARTIMI',
+ 'Swissonic' => 'Swissonic',
+ 'Avnera' => 'Avnera',
+ 'Vitesse-Semiconductor' => 'Vitesse Semiconductor',
+ 'Axesstel-Inc.' => 'Axesstel, Inc.',
+ 'Waltop-International-Corp.' => 'Waltop International Corp.',
+ 'Cellink-Technology-Co.-Ltd' => 'Cellink Technology Co., Ltd',
+ 'Linksys' => 'Linksys',
+ 'Senao' => 'Senao',
+ 'General-Atomics' => 'General Atomics',
+ 'ASMedia-Technology-Inc.' => 'ASMedia Technology Inc.',
+ 'Syntek' => 'Syntek',
+ 'GERTEC-Telecomunicacoes-Ltda.' => 'GERTEC Telecomunicacoes Ltda.',
+ 'LucidPort-Technology-Inc.' => 'LucidPort Technology, Inc.',
+ 'System-Level-Solutions-Inc.' => 'System Level Solutions, Inc.',
+ 'Arowana' => 'Arowana',
+ 'Sweex' => 'Sweex',
+ 'Multiple-Vendors' => 'Multiple Vendors',
+ 'TopSeed-Technology-Corp.' => 'TopSeed Technology Corp.',
+ 'ATI-AIB' => 'ATI AIB',
+ 'Printrex-Inc.' => 'Printrex, Inc.',
+ 'JALCO-CO.-LTD.' => 'JALCO CO., LTD.',
+ 'Belkin-Components' => 'Belkin Components',
+ 'Samson-Technologies-Corp.' => 'Samson Technologies Corp.',
+ 'Concept2' => 'Concept2',
+ 'MICOMSOFT-CO.-LTD.' => 'MICOMSOFT CO., LTD.',
+ 'Grey-Innovation' => 'Grey Innovation',
+ 'Singim-International-Corp.' => 'Singim International Corp.',
+ 'Native-Instruments' => 'Native Instruments',
+ 'Sanford-L.P.' => 'Sanford L.P.',
+ 'Korea-Techtron-Co.-Ltd.' => 'Korea Techtron Co., Ltd.',
+ 'Newnham-Research' => 'Newnham Research',
+ 'Cornice-Inc.' => 'Cornice, Inc.',
+ 'Lenovo' => 'Lenovo',
+ 'K.K.-Rocky' => 'K.K. Rocky',
+ 'Unicomp-Inc' => 'Unicomp, Inc',
+ 'Advantech' => 'Advantech',
+ 'Twinhan' => 'Twinhan',
+ 'Gwo-Jinn-Industries-Co.-Ltd.' => 'Gwo Jinn Industries Co., Ltd.',
+ 'VIVOphone' => 'VIVOphone',
+ 'Vaisala' => 'Vaisala',
+ 'ASRock-Incorporation' => 'ASRock Incorporation',
+ 'GYROCOM-C-C-Co.-LTD' => 'GYROCOM C&C Co., LTD',
+ 'Memory-Devices-Ltd.' => 'Memory Devices Ltd.',
+ 'Compro' => 'Compro',
+ 'Teridian-Semiconductor-Corp.' => 'Teridian Semiconductor Corp.',
+ 'Nexio-Co.-Ltd' => 'Nexio Co., Ltd',
+ 'Aveo-Technology-Corp.' => 'Aveo Technology Corp.',
+ 'Alienware-Corporation' => 'Alienware Corporation',
+ 'Siano-Mobile-Silicon' => 'Siano Mobile Silicon',
+ 'Vast-Technologies-Inc.' => 'Vast Technologies, Inc.',
+ 'Topseed' => 'Topseed',
+ 'Evertop-Wire-Cable-Co.' => 'Evertop Wire Cable Co.',
+ 'Verbatim-Ltd' => 'Verbatim, Ltd',
+ 'Petalynx' => 'Petalynx',
+ 'e3C-Technologies' => 'e3C Technologies',
+ 'Mikkon-Technology-Limited' => 'Mikkon Technology Limited',
+ 'Zotek-Electronic-Co.-Ltd.' => 'Zotek Electronic Co., Ltd.',
+ 'AMIT-Technology-Inc.' => 'AMIT Technology, Inc.',
+ 'Ecamm' => 'Ecamm',
+ 'Google-Inc.' => 'Google Inc.',
+ 'Kaba' => 'Kaba',
+ 'Planon-System-Solutions-Inc.' => 'Planon System Solutions Inc.',
+ 'Qcom' => 'Qcom',
+ 'Matrox-Graphics-Inc.' => 'Matrox Graphics, Inc.',
+ 'Arkmicro-Technologies-Inc.' => 'Arkmicro Technologies Inc.',
+ 'FineArch-Inc.' => 'FineArch Inc.',
+ 'GEMBIRD' => 'GEMBIRD',
+ 'Motorola-GSG' => 'Motorola GSG',
+ 'Alco-Digital-Devices-Limited' => 'Alco Digital Devices Limited',
+ 'Nordic-Semiconductor-ASA' => 'Nordic Semiconductor ASA',
+ 'NextWindow' => 'NextWindow',
+ 'Avago-Technologies-Pte.' => 'Avago Technologies, Pte.',
+ 'Dream-Link' => 'Dream Link',
+ 'Sensoray-Co.-Inc.' => 'Sensoray Co., Inc.',
+ 'Lab126' => 'Lab126',
+ 'Hyperstone-AG' => 'Hyperstone AG',
+ 'Ironkey-Inc.' => 'Ironkey Inc.',
+ 'Radiient-Technologies' => 'Radiient Technologies',
+ 'Itron-Technology-iONE' => 'Itron Technology iONE',
+ 'Wispro-Technology-Inc.' => 'Wispro Technology Inc.',
+ 'Dane-Elec-Corp.-USA' => 'Dane-Elec Corp. USA',
+ 'T-Logic' => 'T-Logic',
+ 'Nuconn-Technology-Corp.' => 'Nuconn Technology Corp.',
+ 'Beceem-Communications-Inc.' => 'Beceem Communications Inc.',
+ 'Trillium-Technology-Pty.-Ltd.' => 'Trillium Technology Pty. Ltd.',
+ 'Benica-Corporation' => 'Benica Corporation',
+ 'Biforst-Technology-Inc.' => 'Biforst Technology Inc.',
+ 'Bodelin' => 'Bodelin',
+ 'S-Life' => 'S Life',
+ 'Batronix' => 'Batronix',
+ 'Celestron' => 'Celestron',
+ 'B---W-Group' => 'B & W Group',
+ 'Infotech-Logistic-LLC' => 'Infotech Logistic, LLC',
+ 'Data-Robotics' => 'Data Robotics',
+ 'Mindtribe' => 'Mindtribe',
+ 'Parrot-SA' => 'Parrot SA',
+ 'ONDA-Communication-S.p.A.' => 'ONDA Communication S.p.A.',
+ 'RODE-Microphones' => 'RODE Microphones',
+ 'Gampaq-Co.Ltd' => 'Gampaq Co.Ltd',
+ 'Dynex' => 'Dynex',
+ 'Bellwood-International-Inc.' => 'Bellwood International, Inc.',
+ 'USB-IF-non-workshop' => 'USB-IF non-workshop',
+ 'KES-Co.-Ltd.' => 'KES Co., Ltd.',
+ 'Amphenol-East-Asia-Ltd.' => 'Amphenol East Asia Ltd.',
+ 'Seagate-Branded-Solutions' => 'Seagate Branded Solutions',
+ 'Quanta-Microsystems-Inc.' => 'Quanta Microsystems, Inc.',
+ 'Biwin-Technology-Ltd.' => 'Biwin Technology Ltd.',
+ 'TERMINUS-TECHNOLOGY-INC.' => 'TERMINUS TECHNOLOGY INC.',
+ 'Action-Electronics-Co.-Ltd.' => 'Action Electronics Co., Ltd.',
+ 'Silicon-Image' => 'Silicon Image',
+ 'SafeBoot-International-B.V.' => 'SafeBoot International B.V.',
+ 'Abbott-Diabetes-Care' => 'Abbott Diabetes Care',
+ 'Spansion-Inc.' => 'Spansion Inc.',
+ 'SamYoung-Electronics-Co.-Ltd' => 'SamYoung Electronics Co., Ltd',
+ 'Global-Unichip-Corp.' => 'Global Unichip Corp.',
+ 'Sagem-Orga-GmbH' => 'Sagem Orga GmbH',
+ 'Bayer-Health-Care-LLC' => 'Bayer Health Care LLC',
+ 'Lumberg-Connect-GmbH---Co.-KG' => 'Lumberg Connect GmbH & Co. KG',
+ 'Evoluent' => 'Evoluent',
+ 'QinHeng-Electronics' => 'QinHeng Electronics',
+ 'Dynalith-Systems-Co.-Ltd.' => 'Dynalith Systems Co., Ltd.',
+ 'SGS-Taiwan-Ltd.' => 'SGS Taiwan Ltd.',
+ 'BandRich-Inc.' => 'BandRich, Inc.',
+ 'Corsair-Voyager-GT-16GB' => 'Corsair Voyager GT 16GB',
+ 'Leica-Camera-AG' => 'Leica Camera AG',
+ 'Data-Drive-Thru-Inc.' => 'Data Drive Thru, Inc.',
+ 'UBeacon-Technologies-Inc.' => 'UBeacon Technologies, Inc.',
+ 'eFortune-Technology-Corp.' => 'eFortune Technology Corp.',
+ 'Salcomp-Plc' => 'Salcomp Plc',
+ 'Desay-Wire-Co.-Ltd.' => 'Desay Wire Co., Ltd.',
+ 'X-TENSIONS' => 'X-TENSIONS',
+ 'Meilhaus-Electronic-GmBH' => 'Meilhaus Electronic GmBH',
+ 'MStar-Semiconductor-Inc.' => 'MStar Semiconductor, Inc.',
+ 'WiLinx-Corp.' => 'WiLinx Corp.',
+ 'Cellex-Power-Products-Inc.' => 'Cellex Power Products, Inc.',
+ 'Current-Electronics-Inc.' => 'Current Electronics Inc.',
+ 'NAVIsis-Inc.' => 'NAVIsis Inc.',
+ 'Ugobe-Life-Forms-Inc.' => 'Ugobe Life Forms, Inc.',
+ 'ViXS-Systems-Inc.' => 'ViXS Systems, Inc.',
+ 'iPassion-Technology-Inc.' => 'iPassion Technology Inc.',
+ 'Generalplus-Technology-Inc.' => 'Generalplus Technology Inc.',
+ 'Energizer-Holdings-Inc.' => 'Energizer Holdings, Inc.',
+ 'Plastron-Precision-Co.-Ltd.' => 'Plastron Precision Co., Ltd.',
+ 'K.S.-Terminals-Inc.' => 'K.S. Terminals Inc.',
+ 'ATERGI-TECHNOLOGY-CO.-LTD.' => 'ATERGI TECHNOLOGY CO., LTD.',
+ 'Fresco-Logic' => 'Fresco Logic',
+ 'Ovislink-Corp.' => 'Ovislink Corp.',
+ 'Legend-Silicon-Corp.' => 'Legend Silicon Corp.',
+ 'Afatech' => 'Afatech',
+ 'Altium-Limited' => 'Altium Limited',
+ 'e-MOVE-Technology-Co.-Ltd.' => 'e-MOVE Technology Co., Ltd.',
+ 'Amlogic-Inc.' => 'Amlogic, Inc.',
+ 'MA-LABS-Inc.' => 'MA LABS, Inc.',
+ 'N-Trig' => 'N-Trig',
+ 'YMax-Communications-Corp.' => 'YMax Communications Corp.',
+ 'Shenzhen-Yuanchuan-Electronic' => 'Shenzhen Yuanchuan Electronic',
+ 'Ember-Corporation' => 'Ember Corporation',
+ 'Abilis-Systems' => 'Abilis Systems',
+ 'Harmonix-Music' => 'Harmonix Music',
+ 'Vuzix-Corporation' => 'Vuzix Corporation',
+ 'T---A-Mobile-Phones' => 'T & A Mobile Phones',
+ 'Ford-Motor-Co.' => 'Ford Motor Co.',
+ 'AVIXE-Technology-China-Ltd.' => 'AVIXE Technology (China) Ltd.',
+ 'P-TWO-INDUSTRIES-INC.' => 'P-TWO INDUSTRIES, INC.',
+ 'RealVision-Inc.' => 'RealVision Inc.',
+ 'Extranet-Systems-Inc.' => 'Extranet Systems Inc.',
+ 'TouchPack' => 'TouchPack',
+ 'Kreton-Corporation' => 'Kreton Corporation',
+ 'QNAP-System-Inc.' => 'QNAP System Inc.',
+ 'Relm-Wireless' => 'Relm Wireless',
+ 'Lanterra-Industrial-Co.-Ltd.' => 'Lanterra Industrial Co., Ltd.',
+ 'ALECTRONIC-LIMITED' => 'ALECTRONIC LIMITED',
+ 'Datel-Electronics-Ltd.' => 'Datel Electronics Ltd.',
+ 'Volkswagen-of-America-Inc.' => 'Volkswagen of America, Inc.',
+ 'Goldvish-S.A.' => 'Goldvish S.A.',
+ 'ADDMM-LLC' => 'ADDMM LLC',
+ 'HuiYang-D---S-Cable-Co.-Ltd.' => 'HuiYang D & S Cable Co., Ltd.',
+ 'LS-Cable-Ltd.' => 'LS Cable Ltd.',
+ 'SpringCard' => 'SpringCard',
+ 'Authorizer-Technologies-Inc.' => 'Authorizer Technologies, Inc.',
+ 'NONIN-MEDICAL-INC.' => 'NONIN MEDICAL INC.',
+ 'Wep-Peripherals' => 'Wep Peripherals',
+ 'Cherng-Weei-Technology-Corp.' => 'Cherng Weei Technology Corp.',
+ 'SiGma-Micro' => 'SiGma Micro',
+ 'Skydigital-Inc.' => 'Skydigital Inc.',
+ 'AMT' => 'AMT',
+ 'Kaetat-Industrial-Co.-Ltd.' => 'Kaetat Industrial Co., Ltd.',
+ 'Datascope-Corp.' => 'Datascope Corp.',
+ 'Unigen-Corporation' => 'Unigen Corporation',
+ 'LighTuning-Technology-Inc.' => 'LighTuning Technology Inc.',
+ '2N-TELEKOMUNIKACE-a.s.' => '2N TELEKOMUNIKACE a.s.',
+ 'Somagic-Inc.' => 'Somagic, Inc.',
+ 'ASTRON-INTERNATIONAL-CORP.' => 'ASTRON INTERNATIONAL CORP.',
+ 'ALPINE-ELECTRONICS-INC.' => 'ALPINE ELECTRONICS, INC.',
+ 'ACCARIO-Inc.' => 'ACCARIO Inc.',
+ 'Kinstone' => 'Kinstone',
+ 'Aces-Electronic-Co.-Ltd.' => 'Aces Electronic Co., Ltd.',
+ 'OPEX-CORPORATION' => 'OPEX CORPORATION',
+ 'Luminary-Micro-Inc.' => 'Luminary Micro Inc.',
+ 'PlantSense' => 'PlantSense',
+ 'NextWave-Broadband-Inc.' => 'NextWave Broadband Inc.',
+ 'adp-corporation' => 'adp corporation',
+ 'Firecomms-Ltd.' => 'Firecomms Ltd.',
+ 'WonTen-Technology-Co.-Ltd.' => 'WonTen Technology Co., Ltd.',
+ 'EDIMAX-TECHNOLOGY-CO.-LTD.' => 'EDIMAX TECHNOLOGY CO., LTD.',
+ 'Amphenol-KAE' => 'Amphenol KAE',
+ 'ANDES-TECHNOLOGY-CORPORATION' => 'ANDES TECHNOLOGY CORPORATION',
+ 'Solid-Motion' => 'Solid-Motion',
+ 'ALPHA-SAT-TECHNOLOGY-LIMITED' => 'ALPHA-SAT TECHNOLOGY LIMITED',
+ 'C-Thru-Music-Ltd.' => 'C-Thru Music Ltd.',
+ 'Dexatek-Technology-Ltd.' => 'Dexatek Technology Ltd.',
+ 'Diostech-Co.-Ltd.' => 'Diostech Co., Ltd.',
+ 'SAMTACK-INC.' => 'SAMTACK INC.',
+ 'PEGATRON-CORPORATION' => 'PEGATRON CORPORATION',
+ 'OpenMoko-Inc.' => 'OpenMoko, Inc.',
+ 'Smartronix-Inc.' => 'Smartronix, Inc.',
+ 'Linux-Foundation' => 'Linux Foundation',
+ 'Qualcomm---Option' => 'Qualcomm / Option',
+ 'Point-Grey-Research-Inc.' => 'Point Grey Research, Inc.',
+ 'Lumension-Security' => 'Lumension Security',
+ 'INVIA' => 'INVIA',
+ 'Festo-AG---Co.-KG' => 'Festo AG & Co. KG',
+ 'Cleverscope' => 'Cleverscope',
+ 'TypeMatrix' => 'TypeMatrix',
+ 'TrekStor-GmbH---Co.-KG' => 'TrekStor GmbH & Co. KG',
+ 'NZXT' => 'NZXT',
+ 'Coby-Electronics-Corporation' => 'Coby Electronics Corporation',
+ 'ROCCAT' => 'ROCCAT',
+ 'NuCORE-Technology-Inc.' => 'NuCORE Technology, Inc.',
+ 'AirTies-Wireless-Networks' => 'AirTies Wireless Networks',
+ 'EADS-Deutschland-GmbH' => 'EADS Deutschland GmbH',
+ 'Cal-Comp' => 'Cal-Comp',
+ 'G-Tek-Electronics-Group' => 'G-Tek Electronics Group',
+ 'TANDBERG' => 'TANDBERG',
+ 'Alere-Inc.' => 'Alere, Inc.',
+ 'Stantum' => 'Stantum',
+ 'Delphin-Technology-AG' => 'Delphin Technology AG',
+ 'NXP-Semiconductors' => 'NXP Semiconductors',
+ 'Vertex-Wireless-Co.-Ltd.' => 'Vertex Wireless Co., Ltd.',
+ 'D-Link-Corp.' => 'D-Link Corp.',
+ 'Unknown-Pinnacle-' => 'Unknown (Pinnacle?)',
+ 'PLANEX' => 'PLANEX',
+ 'Hauppauge' => 'Hauppauge',
+ 'Texas-Instruments' => 'Texas Instruments',
+ 'Barnes---Noble' => 'Barnes & Noble',
+ 'Cando' => 'Cando',
+ 'Clay-Logic' => 'Clay Logic',
+ 'XMOS-Ltd' => 'XMOS Ltd',
+ 'Hanvon' => 'Hanvon',
+ 'Qi-Hardware' => 'Qi Hardware',
+ 'Simtec-Electronics' => 'Simtec Electronics',
+ 'ActionStar' => 'ActionStar',
+ 'Creative--' => 'Creative (?)',
+ 'GW-Instek' => 'GW Instek',
+ 'Emotiv-Systems-Pty.-Ltd.' => 'Emotiv Systems Pty. Ltd.',
+ 'Agecodagis-SARL' => 'Agecodagis SARL',
+ 'MacAlly' => 'MacAlly',
+ 'SAMWOO-Enterprise' => 'SAMWOO Enterprise',
+ 'RadioShack-Corporation' => 'RadioShack Corporation',
+ 'Kobo-Inc.' => 'Kobo Inc.',
+ 'Pie-Digital-Inc.' => 'Pie Digital, Inc.',
+ 'Motorola-PCS' => 'Motorola PCS',
+ 'eTurboTouch-Technology-Inc.' => 'eTurboTouch Technology, Inc.',
+ 'Pinnacle-Systems-Inc.' => 'Pinnacle Systems, Inc.',
+ 'Pumatronix-Ltda' => 'Pumatronix Ltda',
+ 'Digit-at-lway-Inc.' => 'Digit@lway, Inc.',
+ 'Tripp-Lite' => 'Tripp-Lite',
+ 'TwinMOS' => 'TwinMOS',
+ 'Citizen' => 'Citizen',
+ 'DigitalWay' => 'DigitalWay',
+ 'NHJ-Ltd' => 'NHJ, Ltd',
+ 'ASUSTek-Computer-Inc.' => 'ASUSTek Computer Inc.',
+ 'Toptronic-Industrial-Co.-Ltd' => 'Toptronic Industrial Co., Ltd',
+ 'Planex-Communications' => 'Planex Communications',
+ 'Dolphin-Peripherals' => 'Dolphin Peripherals',
+ 'Fujitsu-Ltd' => 'Fujitsu, Ltd',
+ 'Eagletron' => 'Eagletron',
+ 'Whanam-Electronics-Co.-Ltd' => 'Whanam Electronics Co., Ltd',
+ 'VidzMedia-Pte-Ltd' => 'VidzMedia Pte Ltd',
+ 'AEI' => 'AEI',
+ 'Yakumo' => 'Yakumo',
+ 'Micro-Star' => 'Micro Star',
+ 'DIVA' => 'DIVA',
+ 'InVibro' => 'InVibro',
+ 'WEM' => 'WEM',
+ 'National-Instruments-Corp.' => 'National Instruments Corp.',
+ 'I-O-Data' => 'I-O Data',
+ 'i-rocks' => 'i-rocks',
+ 'iRiver-Ltd.' => 'iRiver, Ltd.',
+ 'Dell-Computer-Corp.' => 'Dell Computer Corp.',
+ 'USBest-Technology' => 'USBest Technology',
+ 'USB-Design-by-Example' => 'USB Design by Example',
+ 'Broadcom-Corp.' => 'Broadcom Corp.',
+ 'WinChipHead' => 'WinChipHead',
+ 'Shuttle-Inc.' => 'Shuttle, Inc.',
+ 'Panram' => 'Panram',
+ 'EMS-Production' => 'EMS Production',
+ 'Miditech' => 'Miditech',
+ 'GW-Instek' => 'GW Instek',
+ 'Aceeca' => 'Aceeca',
+ 'Memorex' => 'Memorex',
+ 'SimpleTech' => 'SimpleTech',
+ 'Grandtec' => 'Grandtec',
+ 'Linksys--' => 'Linksys (?)',
+ 'Averatec--' => 'Averatec (?)',
+ 'Sweex' => 'Sweex',
+ 'I-Tetra' => 'I-Tetra',
+ 'Owon' => 'Owon',
+ 'Transmeta-Corp.' => 'Transmeta Corp.',
+ 'UC-Logic-Technology-Corp.' => 'UC-Logic Technology Corp.',
+ 'Epiphan-Systems-Inc.' => 'Epiphan Systems Inc.',
+ 'OnSpec-Electronic-Inc.' => 'OnSpec Electronic, Inc.',
+ 'Uni-Trend-Group-Limited' => 'Uni-Trend Group Limited',
+ 'IRTOUCHSYSTEMS-Co.-Ltd.' => 'IRTOUCHSYSTEMS Co. Ltd.',
+ 'Acer-Inc' => 'Acer, Inc',
+ 'Zinwell' => 'Zinwell',
+ 'Beholder-International-Ltd.' => 'Beholder International Ltd.',
+ 'Ingenic-Semiconductor-Ltd.' => 'Ingenic Semiconductor Ltd.',
+ 'Sitecom' => 'Sitecom',
+ 'TwinHan-Technology-Co.-Ltd' => 'TwinHan Technology Co., Ltd',
+ 'CoreLogic-Inc.' => 'CoreLogic, Inc.',
+ 'Unknown-Sony-' => 'Unknown (Sony?)',
+ 'Arkmicro-Technologies-Inc.' => 'Arkmicro Technologies Inc.',
+ 'IRTOUCHSYSTEMS-Co.-Ltd.' => 'IRTOUCHSYSTEMS Co. Ltd.',
+ 'Prototype-product-Vendor-ID' => 'Prototype product Vendor ID',
+ 'WiseGroup-Ltd.' => 'WiseGroup, Ltd.',
+ '3Com' => '3Com',
+ 'Opera1' => 'Opera1',
+ 'CME-Central-Music-Co.' => 'CME (Central Music Co.)',
+ 'StackFoundry-LLC' => 'StackFoundry LLC',
+ 'TBS-Technologies-China' => 'TBS Technologies China',
+ 'Edimax-Technology-Co.-Ltd' => 'Edimax Technology Co., Ltd',
+ 'Intel-Corp.' => 'Intel Corp.',
+ 'Intel-Corp.' => 'Intel Corp.',
+ 'VirtualBox' => 'VirtualBox',
+ 'Keio' => 'Keio',
+ 'EGO-Systems-Inc.' => 'EGO Systems, Inc.',
+ 'Sitecom' => 'Sitecom',
+ 'TeVii-Technology-Ltd.' => 'TeVii Technology Ltd.',
+ 'GeoLab-Ltd' => 'GeoLab, Ltd',
+ 'MosChip-Semiconductor' => 'MosChip Semiconductor',
+ 'Grandtec' => 'Grandtec',
+ 'J.-Westhues' => 'J. Westhues',
+ 'AnMo-Electronics-Corporation' => 'AnMo Electronics Corporation',
+ 'Asix' => 'Asix',
+ '3Com' => '3Com',
+ 'Unknown' => 'Unknown',
+ 'Keil-Software-Inc.' => 'Keil Software, Inc.',
+ 'CACE-Technologies-Inc.' => 'CACE Technologies Inc.',
+ 'Ultimarc' => 'Ultimarc',
+ 'Xorcom-Ltd.' => 'Xorcom Ltd.',
+ 'MakingThings' => 'MakingThings',
+ 'eMPIA-Technology-Inc.' => 'eMPIA Technology, Inc.',
+ 'KWorld' => 'KWorld',
+ 'Hewlett-Packard' => 'Hewlett Packard',
+
);
return (array_key_exists($string,$names)) ? $names[$string] : $string;
diff --git a/h-source/Application/Include/vendors.php b/h-source/Application/Include/vendors.php
new file mode 100644
index 0000000..79fcefb
--- /dev/null
+++ b/h-source/Application/Include/vendors.php
@@ -0,0 +1,4149 @@
+<?php
+
+class Vendors
+{
+
+ public static function getName($id)
+ {
+ if (self::check($id))
+ {
+ $temp = explode(':',$id);
+ $vendorId = $temp[0];
+ return self::$id[$vendorId];
+ }
+ return 'not-known';
+ }
+
+ public static function check($id)
+ {
+ if (preg_match('/^[a-zA-Z0-9]{4}(\:)[a-zA-Z0-9]{4}$/',$id))
+ {
+ $temp = explode(':',$id);
+ $vendorId = $temp[0];
+ if (array_key_exists($vendorId,self::$id))
+ {
+ return true;
+ }
+ }
+ return false;
+ }
+
+ public static $id = array(
+ '0010' => 'Allied-Telesis-Inc',
+ '001a' => 'Ascend-Communications-Inc.',
+ '001c' => 'PEAK-System-Technik-GmbH',
+ '0033' => 'Paradyne-corp.',
+ '003d' => 'Lockheed-Martin-Marietta-Corp',
+ '0070' => 'Hauppauge-computer-works-Inc.',
+ '0071' => 'Nebula-Electronics-Ltd.',
+ '00f5' => 'BFG-Technologies-Inc.',
+ '0100' => 'Ncipher-Corp-Ltd',
+ '0123' => 'General-Dynamics',
+ '0291' => 'Davicom-Semiconductor-Inc.',
+ '02e0' => 'XFX-Pine-Group-Inc',
+ '0315' => 'SK-Electronics-Co.-Ltd.',
+ '0357' => 'TTTech-AG',
+ '036f' => 'Trigem-Computer-Inc.',
+ '0432' => 'SCM-Microsystems-Inc.',
+ '045e' => 'Microsoft',
+ '0482' => 'Kyocera',
+ '04cf' => 'Myson-Century-Inc',
+ '050d' => 'Belkin',
+ '058f' => 'Alcor-Micro-Corporation',
+ '05a9' => 'OmniVision',
+ '05e3' => 'CyberDoor',
+ '066f' => 'Sigmatel-Inc.',
+ '0675' => 'Dynalink',
+ '069d' => 'Hughes-Network-Systems-HNS',
+ '0721' => 'Sapphire-Inc.',
+ '0795' => 'Wired-Inc.',
+ '07ca' => 'AVerMedia-Technologies-Inc.',
+ '07d0' => 'ITT-Geospatial-Systems',
+ '08ff' => 'AuthenTec',
+ '093a' => 'PixArt-Imaging-Inc.',
+ '09c1' => 'Arris',
+ '0a89' => 'BREA-Technologies-Inc',
+ '0ace' => 'ZyDAS',
+ '0b0b' => 'Rhino-Equipment-Corp.',
+ '0b3d' => 'Brontes-Technologies',
+ '0b49' => 'ASCII-Corporation',
+ '0ccd' => 'TerraTec-Electronic-GmbH',
+ '0e11' => 'Compaq-Computer-Corporation',
+ '0e21' => 'Cowon-Systems-Inc.',
+ '0e55' => 'HaSoTec-GmbH',
+ '0f62' => 'Acrox-Technologies-Co.-Ltd.',
+ '1001' => 'Kolter-Electronic',
+ '1002' => 'ATI',
+ '1003' => 'ULSI-Systems',
+ '1004' => 'VLSI-Technology-Inc',
+ '1005' => 'Avance-Logic-Inc.-ALI',
+ '1006' => 'Reply-Group',
+ '1007' => 'NetFrame-Systems-Inc',
+ '1008' => 'EPSON',
+ '100a' => 'Phoenix-Technologies',
+ '100c' => 'Tseng-Labs-Inc',
+ '100d' => 'AST-Research-Inc',
+ '100e' => 'Weitek',
+ '1010' => 'Video-Logic-Ltd.',
+ '1011' => 'Digital-Equipment-Corporation',
+ '1012' => 'Micronics-Computers-Inc',
+ '1013' => 'Cirrus-Logic',
+ '1014' => 'IBM',
+ '1015' => 'LSI-Logic-Corp-of-Canada',
+ '1016' => 'ICL-Personal-Systems',
+ '1017' => 'SPEA-Software-AG',
+ '1018' => 'Unisys-Systems',
+ '1019' => 'Elitegroup-Computer-Systems',
+ '101a' => 'AT-T-GIS-NCR',
+ '101b' => 'Vitesse-Semiconductor',
+ '101c' => 'Western-Digital',
+ '101e' => 'American-Megatrends-Inc.',
+ '101f' => 'PictureTel',
+ '1020' => 'Hitachi-Computer-Products',
+ '1022' => 'Advanced-Micro-Devices-AMD',
+ '1023' => 'Trident-Microsystems',
+ '1024' => 'Zenith-Data-Systems',
+ '1025' => 'Acer',
+ '1028' => 'Dell',
+ '1029' => 'Siemens-Nixdorf-IS',
+ '102a' => 'LSI-Logic',
+ '102b' => 'Matrox-Graphics-Inc.',
+ '102c' => 'Chips-and-Technologies',
+ '102d' => 'Wyse-Technology-Inc.',
+ '102e' => 'Olivetti-Advanced-Technology',
+ '102f' => 'Toshiba-America',
+ '1030' => 'TMC-Research',
+ '1031' => 'Miro-Computer-Products-AG',
+ '1032' => 'Compaq',
+ '1033' => 'NEC-Corporation',
+ '1034' => 'Framatome-Connectors-USA-Inc.',
+ '1035' => 'Comp.---Comm.-Research-Lab',
+ '1036' => 'Future-Domain-Corp.',
+ '1037' => 'Hitachi-Micro-Systems',
+ '1038' => 'AMP-Inc',
+ '103a' => 'Seiko-Epson-Corporation',
+ '103b' => 'Tatung-Corp.-Of-America',
+ '103c' => 'Hewlett-Packard',
+ '103e' => 'Solliday-Engineering',
+ '103f' => 'Synopsys-Logic-Modeling-Group',
+ '1040' => 'Accelgraphics-Inc.',
+ '1041' => 'Computrend',
+ '1042' => 'Micron',
+ '1043' => 'ASUSTeK-Computer-Inc.',
+ '1044' => 'Adaptec-formerly-DPT',
+ '1045' => 'OPTi-Inc.',
+ '1046' => 'IPC-Corporation-Ltd.',
+ '1047' => 'Genoa-Systems-Corp',
+ '1048' => 'Elsa-AG',
+ '1049' => 'Fountain-Technologies-Inc.',
+ '104b' => 'BusLogic',
+ '104c' => 'Texas-Instruments',
+ '104d' => 'Sony-Corporation',
+ '104e' => 'Oak-Technology-Inc',
+ '104f' => 'Co-time-Computer-Ltd',
+ '1050' => 'Winbond-Electronics-Corp',
+ '1051' => 'Anigma-Inc.',
+ '1052' => '-Young-Micro-Systems',
+ '1053' => 'Young-Micro-Systems',
+ '1054' => 'Hitachi-Ltd',
+ '1055' => 'Efar-Microsystems',
+ '1056' => 'ICL',
+ '105a' => 'Promise-Technology-Inc.',
+ '105b' => 'Foxconn-International-Inc.',
+ '105c' => 'Wipro-Infotech-Limited',
+ '105d' => 'Number-9-Computer-Company',
+ '105e' => 'Vtech-Computers-Ltd',
+ '105f' => 'Infotronic-America-Inc',
+ '1060' => 'United-Microelectronics-UMC',
+ '1061' => 'I.I.T.',
+ '1062' => 'Maspar-Computer-Corp',
+ '1063' => 'Ocean-Office-Automation',
+ '1064' => 'Alcatel',
+ '1065' => 'Texas-Microsystems',
+ '1066' => 'PicoPower-Technology',
+ '1067' => 'Mitsubishi-Electric',
+ '1068' => 'Diversified-Technology',
+ '1069' => 'Mylex-Corporation',
+ '106a' => 'Aten-Research-Inc',
+ '106b' => 'Apple-Computer-Inc.',
+ '106c' => 'Hynix-Semiconductor',
+ '106d' => 'Sequent-Computer-Systems',
+ '106e' => 'DFI-Inc',
+ '106f' => 'City-Gate-Development-Ltd',
+ '1070' => 'Daewoo-Telecom-Ltd',
+ '1071' => 'Mitac',
+ '1072' => 'GIT-Co-Ltd',
+ '1073' => 'Yamaha-Corporation',
+ '1074' => 'NexGen-Microsystems',
+ '1076' => 'Chaintech-Computer-Co.-Ltd',
+ '1077' => 'QLogic-Corp.',
+ '1078' => 'Cyrix-Corporation',
+ '1079' => 'I-Bus',
+ '107a' => 'NetWorth',
+ '107b' => 'Gateway-2000',
+ '107d' => 'LeadTek-Research-Inc.',
+ '107e' => 'Interphase-Corporation',
+ '107f' => 'Data-Technology-Corporation',
+ '1080' => 'Contaq-Microsystems',
+ '1081' => 'Supermac-Technology',
+ '1082' => 'EFA-Corporation-of-America',
+ '1083' => 'Forex-Computer-Corporation',
+ '1084' => 'Parador',
+ '1085' => 'Tulip-Computers-Int.B.V.',
+ '1086' => 'J.-Bond-Computer-Systems',
+ '1087' => 'Cache-Computer',
+ '1088' => 'Microcomputer-Systems-M-Son',
+ '1089' => 'Data-General-Corporation',
+ '108c' => 'Oakleigh-Systems-Inc.',
+ '108d' => 'Olicom',
+ '108f' => 'Systemsoft',
+ '1091' => 'Intergraph-Corporation',
+ '1092' => 'Diamond-Multimedia-Systems',
+ '1093' => 'National-Instruments',
+ '1096' => 'Alacron',
+ '1097' => 'Appian-Technology',
+ '1098' => 'Quantum-Designs-H.K.-Ltd',
+ '1099' => 'Samsung-Electronics-Co.-Ltd',
+ '109a' => 'Packard-Bell',
+ '109b' => 'Gemlight-Computer-Ltd.',
+ '109c' => 'Megachips-Corporation',
+ '109d' => 'Zida-Technologies-Ltd.',
+ '109e' => 'Brooktree-Corporation',
+ '109f' => 'Trigem-Computer-Inc.',
+ '10a0' => 'Meidensha-Corporation',
+ '10a1' => 'Juko-Electronics-Ind.-Co.-Ltd',
+ '10a2' => 'Quantum-Corporation',
+ '10a3' => 'Everex-Systems-Inc',
+ '10a4' => 'Globe-Manufacturing-Sales',
+ '10a5' => 'Smart-Link-Ltd.',
+ '10a6' => 'Informtech-Industrial-Ltd.',
+ '10a7' => 'Benchmarq-Microelectronics',
+ '10a8' => 'Sierra-Semiconductor',
+ '10a9' => 'Silicon-Graphics-Inc.',
+ '10aa' => 'ACC-Microelectronics',
+ '10ab' => 'Digicom',
+ '10ac' => 'Honeywell-IAC',
+ '10ad' => 'Symphony-Labs',
+ '10ae' => 'Cornerstone-Technology',
+ '10af' => 'Micro-Computer-Systems-Inc',
+ '10b0' => 'CardExpert-Technology',
+ '10b1' => 'Cabletron-Systems-Inc',
+ '10b2' => 'Raytheon-Company',
+ '10b3' => 'Databook-Inc',
+ '10b4' => 'STB-Systems-Inc',
+ '10b5' => 'PLX-Technology-Inc.',
+ '10b6' => 'Madge-Networks',
+ '10b7' => '3Com-Corporation',
+ '10b9' => 'ALi-Corporation',
+ '10ba' => 'Mitsubishi-Electric-Corp.',
+ '10bb' => 'Dapha-Electronics-Corporation',
+ '10bc' => 'Advanced-Logic-Research',
+ '10bd' => 'Surecom-Technology',
+ '10be' => 'Tseng-Labs-International-Co.',
+ '10bf' => 'Most-Inc',
+ '10c0' => 'Boca-Research-Inc.',
+ '10c1' => 'ICM-Co.-Ltd.',
+ '10c2' => 'Auspex-Systems-Inc.',
+ '10c3' => 'Samsung-Semiconductors-Inc.',
+ '10c5' => 'Xerox-Corporation',
+ '10c6' => 'Rambus-Inc.',
+ '10c7' => 'Media-Vision',
+ '10c8' => 'Neomagic-Corporation',
+ '10c9' => 'Dataexpert-Corporation',
+ '10ca' => 'Fujitsu-Microelectr.-Inc.',
+ '10cb' => 'Omron-Corporation',
+ '10cd' => 'Advanced-System-Products-Inc',
+ '10ce' => 'Radius',
+ '10d1' => 'FuturePlus-Systems-Corp.',
+ '10d2' => 'Molex-Incorporated',
+ '10d3' => 'Jabil-Circuit-Inc',
+ '10d4' => 'Hualon-Microelectronics',
+ '10d5' => 'Autologic-Inc.',
+ '10d6' => 'Cetia',
+ '10d7' => 'BCM-Advanced-Research',
+ '10d8' => 'Advanced-Peripherals-Labs',
+ '10d9' => 'Macronix-Inc.-MXIC',
+ '10da' => 'Compaq-IPG-Austin',
+ '10db' => 'Rohm-LSI-Systems-Inc.',
+ '10dc' => 'CERN-ECP-EDU',
+ '10dd' => 'Evans---Sutherland',
+ '10de' => 'NVIDIA',
+ '10df' => 'Emulex-Corporation',
+ '10e1' => 'Tekram-Technology-Co.Ltd.',
+ '10e2' => 'Aptix-Corporation',
+ '10e3' => 'Tundra-Semiconductor-Corp.',
+ '10e4' => 'Tandem-Computers',
+ '10e5' => 'Micro-Industries-Corporation',
+ '10e7' => 'Vadem',
+ '10e8' => 'Applied-Micro-Circuits-Corp.',
+ '10e9' => 'Alps-Electric-Co.-Ltd.',
+ '10ea' => 'Integraphics',
+ '10eb' => 'Artists-Graphics',
+ '10ed' => 'Ascii-Corporation',
+ '10ee' => 'Xilinx-Corporation',
+ '10f0' => 'Peritek-Corporation',
+ '10f1' => 'Tyan-Computer',
+ '10f2' => 'Achme-Computer-Inc.',
+ '10f3' => 'Alaris-Inc.',
+ '10f4' => 'S-MOS-Systems-Inc.',
+ '10f5' => 'NKK-Corporation',
+ '10f8' => 'Altos-India-Ltd',
+ '10f9' => 'PC-Direct',
+ '10fa' => 'Truevision',
+ '10fc' => 'I-O-Data-Device-Inc.',
+ '10fd' => 'Soyo-Computer-Inc',
+ '10fe' => 'Fast-Multimedia-AG',
+ '10ff' => 'NCube',
+ '1100' => 'Jazz-Multimedia',
+ '1101' => 'Initio-Corporation',
+ '1102' => 'Creative-Labs',
+ '1104' => 'RasterOps-Corp.',
+ '1105' => 'Sigma-Designs-Inc.',
+ '1106' => 'VIA-Technologies-Inc.',
+ '1107' => 'Stratus-Computers',
+ '1108' => 'Proteon-Inc.',
+ '110a' => 'Siemens-Nixdorf-AG',
+ '110b' => 'Chromatic-Research-Inc.',
+ '110c' => 'Mini-Max-Technology-Inc.',
+ '110d' => 'Znyx-Advanced-Systems',
+ '110e' => 'CPU-Technology',
+ '110f' => 'Ross-Technology',
+ '1110' => 'Powerhouse-Systems',
+ '1111' => 'Santa-Cruz-Operation',
+ '1113' => 'Accton-Technology-Corporation',
+ '1114' => 'Atmel-Corporation',
+ '1115' => '3D-Labs',
+ '1116' => 'Data-Translation',
+ '1117' => 'Datacube-Inc',
+ '1118' => 'Berg-Electronics',
+ '111a' => 'Efficient-Networks-Inc',
+ '111b' => 'Teledyne-Electronic-Systems',
+ '111c' => 'Tricord-Systems-Inc.',
+ '111e' => 'Eldec',
+ '111f' => 'Precision-Digital-Images',
+ '1120' => 'EMC-Corporation',
+ '1121' => 'Zilog',
+ '1122' => 'Multi-tech-Systems-Inc.',
+ '1123' => 'Excellent-Design-Inc.',
+ '1124' => 'Leutron-Vision-AG',
+ '1125' => 'Eurocore',
+ '1126' => 'Vigra',
+ '1127' => 'FORE-Systems-Inc',
+ '1129' => 'Firmworks',
+ '112b' => 'Linotype---Hell-AG',
+ '112c' => 'Zenith-Data-Systems',
+ '112d' => 'Ravicad',
+ '112f' => 'Dalsa-Inc.',
+ '1130' => 'Computervision',
+ '1131' => 'Philips',
+ '1132' => 'Mitel-Corp.',
+ '1133' => 'Dialogic-Corporation',
+ '1134' => 'Mercury-Computer-Systems',
+ '1135' => 'Fuji-Xerox-Co-Ltd',
+ '1136' => 'Momentum-Data-Systems',
+ '1137' => 'Cisco-Systems-Inc',
+ '1138' => 'Ziatech-Corporation',
+ '1139' => 'Dynamic-Pictures-Inc',
+ '113a' => 'FWB-Inc',
+ '113b' => 'Network-Computing-Devices',
+ '113c' => 'Cyclone-Microsystems-Inc.',
+ '113d' => 'Leading-Edge-Products-Inc',
+ '113f' => 'Equinox-Systems-Inc.',
+ '1140' => 'Intervoice-Inc',
+ '1141' => 'Crest-Microsystem-Inc',
+ '1143' => 'NetPower-Inc',
+ '1144' => 'Cincinnati-Milacron',
+ '1145' => 'Workbit-Corporation',
+ '1146' => 'Force-Computers',
+ '1147' => 'Interface-Corp',
+ '1149' => 'Win-System-Corporation',
+ '114a' => 'VMIC',
+ '114b' => 'Canopus-Co.-Ltd',
+ '114c' => 'Annabooks',
+ '114d' => 'IC-Corporation',
+ '114e' => 'Nikon-Systems-Inc',
+ '114f' => 'Digi-International',
+ '1150' => 'Thinking-Machines-Corp',
+ '1151' => 'JAE-Electronics-Inc.',
+ '1152' => 'Megatek',
+ '1153' => 'Land-Win-Electronic-Corp',
+ '1154' => 'Melco-Inc',
+ '1155' => 'Pine-Technology-Ltd',
+ '1156' => 'Periscope-Engineering',
+ '1157' => 'Avsys-Corporation',
+ '1158' => 'Voarx-R---D-Inc',
+ '1159' => 'Mutech-Corp',
+ '115a' => 'Harlequin-Ltd',
+ '115b' => 'Parallax-Graphics',
+ '115c' => 'Photron-Ltd.',
+ '115d' => 'Xircom',
+ '115e' => 'Peer-Protocols-Inc',
+ '115f' => 'Maxtor-Corporation',
+ '1160' => 'Megasoft-Inc',
+ '1161' => 'PFU-Limited',
+ '1162' => 'OA-Laboratory-Co-Ltd',
+ '1163' => 'Rendition',
+ '1165' => 'Imagraph-Corporation',
+ '1166' => 'Broadcom',
+ '1167' => 'Mutoh-Industries-Inc',
+ '1168' => 'Thine-Electronics-Inc',
+ '116b' => 'Connectware-Inc',
+ '116d' => 'Martin-Marietta',
+ '116e' => 'Electronics-for-Imaging',
+ '116f' => 'Workstation-Technology',
+ '1170' => 'Inventec-Corporation',
+ '1171' => 'Loughborough-Sound-Images-Plc',
+ '1172' => 'Altera-Corporation',
+ '1173' => 'Adobe-Systems-Inc',
+ '1174' => 'Bridgeport-Machines',
+ '1175' => 'Mitron-Computer-Inc.',
+ '1176' => 'SBE-Incorporated',
+ '1177' => 'Silicon-Engineering',
+ '1178' => 'Alfa-Inc.',
+ '1179' => 'Toshiba-America-Info-Systems',
+ '117a' => 'A-Trend-Technology',
+ '117b' => 'L-G-Electronics-Inc.',
+ '117c' => 'Atto-Technology',
+ '117d' => 'Becton---Dickinson',
+ '117e' => 'T-R-Systems',
+ '117f' => 'Integrated-Circuit-Systems',
+ '1180' => 'Ricoh-Co-Ltd',
+ '1181' => 'Telmatics-International',
+ '1183' => 'Fujikura-Ltd',
+ '1184' => 'Forks-Inc',
+ '1185' => 'Dataworld-International-Ltd',
+ '1186' => 'D-Link',
+ '1189' => 'Matsushita-Electronics-Co-Ltd',
+ '118a' => 'Hilevel-Technology',
+ '118b' => 'Hypertec-Pty-Limited',
+ '118c' => 'Corollary-Inc',
+ '118d' => 'BitFlow-Inc',
+ '118e' => 'Hermstedt-GmbH',
+ '118f' => 'Green-Logic',
+ '1190' => 'Tripace',
+ '1191' => 'Artop-Electronic-Corp',
+ '1192' => 'Densan-Company-Ltd',
+ '1193' => 'Zeitnet-Inc.',
+ '1194' => 'Toucan-Technology',
+ '1195' => 'Ratoc-System-Inc',
+ '1196' => 'Hytec-Electronics-Ltd',
+ '1197' => 'Gage-Applied-Sciences-Inc.',
+ '1198' => 'Lambda-Systems-Inc',
+ '1199' => 'Attachmate-Corporation',
+ '119a' => 'Mind-Share-Inc.',
+ '119b' => 'Omega-Micro-Inc.',
+ '119c' => 'Information-Technology-Inst.',
+ '119d' => 'Bug-Inc.-Sapporo-Japan',
+ '119e' => 'Fujitsu-Microelectronics-Ltd.',
+ '119f' => 'Bull-HN-Information-Systems',
+ '11a0' => 'Convex-Computer-Corporation',
+ '11a1' => 'Hamamatsu-Photonics-K.K.',
+ '11a4' => 'Barco-Graphics-NV',
+ '11a5' => 'Microunity-Systems-Eng.-Inc',
+ '11a6' => 'Pure-Data-Ltd.',
+ '11a7' => 'Power-Computing-Corp.',
+ '11a8' => 'Systech-Corp.',
+ '11a9' => 'InnoSys-Inc.',
+ '11aa' => 'Actel',
+ '11ad' => 'Lite-On-Communications-Inc',
+ '11ae' => 'Aztech-System-Ltd',
+ '11af' => 'Avid-Technology-Inc.',
+ '11b0' => 'V3-Semiconductor-Inc.',
+ '11b1' => 'Apricot-Computers',
+ '11b2' => 'Eastman-Kodak',
+ '11b3' => 'Barr-Systems-Inc.',
+ '11b5' => 'Radstone-Technology-Plc',
+ '11b6' => 'United-Video-Corp',
+ '11b7' => 'Motorola',
+ '11b8' => 'XPoint-Technologies-Inc',
+ '11b9' => 'Pathlight-Technology-Inc.',
+ '11ba' => 'Videotron-Corp',
+ '11bb' => 'Pyramid-Technology',
+ '11bc' => 'Network-Peripherals-Inc',
+ '11bd' => 'Pinnacle-Systems-Inc.',
+ '11bf' => 'Astrodesign-Inc.',
+ '11c0' => 'Hewlett-Packard',
+ '11c2' => 'Sand-Microelectronics',
+ '11c3' => 'NEC-Corporation',
+ '11c4' => 'Document-Technologies-Inc',
+ '11c5' => 'Shiva-Corporation',
+ '11c6' => 'Dainippon-Screen-Mfg.-Co.-Ltd',
+ '11c7' => 'D.C.M.-Data-Systems',
+ '11c9' => 'Magma',
+ '11ca' => 'LSI-Systems-Inc',
+ '11cb' => 'Specialix-Research-Ltd.',
+ '11cd' => 'HAL-Computer-Systems-Inc.',
+ '11ce' => 'Netaccess',
+ '11d1' => 'Auravision',
+ '11d2' => 'Intercom-Inc.',
+ '11d3' => 'Trancell-Systems-Inc',
+ '11d4' => 'Analog-Devices',
+ '11d5' => 'Ikon-Corporation',
+ '11d6' => 'Tekelec-Telecom',
+ '11d7' => 'Trenton-Technology-Inc.',
+ '11d9' => 'TEC-Corporation',
+ '11da' => 'Novell',
+ '11db' => 'Sega-Enterprises-Ltd',
+ '11dc' => 'Questra-Corporation',
+ '11dd' => 'Crosfield-Electronics-Limited',
+ '11de' => 'Zoran-Corporation',
+ '11df' => 'New-Wave-PDG',
+ '11e0' => 'Cray-Communications-A-S',
+ '11e1' => 'GEC-Plessey-Semi-Inc.',
+ '11e3' => 'Quicklogic-Corporation',
+ '11e4' => 'Second-Wave-Inc',
+ '11e5' => 'IIX-Consulting',
+ '11e6' => 'Mitsui-Zosen-System-Research',
+ '11e9' => 'Highwater-Designs-Ltd.',
+ '11ea' => 'Elsag-Bailey',
+ '11eb' => 'Formation-Inc.',
+ '11ec' => 'Coreco-Inc',
+ '11ed' => 'Mediamatics',
+ '11ee' => 'Dome-Imaging-Systems-Inc',
+ '11ef' => 'Nicolet-Technologies-B.V.',
+ '11f0' => 'Compu-Shack',
+ '11f1' => 'Symbios-Logic-Inc',
+ '11f2' => 'Picture-Tel-Japan-K.K.',
+ '11f3' => 'Keithley-Metrabyte',
+ '11f4' => 'Kinetic-Systems-Corporation',
+ '11f6' => 'Compex',
+ '11f7' => 'Scientific-Atlanta',
+ '11f8' => 'PMC-Sierra-Inc.',
+ '11f9' => 'I-Cube-Inc',
+ '11fb' => 'Datel-Inc',
+ '11fc' => 'Silicon-Magic',
+ '11fd' => 'High-Street-Consultants',
+ '11fe' => 'Comtrol-Corporation',
+ '11ff' => 'Scion-Corporation',
+ '1200' => 'CSS-Corporation',
+ '1201' => 'Vista-Controls-Corp',
+ '1202' => 'Network-General-Corp.',
+ '1205' => 'Array-Corporation',
+ '1206' => 'Amdahl-Corporation',
+ '1208' => 'Parsytec-GmbH',
+ '1209' => 'SCI-Systems-Inc',
+ '120a' => 'Synaptel',
+ '120b' => 'Adaptive-Solutions',
+ '120c' => 'Technical-Corp.',
+ '120d' => 'Compression-Labs-Inc.',
+ '120e' => 'Cyclades-Corporation',
+ '120f' => 'Essential-Communications',
+ '1210' => 'Hyperparallel-Technologies',
+ '1211' => 'Braintech-Inc',
+ '1212' => 'Kingston-Technology-Corp.',
+ '1215' => 'Interware-Co.-Ltd',
+ '1216' => 'Purup-Prepress-A-S',
+ '1217' => 'O2-Micro-Inc.',
+ '1218' => 'Hybricon-Corp.',
+ '1219' => 'First-Virtual-Corporation',
+ '121a' => '3Dfx-Interactive-Inc.',
+ '121c' => 'Nippon-Texaco.-Ltd',
+ '121e' => 'CSPI',
+ '121f' => 'Arcus-Technology-Inc.',
+ '1220' => 'Ariel-Corporation',
+ '1221' => 'Contec-Co.-Ltd',
+ '1222' => 'Ancor-Communications-Inc.',
+ '1224' => 'Interactive-Images',
+ '1225' => 'Power-I-O-Inc.',
+ '1227' => 'Tech-Source',
+ '1228' => 'Norsk-Elektro-Optikk-A-S',
+ '1229' => 'Data-Kinesis-Inc.',
+ '122a' => 'Integrated-Telecom',
+ '122c' => 'Sican-GmbH',
+ '122d' => 'Aztech-System-Ltd',
+ '122e' => 'Xyratex',
+ '122f' => 'Andrew-Corporation',
+ '1230' => 'Fishcamp-Engineering',
+ '1231' => 'Woodward-McCoach-Inc.',
+ '1232' => 'GPT-Limited',
+ '1233' => 'Bus-Tech-Inc.',
+ '1235' => 'Risq-Modular-Systems-Inc.',
+ '1236' => 'Sigma-Designs-Corporation',
+ '1237' => 'Alta-Technology-Corporation',
+ '1238' => 'Adtran',
+ '1239' => '3DO-Company',
+ '123a' => 'Visicom-Laboratories-Inc.',
+ '123b' => 'Seeq-Technology-Inc.',
+ '123c' => 'Century-Systems-Inc.',
+ '123d' => 'Engineering-Design-Team-Inc.',
+ '123e' => 'Simutech-Inc.',
+ '123f' => 'C-Cube-Microsystems',
+ '1240' => 'Marathon-Technologies-Corp.',
+ '1241' => 'DSC-Communications',
+ '1243' => 'Delphax',
+ '1245' => 'A.P.D.-S.A.',
+ '1246' => 'Dipix-Technologies-Inc.',
+ '1247' => 'Xylon-Research-Inc.',
+ '1248' => 'Central-Data-Corporation',
+ '1249' => 'Samsung-Electronics-Co.-Ltd.',
+ '124a' => 'AEG-Electrocom-GmbH',
+ '124b' => 'SBS-Greenspring-Modular-I-O',
+ '124c' => 'Solitron-Technologies-Inc.',
+ '124d' => 'Stallion-Technologies-Inc.',
+ '124e' => 'Cylink',
+ '124f' => 'Infortrend-Technology-Inc.',
+ '1251' => 'VLSI-Solutions-Oy',
+ '1253' => 'Guzik-Technical-Enterprises',
+ '1254' => 'Linear-Systems-Ltd.',
+ '1255' => 'Optibase-Ltd',
+ '1256' => 'Perceptive-Solutions-Inc.',
+ '1257' => 'Vertex-Networks-Inc.',
+ '1258' => 'Gilbarco-Inc.',
+ '1259' => 'Allied-Telesyn-International',
+ '125a' => 'ABB-Power-Systems',
+ '125b' => 'Asix-Electronics-Corporation',
+ '125c' => 'Aurora-Technologies-Inc.',
+ '125d' => 'ESS-Technology',
+ '125e' => 'Specialvideo-Engineering-SRL',
+ '125f' => 'Concurrent-Technologies-Inc.',
+ '1260' => 'Intersil-Corporation',
+ '1262' => 'ES-Computer-Company-Ltd.',
+ '1263' => 'Sonic-Solutions',
+ '1264' => 'Aval-Nagasaki-Corporation',
+ '1265' => 'Casio-Computer-Co.-Ltd.',
+ '1266' => 'Microdyne-Corporation',
+ '1267' => 'S.-A.-Telecommunications',
+ '1268' => 'Tektronix',
+ '1269' => 'Thomson-CSF-TTM',
+ '126a' => 'Lexmark',
+ '126b' => 'Adax-Inc.',
+ '126c' => 'Northern-Telecom',
+ '126d' => 'Splash-Technology-Inc.',
+ '126f' => 'Silicon-Motion-Inc.',
+ '1270' => 'Olympus-Optical-Co.-Ltd.',
+ '1271' => 'GW-Instruments',
+ '1272' => 'Telematics-International',
+ '1273' => 'Hughes-Network-Systems',
+ '1274' => 'Ensoniq',
+ '1275' => 'Network-Appliance-Corporation',
+ '1277' => 'Comstream',
+ '1279' => 'Transmeta-Corporation',
+ '127a' => 'Rockwell-International',
+ '127b' => 'Pixera-Corporation',
+ '127c' => 'Crosspoint-Solutions-Inc.',
+ '127d' => 'Vela-Research',
+ '127e' => 'Winnov-L.P.',
+ '127f' => 'Fujifilm',
+ '1280' => 'Photoscript-Group-Ltd.',
+ '1281' => 'Yokogawa-Electric-Corporation',
+ '1282' => 'Davicom-Semiconductor-Inc.',
+ '1284' => 'Sahara-Networks-Inc.',
+ '1285' => 'Platform-Technologies-Inc.',
+ '1286' => 'Mazet-GmbH',
+ '1287' => 'M-Pact-Inc.',
+ '1288' => 'Timestep-Corporation',
+ '1289' => 'AVC-Technology-Inc.',
+ '128a' => 'Asante-Technologies-Inc.',
+ '128b' => 'Transwitch-Corporation',
+ '128c' => 'Retix-Corporation',
+ '128d' => 'G2-Networks-Inc.',
+ '128f' => 'Tateno-Dennou-Inc.',
+ '1290' => 'Sord-Computer-Corporation',
+ '1291' => 'NCS-Computer-Italia',
+ '1292' => 'Tritech-Microelectronics-Inc',
+ '1293' => 'Media-Reality-Technology',
+ '1294' => 'Rhetorex-Inc.',
+ '1295' => 'Imagenation-Corporation',
+ '1296' => 'Kofax-Image-Products',
+ '1299' => 'Knowledge-Technology-Lab.',
+ '129a' => 'VMetro-inc.',
+ '129b' => 'Image-Access',
+ '129c' => 'Jaycor',
+ '129d' => 'Compcore-Multimedia-Inc.',
+ '129e' => 'Victor-Company-of-Japan-Ltd.',
+ '129f' => 'OEC-Medical-Systems-Inc.',
+ '12a0' => 'Allen-Bradley-Company',
+ '12a1' => 'Simpact-Associates-Inc.',
+ '12a2' => 'Newgen-Systems-Corporation',
+ '12a3' => 'Lucent-Technologies',
+ '12a5' => 'Vision-Dynamics-Ltd.',
+ '12a6' => 'Scalable-Networks-Inc.',
+ '12a7' => 'AMO-GmbH',
+ '12a8' => 'News-Datacom',
+ '12a9' => 'Xiotech-Corporation',
+ '12aa' => 'SDL-Communications-Inc.',
+ '12ac' => 'Measurex-Corporation',
+ '12ad' => 'Multidata-GmbH',
+ '12ae' => 'Alteon-Networks-Inc.',
+ '12af' => 'TDK-USA-Corp',
+ '12b0' => 'Jorge-Scientific-Corp',
+ '12b1' => 'GammaLink',
+ '12b2' => 'General-Signal-Networks',
+ '12b3' => 'Inter-Face-Co-Ltd',
+ '12b4' => 'FutureTel-Inc',
+ '12b5' => 'Granite-Systems-Inc.',
+ '12b6' => 'Natural-Microsystems',
+ '12b8' => 'Korg',
+ '12ba' => 'BittWare-Inc.',
+ '12bb' => 'Nippon-Unisoft-Corporation',
+ '12bc' => 'Array-Microsystems',
+ '12bd' => 'Computerm-Corp.',
+ '12be' => 'Anchor-Chips-Inc.',
+ '12bf' => 'Fujifilm-Microdevices',
+ '12c0' => 'Infimed',
+ '12c1' => 'GMM-Research-Corp',
+ '12c2' => 'Mentec-Limited',
+ '12c3' => 'Holtek-Microelectronics-Inc',
+ '12c4' => 'Connect-Tech-Inc',
+ '12c5' => 'Picture-Elements-Incorporated',
+ '12c6' => 'Mitani-Corporation',
+ '12c7' => 'Dialogic-Corp',
+ '12c8' => 'G-Force-Co-Ltd',
+ '12c9' => 'Gigi-Operations',
+ '12ca' => 'Integrated-Computing-Engines',
+ '12cb' => 'Antex-Electronics-Corporation',
+ '12cd' => 'Aims-Lab',
+ '12ce' => 'Netspeed-Inc.',
+ '12cf' => 'Prophet-Systems-Inc.',
+ '12d0' => 'GDE-Systems-Inc.',
+ '12d1' => 'PSITech',
+ '12d3' => 'Vingmed-Sound-A-S',
+ '12d4' => 'Ulticom-Formerly-DGM-S',
+ '12d5' => 'Equator-Technologies-Inc',
+ '12d6' => 'Analogic-Corp',
+ '12d7' => 'Biotronic-SRL',
+ '12d8' => 'Pericom-Semiconductor',
+ '12d9' => 'Aculab-PLC',
+ '12da' => 'True-Time-Inc.',
+ '12db' => 'Annapolis-Micro-Systems-Inc',
+ '12dd' => 'Management-Graphics',
+ '12de' => 'Rainbow-Technologies',
+ '12df' => 'SBS-Technologies-Inc',
+ '12e0' => 'Chase-Research',
+ '12e1' => 'Nintendo-Co-Ltd',
+ '12e4' => 'Brooktrout-Technology-Inc',
+ '12e5' => 'Apex-Semiconductor-Inc',
+ '12e6' => 'Cirel-Systems',
+ '12e7' => 'Sunsgroup-Corporation',
+ '12e8' => 'Crisc-Corp',
+ '12e9' => 'GE-Spacenet',
+ '12ea' => 'Zuken',
+ '12eb' => 'Aureal-Semiconductor',
+ '12ec' => '3A-International-Inc.',
+ '12ed' => 'Optivision-Inc.',
+ '12ee' => 'Orange-Micro',
+ '12ef' => 'Vienna-Systems',
+ '12f0' => 'Pentek',
+ '12f1' => 'Sorenson-Vision-Inc',
+ '12f2' => 'Gammagraphx-Inc.',
+ '12f3' => 'Radstone-Technology',
+ '12f4' => 'Megatel',
+ '12f5' => 'Forks',
+ '12f6' => 'Dawson-France',
+ '12f7' => 'Cognex',
+ '12f8' => 'Electronic-Design-GmbH',
+ '12f9' => 'Four-Fold-Ltd',
+ '12fb' => 'Spectrum-Signal-Processing',
+ '12fc' => 'Capital-Equipment-Corp',
+ '12fd' => 'I2S',
+ '12ff' => 'Lexicon',
+ '1302' => 'Computer-Sciences-Corp',
+ '1303' => 'Innovative-Integration',
+ '1304' => 'Juniper-Networks',
+ '1305' => 'Netphone-Inc',
+ '1306' => 'Duet-Technologies',
+ '1308' => 'Jato-Technologies-Inc.',
+ '1309' => 'AB-Semiconductor-Ltd',
+ '130c' => 'Ambex-Technologies-Inc',
+ '130d' => 'Accelerix-Inc',
+ '130e' => 'Yamatake-Honeywell-Co.-Ltd',
+ '130f' => 'Advanet-Inc',
+ '1310' => 'Gespac',
+ '1311' => 'Videoserver-Inc',
+ '1312' => 'Acuity-Imaging-Inc',
+ '1313' => 'Yaskawa-Electric-Co.',
+ '1315' => 'Wavesat',
+ '1316' => 'Teradyne-Inc',
+ '1317' => 'ADMtek',
+ '1318' => 'Packet-Engines-Inc.',
+ '1319' => 'Fortemedia-Inc',
+ '131a' => 'Finisar-Corp.',
+ '131d' => 'Sysmic-Inc.',
+ '131e' => 'Xinex-Networks-Inc',
+ '131f' => 'Siig-Inc',
+ '1320' => 'Crypto-AG',
+ '1321' => 'Arcobel-Graphics-BV',
+ '1322' => 'MTT-Co.-Ltd',
+ '1323' => 'Dome-Inc',
+ '1324' => 'Sphere-Communications',
+ '1325' => 'Salix-Technologies-Inc',
+ '1326' => 'Seachange-international',
+ '1327' => 'Voss-scientific',
+ '1328' => 'quadrant-international',
+ '1329' => 'Productivity-Enhancement',
+ '132a' => 'Microcom-Inc.',
+ '132b' => 'Broadband-Technologies',
+ '132c' => 'Micrel-Inc',
+ '1330' => 'MMC-Networks',
+ '1331' => 'RadiSys-Corporation',
+ '1332' => 'Micro-Memory',
+ '1334' => 'Redcreek-Communications-Inc',
+ '1335' => 'Videomail-Inc',
+ '1337' => 'Third-Planet-Publishing',
+ '1338' => 'BT-Electronics',
+ '133a' => 'Vtel-Corp',
+ '133b' => 'Softcom-Microsystems',
+ '133c' => 'Holontech-Corp',
+ '133d' => 'SS-Technologies',
+ '133e' => 'Virtual-Computer-Corp',
+ '133f' => 'SCM-Microsystems',
+ '1340' => 'Atalla-Corp',
+ '1341' => 'Kyoto-Microcomputer-Co',
+ '1342' => 'Promax-Systems-Inc',
+ '1343' => 'Phylon-Communications-Inc',
+ '1345' => 'Arescom-Inc',
+ '1347' => 'Odetics',
+ '134a' => 'DTC-Technology-Corp.',
+ '134b' => 'ARK-Research-Corp.',
+ '134c' => 'Chori-Joho-System-Co.-Ltd',
+ '134d' => 'PCTel-Inc',
+ '134e' => 'CSTI',
+ '134f' => 'Algo-System-Co-Ltd',
+ '1350' => 'Systec-Co.-Ltd',
+ '1351' => 'Sonix-Inc',
+ '1353' => 'Thales-Idatys',
+ '1354' => 'Dwave-System-Inc',
+ '1355' => 'Kratos-Analytical-Ltd',
+ '1356' => 'The-Logical-Co',
+ '1359' => 'Prisa-Networks',
+ '135a' => 'Brain-Boxes',
+ '135b' => 'Giganet-Inc',
+ '135c' => 'Quatech-Inc',
+ '135d' => 'ABB-Network-Partner-AB',
+ '135e' => 'Sealevel-Systems-Inc',
+ '135f' => 'I-Data-International-A-S',
+ '1360' => 'Meinberg-Funkuhren',
+ '1361' => 'Soliton-Systems-K.K.',
+ '1362' => 'Fujifacom-Corporation',
+ '1363' => 'Phoenix-Technology-Ltd',
+ '1364' => 'ATM-Communications-Inc',
+ '1365' => 'Hypercope-GmbH',
+ '1366' => 'Teijin-Seiki-Co.-Ltd',
+ '1367' => 'Hitachi-Zosen-Corporation',
+ '1368' => 'Skyware-Corporation',
+ '1369' => 'Digigram',
+ '136a' => 'High-Soft-Tech',
+ '136b' => 'Kawasaki-Steel-Corporation',
+ '136c' => 'Adtek-System-Science-Co-Ltd',
+ '136d' => 'Gigalabs-Inc',
+ '136f' => 'Applied-Magic-Inc',
+ '1370' => 'ATL-Products',
+ '1371' => 'CNet-Technology-Inc',
+ '1373' => 'Silicon-Vision-Inc',
+ '1374' => 'Silicom-Ltd.',
+ '1375' => 'Argosystems-Inc',
+ '1376' => 'LMC',
+ '1378' => 'Telemann-Co.-Ltd',
+ '137a' => 'Mark-of-the-Unicorn-Inc',
+ '137b' => 'PPT-Vision',
+ '137c' => 'Iwatsu-Electric-Co-Ltd',
+ '137d' => 'Dynachip-Corporation',
+ '137f' => 'Japan-Satellite-Systems-Inc',
+ '1380' => 'Sanritz-Automation-Co-Ltd',
+ '1381' => 'Brains-Co.-Ltd',
+ '1383' => 'Controlnet-Inc',
+ '1385' => 'Netgear',
+ '1386' => 'Video-Domain-Technologies',
+ '1387' => 'Systran-Corp',
+ '1389' => 'Applicom-International',
+ '138a' => 'Fusion-Micromedia-Corp',
+ '138b' => 'Tokimec-Inc',
+ '138c' => 'Silicon-Reality',
+ '138d' => 'Future-Techno-Designs-pte-Ltd',
+ '138e' => 'Basler-GmbH',
+ '138f' => 'Patapsco-Designs-Inc',
+ '1390' => 'Concept-Development-Inc',
+ '1391' => 'Development-Concepts-Inc',
+ '1392' => 'Medialight-Inc',
+ '1393' => 'Moxa-Technologies-Co-Ltd',
+ '1394' => 'Level-One-Communications',
+ '1395' => 'Ambicom-Inc',
+ '1396' => 'Cipher-Systems-Inc',
+ '1397' => 'Cologne-Chip-Designs-GmbH',
+ '1398' => 'Clarion-co.-Ltd',
+ '1399' => 'Rios-systems-Co-Ltd',
+ '139a' => 'Alacritech-Inc',
+ '139c' => 'Quantum-3d-Inc',
+ '139d' => 'EPL-limited',
+ '139e' => 'Media4',
+ '139f' => 'Aethra-s.r.l.',
+ '13a0' => 'Crystal-Group-Inc',
+ '13a1' => 'Kawasaki-Heavy-Industries-Ltd',
+ '13a2' => 'Ositech-Communications-Inc',
+ '13a3' => 'Hifn-Inc.',
+ '13a4' => 'Rascom-Inc',
+ '13a5' => 'Audio-Digital-Imaging-Inc',
+ '13a6' => 'Videonics-Inc',
+ '13a7' => 'Teles-AG',
+ '13a8' => 'Exar-Corp.',
+ '13aa' => 'Broadband-Networks-Inc',
+ '13ab' => 'Arcom-Control-Systems-Ltd',
+ '13ac' => 'Motion-Media-Technology-Ltd',
+ '13ad' => 'Nexus-Inc',
+ '13ae' => 'ALD-Technology-Ltd',
+ '13af' => 'T.Sqware',
+ '13b0' => 'Maxspeed-Corp',
+ '13b1' => 'Tamura-corporation',
+ '13b2' => 'Techno-Chips-Co.-Ltd',
+ '13b3' => 'Lanart-Corporation',
+ '13b4' => 'Wellbean-Co-Inc',
+ '13b5' => 'ARM',
+ '13b6' => 'Dlog-GmbH',
+ '13b7' => 'Logic-Devices-Inc',
+ '13b8' => 'Nokia-Telecommunications-oy',
+ '13b9' => 'Elecom-Co-Ltd',
+ '13ba' => 'Oxford-Instruments',
+ '13bb' => 'Sanyo-Technosound-Co-Ltd',
+ '13bc' => 'Bitran-Corporation',
+ '13bd' => 'SHARP',
+ '13be' => 'Miroku-Jyoho-Service-Co.-Ltd',
+ '13bf' => 'Sharewave-Inc',
+ '13c0' => 'Microgate-Corporation',
+ '13c1' => '3ware-Inc',
+ '13c3' => 'Janz-Computer-AG',
+ '13c4' => 'Phase-Metrics',
+ '13c5' => 'Alphi-Technology-Corp',
+ '13c6' => 'Condor-Engineering-Inc',
+ '13c7' => 'Blue-Chip-Technology-Ltd',
+ '13c8' => 'Apptech-Inc',
+ '13c9' => 'Eaton-Corporation',
+ '13ca' => 'Iomega-Corporation',
+ '13cb' => 'Yano-Electric-Co-Ltd',
+ '13cc' => 'Metheus-Corporation',
+ '13ce' => 'Cocom-A-S',
+ '13cf' => 'Studio-Audio---Video-Ltd',
+ '13d0' => 'Techsan-Electronics-Co-Ltd',
+ '13d1' => 'Abocom-Systems-Inc',
+ '13d2' => 'Shark-Multimedia-Inc',
+ '13d3' => 'IMC-Networks',
+ '13d4' => 'Graphics-Microsystems-Inc',
+ '13d5' => 'Media-100-Inc',
+ '13d6' => 'K.I.-Technology-Co-Ltd',
+ '13d8' => 'Phobos-corporation',
+ '13d9' => 'Apex-PC-Solutions-Inc',
+ '13da' => 'Intresource-Systems-pte-Ltd',
+ '13dc' => 'Netboost-Corporation',
+ '13dd' => 'Multimedia-Bundle-Inc',
+ '13de' => 'ABB-Robotics-Products-AB',
+ '13df' => 'E-Tech-Inc',
+ '13e0' => 'GVC-Corporation',
+ '13e2' => 'Dynamics-Research-Corporation',
+ '13e3' => 'Nest-Inc',
+ '13e4' => 'Calculex-Inc',
+ '13e5' => 'Telesoft-Design-Ltd',
+ '13e6' => 'Argosy-research-Inc',
+ '13e7' => 'NAC-Incorporated',
+ '13e8' => 'Chip-Express-Corporation',
+ '13e9' => 'Intraserver-Technology-Inc',
+ '13ea' => 'Dallas-Semiconductor',
+ '13eb' => 'Hauppauge-Computer-Works-Inc',
+ '13ec' => 'Zydacron-Inc',
+ '13ed' => 'Raytheion-E-Systems',
+ '13ef' => 'Coppercom-Inc',
+ '13f1' => 'Oce---Technologies-B.V.',
+ '13f2' => 'Ford-Microelectronics-Inc',
+ '13f3' => 'Mcdata-Corporation',
+ '13f4' => 'Troika-Networks-Inc.',
+ '13f5' => 'Kansai-Electric-Co.-Ltd',
+ '13f6' => 'C-Media-Electronics-Inc',
+ '13f7' => 'Wildfire-Communications',
+ '13f8' => 'Ad-Lib-Multimedia-Inc',
+ '13f9' => 'NTT-Advanced-Technology-Corp.',
+ '13fa' => 'Pentland-Systems-Ltd',
+ '13fb' => 'Aydin-Corp',
+ '13fd' => 'Micro-Science-Inc',
+ '13fe' => 'Advantech-Co.-Ltd',
+ '13ff' => 'Silicon-Spice-Inc',
+ '1400' => 'Artx-Inc',
+ '1401' => 'CR-Systems-A-S',
+ '1402' => 'Meilhaus-Electronic-GmbH',
+ '1403' => 'Ascor-Inc',
+ '1404' => 'Fundamental-Software-Inc',
+ '1405' => 'Excalibur-Systems-Inc',
+ '1406' => 'Oce-Printing-Systems-GmbH',
+ '1407' => 'Lava-Computer-mfg-Inc',
+ '1408' => 'Aloka-Co.-Ltd',
+ '1409' => 'Timedia-Technology-Co-Ltd',
+ '140a' => 'DSP-Research-Inc',
+ '140c' => 'Elmic-Systems-Inc',
+ '140d' => 'Matsushita-Electric-Works-Ltd',
+ '140e' => 'Goepel-Electronic-GmbH',
+ '140f' => 'Salient-Systems-Corp',
+ '1410' => 'Midas-lab-Inc',
+ '1411' => 'Ikos-Systems-Inc',
+ '1413' => 'Addonics',
+ '1414' => 'Microsoft',
+ '1415' => 'Oxford-Semiconductor-Ltd',
+ '1416' => 'Multiwave-Innovation-pte-Ltd',
+ '1417' => 'Convergenet-Technologies-Inc',
+ '1419' => 'Excel-Switching-Corp',
+ '141a' => 'Apache-Micro-Peripherals-Inc',
+ '141b' => 'Zoom-Telephonics-Inc',
+ '141d' => 'Digitan-Systems-Inc',
+ '141e' => 'Fanuc-Ltd',
+ '141f' => 'Visiontech-Ltd',
+ '1420' => 'Psion-Dacom-plc',
+ '1421' => 'Ads-Technologies-Inc',
+ '1422' => 'Ygrec-Systems-Co-Ltd',
+ '1423' => 'Custom-Technology-Corp.',
+ '1424' => 'Videoserver-Connections',
+ '1425' => 'Chelsio-Communications-Inc',
+ '1426' => 'Storage-Technology-Corp.',
+ '1427' => 'Better-On-Line-Solutions',
+ '1428' => 'Edec-Co-Ltd',
+ '1429' => 'Unex-Technology-Corp.',
+ '142a' => 'Kingmax-Technology-Inc',
+ '142b' => 'Radiolan',
+ '142c' => 'Minton-Optic-Industry-Co-Ltd',
+ '142d' => 'Pix-stream-Inc',
+ '142e' => 'Vitec-Multimedia',
+ '142f' => 'Radicom-Research-Inc',
+ '1431' => 'Gilat-Satellite-Networks',
+ '1432' => 'Edimax-Computer-Co.',
+ '1433' => 'Eltec-Elektronik-GmbH',
+ '1436' => 'CIS-Technology-Inc',
+ '1437' => 'Nissin-Inc-Co',
+ '1438' => 'Atmel-dream',
+ '143a' => 'Stargate-Solutions-Inc',
+ '143c' => 'Amlogic-Inc',
+ '143d' => 'Tamarack-Microelectronics-Inc',
+ '143e' => 'Jones-Futurex-Inc',
+ '1440' => 'ALGOL-Corp.',
+ '1441' => 'AGIE-Ltd',
+ '1442' => 'Phoenix-Contact-GmbH---Co.',
+ '1443' => 'Unibrain-S.A.',
+ '1444' => 'TRW',
+ '1445' => 'Logical-DO-Ltd',
+ '1446' => 'Graphin-Co-Ltd',
+ '1447' => 'AIM-GmBH',
+ '1448' => 'Alesis-Studio-Electronics',
+ '1449' => 'TUT-Systems-Inc',
+ '144a' => 'Adlink-Technology',
+ '144c' => 'Catalina-Research-Inc',
+ '144d' => 'Samsung-Electronics-Co-Ltd',
+ '144e' => 'OLITEC',
+ '144f' => 'Askey-Computer-Corp.',
+ '1450' => 'Octave-Communications-Ind.',
+ '1451' => 'SP3D-Chip-Design-GmBH',
+ '1453' => 'MYCOM-Inc',
+ '1454' => 'Altiga-Networks',
+ '1455' => 'Logic-Plus-Plus-Inc',
+ '1457' => 'Nuera-Communications-Inc',
+ '1458' => 'Giga-byte-Technology',
+ '1459' => 'DOOIN-Electronics',
+ '145a' => 'Escalate-Networks-Inc',
+ '145b' => 'PRAIM-SRL',
+ '145c' => 'Cryptek',
+ '145d' => 'Gallant-Computer-Inc',
+ '145e' => 'Aashima-Technology-B.V.',
+ '145f' => 'Baldor-Electric-Company',
+ '1460' => 'DYNARC-INC',
+ '1461' => 'Avermedia-Technologies-Inc',
+ '1463' => 'Fast-Corporation',
+ '1465' => 'GN-NETTEST-Telecom-DIV.',
+ '1466' => 'Designpro-Inc.',
+ '1467' => 'DIGICOM-SPA',
+ '1468' => 'AMBIT-Microsystem-Corp.',
+ '1469' => 'Cleveland-Motion-Controls',
+ '146a' => 'IFR',
+ '146b' => 'Parascan-Technologies-Ltd',
+ '146c' => 'Ruby-Tech-Corp.',
+ '146d' => 'Tachyon-INC.',
+ '1470' => 'Bay-Networks',
+ '1472' => 'DAIKIN-Industries-Ltd',
+ '1473' => 'ZAPEX-Technologies-Inc',
+ '1474' => 'Doug-Carson---Associates',
+ '1475' => 'PICAZO-Communications',
+ '1476' => 'MORTARA-Instrument-Inc',
+ '1477' => 'Net-Insight',
+ '1478' => 'DIATREND-Corporation',
+ '1479' => 'TORAY-Industries-Inc',
+ '147a' => 'FORMOSA-Industrial-Computing',
+ '147b' => 'ABIT-Computer-Corp.',
+ '147c' => 'AWARE-Inc.',
+ '147d' => 'Interworks-Computer-Products',
+ '147f' => 'NIHON-UNISYS-Ltd.',
+ '1480' => 'SCII-Telecom',
+ '1481' => 'BIOPAC-Systems-Inc',
+ '1483' => 'LABWAY-Corporation',
+ '1484' => 'Logic-Corporation',
+ '1485' => 'ERMA---Electronic-GmBH',
+ '1487' => 'MARQUETTE-Medical-Systems',
+ '1488' => 'KONTRON-Electronik-GmBH',
+ '1489' => 'KYE-Systems-Corp',
+ '148a' => 'OPTO',
+ '148b' => 'INNOMEDIALOGIC-Inc.',
+ '148c' => 'C.P.-Technology-Co.-Ltd',
+ '148d' => 'DIGICOM-Systems-Inc.',
+ '148e' => 'OSI-Plus-Corporation',
+ '148f' => 'Plant-Equipment-Inc.',
+ '1490' => 'Stone-Microsystems-PTY-Ltd.',
+ '1491' => 'ZEAL-Corporation',
+ '1492' => 'Time-Logic-Corporation',
+ '1493' => 'MAKER-Communications',
+ '1494' => 'WINTOP-Technology-Inc.',
+ '1496' => 'JOYTECH-Computer-Co.-Ltd.',
+ '1497' => 'SMA-Regelsysteme-GmBH',
+ '1498' => 'TEWS-Technologies-GmbH',
+ '1499' => 'EMTEC-CO.-Ltd',
+ '149a' => 'ANDOR-Technology-Ltd',
+ '149b' => 'SEIKO-Instruments-Inc',
+ '149c' => 'OVISLINK-Corp.',
+ '149d' => 'NEWTEK-Inc',
+ '149e' => 'Mapletree-Networks-Inc.',
+ '149f' => 'LECTRON-Co-Ltd',
+ '14a0' => 'SOFTING-GmBH',
+ '14a1' => 'Systembase-Co-Ltd',
+ '14a2' => 'Millennium-Engineering-Inc',
+ '14a3' => 'Maverick-Networks',
+ '14a4' => 'GVC-BCM-Advanced-Research',
+ '14a6' => 'INOVA-Computers-GmBH---Co-KG',
+ '14a7' => 'MYTHOS-Systems-Inc',
+ '14a9' => 'HIVERTEC-Inc',
+ '14aa' => 'Advanced-MOS-Technology-Inc',
+ '14ab' => 'Mentor-Graphics-Corp.',
+ '14ac' => 'Novaweb-Technologies-Inc',
+ '14ad' => 'Time-Space-Radio-AB',
+ '14ae' => 'CTI-Inc',
+ '14af' => 'Guillemot-Corporation',
+ '14b1' => 'Nextcom-K.K.',
+ '14b2' => 'ENNOVATE-Networks-Inc',
+ '14b3' => 'XPEED-Inc',
+ '14b5' => 'Creamware-GmBH',
+ '14b6' => 'Quantum-Data-Corp.',
+ '14b7' => 'PROXIM-Inc',
+ '14b8' => 'Techsoft-Technology-Co-Ltd',
+ '14ba' => 'INTERNIX-Inc.',
+ '14bb' => 'SEMTECH-Corporation',
+ '14bc' => 'Globespan-Semiconductor-Inc.',
+ '14bd' => 'CARDIO-Control-N.V.',
+ '14be' => 'L3-Communications',
+ '14bf' => 'SPIDER-Communications-Inc.',
+ '14c0' => 'COMPAL-Electronics-Inc',
+ '14c1' => 'MYRICOM-Inc.',
+ '14c2' => 'DTK-Computer',
+ '14c3' => 'MEDIATEK-Corp.',
+ '14c5' => 'Automation-Products-AB',
+ '14c6' => 'Data-Race-Inc',
+ '14c8' => 'Turbocomm-Tech.-Inc.',
+ '14c9' => 'ODIN-Telesystems-Inc',
+ '14ca' => 'PE-Logic-Corp.',
+ '14cb' => 'Billionton-Systems-Inc',
+ '14cc' => 'NAKAYO-Telecommunications-Inc',
+ '14cd' => 'Universal-Scientific-Ind.',
+ '14ce' => 'Whistle-Communications',
+ '14cf' => 'TEK-Microsystems-Inc.',
+ '14d0' => 'Ericsson-Axe-R---D',
+ '14d1' => 'Computer-Hi-Tech-Co-Ltd',
+ '14d2' => 'Titan-Electronics-Inc',
+ '14d3' => 'CIRTECH-UK-Ltd',
+ '14d4' => 'Panacom-Technology-Corp',
+ '14d5' => 'Nitsuko-Corporation',
+ '14d6' => 'Accusys-Inc',
+ '14d7' => 'Hirakawa-Hewtech-Corp',
+ '14d8' => 'HOPF-Elektronik-GmBH',
+ '14db' => 'AFAVLAB-Technology-Inc',
+ '14dc' => 'Amplicon-Liveline-Ltd',
+ '14dd' => 'Boulder-Design-Labs-Inc',
+ '14df' => 'ASIC-Communications-Corp',
+ '14e1' => 'INVERTEX',
+ '14e2' => 'INFOLIBRIA',
+ '14e3' => 'AMTELCO',
+ '14e4' => 'Broadcom',
+ '14e5' => 'Pixelfusion-Ltd',
+ '14e6' => 'SHINING-Technology-Inc',
+ '14e7' => '3CX',
+ '14e8' => 'RAYCER-Inc',
+ '14e9' => 'GARNETS-System-CO-Ltd',
+ '14ea' => 'Planex-Communications-Inc',
+ '14eb' => 'SEIKO-EPSON-Corp',
+ '14ec' => 'ACQIRIS',
+ '14ed' => 'DATAKINETICS-Ltd',
+ '14ee' => 'MASPRO-KENKOH-Corp',
+ '14ef' => 'CARRY-Computer-ENG.-CO-Ltd',
+ '14f0' => 'CANON-RESEACH-CENTRE-FRANCE',
+ '14f1' => 'Conexant-Systems-Inc.',
+ '14f2' => 'MOBILITY-Electronics',
+ '14f3' => 'BroadLogic',
+ '14f5' => 'SOPAC-Ltd',
+ '14f6' => 'COYOTE-Technologies-LLC',
+ '14f7' => 'WOLF-Technology-Inc',
+ '14f8' => 'AUDIOCODES-Inc',
+ '14f9' => 'AG-COMMUNICATIONS',
+ '14fa' => 'WANDEL---GOLTERMANN',
+ '14fb' => 'TRANSAS-MARINE-UK-Ltd',
+ '14fc' => 'Quadrics-Ltd',
+ '14fd' => 'JAPAN-Computer-Industry-Inc',
+ '14fe' => 'ARCHTEK-TELECOM-Corp',
+ '14ff' => 'TWINHEAD-INTERNATIONAL-Corp',
+ '1500' => 'DELTA-Electronics-Inc',
+ '1501' => 'BANKSOFT-CANADA-Ltd',
+ '1503' => 'KAWASAKI-LSI-USA-Inc',
+ '1504' => 'KAISER-Electronics',
+ '1506' => 'CHAMELEON-Systems-Inc',
+ '150a' => 'FORVUS-RESEARCH-Inc',
+ '150b' => 'YAMASHITA-Systems-Corp',
+ '150c' => 'KYOPAL-CO-Ltd',
+ '150d' => 'WARPSPPED-Inc',
+ '150e' => 'C-PORT-Corp',
+ '150f' => 'INTEC-GmbH',
+ '1510' => 'BEHAVIOR-TECH-Computer-Corp',
+ '1511' => 'CENTILLIUM-Technology-Corp',
+ '1512' => 'ROSUN-Technologies-Inc',
+ '1513' => 'Raychem',
+ '1514' => 'TFL-LAN-Inc',
+ '1515' => 'Advent-design',
+ '1516' => 'MYSON-Technology-Inc',
+ '1517' => 'ECHOTEK-Corp',
+ '151a' => 'Globetek',
+ '151b' => 'COMBOX-Ltd',
+ '151c' => 'DIGITAL-AUDIO-LABS-Inc',
+ '151e' => 'MATRIX-Corp',
+ '151f' => 'TOPIC-SEMICONDUCTOR-Corp',
+ '1520' => 'CHAPLET-System-Inc',
+ '1521' => 'BELL-Corp',
+ '1522' => 'MainPine-Ltd',
+ '1523' => 'MUSIC-Semiconductors',
+ '1524' => 'ENE-Technology-Inc',
+ '1525' => 'IMPACT-Technologies',
+ '1526' => 'ISS-Inc',
+ '1527' => 'SOLECTRON',
+ '1528' => 'ACKSYS',
+ '1529' => 'AMERICAN-MICROSystems-Inc',
+ '152a' => 'QUICKTURN-DESIGN-Systems',
+ '152b' => 'FLYTECH-Technology-CO-Ltd',
+ '152c' => 'MACRAIGOR-Systems-LLC',
+ '152d' => 'QUANTA-Computer-Inc',
+ '152e' => 'MELEC-Inc',
+ '152f' => 'Philips---CRYPTO',
+ '1530' => 'ACQIS-Technology-Inc',
+ '1531' => 'CHRYON-Corp',
+ '1532' => 'ECHELON-Corp',
+ '1533' => 'BALTIMORE',
+ '1534' => 'ROAD-Corp',
+ '1535' => 'EVERGREEN-Technologies-Inc',
+ '1536' => 'ACTIS-Computer',
+ '1537' => 'DATALEX-COMMUNCATIONS',
+ '1538' => 'ARALION-Inc',
+ '153a' => 'ONO-SOKKI',
+ '153b' => 'TERRATEC-Electronic-GmbH',
+ '153c' => 'ANTAL-Electronic',
+ '153d' => 'FILANET-Corp',
+ '153e' => 'TECHWELL-Inc',
+ '153f' => 'MIPS-Technologies-Inc.',
+ '1540' => 'PROVIDEO-MULTIMEDIA-Co-Ltd',
+ '1541' => 'MACHONE-Communications',
+ '1543' => 'SILICON-Laboratories',
+ '1544' => 'DCM-DATA-Systems',
+ '1545' => 'VISIONTEK',
+ '1546' => 'IOI-Technology-Corp',
+ '1547' => 'MITUTOYO-Corp',
+ '1548' => 'JET-PROPULSION-Laboratory',
+ '154a' => 'MAX-Technologies-Inc',
+ '154b' => 'COMPUTEX-Co-Ltd',
+ '154c' => 'VISUAL-Technology-Inc',
+ '154e' => 'SERVOTEST-Ltd',
+ '154f' => 'STRATABEAM-Technology',
+ '1550' => 'OPEN-NETWORK-Co-Ltd',
+ '1552' => 'RACAL-AIRTECH-Ltd',
+ '1553' => 'Chicony-Electronics-CO',
+ '1554' => 'PROLINK-Microsystems-Corp',
+ '1555' => 'GESYTEC-GmBH',
+ '1556' => 'PLD-APPLICATIONS',
+ '1557' => 'MEDIASTAR-Co-Ltd',
+ '1558' => 'CLEVO-KAPOK-Computer',
+ '1559' => 'SI-LOGIC-Ltd',
+ '155a' => 'INNOMEDIA-Inc',
+ '155b' => 'PROTAC-INTERNATIONAL-Corp',
+ '155c' => 'Cemax-Icon-Inc',
+ '155d' => 'Mac-System-Co-Ltd',
+ '155e' => 'LP-Elektronik-GmbH',
+ '155f' => 'Perle-Systems-Ltd',
+ '1561' => 'Viewgraphics-Inc',
+ '1562' => 'Symbol-Technologies',
+ '1563' => 'A-Trend-Technology-Co-Ltd',
+ '1565' => 'Biostar-Microtech-Intl-Corp',
+ '1566' => 'Ardent-Technologies-Inc',
+ '1567' => 'Jungsoft',
+ '1568' => 'DDK-Electronics-Inc',
+ '1569' => 'Palit-Microsystems-Inc.',
+ '156a' => 'Avtec-Systems',
+ '156b' => '2wire-Inc',
+ '156c' => 'Vidac-Electronics-GmbH',
+ '156d' => 'Alpha-Top-Corp',
+ '156e' => 'Alfa-Inc',
+ '1570' => 'Lecroy-Corp',
+ '1571' => 'Contemporary-Controls',
+ '1572' => 'Otis-Elevator-Company',
+ '1573' => 'Lattice---Vantis',
+ '1574' => 'Fairchild-Semiconductor',
+ '1576' => 'Viewcast-COM',
+ '1578' => 'HITT',
+ '1579' => 'Dual-Technology-Corp',
+ '157a' => 'Japan-Elecronics-Ind-Inc',
+ '157b' => 'Star-Multimedia-Corp',
+ '157c' => 'Eurosoft-UK',
+ '157d' => 'Gemflex-Networks',
+ '157e' => 'Transition-Networks',
+ '157f' => 'PX-Instruments-Technology-Ltd',
+ '1580' => 'Primex-Aerospace-Co',
+ '1581' => 'SEH-Computertechnik-GmbH',
+ '1582' => 'Cytec-Corp',
+ '1583' => 'Inet-Technologies-Inc',
+ '1584' => 'Uniwill-Computer-Corp',
+ '1585' => 'Logitron',
+ '1586' => 'Lancast-Inc',
+ '1587' => 'Konica-Corp',
+ '1588' => 'Solidum-Systems-Corp',
+ '1589' => 'Atlantek-Microsystems-Pty-Ltd',
+ '158a' => 'Digalog-Systems-Inc',
+ '158b' => 'Allied-Data-Technologies',
+ '158d' => 'Point-Multimedia-Systems',
+ '158e' => 'Lara-Technology-Inc',
+ '158f' => 'Ditect-Coop',
+ '1590' => '3PAR-Inc.',
+ '1591' => 'ARN',
+ '1592' => 'Syba-Tech-Ltd',
+ '1593' => 'Bops-Inc',
+ '1594' => 'Netgame-Ltd',
+ '1595' => 'Diva-Systems-Corp',
+ '1596' => 'Folsom-Research-Inc',
+ '1597' => 'Memec-Design-Services',
+ '1598' => 'Granite-Microsystems',
+ '1599' => 'Delta-Electronics-Inc',
+ '159a' => 'General-Instrument',
+ '159b' => 'Faraday-Technology-Corp',
+ '159c' => 'Stratus-Computer-Systems',
+ '159e' => 'A-Max-Technology-Co-Ltd',
+ '159f' => 'Galea-Network-Security',
+ '15a0' => 'Compumaster-SRL',
+ '15a1' => 'Geocast-Network-Systems',
+ '15a2' => 'Catalyst-Enterprises-Inc',
+ '15a3' => 'Italtel',
+ '15a4' => 'X-Net-OY',
+ '15a5' => 'Toyota-Macs-Inc',
+ '15a7' => 'SSE-Telecom-Inc',
+ '15aa' => 'Moreton-Bay',
+ '15ab' => 'Bluesteel-Networks-Inc',
+ '15ac' => 'North-Atlantic-Instruments',
+ '15ad' => 'VMware',
+ '15ae' => 'Amersham-Pharmacia-Biotech',
+ '15b0' => 'Zoltrix-International-Ltd',
+ '15b1' => 'Source-Technology-Inc',
+ '15b2' => 'Mosaid-Technologies-Inc',
+ '15b3' => 'Mellanox-Technologies',
+ '15b4' => 'CCI-TRIAD',
+ '15b5' => 'Cimetrics-Inc',
+ '15b6' => 'Texas-Memory-Systems-Inc',
+ '15b7' => 'Sandisk-Corp',
+ '15b8' => 'ADDI-DATA-GmbH',
+ '15ba' => 'Impacct-Technology-Corp',
+ '15bb' => 'Portwell-Inc',
+ '15bc' => 'Agilent-Technologies',
+ '15bd' => 'DFI-Inc',
+ '15be' => 'Sola-Electronics',
+ '15bf' => 'High-Tech-Computer-Corp-HTC',
+ '15c0' => 'BVM-Ltd',
+ '15c1' => 'Quantel',
+ '15c2' => 'Newer-Technology-Inc',
+ '15c3' => 'Taiwan-Mycomp-Co-Ltd',
+ '15c4' => 'EVSX-Inc',
+ '15c5' => 'Procomp-Informatics-Ltd',
+ '15c8' => 'Penta-Media-Co-Ltd',
+ '15c9' => 'Serome-Technology-Inc',
+ '15ca' => 'Bitboys-OY',
+ '15cb' => 'AG-Electronics-Ltd',
+ '15cc' => 'Hotrail-Inc',
+ '15cd' => 'Dreamtech-Co-Ltd',
+ '15ce' => 'Genrad-Inc',
+ '15cf' => 'Hilscher-GmbH',
+ '15d1' => 'Infineon-Technologies-AG',
+ '15d3' => 'NDS-Technologies-Israel-Ltd',
+ '15d4' => 'Iwill-Corp',
+ '15d5' => 'Tatung-Co',
+ '15d6' => 'Entridia-Corp',
+ '15d7' => 'Rockwell-Collins-Inc',
+ '15d8' => 'Cybernetics-Technology-Co-Ltd',
+ '15d9' => 'Super-Micro-Computer-Inc',
+ '15da' => 'Cyberfirm-Inc',
+ '15db' => 'Applied-Computing-Systems-Inc',
+ '15dc' => 'Litronic-Inc',
+ '15dd' => 'Sigmatel-Inc',
+ '15de' => 'Malleable-Technologies-Inc',
+ '15df' => 'Infinilink-Corp',
+ '15e0' => 'Cacheflow-Inc',
+ '15e1' => 'Voice-Technologies-Group-Inc',
+ '15e2' => 'Quicknet-Technologies-Inc',
+ '15e3' => 'Networth-Technologies-Inc',
+ '15e4' => 'VSN-Systemen-BV',
+ '15e5' => 'Valley-technologies-Inc',
+ '15e6' => 'Agere-Inc',
+ '15e7' => 'Get-Engineering-Corp',
+ '15e8' => 'National-Datacomm-Corp',
+ '15e9' => 'Pacific-Digital-Corp',
+ '15ea' => 'Tokyo-Denshi-Sekei-K.K.',
+ '15ec' => 'Beckhoff-GmbH',
+ '15ed' => 'Macrolink-Inc',
+ '15ee' => 'In-Win-Development-Inc',
+ '15ef' => 'Intelligent-Paradigm-Inc',
+ '15f0' => 'B-Tree-Systems-Inc',
+ '15f1' => 'Times-N-Systems-Inc',
+ '15f2' => 'Diagnostic-Instruments-Inc',
+ '15f3' => 'Digitmedia-Corp',
+ '15f4' => 'Valuesoft',
+ '15f5' => 'Power-Micro-Research',
+ '15f6' => 'Extreme-Packet-Device-Inc',
+ '15f7' => 'Banctec',
+ '15f8' => 'Koga-Electronics-Co',
+ '15f9' => 'Zenith-Electronics-Corp',
+ '15fa' => 'J.P.-Axzam-Corp',
+ '15fb' => 'Zilog-Inc',
+ '15fc' => 'Techsan-Electronics-Co-Ltd',
+ '15fd' => 'N-CUBED.NET',
+ '15fe' => 'Kinpo-Electronics-Inc',
+ '15ff' => 'Fastpoint-Technologies-Inc',
+ '1600' => 'Northrop-Grumman---Canada-Ltd',
+ '1601' => 'Tenta-Technology',
+ '1602' => 'Prosys-tec-Inc',
+ '1603' => 'Nokia-Wireless-Communications',
+ '1605' => 'Pairgain-Technologies',
+ '1606' => 'Europop-AG',
+ '1609' => 'Scimetric-Instruments-Inc',
+ '1612' => 'Telesynergy-Research-Inc.',
+ '1618' => 'Stone-Ridge-Technology',
+ '1619' => 'FarSite-Communications-Ltd',
+ '161f' => 'Rioworks',
+ '1626' => 'TDK-Semiconductor-Corp.',
+ '1629' => 'Kongsberg-Spacetec-AS',
+ '1631' => 'Packard-Bell-B.V.',
+ '163c' => 'Smart-Link-Ltd.',
+ '1641' => 'MKNet-Corp.',
+ '165a' => 'Epix-Inc',
+ '165f' => 'Linux-Media-Labs-LLC',
+ '1661' => 'Worldspace-Corp.',
+ '1668' => 'Actiontec-Electronics-Inc',
+ '1677' => 'Bernecker-+-Rainer',
+ '1678' => 'NetEffect',
+ '1679' => 'Tokyo-Electron-Device-Ltd.',
+ '167b' => 'ZyDAS-Technology-Corp.',
+ '167e' => 'ONNTO-Corp.',
+ '1681' => 'Hercules',
+ '1682' => 'XFX-Pine-Group-Inc.',
+ '1688' => 'CastleNet-Technology-Inc.',
+ '168c' => 'Atheros',
+ '1695' => 'EPoX-Computer-Co.-Ltd.',
+ '169c' => 'Netcell-Corporation',
+ '16a5' => 'Tekram-Technology-Co.Ltd.',
+ '16ab' => 'Global-Sun-Technology-Inc',
+ '16ae' => 'SafeNet-Inc',
+ '16af' => 'SparkLAN-Communications-Inc.',
+ '16b4' => 'Aspex-Semiconductor-Ltd',
+ '16b8' => 'Sonnet-Technologies-Inc.',
+ '16be' => 'Creatix-Polymedia-GmbH',
+ '16c6' => 'Micrel-Kendin',
+ '16c8' => 'Octasic-Inc.',
+ '16c9' => 'EONIC-B.V.-The-Netherlands',
+ '16ca' => 'CENATEK-Inc',
+ '16cd' => 'Densitron-Technologies',
+ '16ce' => 'Roland-Corp.',
+ '16d5' => 'Acromag-Inc.',
+ '16da' => 'Advantech-Co.-Ltd.',
+ '16df' => 'PIKA-Technologies-Inc.',
+ '16e2' => 'Geotest-MTS',
+ '16e3' => 'European-Space-Agency',
+ '16e5' => 'Intellon-Corp.',
+ '16ec' => 'U.S.-Robotics',
+ '16ed' => 'Sycron-N.-V.',
+ '16f3' => 'Jetway-Information-Co.-Ltd.',
+ '16f4' => 'Vweb-Corp',
+ '16f6' => 'VideoTele.com-Inc.',
+ '1705' => 'Digital-First-Inc.',
+ '170b' => 'NetOctave',
+ '170c' => 'YottaYotta-Inc.',
+ '1719' => 'EZChip-Technologies',
+ '172a' => 'Accelerated-Encryption',
+ '1734' => 'Fujitsu-Technology-Solutions',
+ '1735' => 'Aten-International-Co.-Ltd.',
+ '1737' => 'Linksys',
+ '173b' => 'Altima-nee-Broadcom',
+ '1743' => 'Peppercon-AG',
+ '1745' => 'ViXS-Systems-Inc.',
+ '1749' => 'RLX-Technologies',
+ '174b' => 'PC-Partner-Limited',
+ '174d' => 'WellX-Telecom-SA',
+ '175c' => 'AudioScience-Inc',
+ '175e' => 'Sanera-Systems-Inc.',
+ '1760' => 'TEDIA-spol.-s-r.-o.',
+ '1771' => 'InnoVISION-Multimedia-Ltd.',
+ '177d' => 'Cavium-Networks',
+ '1789' => 'Ennyah-Technologies-Corp.',
+ '1797' => 'Techwell-Inc.',
+ '1799' => 'Belkin',
+ '179a' => 'id-Quantique',
+ '179c' => 'Data-Patterns',
+ '17a0' => 'Genesys-Logic-Inc',
+ '17aa' => 'Lenovo',
+ '17ab' => 'Phillips-Components',
+ '17b3' => 'Hawking-Technologies',
+ '17b4' => 'Indra-Networks-Inc.',
+ '17c0' => 'Wistron-Corp.',
+ '17c2' => 'Newisys-Inc.',
+ '17cb' => 'Airgo-Networks-Inc',
+ '17cc' => 'NetChip-Technology-Inc',
+ '17cf' => 'Z-Com-Inc.',
+ '17d3' => 'Areca-Technology-Corp.',
+ '17db' => 'Cray-Inc',
+ '17de' => 'KWorld-Computer-Co.-Ltd.',
+ '17e4' => 'Sectra-AB',
+ '17e6' => 'Entropic-Communications-Inc.',
+ '17ee' => 'Connect-Components-Ltd',
+ '17f2' => 'Albatron-Corp.',
+ '17f3' => 'RDC-Semiconductor-Inc.',
+ '17f7' => 'Topdek-Semiconductor-Inc.',
+ '17fe' => 'InProComm-Inc.',
+ '17ff' => 'Benq-Corporation',
+ '1803' => 'ProdaSafe-GmbH',
+ '1805' => 'Euresys-S.A.',
+ '1809' => 'Lumanate-Inc.',
+ '1813' => 'Ambient-Technologies-Inc',
+ '1814' => 'RaLink',
+ '1815' => 'Devolo-AG',
+ '1820' => 'InfiniCon-Systems-Inc.',
+ '1822' => 'Twinhan-Technology-Co.-Ltd',
+ '182d' => 'SiteCom-Europe-BV',
+ '182e' => 'Raza-Microelectronics-Inc.',
+ '1830' => 'Credence-Systems-Corporation',
+ '183b' => 'MikroM-GmbH',
+ '1849' => 'ASRock-Incorporation',
+ '184a' => 'Thales-Computers',
+ '1851' => 'Microtune-Inc.',
+ '1852' => 'Anritsu-Corp.',
+ '1854' => 'LG-Electronics-Inc.',
+ '185b' => 'Compro-Technology-Inc.',
+ '185f' => 'Wistron-NeWeb-Corp.',
+ '1864' => 'SilverBack',
+ '1867' => 'Topspin-Communications',
+ '186c' => 'Humusoft-s.r.o.',
+ '186f' => 'WiNRADiO-Communications',
+ '1876' => 'L-3-Communications',
+ '1885' => 'Avvida-Systems-Inc.',
+ '1888' => 'Varisys-Ltd',
+ '188a' => 'Ample-Communications-Inc',
+ '1890' => 'Egenera-Inc.',
+ '1894' => 'KNC-One',
+ '1897' => 'AMtek',
+ '18a1' => 'Astute-Networks-Inc.',
+ '18a2' => 'Stretch-Inc.',
+ '18a3' => 'AT-T',
+ '18ac' => 'DViCO-Corporation',
+ '18b8' => 'Ammasso',
+ '18bc' => 'Info-Tek-Corp.',
+ '18c8' => 'Cray-Inc Nee-Octigabay-System',
+ '18c9' => 'ARVOO-Engineering-BV',
+ '18d2' => 'Sitecom',
+ '18d8' => 'Dialogue-Technology-Corp.',
+ '18dd' => 'Artimi-Inc',
+ '18e6' => 'MPL-AG',
+ '18ec' => 'Cesnet-z.s.p.o.',
+ '18ee' => 'Chenming-Mold-Ind.-Corp.',
+ '18f1' => 'Spectrum-GmbH',
+ '18f4' => 'Napatech-A-S',
+ '18f6' => 'NextIO',
+ '18f7' => 'Commtech-Inc.',
+ '18fb' => 'Resilience-Corporation',
+ '1905' => 'Micronas-USA-Inc.',
+ '1912' => 'Renesas-Technology-Corp.',
+ '1919' => 'Soltek-Computer-Inc.',
+ '1923' => 'Sangoma-Technologies-Corp.',
+ '1924' => 'Solarflare-Communications',
+ '192e' => 'TransDimension',
+ '1931' => 'Option-N.V.',
+ '1932' => 'DiBcom',
+ '193c' => 'MAXIM-Integrated-Products',
+ '193f' => 'Comtech-AHA-Corp.',
+ '1942' => 'ClearSpeed-Technology-plc',
+ '1947' => 'C-guys-Inc.',
+ '1948' => 'Enterasys-Networks',
+ '194a' => 'DapTechnology-B.V.',
+ '1954' => 'Curtis-Inc.',
+ '1957' => 'Freescale-Semiconductor-Inc',
+ '1958' => 'Faster-Technology-LLC.',
+ '1959' => 'PA-Semi-Inc',
+ '1966' => 'Orad-Hi-Tec-Systems',
+ '196a' => 'Sensory-Networks-Inc.',
+ '196d' => 'Club-3D-BV',
+ '1971' => 'AGEIA-Technologies-Inc.',
+ '1977' => 'Parsec',
+ '197b' => 'JMicron-Technology-Corp.',
+ '1989' => 'Montilio-Inc.',
+ '198a' => 'Nallatech-Ltd.',
+ '199a' => 'Pulse-LINK-Inc.',
+ '199d' => 'Xsigo-Systems',
+ '199f' => 'Auvitek',
+ '19a8' => 'DAQDATA-GmbH',
+ '19ac' => 'Kasten-Chase-Applied-Research',
+ '19ae' => 'Progeny-Systems-Corporation',
+ '19c1' => 'Exegy-Inc.',
+ '19d4' => 'Quixant-Limited',
+ '19de' => 'Pico-Computing',
+ '19e2' => 'Vector-Informatik-GmbH',
+ '19e3' => 'DDRdrive-LLC',
+ '19ee' => 'Netronome-Systems-Inc.',
+ '1a03' => 'ASPEED-Technology-Inc.',
+ '1a07' => 'Kvaser-AB',
+ '1a08' => 'Sierra-semiconductor',
+ '1a0e' => 'DekTec-Digital-Video-B.V.',
+ '1a17' => 'Force10-Networks-Inc.',
+ '1a1d' => 'GFaI-e.V.',
+ '1a1e' => '3Leaf-Systems-Inc.',
+ '1a22' => 'Ambric-Inc.',
+ '1a29' => 'Fortinet-Inc.',
+ '1a2b' => 'Ascom-AG',
+ '1a3b' => 'AzureWave',
+ '1a51' => 'Hectronic-AB',
+ '1a56' => 'Bigfoot-Networks-Inc.',
+ '1a57' => 'Highly-Reliable-Systems',
+ '1a58' => 'Razer-USA-Ltd.',
+ '1a5d' => 'Celoxica',
+ '1a5e' => 'Aprius-Inc.',
+ '1a5f' => 'System-TALKS-Inc.',
+ '1a68' => 'VirtenSys-Limited',
+ '1a71' => 'XenSource-Inc.',
+ '1a73' => 'Violin-Memory-Inc',
+ '1a76' => 'Wavesat',
+ '1a77' => 'Lightfleet-Corporation',
+ '1a78' => 'Virident-Systems-Inc.',
+ '1a84' => 'Commex-Technologies',
+ '1a88' => 'MEN-Mikro-Elektronik',
+ '1a8c' => 'Verigy-Pte.-Ltd.',
+ '1a8e' => 'DRS-Technologies',
+ '1aa8' => 'Ciprico-Inc.',
+ '1aae' => 'Global-Velocity-Inc.',
+ '1ab6' => 'CalDigit-Inc.',
+ '1ab9' => 'Espia-Srl',
+ '1ad7' => 'Spectracom-Corporation',
+ '1ade' => 'Spin-Master-Ltd.',
+ '1ae0' => 'Google-Inc.',
+ '1ae8' => 'Silicon-Software-GmbH',
+ '1aec' => 'Wolfson-Microelectronics',
+ '1aed' => 'Fusion-io',
+ '1aee' => 'Caustic-Graphics-Inc.',
+ '1af5' => 'Netezza-Corp.',
+ '1afa' => 'J---W-Electronics-Co.-Ltd.',
+ '1b03' => 'Magnum-Semiconductor-Inc',
+ '1b13' => 'Jaton-Corp',
+ '1b1a' => 'K-F-Computing-Research-Co.',
+ '1b36' => 'Red-Hat-Inc.',
+ '1b3a' => 'Westar-Display-Technologies',
+ '1b3e' => 'Teradata-Corp.',
+ '1b4b' => 'Marvell-Technology-Group-Ltd.',
+ '1b55' => 'NetUP-Inc.',
+ '1b73' => 'Fresco-Logic',
+ '1bad' => 'ReFLEX-CES',
+ '1bb3' => 'Bluecherry',
+ '1bf4' => 'VTI-Instruments-Corporation',
+ '1c1c' => 'Symphony',
+ '1d44' => 'DPT',
+ '1de1' => 'Tekram-Technology-Co.Ltd.',
+ '1fc9' => 'Tehuti-Networks-Ltd.',
+ '1fce' => 'Cognio-Inc.',
+ '1fd4' => 'SUNIX-Co.-Ltd.',
+ '2000' => 'Smart-Link-Ltd.',
+ '2001' => 'Temporal-Research-Ltd',
+ '2003' => 'Smart-Link-Ltd.',
+ '2004' => 'Smart-Link-Ltd.',
+ '2116' => 'ZyDAS-Technology-Corp.',
+ '21c3' => '21st-Century-Computer-Corp.',
+ '2348' => 'Racore',
+ '2646' => 'Kingston-Technologies',
+ '270b' => 'Xantel-Corporation',
+ '270f' => 'Chaintech-Computer-Co.-Ltd',
+ '2711' => 'AVID-Technology-Inc.',
+ '29b4' => '82q35-Express-MEI-Controller',
+ '2a15' => '3D-Vision---',
+ '3000' => 'Hansol-Electronics-Inc.',
+ '3142' => 'Post-Impression-Systems.',
+ '3388' => 'Hint-Corp',
+ '3411' => 'Quantum-Designs-H.K.-Inc',
+ '3442' => 'Bihl+Wiedemann-GmbH',
+ '3475' => 'Arastra-Inc.',
+ '3513' => 'ARCOM-Control-Systems-Ltd',
+ '3842' => 'eVga.com.-Corp.',
+ '38ef' => '4Links',
+ '3d3d' => '3DLabs',
+ '4005' => 'Avance-Logic-Inc.',
+ '4033' => 'Addtron-Technology-Co-Inc.',
+ '4040' => 'NetXen-Incorporated',
+ '4143' => 'Digital-Equipment-Corp',
+ '4144' => 'Alpha-Data',
+ '4150' => 'ONA-Electroerosion',
+ '415a' => 'Auzentech-Inc.',
+ '416c' => 'Aladdin-Knowledge-Systems',
+ '434e' => 'CAST-Navigation-LLC',
+ '4444' => 'Internext-Compression-Inc',
+ '4468' => 'Bridgeport-machines',
+ '4594' => 'Cogetec-Informatique-Inc',
+ '45fb' => 'Baldor-Electric-Company',
+ '4680' => 'Umax-Computer-Corp',
+ '4916' => 'RedCreek-Communications-Inc',
+ '4943' => 'Growth-Networks',
+ '494f' => 'ACCES-I-O-Products-Inc.',
+ '4978' => 'Axil-Computer-Inc',
+ '4a14' => 'NetVin',
+ '4b10' => 'Buslogic-Inc.',
+ '4c48' => 'LUNG-HWA-Electronics',
+ '4c53' => 'SBS-Technologies',
+ '4ca1' => 'Seanix-Technology-Inc',
+ '4d51' => 'MediaQ-Inc.',
+ '4d54' => 'Microtechnica-Co-Ltd',
+ '4d56' => 'MATRIX-VISION-GmbH',
+ '4ddc' => 'ILC-Data-Device-Corp',
+ '5045' => 'University-of-Toronto',
+ '5046' => 'GemTek-Technology-Corporation',
+ '5053' => 'Voyetra-Technologies',
+ '50b2' => 'TerraTec-Electronic-GmbH',
+ '5136' => 'S-S-Technologies',
+ '5143' => 'Qualcomm-Inc',
+ '5145' => 'Ensoniq-Old',
+ '5168' => 'Animation-Technologies-Inc.',
+ '5301' => 'Alliance-Semiconductor-Corp.',
+ '5333' => 'S3-Inc.',
+ '5431' => 'AuzenTech-Inc.',
+ '544c' => 'Teralogic-Inc',
+ '5455' => 'Technische-University-Berlin',
+ '5456' => 'GoTView',
+ '5519' => 'Cnet-Technologies-Inc.',
+ '5544' => 'Dunord-Technologies',
+ '5555' => 'Genroco-Inc',
+ '5646' => 'Vector-Fabrics-BV',
+ '5654' => 'VoiceTronix-Pty-Ltd',
+ '5700' => 'Netpower',
+ '584d' => 'AuzenTech-Co.-Ltd.',
+ '5851' => 'Exacq-Technologies',
+ '5853' => 'XenSource-Inc.',
+ '5ace' => 'Beholder-International-Ltd.',
+ '631c' => 'SmartInfra-Ltd',
+ '6356' => 'UltraStor',
+ '6409' => 'Logitec-Corp.',
+ '6549' => 'Teradici-Corp.',
+ '6900' => 'Red-Hat-Inc. nee-Qumranet',
+ '7063' => 'pcHDTV',
+ '7284' => 'HT-OMEGA-Inc.',
+ '7604' => 'O.N.-Electronic-Co-Ltd.',
+ '7bde' => 'MIDAC-Corporation',
+ '7fed' => 'PowerTV',
+ '8008' => 'Quancom-Electronic-GmbH',
+ '8086' => 'Intel',
+ '80ee' => 'InnoTek-Systemberatung-GmbH',
+ '8322' => 'Sodick-America-Corp.',
+ '8384' => 'SigmaTel',
+ '8401' => 'TRENDware-International-Inc.',
+ '8686' => 'ScaleMP',
+ '8800' => 'Trigem-Computer-Inc.',
+ '8866' => 'T-Square-Design-Inc.',
+ '8888' => 'Silicon-Magic',
+ '8912' => 'TRX',
+ '8e0e' => 'Computone-Corporation',
+ '8e2e' => 'KTI',
+ '9004' => 'Adaptec',
+ '9005' => 'Adaptec',
+ '907f' => 'Atronics',
+ '919a' => 'Gigapixel-Corp',
+ '9412' => 'Holtek',
+ '9699' => 'Omni-Media-Technology-Inc',
+ '9710' => 'NetMos-Technology',
+ '9902' => 'Stargen-Inc.',
+ 'a0a0' => 'AOPEN-Inc.',
+ 'a0f1' => 'UNISYS-Corporation',
+ 'a200' => 'NEC-Corporation',
+ 'a259' => 'Hewlett-Packard',
+ 'a25b' => 'Hewlett-Packard',
+ 'a304' => 'Sony',
+ 'a727' => '3Com-Corporation',
+ 'aa42' => 'Scitex-Digital-Video',
+ 'aa55' => 'Ncomputing-X300-PCI-Engine',
+ 'aaaa' => 'Adnaco-Technology-Inc.',
+ 'abcd' => 'Vadatech-Inc.',
+ 'ac3d' => 'Actuality-Systems',
+ 'ad00' => 'Alta-Data-Technologies-LLC',
+ 'b1b3' => 'Shiva-Europe-Limited',
+ 'bdbd' => 'Blackmagic-Design',
+ 'c001' => 'TSI-Telsys',
+ 'c0a9' => 'Micron-Crucial-Technology',
+ 'c0de' => 'Motorola',
+ 'c0fe' => 'Motion-Engineering-Inc.',
+ 'ca50' => 'Varian-Australia-Pty-Ltd',
+ 'cace' => 'CACE-Technologies-Inc.',
+ 'cafe' => 'Chrysalis-ITS',
+ 'cccc' => 'Catapult-Communications',
+ 'cddd' => 'Tyzx-Inc.',
+ 'ceba' => 'KEBA-AG',
+ 'd161' => 'Digium-Inc.',
+ 'd4d4' => 'Dy4-Systems-Inc',
+ 'd531' => 'I+ME-ACTIA-GmbH',
+ 'd84d' => 'Exsys',
+ 'db10' => 'Diablo-Technologies',
+ 'dead' => 'Indigita-Corporation',
+ 'deaf' => 'Middle-Digital-Inc.',
+ 'deda' => 'SoftHard-Technology-Ltd.',
+ 'e000' => 'Winbond',
+ 'e159' => 'Tiger-Jet-Network-Inc.',
+ 'e4bf' => 'EKF-Elektronik-GmbH',
+ 'e55e' => 'Essence-Technology-Inc.',
+ 'ea01' => 'Eagle-Technology',
+ 'eabb' => 'Aashima-Technology-B.V.',
+ 'ec80' => 'Belkin-Corporation',
+ 'edd8' => 'ARK-Logic-Inc',
+ 'f1d0' => 'AJA-Video',
+ 'f5f5' => 'F5-Networks-Inc.',
+ 'fa57' => 'Interagon-AS',
+ 'fab7' => 'Fabric7-Systems-Inc.',
+ 'febd' => 'Ultraview-Corp.',
+ 'feda' => 'Broadcom',
+ 'fede' => 'Fedetec-Inc.',
+ 'fffd' => 'XenSource-Inc.',
+ '0001' => 'Frys-Electronics',
+ '0002' => 'Ingram',
+ '0003' => 'Club-Mac',
+ '0004' => 'Nebraska-Furniture-Mart',
+ '0053' => 'Planex',
+ '0079' => 'DragonRise-Inc.',
+ '0105' => 'Trust-International-B.V.',
+ '0145' => 'Unknown',
+ '0154' => 'LW154-Wireless-150N-Adapter',
+ '0218' => 'Hangzhou-Worlde',
+ '02ad' => 'HUMAX-Co.-Ltd.',
+ '0300' => 'MM300-eBook-Reader',
+ '0324' => 'OCZ-Technology-Inc',
+ '0325' => 'OCZ-Technology-Inc',
+ '0386' => 'LTS',
+ '03e8' => 'EndPoints-Inc.',
+ '03e9' => 'Thesys-Microelectronics',
+ '03ea' => 'Data-Broadcasting-Corp.',
+ '03eb' => 'Atmel-Corp.',
+ '03ec' => 'Iwatsu-America-Inc.',
+ '03ed' => 'Mitel-Corp.',
+ '03ee' => 'Mitsumi',
+ '03f0' => 'Hewlett-Packard',
+ '03f1' => 'Genoa-Technology',
+ '03f2' => 'Oak-Technology-Inc.',
+ '03f3' => 'Adaptec-Inc.',
+ '03f4' => 'Diebold-Inc.',
+ '03f5' => 'Siemens-Electromechanical',
+ '03f9' => 'KeyTronic-Corp.',
+ '03fb' => 'OPTi-Inc.',
+ '03fc' => 'Elitegroup-Computer-Systems',
+ '03fd' => 'Xilinx-Inc.',
+ '03fe' => 'Farallon-Comunications',
+ '0400' => 'National-Semiconductor-Corp.',
+ '0401' => 'National-Registry-Inc.',
+ '0402' => 'ALi-Corp.',
+ '0404' => 'NCR-Corp.',
+ '0405' => 'Synopsys-Inc.',
+ '0406' => 'Fujitsu-ICL-Computers',
+ '0408' => 'Quanta-Computer-Inc.',
+ '0409' => 'NEC-Corp.',
+ '040a' => 'Kodak-Co.',
+ '040b' => 'Weltrend-Semiconductor',
+ '040c' => 'VTech-Computers-Ltd',
+ '040d' => 'VIA-Technologies-Inc.',
+ '040e' => 'MCCI',
+ '040f' => 'Echo-Speech-Corp.',
+ '0412' => 'Award-Software-International',
+ '0413' => 'Leadtek-Research-Inc.',
+ '0414' => 'Giga-Byte-Technology-Co.-Ltd',
+ '0416' => 'Winbond-Electronics-Corp.',
+ '0417' => 'Symbios-Logic',
+ '0418' => 'AST-Research',
+ '041a' => 'Phoenix-Technologies-Ltd',
+ '041b' => 'dTV',
+ '041d' => 'S3-Inc.',
+ '041e' => 'Creative-Technology-Ltd',
+ '041f' => 'LCS-Telegraphics',
+ '0420' => 'Chips-and-Technologies',
+ '0421' => 'Nokia-Mobile-Phones',
+ '0422' => 'ADI-Systems-Inc.',
+ '0424' => 'Standard-Microsystems-Corp.',
+ '0429' => 'Cirrus-Logic',
+ '042a' => 'Ericsson-Austrian-AG',
+ '042b' => 'Intel',
+ '042d' => 'Micronics',
+ '042e' => 'Acer',
+ '042f' => 'Molex-Inc.',
+ '0430' => 'Sun-Microsystems-Inc.',
+ '0431' => 'Itac-Systems-Inc.',
+ '0432' => 'Unisys-Corp.',
+ '0433' => 'Alps-Electric-Inc.',
+ '0435' => 'Hyundai-Electronics-America',
+ '0436' => 'Taugagreining-HF',
+ '0437' => 'Framatome-Connectors-USA',
+ '0438' => 'Advanced-Micro-Devices-Inc.',
+ '0439' => 'Voice-Technologies-Group',
+ '043d' => 'Lexmark-International-Inc.',
+ '043e' => 'LG-Electronics-USA-Inc.',
+ '043f' => 'RadiSys-Corp.',
+ '0440' => 'Eizo-Nanao-Corp.',
+ '0441' => 'Winbond-Systems-Lab.',
+ '0442' => 'Ericsson-Inc.',
+ '0443' => 'Gateway-Inc.',
+ '0445' => 'Lucent-Technologies-Inc.',
+ '0446' => 'NMB-Technologies-Corp.',
+ '0447' => 'Momentum-Microsystems',
+ '044a' => 'Shamrock-Tech.-Co.-Ltd',
+ '044b' => 'WSI',
+ '044c' => 'CCL-ITRI',
+ '044d' => 'Siemens-Nixdorf-AG',
+ '044e' => 'Alps-Electric-Co.-Ltd',
+ '044f' => 'ThrustMaster-Inc.',
+ '0450' => 'DFI-Inc.',
+ '0451' => 'Texas-Instruments-Inc.',
+ '0453' => 'CMD-Technology',
+ '0454' => 'Vobis-Microcomputer-AG',
+ '0456' => 'Analog-Devices-Inc.',
+ '0459' => 'Adobe-Systems-Inc.',
+ '045a' => 'SONICblue-Inc.',
+ '045b' => 'Hitachi-Ltd',
+ '045d' => 'Nortel-Networks-Ltd',
+ '045e' => 'Microsoft',
+ '0460' => 'Ace-Cad-Enterprise-Co.-Ltd',
+ '0461' => 'Primax-Electronics-Ltd',
+ '0463' => 'MGE-UPS-Systems',
+ '0464' => 'AMP-Tycoelectronics-Corp.',
+ '0467' => 'AT-T-Paradyne',
+ '0468' => 'Wieson-Technologies-Co.-Ltd',
+ '046a' => 'Cherry-GmbH',
+ '046b' => 'American-Megatrends-Inc.',
+ '046d' => 'Logitech',
+ '046e' => 'Behavior-Tech.-Computer-Corp.',
+ '046f' => 'Crystal-Semiconductor',
+ '0471' => 'Philips-or-NXP',
+ '0472' => 'Chicony-Electronics-CO',
+ '0474' => 'Sanyo-Electric-Co.-Ltd',
+ '0476' => 'AESP',
+ '0477' => 'Seagate-Technology-Inc.',
+ '0478' => 'Connectix-Corp.',
+ '047a' => 'Semtech-Corp.',
+ '047b' => 'Silitek-Corp.',
+ '047c' => 'Dell-Computer-Corp.',
+ '047d' => 'Kensington',
+ '047e' => 'Agere-Systems-Inc.-Lucent',
+ '047f' => 'Plantronics-Inc.',
+ '0481' => 'Zenith-Data-Systems',
+ '0482' => 'Kyocera-Corp.',
+ '0483' => 'SGS-Thomson-Microelectronics',
+ '0484' => 'Specialix',
+ '0485' => 'Nokia-Monitors',
+ '0486' => 'ASUS-Computers-Inc.',
+ '0487' => 'Stewart-Connector',
+ '0488' => 'Cirque-Corp.',
+ '0489' => 'Foxconn---Hon-Hai',
+ '048a' => 'S-MOS-Systems-Inc.',
+ '048c' => 'Alps-Electric-Ireland-Ltd',
+ '048f' => 'Eicon-Tech.',
+ '0490' => 'United-Microelectronics-Corp.',
+ '0491' => 'Capetronic',
+ '0492' => 'Samsung-SemiConductor-Inc.',
+ '0493' => 'MAG-Technology-Co.-Ltd',
+ '0495' => 'ESS-Technology-Inc.',
+ '0496' => 'Micron-Electronics',
+ '0497' => 'Smile-International',
+ '0498' => 'Capetronic-Kaohsiung-Corp.',
+ '0499' => 'Yamaha-Corp.',
+ '049a' => 'Gandalf-Technologies-Ltd',
+ '049b' => 'Curtis-Computer-Products',
+ '049c' => 'Acer',
+ '049d' => 'VLSI-Technology',
+ '049f' => 'Compaq-Computer-Corp.',
+ '04a0' => 'Digital-Equipment-Corp.',
+ '04a1' => 'SystemSoft-Corp.',
+ '04a2' => 'FirePower-Systems',
+ '04a3' => 'Trident-Microsystems-Inc.',
+ '04a4' => 'Hitachi-Ltd',
+ '04a6' => 'Nokia-Display-Products',
+ '04a7' => 'Visioneer',
+ '04a8' => 'Multivideo-Labs-Inc.',
+ '04a9' => 'Canon-Inc.',
+ '04aa' => 'DaeWoo-Telecom-Ltd',
+ '04ab' => 'Chromatic-Research',
+ '04ac' => 'Micro-Audiometrics-Corp.',
+ '04ad' => 'Dooin-Electronics',
+ '04af' => 'Winnov-L.P.',
+ '04b0' => 'Nikon-Corp.',
+ '04b1' => 'Pan-International',
+ '04b3' => 'IBM-Corp.',
+ '04b4' => 'Cypress-Semiconductor-Corp.',
+ '04b5' => 'ROHM-LSI-Systems-USA-LLC',
+ '04b6' => 'Hint-Corp.',
+ '04b7' => 'Compal-Electronics-Inc.',
+ '04b8' => 'Seiko-Epson-Corp.',
+ '04b9' => 'Rainbow-Technologies-Inc.',
+ '04ba' => 'Toucan-Systems-Ltd',
+ '04bb' => 'I-O-Data-Device-Inc.',
+ '04be' => 'Telia-Research-AB',
+ '04bf' => 'TDK-Corp.',
+ '04c1' => 'U.S.-Robotics-3Com',
+ '04c3' => 'Maxi-Switch-Inc.',
+ '04c5' => 'Fujitsu-Ltd',
+ '04c7' => 'Micro-Macro-Technologies',
+ '04c8' => 'Konica-Corp.',
+ '04ca' => 'Lite-On-Technology-Corp.',
+ '04cb' => 'Fuji-Photo-Film-Co.-Ltd',
+ '04cc' => 'ST-Ericsson',
+ '04cd' => 'Tatung-Co.-Of-America',
+ '04ce' => 'ScanLogic-Corp.',
+ '04cf' => 'Myson-Century-Inc.',
+ '04d0' => 'Digi-International',
+ '04d1' => 'ITT-Canon',
+ '04d2' => 'Altec-Lansing-Technologies',
+ '04d3' => 'VidUS-Inc.',
+ '04d4' => 'LSI-Logic-Inc.',
+ '04d5' => 'Forte-Technologies-Inc.',
+ '04d6' => 'Mentor-Graphics',
+ '04d7' => 'Oki-Semiconductor',
+ '04d8' => 'Microchip-Technology-Inc.',
+ '04d9' => 'Holtek-Semiconductor-Inc.',
+ '04da' => 'Panasonic',
+ '04db' => 'Hypertec-Pty-Ltd',
+ '04dc' => 'Huan-Hsin-Holdings-Ltd',
+ '04dd' => 'SHARP',
+ '04de' => 'MindShare-Inc.',
+ '04df' => 'Interlink-Electronics',
+ '04e1' => 'Iiyama-North-America-Inc.',
+ '04e2' => 'Exar-Corp.',
+ '04e3' => 'Zilog-Inc.',
+ '04e4' => 'ACC-Microelectronics',
+ '04e5' => 'Promise-Technology',
+ '04e6' => 'SCM-Microsystems-Inc.',
+ '04e7' => 'Elo-TouchSystems',
+ '04e8' => 'Samsung-Electronics-Co.-Ltd',
+ '04e9' => 'PC-Tel-Inc.',
+ '04ea' => 'Brooktree-Corp.',
+ '04eb' => 'Northstar-Systems-Inc.',
+ '04ec' => 'Tokyo-Electron-Device-Ltd',
+ '04ed' => 'Annabooks',
+ '04f0' => 'Daewoo-Electronics-Co.-Ltd',
+ '04f1' => 'Victor-Company-of-Japan-Ltd',
+ '04f2' => 'Chicony-Electronics-CO',
+ '04f3' => 'Elan-Microelectronics-Corp.',
+ '04f4' => 'Harting-Elektronik-Inc.',
+ '04f5' => 'Fujitsu-ICL-Systems-Inc.',
+ '04f6' => 'Norand-Corp.',
+ '04f7' => 'Newnex-Technology-Corp.',
+ '04f8' => 'FuturePlus-Systems',
+ '04f9' => 'brother',
+ '04fa' => 'Dallas-Semiconductor',
+ '04fc' => 'Sunplus-Technology-Co.-Ltd',
+ '04fd' => 'Soliton-Systems-K.K.',
+ '04fe' => 'PFU-Ltd',
+ '04ff' => 'E-CMOS-Corp.',
+ '0500' => 'Siam-United-Hi-Tech',
+ '0501' => 'Fujikura-DDK-Ltd',
+ '0502' => 'Acer',
+ '0503' => 'Hitachi-America-Ltd',
+ '0504' => 'Hayes-Microcomputer-Products',
+ '0506' => '3Com-Corp.',
+ '0507' => 'Hosiden-Corp.',
+ '0508' => 'Clarion-Co.-Ltd',
+ '0509' => 'Aztech-Systems-Ltd',
+ '050a' => 'Cinch-Connectors',
+ '050b' => 'Cable-System-International',
+ '050c' => 'InnoMedia-Inc.',
+ '050d' => 'Belkin-Components',
+ '050e' => 'Neon-Technology-Inc.',
+ '050f' => 'KC-Technology-Inc.',
+ '0510' => 'Sejin-Electron-Inc.',
+ '0512' => 'Hualon-Microelectronics-Corp.',
+ '0513' => 'digital-X-Inc.',
+ '0514' => 'FCI-Electronics',
+ '0515' => 'ACTC',
+ '0516' => 'Longwell-Electronics',
+ '0517' => 'Butterfly-Communications',
+ '0518' => 'EzKEY-Corp.',
+ '0519' => 'Star-Micronics-Co.-Ltd',
+ '051a' => 'WYSE-Technology',
+ '051b' => 'Silicon-Graphics',
+ '051c' => 'Shuttle-Inc.',
+ '051d' => 'American-Power-Conversion',
+ '051e' => 'Scientific-Atlanta-Inc.',
+ '0521' => 'Airborn-Connectors',
+ '0522' => 'Advanced-Connectek-Inc.',
+ '0523' => 'ATEN-GmbH',
+ '0524' => 'Sola-Electronics',
+ '0525' => 'Netchip-Technology-Inc.',
+ '0526' => 'Temic-MHS-S.A.',
+ '0527' => 'ALTRA',
+ '0528' => 'ATI',
+ '0529' => 'Aladdin-Knowledge-Systems',
+ '052a' => 'Crescent-Heart-Software',
+ '052b' => 'Tekom-Technologies-Inc.',
+ '052d' => 'Avid-Electronics-Corp.',
+ '052e' => 'Standard-Microsystems-Corp.',
+ '052f' => 'Unicore-Software-Inc.',
+ '0530' => 'American-Microsystems-Inc.',
+ '0531' => 'Wacom-Technology-Corp.',
+ '0532' => 'Systech-Corp.',
+ '0533' => 'Alcatel-Mobile-Phones',
+ '0534' => 'Motorola-Inc.',
+ '0535' => 'LIH-TZU-Electric-Co.-Ltd',
+ '0537' => 'Inventec-Corp.',
+ '0539' => 'Shyh-Shiun-Terminals-Co.-Ltd',
+ '053a' => 'PrehKeyTec-GmbH',
+ '053b' => 'Global-Village-Communication',
+ '053d' => 'Silicon-Architect',
+ '053e' => 'Mobility-Electronics',
+ '053f' => 'Synopsys-Inc.',
+ '0540' => 'UniAccess-AB',
+ '0541' => 'Sirf-Technology-Inc.',
+ '0543' => 'ViewSonic-Corp.',
+ '0544' => 'Cristie-Electronics-Ltd',
+ '0545' => 'Xirlink-Inc.',
+ '0546' => 'Polaroid-Corp.',
+ '0547' => 'Anchor-Chips-Inc.',
+ '0548' => 'Tyan-Computer-Corp.',
+ '0549' => 'Pixera-Corp.',
+ '054b' => 'New-Media-Corp.',
+ '054c' => 'Sony-Corp.',
+ '054d' => 'Try-Corp.',
+ '054e' => 'Proside-Corp.',
+ '054f' => 'WYSE-Technology-Taiwan',
+ '0550' => 'Fuji-Xerox-Co.-Ltd',
+ '0551' => 'CompuTrend-Systems-Inc.',
+ '0552' => 'Philips-Monitors',
+ '0554' => 'Dictaphone-Corp.',
+ '0555' => 'ANAM-S-T-Co.-Ltd',
+ '0557' => 'ATEN-International-Co.-Ltd',
+ '0558' => 'Truevision-Inc.',
+ '0559' => 'Cadence-Design-Systems-Inc.',
+ '055a' => 'Kenwood-USA',
+ '055b' => 'KnowledgeTek-Inc.',
+ '055c' => 'Proton-Electronic-Ind.',
+ '055d' => 'Samsung-Electro-Mechanics-Co.',
+ '055e' => 'CTX-Opto-Electronics-Corp.',
+ '055f' => 'Mustek-Systems-Inc.',
+ '0560' => 'Interface-Corp.',
+ '0561' => 'Oasis-Design-Inc.',
+ '0562' => 'Telex-Communications-Inc.',
+ '0563' => 'Immersion-Corp.',
+ '0565' => 'Peracom-Networks-Inc.',
+ '0566' => 'Monterey-International-Corp.',
+ '0567' => 'Xyratex-International-Ltd',
+ '0568' => 'Quartz-Ingenierie',
+ '0569' => 'SegaSoft',
+ '056a' => 'Wacom-Co.-Ltd',
+ '056b' => 'Decicon-Inc.',
+ '056c' => 'eTEK-Labs',
+ '056d' => 'EIZO-Corp.',
+ '056e' => 'Elecom-Co.-Ltd',
+ '056f' => 'Korea-Data-Systems-Co.-Ltd',
+ '0570' => 'Epson-America',
+ '0571' => 'Interex-Inc.',
+ '0574' => 'City-University-of-Hong-Kong',
+ '0577' => 'ELSA',
+ '0578' => 'Intrinsix-Corp.',
+ '0579' => 'GVC-Corp.',
+ '057a' => 'Samsung-Electronics-America',
+ '057b' => 'Y-E-Data-Inc.',
+ '057c' => 'AVM-GmbH',
+ '057d' => 'Shark-Multimedia-Inc.',
+ '057e' => 'Nintendo-Co.-Ltd',
+ '057f' => 'QuickShot-Ltd',
+ '0580' => 'Denron-Inc.',
+ '0581' => 'Racal-Data-Group',
+ '0582' => 'Roland-Corp.',
+ '0583' => 'Padix-Co.-Ltd-Rockfire',
+ '0584' => 'RATOC-System-Inc.',
+ '0585' => 'FlashPoint-Technology-Inc.',
+ '0586' => 'ZyXEL-Communications-Corp.',
+ '0588' => 'Sapien-Design',
+ '0589' => 'Victron',
+ '058a' => 'Nohau-Corp.',
+ '058b' => 'Infineon-Technologies',
+ '058c' => 'In-Focus-Systems',
+ '058d' => 'Micrel-Semiconductor',
+ '058e' => 'Tripath-Technology-Inc.',
+ '058f' => 'Alcor-Micro-Corp.',
+ '0590' => 'Omron-Corp.',
+ '0591' => 'Questra-Consulting',
+ '0592' => 'Powerware-Corp.',
+ '0593' => 'Incite',
+ '0594' => 'Princeton-Graphic-Systems',
+ '0595' => 'Zoran-Microelectronics-Ltd',
+ '0596' => 'MicroTouch-Systems-Inc.',
+ '0597' => 'Trisignal-Communications',
+ '0598' => 'Niigata-Canotec-Co.-Inc.',
+ '059b' => 'Iomega-Corp.',
+ '059c' => 'A-Trend-Technology-Co.-Ltd',
+ '059d' => 'Advanced-Input-Devices',
+ '059e' => 'Intelligent-Instrumentation',
+ '059f' => 'LaCie-Ltd',
+ '05a0' => 'Vetronix-Corp.',
+ '05a1' => 'USC-Corp.',
+ '05a3' => 'ARC-International',
+ '05a4' => 'Ortek-Technology-Inc.',
+ '05a5' => 'Sampo-Technology-Corp.',
+ '05a6' => 'Cisco-Systems-Inc.',
+ '05a7' => 'Bose-Corp.',
+ '05a8' => 'Spacetec-IMC-Corp.',
+ '05a9' => 'OmniVision-Technologies-Inc.',
+ '05aa' => 'Utilux-South-China-Ltd',
+ '05ab' => 'In-System-Design',
+ '05ac' => 'Apple-Inc.',
+ '05ad' => 'Y.C.-Cable-U.S.A.-Inc.',
+ '05ae' => 'Synopsys-Inc.',
+ '05af' => 'Jing-Mold-Enterprise-Co.-Ltd',
+ '05b0' => 'Fountain-Technologies-Inc.',
+ '05b4' => 'LG-Semicon-Co.-Ltd',
+ '05b5' => 'Dialogic-Corp.',
+ '05b6' => 'Proxima-Corp.',
+ '05b7' => 'Medianix-Semiconductor-Inc.',
+ '05b8' => 'Agiler-Inc.',
+ '05b9' => 'Philips-Research-Laboratories',
+ '05ba' => 'DigitalPersona-Inc.',
+ '05bb' => 'Grey-Cell-Systems',
+ '05bc' => '3G-Green-Green-Globe-Co.-Ltd',
+ '05bd' => 'RAFI-GmbH---Co.-KG',
+ '05be' => 'Tyco-Electronics-Raychem',
+ '05bf' => 'S---S-Research',
+ '05c0' => 'Keil-Software',
+ '05c2' => 'Media-Phonics-Suisse-S.A.',
+ '05c5' => 'Digi-International-Inc.',
+ '05c6' => 'Qualcomm-Inc.',
+ '05c7' => 'Qtronix-Corp.',
+ '05c9' => 'Semtech-Corp.',
+ '05ca' => 'Ricoh-Co.-Ltd',
+ '05cc' => 'ELSA-AG',
+ '05cd' => 'Silicom-Ltd',
+ '05ce' => 'sci-worx-GmbH',
+ '05cf' => 'Sung-Forn-Co.-Ltd',
+ '05d0' => 'GE-Medical-Systems-Lunar',
+ '05d1' => 'Brainboxes-Ltd',
+ '05d2' => 'Wave-Systems-Corp.',
+ '05d3' => 'Tohoku-Ricoh-Co.-Ltd',
+ '05d6' => 'Philips-Semiconductors-CICT',
+ '05d7' => 'Thomas---Betts-Corp.',
+ '05d8' => 'Ultima-Electronics-Corp.',
+ '05d9' => 'Axiohm-Transaction-Solutions',
+ '05da' => 'Microtek-International-Inc.',
+ '05db' => 'Sun-Corp.-Suntac-',
+ '05dc' => 'Lexar-Media-Inc.',
+ '05dd' => 'Delta-Electronics-Inc.',
+ '05df' => 'Silicon-Vision-Inc.',
+ '05e0' => 'Symbol-Technologies',
+ '05e1' => 'Syntek-Semiconductor-Co.-Ltd',
+ '05e2' => 'ElecVision-Inc.',
+ '05e3' => 'Genesys-Logic-Inc.',
+ '05e4' => 'Red-Wing-Corp.',
+ '05e5' => 'Fuji-Electric-Co.-Ltd',
+ '05e6' => 'Keithley-Instruments',
+ '05e8' => 'ICC-Inc.',
+ '05e9' => 'Kawasaki-LSI',
+ '05eb' => 'FFC-Ltd',
+ '05ec' => 'COM21-Inc.',
+ '05ee' => 'Cytechinfo-Inc.',
+ '05ef' => 'AVB-Inc.-anko-',
+ '05f0' => 'Canopus-Co.-Ltd',
+ '05f1' => 'Compass-Communications',
+ '05f2' => 'Dexin-Corp.-Ltd',
+ '05f3' => 'PI-Engineering-Inc.',
+ '05f5' => 'Unixtar-Technology-Inc.',
+ '05f6' => 'AOC-International',
+ '05f7' => 'RFC-Distributions-PTE-Ltd',
+ '05f9' => 'PSC-Scanning-Inc.',
+ '05fc' => 'Harman-Multimedia',
+ '05fd' => 'InterAct-Inc.',
+ '05fe' => 'Chic-Technology-Corp.',
+ '05ff' => 'LeCroy-Corp.',
+ '0600' => 'Barco-Display-Systems',
+ '0601' => 'Jazz-Hipster-Corp.',
+ '0602' => 'Vista-Imaging-Inc.',
+ '0604' => 'Jean-Co.-Ltd',
+ '0605' => 'Anchor-C-C-Co.-Ltd',
+ '0607' => 'Bridge-Information-Co.-Ltd',
+ '0608' => 'Genrad-Ads',
+ '0609' => 'SMK-Manufacturing-Inc.',
+ '060b' => 'Solid-Year',
+ '060c' => 'EEH-Datalink-GmbH',
+ '060d' => 'Auctor-Corp.',
+ '060e' => 'Transmonde-Technologies-Inc.',
+ '0610' => 'Costar-Electronics-Inc.',
+ '0611' => 'Totoku-Electric-Co.-Ltd',
+ '0613' => 'TransAct-Technologies-Inc.',
+ '0614' => 'Bio-Rad-Laboratories',
+ '0618' => 'MacAlly',
+ '0619' => 'Seiko-Instruments-Inc.',
+ '061a' => 'Veridicom-International-Inc.',
+ '061b' => 'Promptus-Communications-Inc.',
+ '061c' => 'Act-Labs-Ltd',
+ '061d' => 'Quatech-Inc.',
+ '061e' => 'Nissei-Electric-Co.',
+ '0620' => 'Alaris-Inc.',
+ '0622' => 'Iotech-Inc.',
+ '0623' => 'Littelfuse-Inc.',
+ '0624' => 'Avocent-Corp.',
+ '0625' => 'TiMedia-Technology-Co.-Ltd',
+ '0627' => 'Adomax-Technology-Co.-Ltd',
+ '0628' => 'Tasking-Software-Inc.',
+ '0629' => 'Zida-Technologies-Ltd',
+ '062a' => 'Creative-Labs',
+ '0631' => 'JUJO-Electronics-Corp.',
+ '0633' => 'Cyrix-Corp.',
+ '0634' => 'Micron-Technology-Inc.',
+ '0635' => 'Methode-Electronics-Inc.',
+ '0636' => 'Sierra-Imaging-Inc.',
+ '0638' => 'Avision-Inc.',
+ '0639' => 'Chrontel-Inc.',
+ '063a' => 'Techwin-Corp.',
+ '063b' => 'Taugagreining-HF',
+ '063d' => 'Fong-Kai-Industrial-Co.-Ltd',
+ '063e' => 'RealMedia-Technology-Inc.',
+ '063f' => 'New-Technology-Cable-Ltd',
+ '0640' => 'Hitex-Development-Tools',
+ '0641' => 'Woods-Industries-Inc.',
+ '0642' => 'VIA-Medical-Corp.',
+ '0644' => 'TEAC-Corp.',
+ '0645' => 'Who--Vision-Systems-Inc.',
+ '0646' => 'UMAX',
+ '0647' => 'Acton-Research-Corp.',
+ '0648' => 'Inside-Out-Networks',
+ '0649' => 'Weli-Science-Co.-Ltd',
+ '064c' => 'Ji-Haw-Industrial-Co.-Ltd',
+ '064d' => 'TriTech-Microelectronics-Ltd',
+ '064e' => 'Suyin-Corp.',
+ '064f' => 'WIBU-Systems-AG',
+ '0650' => 'Dynapro-Systems',
+ '0651' => 'Likom-Technology-Sdn.-Bhd.',
+ '0652' => 'Stargate-Solutions-Inc.',
+ '0653' => 'CNF-Inc.',
+ '0654' => 'Granite-Microsystems-Inc.',
+ '0656' => 'Glory-Mark-Electronic-Ltd',
+ '0657' => 'Tekcon-Electronics-Corp.',
+ '0658' => 'Sigma-Designs-Inc.',
+ '0659' => 'Aethra',
+ '065a' => 'Optoelectronics-Co.-Ltd',
+ '065b' => 'Tracewell-Systems',
+ '065e' => 'Silicon-Graphics',
+ '0661' => 'Hamamatsu-Photonics-K.K.',
+ '0662' => 'Kansai-Electric-Co.-Ltd',
+ '0663' => 'Topmax-Electronic-Co.-Ltd',
+ '0664' => 'Groovy-Technology-Corp.',
+ '0665' => 'Cypress-Semiconductor',
+ '0667' => 'Aiwa-Co.-Ltd',
+ '0668' => 'WordWand',
+ '0669' => 'Oce-Printing-Systems-GmbH',
+ '066a' => 'Total-Technologies-Ltd',
+ '066b' => 'Linksys',
+ '066d' => 'Entrega-Inc.',
+ '066f' => 'SigmaTel-Inc.',
+ '0670' => 'Sequel-Imaging',
+ '0672' => 'Labtec-Inc.',
+ '0673' => 'HCL',
+ '0675' => 'DrayTek-Corp.',
+ '0676' => 'Teles-AG',
+ '0677' => 'Aiwa-Co.-Ltd',
+ '0678' => 'ACard-Technology-Corp.',
+ '067b' => 'Prolific-Technology-Inc.',
+ '067c' => 'Efficient-Networks-Inc.',
+ '067d' => 'Hohner-Corp.',
+ '067e' => 'Intermec-Technologies-Corp.',
+ '067f' => 'Virata-Ltd',
+ '0682' => 'Victor-Company-of-Japan-Ltd',
+ '0684' => 'Actiontec-Electronics-Inc.',
+ '0686' => 'Minolta-Co.-Ltd',
+ '068a' => 'Pertech-Inc.',
+ '068b' => 'Potrans-International-Inc.',
+ '068e' => 'CH-Products-Inc.',
+ '0690' => 'Golden-Bridge-Electech-Inc.',
+ '0693' => 'Hagiwara-Sys-Com-Co.-Ltd',
+ '0694' => 'Lego-Group',
+ '0698' => 'Chuntex-CTX',
+ '0699' => 'Tektronix-Inc.',
+ '069a' => 'Askey-Computer-Corp.',
+ '069b' => 'Thomson-Inc.',
+ '069d' => 'Hughes-Network-Systems-HNS',
+ '069e' => 'Marx',
+ '069f' => 'Allied-Data-Technologies-BV',
+ '06a2' => 'Topro-Technology-Inc.',
+ '06a3' => 'Saitek-PLC',
+ '06a5' => 'Divio',
+ '06a7' => 'MicroStore-Inc.',
+ '06a8' => 'Topaz-Systems-Inc.',
+ '06a9' => 'Westell',
+ '06aa' => 'Sysgration-Ltd',
+ '06b8' => 'Pixela-Corp.',
+ '06b9' => 'Alcatel-Telecom',
+ '06bb' => 'EDA-Inc.',
+ '06bc' => 'Oki-Data-Corp.',
+ '06bd' => 'AGFA-Gevaert-NV',
+ '06bf' => 'Leoco-Corp.',
+ '06c2' => 'Phidgets-Inc.-formerly-GLAB',
+ '06c4' => 'Bizlink-International-Corp.',
+ '06c5' => 'Hagenuk-GmbH',
+ '06c6' => 'Infowave-Software-Inc.',
+ '06c8' => 'SIIG-Inc.',
+ '06c9' => 'Taxan-Europe-Ltd',
+ '06ca' => 'Newer-Technology-Inc.',
+ '06cb' => 'Synaptics-Inc.',
+ '06cc' => 'Terayon-Communication-Systems',
+ '06cd' => 'Keyspan',
+ '06cf' => 'SpheronVR-AG',
+ '06d0' => 'LapLink-Inc.',
+ '06d1' => 'Daewoo-Electronics-Co.-Ltd',
+ '06d3' => 'Mitsubishi-Electric-Corp.',
+ '06d4' => 'Cisco-Systems',
+ '06d5' => 'TOSHIBA',
+ '06d6' => 'Aashima-Technology-B.V.',
+ '06da' => 'Phoenixtec-Power-Co.-Ltd',
+ '06db' => 'Paradyne',
+ '06de' => 'Heisei-Electronics-Co.-Ltd',
+ '06e0' => 'Multi-Tech-Systems-Inc.',
+ '06e1' => 'ADS-Technologies-Inc.',
+ '06e4' => 'Alcatel-Microelectronics',
+ '06e6' => 'Tiger-Jet-Network-Inc.',
+ '06ea' => 'Sirius-Technologies',
+ '06eb' => 'PC-Expert-Tech.-Co.-Ltd',
+ '06f0' => 'T.N.C-Industrial-Co.-Ltd',
+ '06f1' => 'Opcode-Systems-Inc.',
+ '06f2' => 'Emine-Technology-Co.',
+ '06f6' => 'Wintrend-Technology-Co.-Ltd',
+ '06f7' => 'Wailly-Technology-Ltd',
+ '06f8' => 'Guillemot-Corp.',
+ '06f9' => 'ASYST-electronic-d.o.o.',
+ '06fa' => 'HSD-S.r.L',
+ '06fd' => 'Boston-Acoustics',
+ '06fe' => 'Gallant-Computer-Inc.',
+ '0703' => 'Bvtech-Industry-Inc.',
+ '0705' => 'NKK-Corp.',
+ '0706' => 'Ariel-Corp.',
+ '0707' => 'Standard-Microsystems-Corp.',
+ '0708' => 'Putercom-Co.-Ltd',
+ '0709' => 'Silicon-Systems-Ltd-SSL',
+ '070d' => 'Comoss-Electronic-Co.-Ltd',
+ '0710' => 'Connect-Tech-Inc.',
+ '0713' => 'Interval-Research-Corp.',
+ '0714' => 'NewMotion-Inc.',
+ '0717' => 'ZNK-Corp.',
+ '0718' => 'Imation-Corp.',
+ '0719' => 'Tremon-Enterprises-Co.-Ltd',
+ '071b' => 'Domain-Technologies-Inc.',
+ '071d' => 'Eicon-Networks-Corp.',
+ '071e' => 'Ariston-Technologies',
+ '0729' => 'Amitm',
+ '072e' => 'Sunix-Co.-Ltd',
+ '072f' => 'Advanced-Card-Systems-Ltd',
+ '0731' => 'Susteen-Inc.',
+ '0733' => 'ViewQuest-Technologies-Inc.',
+ '0734' => 'Lasat-Communications-A-S',
+ '0735' => 'Asuscom-Network',
+ '0736' => 'Lorom-Industrial-Co.-Ltd',
+ '0738' => 'Mad-Catz-Inc.',
+ '073a' => 'Chaplet-Systems-Inc.',
+ '073b' => 'Suncom-Technologies',
+ '073d' => 'Eutron-S.p.a.',
+ '073e' => 'NEC-Inc.',
+ '0745' => 'Syntech-Information-Co.-Ltd',
+ '0746' => 'Onkyo-Corp.',
+ '0747' => 'Labway-Corp.',
+ '0749' => 'EVer-Electronics-Corp.',
+ '074b' => 'Polestar-Tech.-Corp.',
+ '074c' => 'C-C-C-Group-PLC',
+ '074d' => 'Micronas-GmbH',
+ '074e' => 'Digital-Stream-Corp.',
+ '0755' => 'Aureal-Semiconductor',
+ '0757' => 'Network-Technologies-Inc.',
+ '075b' => 'Sophisticated-Circuits-Inc.',
+ '0763' => 'Midiman',
+ '0764' => 'Cyber-Power-System-Inc.',
+ '0765' => 'X-Rite-Inc.',
+ '0766' => 'Jess-Link-Products-Co.-Ltd',
+ '0767' => 'Tokheim-Corp.',
+ '0768' => 'Camtel-Technology-Corp.',
+ '0769' => 'Surecom-Technology-Corp.',
+ '076b' => 'OmniKey-AG',
+ '076c' => 'Partner-Tech',
+ '076d' => 'Denso-Corp.',
+ '076e' => 'Kuan-Tech-Enterprise-Co.-Ltd',
+ '076f' => 'Jhen-Vei-Electronic-Co.-Ltd',
+ '0771' => 'Observator-Instruments-BV',
+ '0774' => 'AmTRAN-Technology-Co.-Ltd',
+ '0775' => 'Longshine-Electronics-Corp.',
+ '0776' => 'Inalways-Corp.',
+ '0777' => 'Comda-Enterprise-Corp.',
+ '0778' => 'Volex-Inc.',
+ '0779' => 'Fairchild-Semiconductor',
+ '077a' => 'Sankyo-Seiki-Mfg.-Co.-Ltd',
+ '077b' => 'Linksys',
+ '077c' => 'Forward-Electronics-Co.-Ltd',
+ '077d' => 'Griffin-Technology',
+ '077f' => 'Well-Excellent---Most-Corp.',
+ '0780' => 'Sagem-Monetel-GmbH',
+ '0781' => 'SanDisk-Corp.',
+ '0782' => 'Trackerball',
+ '0783' => 'C3PO',
+ '0784' => 'Vivitar-Inc.',
+ '0785' => 'NTT-ME',
+ '0789' => 'Logitec-Corp.',
+ '078b' => 'Happ-Controls-Inc.',
+ '078c' => 'GTCO-CalComp',
+ '078e' => 'Brincom-Inc.',
+ '0792' => 'Axis-Communications-AB',
+ '0793' => 'Wha-Yu-Industrial-Co.-Ltd',
+ '0794' => 'ABL-Electronics-Corp.',
+ '0795' => 'RealChip-Inc.',
+ '0796' => 'Certicom-Corp.',
+ '0797' => 'Grandtech-Semiconductor-Corp.',
+ '0798' => 'Optelec',
+ '0799' => 'Altera',
+ '079b' => 'Sagem',
+ '079d' => 'Alfadata-Computer-Corp.',
+ '07a1' => 'Digicom-S.p.A.',
+ '07a2' => 'National-Technical-Systems',
+ '07a3' => 'Onnto-Corp.',
+ '07a4' => 'Be-Inc.',
+ '07a6' => 'ADMtek-Inc.',
+ '07aa' => 'Corega-K.K.',
+ '07ab' => 'Freecom-Technologies',
+ '07af' => 'Microtech',
+ '07b0' => 'Trust-Technologies',
+ '07b1' => 'IMP-Inc.',
+ '07b2' => 'Motorola-BCS-Inc.',
+ '07b3' => 'Plustek-Inc.',
+ '07b4' => 'Olympus-Optical-Co.-Ltd',
+ '07b5' => 'Mega-World-International-Ltd',
+ '07b6' => 'Marubun-Corp.',
+ '07b7' => 'TIME-Interconnect-Ltd',
+ '07b8' => 'AboCom-Systems-Inc',
+ '07bc' => 'Canon',
+ '07bd' => 'Webgear-Inc.',
+ '07be' => 'Veridicom',
+ '07c1' => 'Keisokugiken',
+ '07c4' => 'Datafab-Systems-Inc.',
+ '07c5' => 'APG-Cash-Drawer',
+ '07c6' => 'ShareWave-Inc.',
+ '07c7' => 'Powertech-Industrial-Co.-Ltd',
+ '07c8' => 'B.U.G.-Inc.',
+ '07c9' => 'Allied-Telesyn-International',
+ '07ca' => 'AVerMedia-Technologies-Inc.',
+ '07cb' => 'Kingmax-Technology-Inc.',
+ '07cc' => 'Carry-Computer-Eng.-Co.-Ltd',
+ '07cd' => 'Elektor',
+ '07cf' => 'Casio-Computer-Co.-Ltd',
+ '07d0' => 'Dazzle',
+ '07d1' => 'D-Link',
+ '07d2' => 'Aptio-Products-Inc.',
+ '07d3' => 'Cyberdata-Corp.',
+ '07d5' => 'Radiant-Systems',
+ '07d7' => 'GCC-Technologies-Inc.',
+ '07da' => 'Arasan-Chip-Systems',
+ '07de' => 'Diamond-Multimedia',
+ '07df' => 'David-Electronics-Co.-Ltd',
+ '07e1' => 'Ambient-Technologies-Inc.',
+ '07e2' => 'Elmeg-GmbH---Co.-Ltd',
+ '07e3' => 'Planex-Communications-Inc.',
+ '07e4' => 'Movado-Enterprise-Co.-Ltd',
+ '07e5' => 'QPS-Inc.',
+ '07e6' => 'Allied-Cable-Corp.',
+ '07e7' => 'Mirvo-Toys-Inc.',
+ '07e8' => 'Labsystems',
+ '07ea' => 'Iwatsu-Electric-Co.-Ltd',
+ '07eb' => 'Double-H-Technology-Co.-Ltd',
+ '07ef' => 'STSN',
+ '07f6' => 'Circuit-Assembly-Corp.',
+ '07f7' => 'Century-Corp.',
+ '07f9' => 'Dotop-Technology-Inc.',
+ '07fa' => 'DrayTek-Corp.',
+ '07fd' => 'Mark-of-the-Unicorn',
+ '07ff' => 'Unknown',
+ '0801' => 'Mag-Tek',
+ '0802' => 'Mako-Technologies-LLC',
+ '0803' => 'Zoom-Telephonics-Inc.',
+ '0809' => 'Genicom-Technology-Inc.',
+ '080a' => 'Evermuch-Technology-Co.-Ltd',
+ '080b' => 'Cross-Match-Technologies',
+ '080c' => 'Datalogic-S.p.A.',
+ '080d' => 'Teco-Image-Systems-Co.-Ltd',
+ '0813' => 'Mattel-Inc.',
+ '0819' => 'eLicenser',
+ '081a' => 'MG-Logic',
+ '081b' => 'Indigita-Corp.',
+ '081c' => 'Mipsys',
+ '081e' => 'AlphaSmart-Inc.',
+ '0822' => 'Reudo-Corp.',
+ '0825' => 'GC-Protronics',
+ '0826' => 'Data-Transit',
+ '0827' => 'BroadLogic-Inc.',
+ '0828' => 'Sato-Corp.',
+ '082d' => 'Handspring',
+ '0830' => 'Palm-Inc.',
+ '0832' => 'Kouwell-Electronics-Corp.',
+ '0833' => 'Sourcenext-Corp.',
+ '0839' => 'Samsung-Techwin-Co.-Ltd',
+ '083a' => 'Accton-Technology-Corp.',
+ '083f' => 'Global-Village',
+ '0840' => 'Argosy-Research-Inc.',
+ '0841' => 'Rioport.com-Inc.',
+ '0844' => 'Welland-Industrial-Co.-Ltd',
+ '0846' => 'NetGear',
+ '084e' => 'KB-Gear',
+ '084f' => 'Empeg',
+ '0850' => 'Fast-Point-Technologies-Inc.',
+ '0852' => 'CSEM',
+ '0853' => 'Topre-Corporation',
+ '0854' => 'ActiveWire-Inc.',
+ '0856' => 'B-B-Electronics',
+ '0858' => 'Hitachi-Maxell-Ltd',
+ '085a' => 'Xircom',
+ '085c' => 'ColorVision-Inc.',
+ '0862' => 'Teletrol-Systems-Inc.',
+ '0863' => 'Filanet-Corp.',
+ '0864' => 'NetGear',
+ '0867' => 'Data-Translation-Inc.',
+ '086e' => 'System-TALKS-Inc.',
+ '086f' => 'MEC-IMEX-Inc.',
+ '0870' => 'Metricom',
+ '0871' => 'SanDisk-Inc.',
+ '0873' => 'Xpeed-Inc.',
+ '0874' => 'A-Tec-Subsystem-Inc.',
+ '0879' => 'Comtrol-Corp.',
+ '087c' => 'Adesso-Kbtek-America-Inc.',
+ '087d' => 'Jaton-Corp.',
+ '087f' => 'Virtual-IP-Group-Inc.',
+ '0880' => 'APT-Technologies-Inc.',
+ '0885' => 'Boca-Research-Inc.',
+ '0886' => 'XAC-Automation-Corp.',
+ '0887' => 'Hannstar-Electronics-Corp.',
+ '088b' => 'MassWorks-Inc.',
+ '088c' => 'Swecoin-AB',
+ '088e' => 'iLok',
+ '0892' => 'DioGraphy-Inc.',
+ '0897' => 'Lauterbach',
+ '089d' => 'Icron-Technologies-Corp.',
+ '089e' => 'NST-Co.-Ltd',
+ '089f' => 'Primex-Aerospace-Co.',
+ '08a5' => 'e9-Inc.',
+ '08a8' => 'Andrea-Electronics',
+ '08ae' => 'Macally-Mace-Group-Inc.',
+ '08b4' => 'Sorenson-Vision-Inc.',
+ '08b7' => 'NATSU',
+ '08b9' => 'RadioShack-Corp.-Tandy',
+ '08bb' => 'Texas-Instruments-Japan',
+ '08bd' => 'Citizen-Watch-Co.-Ltd',
+ '08c3' => 'Precise-Biometrics',
+ '08c4' => 'Proxim-Inc.',
+ '08c7' => 'Key-Nice-Enterprise-Co.-Ltd',
+ '08c8' => '2Wire-Inc.',
+ '08ca' => 'Aiptek-International-Inc.',
+ '08cd' => 'Jue-Hsun-Ind.-Corp.',
+ '08ce' => 'Long-Well-Electronics-Corp.',
+ '08d1' => 'smartBridges-Inc.',
+ '08d3' => 'Virtual-Ink',
+ '08d4' => 'Fujitsu-Siemens-Computers',
+ '08d8' => 'IXXAT-Automation-GmbH',
+ '08d9' => 'Increment-P-Corp.',
+ '08dd' => 'Billionton-Systems-Inc.',
+ '08de' => '---',
+ '08df' => 'Spyrus-Inc.',
+ '08e3' => 'Olitec-Inc.',
+ '08e4' => 'Pioneer-Corp.',
+ '08e5' => 'Litronic',
+ '08e6' => 'Gemplus',
+ '08e8' => 'Integrated-Memory-Logic',
+ '08e9' => 'Extended-Systems-Inc.',
+ '08ec' => 'M-Systems-Flash-Disk-Pioneers',
+ '08ed' => 'MediaTek-Inc.',
+ '08ee' => 'CCSI-Hesso',
+ '08f0' => 'Corex-Technologies',
+ '08f1' => 'CTI-Electronics-Corp.',
+ '08f2' => 'Gotop-Information-Inc.',
+ '08f5' => 'SysTec-Co.-Ltd',
+ '08f6' => 'Logic-3-International-Ltd',
+ '08f7' => 'Vernier',
+ '08f9' => 'Wipro-Technologies',
+ '08fa' => 'Caere',
+ '08fb' => 'Socket-Communications',
+ '08fd' => 'Digianswer-A-S',
+ '08ff' => 'AuthenTec-Inc.',
+ '0900' => 'Pinnacle-Systems-Inc.',
+ '0901' => 'VST-Technologies',
+ '0906' => 'Faraday-Technology-Corp.',
+ '0909' => 'Audio-Technica-Corp.',
+ '090b' => 'Neurosmith',
+ '090e' => 'Shining-Technology-Inc.',
+ '090f' => 'Fujitsu-Devices-Inc.',
+ '0910' => 'Alation-Systems-Inc.',
+ '0911' => 'Philips-Speech-Processing',
+ '0912' => 'Voquette-Inc.',
+ '0915' => 'GlobeSpan-Inc.',
+ '0917' => 'SmartDisk-Corp.',
+ '0919' => 'Tiger-Electronics',
+ '091e' => 'Garmin-International',
+ '0920' => 'Echelon-Co.',
+ '0921' => 'GoHubs-Inc.',
+ '0922' => 'Dymo-CoStar-Corp.',
+ '0923' => 'IC-Media-Corp.',
+ '0924' => 'XEROX',
+ '0925' => 'Lakeview-Research',
+ '0927' => 'Summus-Ltd',
+ '0928' => 'Oxford-Semiconductor-Ltd',
+ '0929' => 'American-Biometric-Co.',
+ '092b' => 'Sena-Technologies-Inc.',
+ '0930' => 'Toshiba-Corp.',
+ '0931' => 'Harmonic-Data-Systems-Ltd',
+ '0932' => 'Crescentec-Corp.',
+ '0933' => 'Quantum-Corp.',
+ '0934' => 'Netcom-Systems',
+ '0936' => 'NuTesla',
+ '0939' => 'Lumberg-Inc.',
+ '093a' => 'Pixart-Imaging-Inc.',
+ '093b' => 'Plextor-Corp.',
+ '093d' => 'InnoSync-Inc.',
+ '093e' => 'J.S.T.-Mfg.-Co.-Ltd',
+ '0941' => 'Photobit-Corp.',
+ '0942' => 'i2Go.com-LLC',
+ '0944' => 'KORG-Inc.',
+ '0945' => 'Pasco-Scientific',
+ '0948' => 'Kronauer-music-in-digital',
+ '094b' => 'Linkup-Systems-Corp.',
+ '094d' => 'Cable-Television-Laboratories',
+ '094f' => 'Yano',
+ '0951' => 'Kingston-Technology',
+ '0954' => 'RPM-Systems-Corp.',
+ '0955' => 'NVIDIA',
+ '0956' => 'BSquare-Corp.',
+ '0957' => 'Agilent-Technologies-Inc.',
+ '0958' => 'CompuLink-Research-Inc.',
+ '0959' => 'Cologne-Chip-AG',
+ '095a' => 'Portsmith',
+ '095b' => 'Medialogic-Corp.',
+ '095c' => 'K-Tec-Electronics',
+ '095d' => 'Polycom-Inc.',
+ '0967' => 'Acer',
+ '0968' => 'Catalyst-Enterprises-Inc.',
+ '096e' => 'Feitian-Technologies-Inc.',
+ '0971' => 'Gretag-Macbeth-AG',
+ '0973' => 'Schlumberger',
+ '0975' => 'OLE-Communications-Inc.',
+ '0976' => 'Adirondack-Wire---Cable',
+ '0977' => 'Lightsurf-Technologies',
+ '0978' => 'Beckhoff-GmbH',
+ '0979' => 'Jeilin-Technology-Corp.-Ltd',
+ '097a' => 'Minds-At-Work-LLC',
+ '097b' => 'Knudsen-Engineering-Ltd',
+ '097c' => 'Marunix-Co.-Ltd',
+ '097d' => 'Rosun-Technologies-Inc.',
+ '097f' => 'Barun-Electronics-Co.-Ltd',
+ '0981' => 'Oak-Technology-Ltd',
+ '0984' => 'Apricorn',
+ '098c' => 'Vitana-Corp.',
+ '098d' => 'INDesign',
+ '098f' => 'Kenwood-TMI-Corp.',
+ '0993' => 'Gemstar-eBook-Group-Ltd',
+ '099a' => 'Zippy-Technology-Corp.',
+ '09a3' => 'PairGain-Technologies',
+ '09a4' => 'Contech-Research-Inc.',
+ '09a5' => 'VCON-Telecommunications',
+ '09a6' => 'Poinchips',
+ '09aa' => 'Intersil-Corp.',
+ '09ab' => 'Japan-Cash-Machine-Co.-Ltd.',
+ '09ae' => 'Tripp-Lite',
+ '09b3' => 'Altius-Solutions-Inc.',
+ '09b4' => 'MDS-Telephone-Systems',
+ '09b5' => 'Celltrix-Technology-Co.-Ltd',
+ '09bc' => 'Grundig',
+ '09be' => 'MySmart.Com',
+ '09bf' => 'Auerswald-GmbH---Co.-KG',
+ '09c1' => 'Arris-Interactive-LLC',
+ '09c2' => 'Nisca-Corp.',
+ '09c3' => 'ActivCard-Inc.',
+ '09c4' => 'ACTiSYS-Corp.',
+ '09c5' => 'Memory-Corp.',
+ '09cc' => 'Workbit-Corp.',
+ '09ce' => 'City-Electronics-Ltd',
+ '09d1' => 'NeoMagic-Inc.',
+ '09d2' => 'Vreelin-Engineering-Inc.',
+ '09d3' => 'Com-One',
+ '09d7' => 'Novatel-Wireless',
+ '09d9' => 'KRF-Tech-Ltd',
+ '09da' => 'A4-Tech-Co.-Ltd',
+ '09db' => 'Measurement-Computing-Corp.',
+ '09dc' => 'Aimex-Corp.',
+ '09dd' => 'Fellowes-Inc.',
+ '09df' => 'Addonics-Technologies-Corp.',
+ '09e1' => 'Intellon-Corp.',
+ '09e5' => 'Jo-Dan-International-Inc.',
+ '09e6' => 'Silutia-Inc.',
+ '09e7' => 'Real-3D-Inc.',
+ '09e8' => 'AKAI-Professional-M.I.-Corp.',
+ '09e9' => 'Chen-Source-Inc.',
+ '09eb' => 'IM-Networks-Inc.',
+ '09ef' => 'Xitel',
+ '09f3' => 'GoFlight-Inc.',
+ '09f5' => 'AresCom',
+ '09f6' => 'RocketChips-Inc.',
+ '09f7' => 'Edu-Science-H.K.-Ltd',
+ '09f8' => 'SoftConnex-Technologies-Inc.',
+ '09f9' => 'Bay-Associates',
+ '09fa' => 'Mtek-Vision',
+ '09fb' => 'Altera',
+ '09ff' => 'Gain-Technology-Corp.',
+ '0a00' => 'Liquid-Audio',
+ '0a01' => 'ViA-Inc.',
+ '0a07' => 'Ontrak-Control-Systems-Inc.',
+ '0a0b' => 'Cybex-Computer-Products-Co.',
+ '0a11' => 'Xentec-Inc.',
+ '0a12' => 'Cambridge-Silicon-Radio-Ltd',
+ '0a13' => 'Telebyte-Inc.',
+ '0a14' => 'Spacelabs-Medical-Inc.',
+ '0a15' => 'Scalar-Corp.',
+ '0a16' => 'Trek-Technology-S-PTE-Ltd',
+ '0a17' => 'Pentax-Corp.',
+ '0a19' => 'Hua-Geng-Technologies-Inc.',
+ '0a27' => 'Datacard-Group',
+ '0a2c' => 'AK-Modul-Bus-Computer-GmbH',
+ '0a34' => 'TG3-Electronics-Inc.',
+ '0a35' => 'Radikal-Technologies',
+ '0a39' => 'Gilat-Satellite-Networks-Ltd',
+ '0a3a' => 'PentaMedia-Co.-Ltd',
+ '0a3c' => 'NTT-DoCoMo-Inc.',
+ '0a3d' => 'Varo-Vision',
+ '0a3f' => 'Swissonic-AG',
+ '0a43' => 'Boca-Systems-Inc.',
+ '0a46' => 'Davicom-Semiconductor-Inc.',
+ '0a47' => 'Hirose-Electric',
+ '0a48' => 'I-O-Interconnect',
+ '0a4b' => 'Fujitsu-Media-Devices-Ltd',
+ '0a4c' => 'Computex-Co.-Ltd',
+ '0a4d' => 'Evolution-Electronics-Ltd',
+ '0a4f' => 'Litton-Systems-Inc.',
+ '0a50' => 'Mimaki-Engineering-Co.-Ltd',
+ '0a51' => 'Sony-Electronics-Inc.',
+ '0a52' => 'Jebsee-Electronics-Co.-Ltd',
+ '0a53' => 'Portable-Peripheral-Co.-Ltd',
+ '0a5a' => 'Electronics-For-Imaging-Inc.',
+ '0a5b' => 'EAsics-NV',
+ '0a5c' => 'Broadcom',
+ '0a5d' => 'Diatrend-Corp.',
+ '0a5f' => 'Zebra',
+ '0a62' => 'MPMan',
+ '0a66' => 'ClearCube-Technology',
+ '0a67' => 'Medeli-Electronics-Co.-Ltd',
+ '0a68' => 'Comaide-Corp.',
+ '0a69' => 'Chroma-ate-Inc.',
+ '0a6b' => 'Green-House-Co.-Ltd',
+ '0a6d' => 'UPS-Manufacturing',
+ '0a6e' => 'Benwin',
+ '0a6f' => 'Core-Technology-Inc.',
+ '0a70' => 'International-Game-Technology',
+ '0a72' => 'Sanwa-Denshi',
+ '0a7d' => 'NSTL-Inc.',
+ '0a7e' => 'Octagon-Systems-Corp.',
+ '0a80' => 'Rexon-Technology-Corp.-Ltd',
+ '0a81' => 'Chesen-Electronics-Corp.',
+ '0a82' => 'Syscan',
+ '0a83' => 'NextComm-Inc.',
+ '0a84' => 'Maui-Innovative-Peripherals',
+ '0a85' => 'Idexx-Labs',
+ '0a86' => 'NITGen-Co.-Ltd',
+ '0a8d' => 'Picturetel',
+ '0a90' => 'Candy-Technology-Co.-Ltd',
+ '0a91' => 'Globlink-Technology-Inc.',
+ '0a92' => 'EGO-SYStems-Inc.',
+ '0a93' => 'C-Technologies-AB',
+ '0a94' => 'Intersense',
+ '0aa3' => 'Lava-Computer-Mfg.-Inc.',
+ '0aa4' => 'Develco-Elektronik',
+ '0aa5' => 'First-International-Digital',
+ '0aa6' => 'Perception-Digital-Ltd',
+ '0aa8' => 'TriGem-Computer-Inc.',
+ '0aa9' => 'Baromtec-Co.',
+ '0aaa' => 'Japan-CBM-Corp.',
+ '0aab' => 'Vision-Shape-Europe-SA',
+ '0aac' => 'iCompression-Inc.',
+ '0aad' => 'Rohde---Schwarz-GmbH---Co.-KG',
+ '0aae' => 'NEC-infrontia-Corp.-Nitsuko',
+ '0aaf' => 'Digitalway-Co.-Ltd',
+ '0ab1' => 'FEIG-ELECTRONIC-GmbH',
+ '0aba' => 'Ellisys',
+ '0abe' => 'Stereo-Link',
+ '0abf' => 'Diolan',
+ '0ac4' => 'Leco-Corp.',
+ '0ac5' => 'I---C-Corp.',
+ '0ac6' => 'Singing-Electrons-Inc.',
+ '0ac7' => 'Panwest-Corp.',
+ '0ac8' => 'Z-Star-Microelectronics-Corp.',
+ '0ac9' => 'Micro-Solutions-Inc.',
+ '0aca' => 'OPEN-Networks-Ltd',
+ '0acc' => 'Koga-Electronics-Co.',
+ '0acd' => 'ID-Tech',
+ '0ace' => 'ZyDAS',
+ '0acf' => 'Intoto-Inc.',
+ '0ad0' => 'Intellix-Corp.',
+ '0ad1' => 'Remotec-Technology-Ltd',
+ '0ada' => 'Data-Encryption-Systems-Ltd.',
+ '0ae3' => 'Allion-Computer-Inc.',
+ '0ae4' => 'Taito-Corp.',
+ '0ae7' => 'Neodym-Systems-Inc.',
+ '0ae8' => 'System-Support-Co.-Ltd',
+ '0aea' => 'SciEssence-LLC',
+ '0aeb' => 'TTP-Communications-Ltd',
+ '0aec' => 'Neodio-Technologies-Corp.',
+ '0af0' => 'Option',
+ '0af6' => 'Silver-I-Co.-Ltd',
+ '0af7' => 'B2C2-Inc.',
+ '0af9' => 'Hama-Inc.',
+ '0afc' => 'Zaptronix-Ltd',
+ '0afd' => 'Tateno-Dennou-Inc.',
+ '0afe' => 'Cummins-Engine-Co.',
+ '0b00' => 'INGENICO',
+ '0b05' => 'ASUSTek-Computer-Inc.',
+ '0b0b' => 'Datamax-ONeil',
+ '0b0c' => 'Todos-AB',
+ '0b0d' => 'ProjectLab',
+ '0b0e' => 'GN-Netcom',
+ '0b0f' => 'AVID-Technology',
+ '0b10' => 'Pcally',
+ '0b11' => 'I-Tech-Solutions-Co.-Ltd',
+ '0b1f' => 'Insyde-Software-Corp.',
+ '0b20' => 'TransDimension-Inc.',
+ '0b21' => 'Yokogawa-Electric-Corp.',
+ '0b23' => 'Pan-Asia-Electronics-Co.-Ltd',
+ '0b24' => 'Link-Evolution-Corp.',
+ '0b27' => 'Ritek-Corp.',
+ '0b28' => 'Kenwood-Corp.',
+ '0b2c' => 'Village-Center-Inc.',
+ '0b30' => 'PNY-Technologies-Inc.',
+ '0b33' => 'Contour-Design-Inc.',
+ '0b37' => 'Hitachi-ULSI-Systems-Co.-Ltd',
+ '0b38' => 'Gear-Head',
+ '0b3a' => 'IPaxess',
+ '0b3b' => 'Tekram-Technology-Co.-Ltd',
+ '0b3c' => 'Olivetti-Techcenter',
+ '0b3e' => 'Kikusui-Electronics-Corp.',
+ '0b41' => 'Hal-Corp.',
+ '0b43' => 'Play.com-Inc.',
+ '0b47' => 'Sportbug.com-Inc.',
+ '0b48' => 'TechnoTrend-AG',
+ '0b49' => 'ASCII-Corp.',
+ '0b4b' => 'Pine-Corp.-Ltd.',
+ '0b4d' => 'Graphtec-America-Inc.',
+ '0b4e' => 'Musical-Electronics-Ltd',
+ '0b50' => 'Dumpries-Co.-Ltd',
+ '0b51' => 'Comfort-Keyboard-Co.',
+ '0b52' => 'Colorado-MicroDisplay-Inc.',
+ '0b54' => 'Sinbon-Electronics-Co.-Ltd',
+ '0b56' => 'TYI-Systems-Ltd',
+ '0b59' => 'Lake-Communications-Ltd',
+ '0b5a' => 'Corel-Corp.',
+ '0b5f' => 'Green-Electronics-Co.-Ltd',
+ '0b60' => 'Nsine-Ltd',
+ '0b61' => 'NEC-Viewtechnology-Ltd',
+ '0b62' => 'Orange-Micro-Inc.',
+ '0b63' => 'ADLink-Technology-Inc.',
+ '0b64' => 'Wonderful-Wire-Cable-Co.-Ltd',
+ '0b65' => 'Expert-Magnetics-Corp.',
+ '0b69' => 'CacheVision',
+ '0b6a' => 'Maxim-Integrated-Products',
+ '0b6f' => 'Nagano-Japan-Radio-Co.-Ltd',
+ '0b70' => 'PortalPlayer-Inc.',
+ '0b71' => 'SHIN-EI-Sangyo-Co.-Ltd',
+ '0b73' => 'Computone-Corp.',
+ '0b75' => 'Roland-DG-Corp.',
+ '0b79' => 'Sunrise-Telecom-Inc.',
+ '0b7a' => 'Zeevo-Inc.',
+ '0b7b' => 'Taiko-Denki-Co.-Ltd',
+ '0b7c' => 'ITRAN-Communications-Ltd',
+ '0b7d' => 'Astrodesign-Inc.',
+ '0b81' => 'id3-Semiconductors',
+ '0b84' => 'Rextron-Technology-Inc.',
+ '0b85' => 'Elkat-Electronics-Sdn.-Bhd.',
+ '0b86' => 'Exputer-Systems-Inc.',
+ '0b87' => 'Plus-One-I---T-Inc.',
+ '0b8c' => 'SMART-Technologies-Inc.',
+ '0b95' => 'ASIX-Electronics-Corp.',
+ '0b96' => 'Sewon-Telecom',
+ '0b97' => 'O2-Micro-Inc.',
+ '0b98' => 'Playmates-Toys-Inc.',
+ '0b99' => 'Audio-International-Inc.',
+ '0b9b' => 'Dipl.-Ing.-Stefan-Kunde',
+ '0b9d' => 'Softprotec-Co.',
+ '0b9f' => 'Chippo-Technologies',
+ '0baf' => 'U.S.-Robotics',
+ '0bb0' => 'Concord-Camera-Corp.',
+ '0bb1' => 'Infinilink-Corp.',
+ '0bb2' => 'Ambit-Microsystems-Corp.',
+ '0bb3' => 'Ofuji-Technology',
+ '0bb4' => 'High-Tech-Computer-Corp.',
+ '0bb5' => 'Murata-Manufacturing-Co.-Ltd',
+ '0bb6' => 'Network-Alchemy',
+ '0bb7' => 'Joytech-Computer-Co.-Ltd',
+ '0bb9' => 'Eiger-M-C-Co.-Ltd',
+ '0bba' => 'ZAccess-Systems',
+ '0bbb' => 'General-Meters-Corp.',
+ '0bbc' => 'Assistive-Technology-Inc.',
+ '0bbd' => 'System-Connection-Inc.',
+ '0bc0' => 'Knilink-Technology-Inc.',
+ '0bc1' => 'Fuw-Yng-Electronics-Co.-Ltd',
+ '0bc2' => 'Seagate-RSS-LLC',
+ '0bc3' => 'IPWireless-Inc.',
+ '0bc4' => 'Microcube-Corp.',
+ '0bc5' => 'JCN-Co.-Ltd',
+ '0bc6' => 'ExWAY-Inc.',
+ '0bc7' => 'X10-Wireless-Technology-Inc.',
+ '0bc8' => 'Telmax-Communications',
+ '0bc9' => 'ECI-Telecom-Ltd',
+ '0bca' => 'Startek-Engineering-Inc.',
+ '0bd7' => 'Andrew-Pargeter---Associates',
+ '0bda' => 'Realtek',
+ '0bdc' => 'Y-Media-Corp.',
+ '0bdd' => 'Orange-PCS',
+ '0be2' => 'Kanda-Tsushin-Kogyo-Co.-Ltd',
+ '0be3' => 'TOYO-Corp.',
+ '0be4' => 'Elka-International-Ltd',
+ '0be5' => 'DOME-imaging-systems-Inc.',
+ '0bed' => 'Silicon-Labs',
+ '0bee' => 'LTK-Industries-Ltd',
+ '0bef' => 'Way2Call-Communications',
+ '0bf0' => 'Pace-Micro-Technology-PLC',
+ '0bf1' => 'Intracom-S.A.',
+ '0bf2' => 'Konexx',
+ '0bf6' => 'Addonics-Technologies-Inc.',
+ '0bf7' => 'Sunny-Giken-Inc.',
+ '0bf8' => 'Fujitsu-Siemens-Computers',
+ '0c04' => 'MOTO-Development-Group-Inc.',
+ '0c05' => 'Appian-Graphics',
+ '0c06' => 'Hasbro-Games-Inc.',
+ '0c07' => 'Infinite-Data-Storage-Ltd',
+ '0c08' => 'Agate',
+ '0c09' => 'Comjet-Information-System',
+ '0c0a' => 'Highpoint-Technologies-Inc.',
+ '0c0b' => 'Dura-Micro-Inc.-Acomdata',
+ '0c12' => 'Zeroplus',
+ '0c15' => 'Iris-Graphics',
+ '0c16' => 'Gyration-Inc.',
+ '0c17' => 'Cyberboard-A-S',
+ '0c18' => 'SynerTek-Korea-Inc.',
+ '0c19' => 'cyberPIXIE-Inc.',
+ '0c1a' => 'Silicon-Motion-Inc.',
+ '0c1b' => 'MIPS-Technologies',
+ '0c22' => 'Tally-Printer-Corp.',
+ '0c23' => 'Lernout-+-Hauspie',
+ '0c24' => 'Taiyo-Yuden',
+ '0c25' => 'Sampo-Corp.',
+ '0c26' => 'Prolific-Technology-Inc.',
+ '0c27' => 'RFIDeas-Inc',
+ '0c2e' => 'Metro',
+ '0c35' => 'Eagletron-Inc.',
+ '0c36' => 'E-Ink-Corp.',
+ '0c37' => 'e.Digital',
+ '0c39' => 'IFR',
+ '0c3b' => 'Komatsu-Ltd',
+ '0c3c' => 'Radius-Co.-Ltd',
+ '0c3d' => 'Innocom-Inc.',
+ '0c3e' => 'Nextcell-Inc.',
+ '0c44' => 'Motorola-iDEN',
+ '0c45' => 'Microdia-Ltd',
+ '0c4b' => 'Reiner-SCT-Kartensysteme-GmbH',
+ '0c52' => 'Sealevel-Systems-Inc.',
+ '0c53' => 'ViewPLUS-Inc.',
+ '0c54' => 'Glory-Ltd',
+ '0c55' => 'Spectrum-Digital-Inc.',
+ '0c56' => 'Billion-Bright-Ltd',
+ '0c58' => 'Vidar-Systems-Corp.',
+ '0c5a' => 'TRS-International-Mfg.-Inc.',
+ '0c5e' => 'Xytronix-Research---Design',
+ '0c60' => 'Apogee-Electronics-Corp.',
+ '0c62' => 'Chant-Sincere-Co.-Ltd',
+ '0c63' => 'Toko-Inc.',
+ '0c65' => 'Eminence-Enterprise-Co.-Ltd',
+ '0c66' => 'Rexon-Electronics-Corp.',
+ '0c67' => 'Concept-Telecom-Ltd',
+ '0c70' => 'MCT-Elektronikladen',
+ '0c74' => 'Optronic-Laboratories-Inc.',
+ '0c76' => 'JMTek-LLC.',
+ '0c77' => 'Sipix-Group-Ltd',
+ '0c78' => 'Detto-Corp.',
+ '0c7a' => 'Wing-Span-Enterprise-Co.-Ltd',
+ '0c86' => 'NDA-Technologies-Inc.',
+ '0c88' => 'Kyocera-Wireless-Corp.',
+ '0c89' => 'Honda-Tsushin-Kogyo-Co.-Ltd',
+ '0c8a' => 'Pathway-Connectivity-Inc.',
+ '0c8b' => 'Wavefly-Corp.',
+ '0c8c' => 'Coactive-Networks',
+ '0c8d' => 'Tempo',
+ '0c8e' => 'Cesscom-Co.-Ltd',
+ '0c8f' => 'Applied-Microsystems',
+ '0c98' => 'Berkshire-Products-Inc.',
+ '0c99' => 'Innochips-Co.-Ltd',
+ '0c9a' => 'Hanwool-Robotics-Corp.',
+ '0c9b' => 'Jobin-Yvon-Inc.',
+ '0c9d' => 'SemTek',
+ '0ca2' => 'Zyfer',
+ '0ca3' => 'Sega-Corp.',
+ '0ca4' => 'ST-T-Instrument-Corp.',
+ '0ca5' => 'BAE-Systems-Canada-Inc.',
+ '0ca6' => 'Castles-Technology-Co.-Ltd',
+ '0cad' => 'Motorola-CGISS',
+ '0cae' => 'Ascom-Business-Systems-Ltd',
+ '0caf' => 'Buslink',
+ '0cb0' => 'Flying-Pig-Systems',
+ '0cb1' => 'Innovonics-Inc.',
+ '0cb6' => 'Celestix-Networks-Pte.-Ltd',
+ '0cb7' => 'Singatron-Enterprise-Co.-Ltd',
+ '0cb8' => 'Opticis-Co.-Ltd',
+ '0cbc' => 'Palmax-Technology-Co.-Ltd',
+ '0cbe' => 'Keryx-Technologies-Inc.',
+ '0cc0' => 'Kuon-Yi-Industrial-Corp.',
+ '0cc1' => 'Given-Imaging-Ltd',
+ '0cc2' => 'Timex-Corp.',
+ '0cc3' => 'Rimage-Corp.',
+ '0cc4' => 'emsys-GmbH',
+ '0cc5' => 'Sendo',
+ '0cc6' => 'Intermagic-Corp.',
+ '0cc7' => 'Kontron-Medical-AG',
+ '0cc8' => 'Technotools-Corp.',
+ '0cc9' => 'BroadMAX-Technologies-Inc.',
+ '0cca' => 'Amphenol',
+ '0ccb' => 'SKNet-Co.-Ltd',
+ '0ccc' => 'Domex-Technology-Corp.',
+ '0ccd' => 'TerraTec-Electronic-GmbH',
+ '0cd4' => 'Bang-Olufsen',
+ '0cd5' => 'LabJack-Corporation',
+ '0cd7' => 'NewChip-S.r.l.',
+ '0cd8' => 'JS-Digitech-Inc.',
+ '0cd9' => 'Hitachi-Shin-Din-Cable-Ltd',
+ '0cde' => 'Z-Com',
+ '0ce9' => 'pico-Technology',
+ '0cf1' => 'e-Conn-Electronic-Co.-Ltd',
+ '0cf2' => 'ENE-Technology-Inc.',
+ '0cf3' => 'Atheros',
+ '0cf4' => 'Fomtex-Corp.',
+ '0cf5' => 'Cellink-Co.-Ltd',
+ '0cf6' => 'Compucable-Corp.',
+ '0cf7' => 'ishoni-Networks',
+ '0cf8' => 'Clarisys-Inc.',
+ '0cfa' => 'Inviso-Inc.',
+ '0cfc' => 'Minolta-QMS-Inc.',
+ '0cff' => 'SAFA-MEDIA-Co.-Ltd.',
+ '0d08' => 'UTStarcom',
+ '0d0b' => 'Contemporary-Controls',
+ '0d0c' => 'Astron-Electronics-Co.-Ltd',
+ '0d0d' => 'MKNet-Corp.',
+ '0d0e' => 'Hybrid-Networks-Inc.',
+ '0d0f' => 'Feng-Shin-Cable-Co.-Ltd',
+ '0d10' => 'Elastic-Networks',
+ '0d11' => 'Maspro-Denkoh-Corp.',
+ '0d12' => 'Hansol-Electronics-Inc.',
+ '0d13' => 'BMF-Corp.',
+ '0d14' => 'Array-Comm-Inc.',
+ '0d15' => 'OnStream-b.v.',
+ '0d17' => 'NALTEC-Inc.',
+ '0d18' => 'coaXmedia',
+ '0d28' => 'NXP',
+ '0d33' => 'AirSpeak-Inc.',
+ '0d34' => 'Rearden-Steel-Technologies',
+ '0d35' => 'Dah-Kun-Co.-Ltd',
+ '0d3a' => 'Posiflex-Technologies-Inc.',
+ '0d3c' => 'Sri-Cable-Technology-Ltd',
+ '0d3d' => 'Tangtop-Technology-Co.-Ltd',
+ '0d3e' => 'Fitcom-inc.',
+ '0d3f' => 'MTS-Systems-Corp.',
+ '0d40' => 'Ascor-Inc.',
+ '0d42' => 'Full-Der-Co.-Ltd',
+ '0d46' => 'Kobil-Systems-GmbH',
+ '0d49' => 'Maxtor',
+ '0d4a' => 'NF-Corp.',
+ '0d4b' => 'Grape-Systems-Inc.',
+ '0d4c' => 'Tedas-AG',
+ '0d4d' => 'Coherent-Inc.',
+ '0d4e' => 'Agere-Systems-Netherland-BV',
+ '0d4f' => 'EADS-Airbus-France',
+ '0d50' => 'Cleware-GmbH',
+ '0d51' => 'Volex-Asia-Pte.-Ltd',
+ '0d53' => 'HMI-Co.-Ltd',
+ '0d54' => 'Holon-Corp.',
+ '0d55' => 'ASKA-Technologies-Inc.',
+ '0d56' => 'AVLAB-Technology-Inc.',
+ '0d57' => 'Solomon-Microtech-Ltd',
+ '0d5c' => 'SMC-Networks-Inc.',
+ '0d5e' => 'Myacom-Ltd',
+ '0d5f' => 'CSI-Inc.',
+ '0d60' => 'IVL-Technologies-Ltd',
+ '0d62' => 'Darfon-Electronics-Corp.',
+ '0d63' => 'Fritz-Gegauf-AG',
+ '0d64' => 'DXG-Technology-Corp.',
+ '0d65' => 'KMJP-Co.-Ltd',
+ '0d66' => 'TMT',
+ '0d67' => 'Advanet-Inc.',
+ '0d69' => 'NSI',
+ '0d6a' => 'Megapower-International-Corp.',
+ '0d6b' => 'And-Or-Logic',
+ '0d70' => 'Try-Computer-Co.-Ltd',
+ '0d71' => 'Hirakawa-Hewtech-Corp.',
+ '0d72' => 'Winmate-Communication-Inc.',
+ '0d73' => 'Hits-Communications-Inc.',
+ '0d76' => 'MFP-Korea-Inc.',
+ '0d77' => 'Power-Sentry-Newpoint',
+ '0d78' => 'Japan-Distributor-Corp.',
+ '0d7a' => 'MARX-Datentechnik-GmbH',
+ '0d7b' => 'Wellco-Technology-Co.-Ltd',
+ '0d7d' => 'Phison-Electronics-Corp.',
+ '0d7f' => 'Essential-Reality-LLC',
+ '0d81' => 'TechnoVision',
+ '0d83' => 'Think-Outside-Inc.',
+ '0d87' => 'Dolby-Laboratories-Inc.',
+ '0d89' => 'Oz-Software',
+ '0d8a' => 'King-Jim-Co.-Ltd',
+ '0d8b' => 'Ascom-Telecommunications-Ltd',
+ '0d8c' => 'C-Media-Electronics-Inc.',
+ '0d8e' => 'Global-Sun-Technology-Inc.',
+ '0d8f' => 'Pitney-Bowes',
+ '0d90' => 'Sure-Fire-Electrical-Corp.',
+ '0d96' => 'Skanhex-Technology-Inc.',
+ '0d98' => 'Mars-Semiconductor-Corp.',
+ '0d99' => 'Trazer-Technologies-Inc.',
+ '0d9a' => 'RTX-Telecom-AS',
+ '0d9b' => 'Tat-Shing-Electrical-Co.',
+ '0d9d' => 'Sanwa-Supply-Inc.',
+ '0d9e' => 'Avaya',
+ '0d9f' => 'Powercom-Co.-Ltd',
+ '0da0' => 'Danger-Research',
+ '0da4' => 'Polar-Electro-OY',
+ '0da7' => 'IOGear-Inc.',
+ '0da8' => 'softDSP-Co.-Ltd',
+ '0dab' => 'Cubig-Group',
+ '0dad' => 'Westover-Scientific',
+ '0db0' => 'Micro-Star-International',
+ '0db1' => 'Wen-Te-Electronics-Co.-Ltd',
+ '0db3' => 'Tekram-Technology-Co.-Ltd',
+ '0db7' => 'ELCON-Systemtechnik',
+ '0dbc' => 'A-D-Medical',
+ '0dbf' => 'Quik-Tech-Solutions',
+ '0dc1' => 'Tamagawa-Seiki-Co.-Ltd',
+ '0dc4' => 'Macpower-Peripherals-Ltd',
+ '0dc5' => 'SDK-Co.-Ltd',
+ '0dc7' => 'First-Cable-Line-Inc.',
+ '0dcd' => 'NetworkFab-Corp.',
+ '0dd0' => 'Access-Solutions',
+ '0dd1' => 'Contek-Electronics-Co.-Ltd',
+ '0dd3' => 'MediaQ',
+ '0dd4' => 'Custom-Engineering-SPA',
+ '0dd5' => 'California-Micro-Devices',
+ '0dd7' => 'Kocom-Co.-Ltd',
+ '0dd8' => 'Netac-Technology-Co.-Ltd',
+ '0dd9' => 'HighSpeed-Surfing',
+ '0ddb' => 'Tamarack-Inc.',
+ '0ddd' => 'Datelink-Technology-Co.-Ltd',
+ '0dde' => 'Ubicom-Inc.',
+ '0de0' => 'BD-Consumer-Healthcare',
+ '0ded' => 'Novasonics',
+ '0dee' => 'Lifetime-Memory-Products',
+ '0def' => 'Full-Rise-Electronic-Co.-Ltd',
+ '0df4' => 'NET-SYS',
+ '0df6' => 'Sitecom-Europe-B.V.',
+ '0e03' => 'Nippon-Systemware-Co.-Ltd',
+ '0e08' => 'Winbest-Technology-Co.-Ltd',
+ '0e0b' => 'Amigo-Technology-Inc.',
+ '0e0c' => 'Gesytec',
+ '0e0f' => 'VMware-Inc.',
+ '0e16' => 'JMTek-LLC',
+ '0e17' => 'Walex-Electronic-Ltd',
+ '0e1b' => 'Crewave',
+ '0e20' => 'Pegasus-Technologies-Ltd.',
+ '0e21' => 'Cowon-Systems-Inc.',
+ '0e22' => 'Symbian-Ltd.',
+ '0e25' => 'VinChip-Systems-Inc.',
+ '0e26' => 'J-Phone-East-Co.-Ltd',
+ '0e30' => 'HeartMath-LLC',
+ '0e34' => 'Micro-Computer-Control-Corp.',
+ '0e35' => '3Pea-Technologies-Inc.',
+ '0e36' => 'TiePie-engineering',
+ '0e38' => 'Stratitec-Inc.',
+ '0e3a' => 'Neostar-Technology-Co.-Ltd',
+ '0e3b' => 'Mansella-Ltd',
+ '0e41' => 'Line6-Inc.',
+ '0e48' => 'Julia-Corp.-Ltd',
+ '0e4c' => 'Radica-Games-Ltd',
+ '0e55' => 'Speed-Dragon-Multimedia-Ltd',
+ '0e5a' => 'Active-Co.-Ltd',
+ '0e5d' => 'Neltron-Industrial-Co.-Ltd',
+ '0e5e' => 'Conwise-Technology-Co.-Ltd.',
+ '0e66' => 'Hawking-Technologies',
+ '0e67' => 'Fossil-Inc.',
+ '0e6a' => 'Megawin-Technology-Co.-Ltd',
+ '0e6f' => 'Logic3',
+ '0e72' => 'Hsi-Chin-Electronics-Co.-Ltd',
+ '0e75' => 'TVS-Electronics-Ltd',
+ '0e79' => 'Archos-Inc.',
+ '0e7b' => 'On-Tech-Industry-Co.-Ltd',
+ '0e7e' => 'Gmate-Inc.',
+ '0e83' => 'Shin-An-Wire---Cable-Co.',
+ '0e8d' => 'MediaTek-Inc.',
+ '0e8f' => 'GreenAsia-Inc.',
+ '0e90' => 'WiebeTech-LLC',
+ '0e91' => 'VTech-Engineering-Canada-Ltd',
+ '0e92' => 'Cs-Glory-Enterprise-Co.-Ltd',
+ '0e93' => 'eM-Technics-Co.-Ltd',
+ '0e95' => 'Future-Technology-Co.-Ltd',
+ '0e96' => 'Aplux-Communications-Ltd',
+ '0e97' => 'Fingerworks-Inc.',
+ '0e99' => 'Parallel-Dice-Co.-Ltd',
+ '0e9a' => 'TA-HSING-Industries-Ltd',
+ '0e9b' => 'ADTEC-Corp.',
+ '0e9c' => 'Streamzap-Inc.',
+ '0e9f' => 'Tamura-Corp.',
+ '0ea0' => 'Ours-Technology-Inc.',
+ '0ea6' => 'Nihon-Computer-Co.-Ltd',
+ '0ea7' => 'MSL-Enterprises-Corp.',
+ '0ea8' => 'CenDyne-Inc.',
+ '0ead' => 'Humax-Co.-Ltd',
+ '0eb0' => 'NovaTech',
+ '0eb1' => 'WIS-Technologies-Inc.',
+ '0eb2' => 'Y-S-Electronic-Co.-Ltd',
+ '0eb3' => 'Saint-Technology-Corp.',
+ '0eb7' => 'Endor-AG',
+ '0ebe' => 'VWeb-Corp.',
+ '0ec1' => 'Abit-Computer-Corp.',
+ '0ec2' => 'Sweetray-Industrial-Ltd',
+ '0ec3' => 'Axell-Co.-Ltd',
+ '0ec4' => 'Ballracing-Developments-Ltd',
+ '0ec6' => 'InnoVISION-Multimedia-Ltd',
+ '0ec7' => 'Theta-Link-Corp.',
+ '0ecd' => 'Lite-On-IT-Corp.',
+ '0ece' => 'TaiSol-Electronics-Co.-Ltd',
+ '0ecf' => 'Phogenix-Imaging-LLC',
+ '0ed1' => 'WinMaxGroup',
+ '0ed2' => 'Kyoto-Micro-Computer-Co.-Ltd',
+ '0ed3' => 'Wing-Tech-Enterprise-Co.-Ltd',
+ '0ed5' => 'Fiberbyte',
+ '0eda' => 'Noriake-Itron-Corp.',
+ '0edf' => 'e-MDT-Co.-Ltd',
+ '0ee0' => 'Shima-Seiki-Mfg.-Ltd',
+ '0ee1' => 'Sarotech-Co.-Ltd',
+ '0ee2' => 'AMI-Semiconductor-Inc.',
+ '0ee3' => 'ComTrue-Technology-Corp.',
+ '0ee4' => 'Sunrich-Technology-Ltd',
+ '0eef' => 'D-WAV-Scientific-Co.-Ltd',
+ '0ef0' => 'Hitachi-Cable-Ltd',
+ '0ef1' => 'Aichi-Micro-Intelligent-Corp.',
+ '0ef2' => 'I-O-Magic-Corp.',
+ '0ef3' => 'Lynn-Products-Inc.',
+ '0ef4' => 'DSI-Datotech',
+ '0ef5' => 'PointChips',
+ '0ef6' => 'Yield-Microelectronics-Corp.',
+ '0ef7' => 'SM-Tech-Co.-Ltd-Tulip',
+ '0efd' => 'Oasis-Semiconductor',
+ '0efe' => 'Wem-Technology-Inc.',
+ '0f0c' => 'CAS-Corp.',
+ '0f0d' => 'Hori-Co.-Ltd',
+ '0f0e' => 'Energy-Full-Corp.',
+ '0f11' => 'LD-Didactic-GmbH',
+ '0f12' => 'Mars-Engineering-Corp.',
+ '0f13' => 'Acetek-Technology-Co.-Ltd',
+ '0f18' => 'Finger-Lakes-Instrumentation',
+ '0f19' => 'Oracom-Co.-Ltd',
+ '0f1b' => 'Onset-Computer-Corp.',
+ '0f1c' => 'Funai-Electric-Co.-Ltd',
+ '0f1d' => 'Iwill-Corp.',
+ '0f21' => 'IOI-Technology-Corp.',
+ '0f22' => 'Senior-Industries-Inc.',
+ '0f24' => 'Flex-P-Industries-Snd.-Bhd.',
+ '0f2d' => 'ViPower-Inc.',
+ '0f2f' => 'Priva-Design-Services',
+ '0f30' => 'Jess-Technology-Co.-Ltd',
+ '0f31' => 'Chrysalis-Development',
+ '0f37' => 'Kokuyo-Co.-Ltd',
+ '0f38' => 'Nien-Yi-Industrial-Corp.',
+ '0f3d' => 'Airprime-Incorporated',
+ '0f41' => 'RDC-Semiconductor-Co.-Ltd',
+ '0f44' => 'Polhemus',
+ '0f4b' => 'St.-John-Technology-Co.-Ltd',
+ '0f4c' => 'WorldWide-Cable-Opto-Corp.',
+ '0f4d' => 'Microtune-Inc.',
+ '0f4e' => 'Freedom-Scientific',
+ '0f52' => 'Wing-Key-Electrical-Co.-Ltd',
+ '0f55' => 'AmbiCom-Inc.',
+ '0f5c' => 'Prairiecomm-Inc.',
+ '0f5d' => 'NewAge-International-LLC',
+ '0f5f' => 'Key-Technology-Corp.',
+ '0f60' => 'NTK-Ltd',
+ '0f61' => 'Varian-Inc.',
+ '0f62' => 'Acrox-Technologies-Co.-Ltd',
+ '0f63' => 'LeapFrog-Enterprises',
+ '0f68' => 'Kobe-Steel-Ltd',
+ '0f69' => 'Dionex-Corp.',
+ '0f6a' => 'Vibren-Technologies-Inc.',
+ '0f6e' => 'INTELLIGENT-SYSTEMS',
+ '0f73' => 'DFI',
+ '0f7c' => 'DQ-Technology-Inc.',
+ '0f7d' => 'NetBotz-Inc.',
+ '0f7e' => 'Fluke-Corp.',
+ '0f88' => 'VTech-Holdings-Ltd',
+ '0f8b' => 'Yazaki-Corp.',
+ '0f8d' => 'Uniwill-Computer-Corp.',
+ '0f8e' => 'Kingnet-Technology-Co.-Ltd',
+ '0f8f' => 'Soma-Networks',
+ '0f97' => 'CviLux-Corp.',
+ '0f98' => 'CyberBank-Corp.',
+ '0f9c' => 'Hyun-Won-Inc.',
+ '0f9e' => 'Lucent-Technologies',
+ '0fa3' => 'Starconn-Electronic-Co.-Ltd',
+ '0fa4' => 'ATL-Technology',
+ '0fa5' => 'Sotec-Co.-Ltd',
+ '0fa7' => 'Epox-Computer-Co.-Ltd',
+ '0fa8' => 'Logic-Controls-Inc.',
+ '0faf' => 'Winpoint-Electronic-Corp.',
+ '0fb1' => 'Inclose-Design-Inc.',
+ '0fb8' => 'Wistron-Corp.',
+ '0fb9' => 'AACom-Corp.',
+ '0fbb' => 'Bitwise-Systems-Inc.',
+ '0fc1' => 'Mitac-Internatinal-Corp.',
+ '0fc5' => 'Delcom-Engineering',
+ '0fc6' => 'Dataplus-Supplies-Inc.',
+ '0fca' => 'Research-In-Motion-Ltd.',
+ '0fcf' => 'Dynastream-Innovations-Inc.',
+ '0fd0' => 'Tulip-Computers-B.V.',
+ '0fd1' => 'Giant-Electronics-Ltd.',
+ '0fd4' => 'Tenovis-GmbH---Co.-KG',
+ '0fdc' => 'Micro-Plus',
+ '0fe4' => 'IN-Tech-Electronics-Ltd',
+ '0fe5' => 'Greenconn-U.S.A.-Inc.',
+ '0fe9' => 'DVICO',
+ '0fea' => 'United-Computer-Accessories',
+ '0feb' => 'CRS-Electronic-Co.-Ltd',
+ '0fec' => 'UMC-Electronics-Co.-Ltd',
+ '0fed' => 'Access-Co.-Ltd',
+ '0fee' => 'Xsido-Corp.',
+ '0fef' => 'MJ-Research-Inc.',
+ '0ff6' => 'Core-Valley-Co.-Ltd',
+ '0fff' => 'Aopen-Inc.',
+ '1000' => 'Speed-Tech-Corp.',
+ '1003' => 'Sigma-Corp.',
+ '1004' => 'LG-Electronics-Inc.',
+ '1005' => 'Apacer-Technology-Inc.',
+ '1006' => 'iRiver-Ltd.',
+ '1009' => 'Emuzed-Inc.',
+ '100a' => 'AV-Chaseway-Ltd',
+ '100b' => 'Chou-Chin-Industrial-Co.-Ltd',
+ '100d' => 'Netopia-Inc.',
+ '1010' => 'Fukuda-Denshi-Co.-Ltd',
+ '1011' => 'Mobile-Media-Tech.',
+ '1014' => 'Densitron-Technologies-PLC',
+ '1015' => 'Softronics-Pty.-Ltd',
+ '1020' => 'Labtec',
+ '1022' => 'Shinko-Shoji-Co.-Ltd',
+ '1025' => 'Hyper-Paltek',
+ '1026' => 'Newly-Corp.',
+ '1027' => 'Time-Domain',
+ '1028' => 'Inovys-Corp.',
+ '1029' => 'Atlantic-Coast-Telesys',
+ '102a' => 'Ramos-Technology-Co.-Ltd',
+ '102b' => 'Infotronic-America-Inc.',
+ '102c' => 'Etoms-Electronics-Corp.',
+ '102d' => 'Winic-Corp.',
+ '1031' => 'Comax-Technology-Inc.',
+ '1032' => 'C-One-Technology-Corp.',
+ '1033' => 'Nucam-Corp.',
+ '1038' => 'Ideazon-Inc.',
+ '1039' => 'Silicon-Integrated-Systems',
+ '103d' => 'Stanton',
+ '1043' => 'iCreate-Technologies-Corp.',
+ '1044' => 'Chu-Yuen-Enterprise-Co.-Ltd',
+ '1048' => 'Targus-Group-International',
+ '104b' => 'Mylex---Buslogic',
+ '104c' => 'AMCO-TEC-International-Inc.',
+ '104d' => 'Newport-Corporation',
+ '104f' => 'WB-Electronics',
+ '1050' => 'Yubico.com',
+ '1053' => 'Immanuel-Electronics-Co.-Ltd',
+ '1054' => 'BMS-International-Beheer-N.V.',
+ '1056' => 'Hsin-Chen-Ent-Co.-Ltd',
+ '1057' => 'ON-Semiconductor',
+ '1059' => 'Giesecke---Devrient-GmbH',
+ '105d' => 'Delkin-Devices-Inc.',
+ '1060' => 'Easthome-Industrial-Co.-Ltd',
+ '1065' => 'CCYU-Technology',
+ '106a' => 'Loyal-Legend-Ltd',
+ '106c' => 'Curitel-Communications-Inc.',
+ '106d' => 'San-Chieh-Manufacturing-Ltd',
+ '106e' => 'ConectL',
+ '106f' => 'Money-Controls',
+ '1076' => 'GCT-Semiconductor-Inc.',
+ '107b' => 'Gateway-Inc.',
+ '107d' => 'Arlec-Australia-Ltd',
+ '107e' => 'Midoriya-Electric-Co.-Ltd',
+ '107f' => 'KidzMouse-Inc.',
+ '1082' => 'Shin-Etsukaken-Co.-Ltd',
+ '1083' => 'Canon-Electronics-Inc.',
+ '1084' => 'Pantech-Co.-Ltd',
+ '108a' => 'Chloride-Power-Protection',
+ '108b' => 'Grand-tek-Technology-Co.-Ltd',
+ '108c' => 'Robert-Bosch-GmbH',
+ '108e' => 'Lotes-Co.-Ltd.',
+ '1099' => 'Surface-Optics-Corp.',
+ '109a' => 'DATASOFT-Systems-GmbH',
+ '109f' => 'eSOL-Co.-Ltd',
+ '10a0' => 'Hirotech-Inc.',
+ '10a3' => 'Mitsubishi-Materials-Corp.',
+ '10a9' => 'SK-Teletech-Co.-Ltd',
+ '10aa' => 'Cables-To-Go',
+ '10ab' => 'USI-Co.-Ltd',
+ '10ac' => 'Honeywell-Inc.',
+ '10ae' => 'Princeton-Technology-Corp.',
+ '10af' => 'Liebert-Corp.',
+ '10b5' => 'Comodo-PLX-',
+ '10b8' => 'DiBcom',
+ '10bb' => 'TM-Technology-Inc.',
+ '10bc' => 'Dinging-Technology-Co.-Ltd',
+ '10bd' => 'TMT-Technology-Inc.',
+ '10bf' => 'SmartHome',
+ '10c5' => 'Sanei-Electric-Inc.',
+ '10c6' => 'Intec-Inc.',
+ '10cb' => 'Eratech',
+ '10cc' => 'GBM-Connector-Co.-Ltd',
+ '10cd' => 'Kycon-Inc.',
+ '10ce' => 'Silicon-Labs',
+ '10cf' => 'Velleman-Components-Inc.',
+ '10d1' => 'Hottinger-Baldwin-Measurement',
+ '10d4' => 'Man-Boon-Manufactory-Ltd',
+ '10d5' => 'Uni-Class-Technology-Co.-Ltd',
+ '10de' => 'Authenex-Inc.',
+ '10df' => 'In-Win-Development-Inc.',
+ '10e0' => 'Post-Op-Video-Inc.',
+ '10e1' => 'CablePlus-Ltd',
+ '10e2' => 'Nada-Electronics-Ltd',
+ '10ec' => 'Vast-Technologies-Inc.',
+ '10f0' => 'Nexio-Co.-Ltd',
+ '10f1' => 'Importek',
+ '10f5' => 'Turtle-Beach',
+ '10fb' => 'Pictos-Technologies-Inc.',
+ '10fd' => 'Anubis-Electronics-Ltd',
+ '1100' => 'VirTouch-Ltd',
+ '1101' => 'EasyPass-Industrial-Co.-Ltd',
+ '1108' => 'Brightcom-Technologies-Ltd',
+ '110a' => 'Moxa-Technologies-Co.-Ltd.',
+ '1111' => 'Pandora-International-Ltd.',
+ '1112' => 'YM-ELECTRIC-CO.-Ltd',
+ '1113' => 'Medion-AG',
+ '111e' => 'VSO-Electric-Co.-Ltd',
+ '112a' => 'RedRat',
+ '112f' => 'Cellon-International-Inc.',
+ '1130' => 'Tenx-Technology-Inc.',
+ '1136' => 'CTS-Electronincs',
+ '113c' => 'Arin-Tech-Co.-Ltd',
+ '113d' => 'Mapower-Electronics-Co.-Ltd',
+ '1141' => 'V-One-Multimedia-Pte.-Ltd',
+ '1142' => 'CyberScan-Technologies-Inc.',
+ '1145' => 'Japan-Radio-Company',
+ '114b' => 'Sphairon-Access-Systems-GmbH',
+ '114f' => 'Wavecom',
+ '115b' => 'Salix-Technology-Co.-Ltd.',
+ '1162' => 'Secugen-Corp.',
+ '1163' => 'DeLorme-Publishing-Inc.',
+ '1165' => 'Telson-Electronics-Co.-Ltd',
+ '1167' => 'Salient-Systems-Corp.',
+ '1168' => 'BizConn-International-Corp.',
+ '116e' => 'Gigastorage-Corp.',
+ '116f' => 'Silicon-10-Technology-Corp.',
+ '1175' => 'Shengyih-Steel-Mold-Co.-Ltd',
+ '117d' => 'Santa-Electronic-Inc.',
+ '117e' => 'JNC-Inc.',
+ '1182' => 'Venture-Corp.-Ltd',
+ '1184' => 'Kyocera-Elco-Corp.',
+ '1188' => 'Bloomberg-L.P.',
+ '118f' => 'You-Yang-Technology-Co.-Ltd',
+ '1190' => 'Tripace',
+ '1196' => 'Yankee-Robotics-LLC',
+ '1197' => 'Technoimagia-Co.-Ltd',
+ '1198' => 'StarShine-Technology-Corp.',
+ '1199' => 'Sierra-Wireless-Inc.',
+ '119a' => 'ZHAN-QI-Technology-Co.-Ltd',
+ '119b' => 'ruwido-austria-GmbH',
+ '11a0' => 'Chipcon-AS',
+ '11a3' => 'Technovas-Co.-Ltd',
+ '11aa' => 'GlobalMedia-Group-LLC',
+ '11ab' => 'Exito-Electronics-Co.-Ltd',
+ '11b0' => 'ATECH-FLASH-TECHNOLOGY',
+ '11c5' => 'Inmax',
+ '11db' => 'Topfield-Co.-Ltd.',
+ '11e6' => 'K.I.-Technology-Co.-Ltd.',
+ '11f5' => 'Siemens-AG',
+ '11f6' => 'Prolific',
+ '11f7' => 'Alcatel--',
+ '1209' => 'InterBiometrics',
+ '120e' => 'Hudson-Soft-Co.-Ltd',
+ '120f' => 'Magellan',
+ '1210' => 'DigiTech',
+ '121e' => 'Jungsoft-Co.-Ltd',
+ '1233' => 'Denver-Electronics',
+ '1234' => 'Unknown',
+ '1235' => 'Novation-EMS',
+ '1241' => 'Belkin',
+ '124a' => 'AirVast',
+ '124b' => 'Nyko-Honey-Bee',
+ '125c' => 'Apogee-Inc.',
+ '125f' => 'A-DATA-Technology-Co.-Ltd.',
+ '1260' => 'Standard-Microsystems-Corp.',
+ '1264' => 'Covidien-Energy-based-Devices',
+ '1266' => 'Pirelli-Broadband-Solutions',
+ '1267' => 'Logic3---SpectraVideo-plc',
+ '126c' => 'Aristocrat-Technologies',
+ '126d' => 'Bel-Stewart',
+ '126e' => 'Strobe-Data-Inc.',
+ '126f' => 'TwinMOS',
+ '1274' => 'Ensoniq',
+ '1283' => 'zebris-Medical-GmbH',
+ '1286' => 'Marvell-Semiconductor-Inc.',
+ '1292' => 'Innomedia',
+ '1293' => 'Belkin-Components-hex',
+ '1294' => 'RISO-KAGAKU-CORP.',
+ '129b' => 'CyberTAN-Technology',
+ '12a7' => 'Trendchip-Technologies-Corp.',
+ '12c4' => 'Autocue-Group-Ltd',
+ '12d1' => 'Huawei-Technologies-Co.-Ltd.',
+ '12d6' => 'EMS-Dr.-Thomas-Wuensche',
+ '12d7' => 'BETTER-WIRE-FACTORY-CO.-LTD.',
+ '12e6' => 'Waldorf-Music-GmbH',
+ '12ef' => 'Tapwave-Inc.',
+ '12f7' => 'Memorex-Products-Inc.',
+ '12fd' => 'AIN-Comm.-Technology-Co.-Ltd',
+ '12ff' => 'Fascinating-Electronics-Inc.',
+ '1307' => 'Transcend-Information-Inc.',
+ '1308' => 'Shuttle-Inc.',
+ '1310' => 'Roper',
+ '1312' => 'ICS-Electronics',
+ '131d' => 'Natural-Point',
+ '132a' => 'Envara-Inc.',
+ '132b' => 'KONICA-MINOLTA',
+ '1342' => 'Mobility',
+ '1345' => 'Sino-Lite-Technology-Corp.',
+ '1347' => 'Moravian-Instruments',
+ '134c' => 'PanJit-International-Inc.',
+ '1357' => 'P-E-Microcomputer-Systems',
+ '1366' => 'SEGGER',
+ '136b' => 'STEC',
+ '1370' => 'Swissbit',
+ '1371' => 'CNet-Technology-Inc.',
+ '1376' => 'Vimtron-Electronics-Co.-Ltd.',
+ '137b' => 'SCAPS-GmbH',
+ '1385' => 'Netgear',
+ '138a' => 'Validity-Sensors-Inc.',
+ '138e' => 'Jungo-LTD',
+ '1390' => 'TOMTOM-B.V.',
+ '1391' => 'IdealTEK-Inc.',
+ '1395' => 'Sennheiser-Communications',
+ '1397' => 'BEHRINGER-International-GmbH',
+ '1398' => 'Q-tec',
+ '13ad' => 'Baltech',
+ '13b0' => 'PerkinElmer-Optoelectronics',
+ '13b1' => 'Linksys',
+ '13b2' => 'Alesis',
+ '13b3' => 'Nippon-Dics-Co.-Ltd.',
+ '13ba' => 'Unknown',
+ '13be' => 'Ricoh-Printing-Systems-Ltd.',
+ '13cf' => 'Wisair-Ltd.',
+ '13d0' => 'Techsan-Electronics-Co.-Ltd.',
+ '13d2' => 'Shark-Multimedia',
+ '13d3' => 'IMC-Networks',
+ '13dc' => 'ALEREON-INC.',
+ '13dd' => 'i.Tech-Dynamic-Limited',
+ '13e5' => 'Rane',
+ '13e6' => 'TechnoScope-Co.-Ltd.',
+ '13ec' => 'Zydacron',
+ '13fd' => 'Initio-Corporation',
+ '1400' => 'Axxion-Group-Corp.',
+ '1402' => 'Bowe-Bell---Howell',
+ '1403' => 'Sitronix',
+ '140e' => 'Telechips-Inc.',
+ '1410' => 'Novatel-Wireless',
+ '1419' => 'ABILITY-ENTERPRISE-CO.-LTD.',
+ '142a' => 'Thales-E-Transactions',
+ '142b' => 'Arbiter-Systems-Inc.',
+ '1430' => 'RedOctane',
+ '1431' => 'Pertech-Resources-Inc.',
+ '1435' => 'Wistron-NeWeb',
+ '1436' => 'Denali-Software-Inc.',
+ '143c' => 'Altek-Corporation',
+ '1443' => 'Digilent',
+ '1453' => 'Radio-Shack',
+ '145f' => 'Trust',
+ '1460' => 'Tatung-Co.',
+ '1461' => 'Staccato-Communications',
+ '1462' => 'Micro-Star-International',
+ '1472' => 'Huawei-3Com',
+ '147e' => 'Upek',
+ '147f' => 'Hama-GmbH---Co.-KG',
+ '1482' => 'Vaillant',
+ '1484' => 'Elsa-AG-hex',
+ '1485' => 'Silicom',
+ '1487' => 'DSP-Group-Ltd.',
+ '148e' => 'EVATRONIX-SA',
+ '148f' => 'Ralink',
+ '1497' => 'Panstrong-Company-Ltd.',
+ '1498' => 'Microtek-International-Inc.',
+ '149a' => 'Imagination-Technologies',
+ '14aa' => 'WideView-Technology-Inc.',
+ '14ad' => 'CTK-Corporation',
+ '14ae' => 'Printronix-Inc.',
+ '14af' => 'ATP-Electronics-Inc.',
+ '14b0' => 'StarTech.com-Ltd.',
+ '14b2' => 'Ralink',
+ '14c0' => 'Rockwell-Automation-Inc.',
+ '14c2' => 'Gemlight-Computer-Ltd',
+ '14cd' => 'Super-Top',
+ '14d8' => 'JAMER-INDUSTRIES-CO.-LTD.',
+ '14dd' => 'Raritan-Computer-Inc.',
+ '14e1' => 'Dialogue-Technology-Corp.',
+ '14ea' => 'Planex-Communications',
+ '14ed' => 'Shure-Inc.',
+ '14f7' => 'TechniSat-Digital-GmbH',
+ '1500' => 'Ellisys',
+ '1501' => 'Pine-Tum-Enterprise-Co.-Ltd.',
+ '1513' => 'medMobile',
+ '1514' => 'Actel',
+ '1516' => 'CompUSA',
+ '1518' => 'Cheshire-Engineering-Corp.',
+ '1520' => 'Bitwire-Corp.',
+ '1524' => 'ENE-Technology-Inc',
+ '1527' => 'Silicon-Portals',
+ '1529' => 'UBIQUAM-Co.-Ltd.',
+ '152e' => 'LG-HLDS',
+ '1532' => 'Razer-USA-Ltd',
+ '1546' => 'U-Blox-AG',
+ '154a' => 'Celectronic-GmbH',
+ '154b' => 'PNY',
+ '154d' => 'ConnectCounty-Holdings-Berhad',
+ '1554' => 'Prolink-Microsystems-Corp.',
+ '1557' => 'OQO',
+ '1568' => 'Sunf-Pu-Technology-Co.-Ltd',
+ '156f' => 'Quantum-Corporation',
+ '1570' => 'ALLTOP-TECHNOLOGY-CO.-LTD.',
+ '157b' => 'Ketron-SRL',
+ '157e' => 'TRENDnet',
+ '1582' => 'Fiberline',
+ '1587' => 'SMA-Technologie-AG',
+ '158d' => 'Oakley-Inc.',
+ '15a2' => 'Freescale-Semiconductor-Inc.',
+ '15a4' => 'Afatech-Technologies-Inc.',
+ '15a8' => 'Teams-Power-Limited',
+ '15a9' => 'Gemtek',
+ '15ad' => 'VMware-Inc.',
+ '15ba' => 'Olimex-Ltd.',
+ '15c0' => 'XL-Imaging',
+ '15c2' => 'SoundGraph-Inc.',
+ '15c6' => 'Laboratoires-MXM',
+ '15c8' => 'KTF-Technologies',
+ '15c9' => 'D-Box-Technologies',
+ '15ca' => 'Textech-International-Ltd.',
+ '15d5' => 'Coulomb-Electronics-Ltd.',
+ '15d9' => 'Trust-International-B.V.',
+ '15dc' => 'Hynix-Semiconductor-Inc.',
+ '15e0' => 'Seong-Ji-Industrial-Co.-Ltd.',
+ '15e1' => 'RSA',
+ '15e8' => 'SohoWare',
+ '15e9' => 'Pacific-Digital-Corp.',
+ '15ec' => 'Belcarra-Technologies-Corp.',
+ '15f4' => 'HanfTek',
+ '1604' => 'Tascam',
+ '1606' => 'Umax',
+ '1608' => 'Inside-Out-Networks-hex',
+ '160a' => 'VIA-Technologies-Inc.',
+ '1614' => 'Amoi-Electronics',
+ '1621' => 'Wionics-Research',
+ '1628' => 'Stonestreet-One-Inc.',
+ '162a' => 'Airgo-Networks-Inc.',
+ '162f' => 'WiQuest-Communications-Inc.',
+ '1630' => '2Wire-Inc.',
+ '1631' => 'Good-Way-Technology',
+ '1645' => 'Cross-Match-Technologies-GmbH',
+ '1649' => 'SofTec-Microsystems',
+ '164a' => 'ChipX',
+ '164c' => 'Matrix-Vision-GmbH',
+ '165b' => 'Frontier-Design-Group',
+ '1660' => 'Creatix-Polymedia-GmbH',
+ '1669' => 'PiKRON-Ltd.-hex',
+ '1679' => 'Total-Phase',
+ '1680' => 'Golden-Bridge-Electech-Inc.',
+ '1681' => 'Prevo-Technologies-Inc.',
+ '1684' => 'Godspeed-Computer-Corp.',
+ '1685' => 'Delock',
+ '1686' => 'ZOOM-Corporation',
+ '1687' => 'Kingmax-Digital-Inc.',
+ '1688' => 'Saab-AB',
+ '168c' => 'Atheros',
+ '1690' => 'Askey-Computer-Corp.-hex',
+ '1697' => 'VTec-Test-Inc.',
+ '16a6' => 'Unigraf',
+ '16ab' => 'Global-Sun-Technology',
+ '16b4' => 'iStation',
+ '16b5' => 'Persentec-Inc.',
+ '16c0' => 'VOTI',
+ '16ca' => 'Wireless-Cables-Inc.',
+ '16cc' => 'silex-technology-Inc.',
+ '16d0' => 'GrauTec',
+ '16d5' => 'AnyDATA-Corporation',
+ '16d6' => 'JABLOCOM-s.r.o.',
+ '16d8' => 'CMOTECH-Co.-Ltd.',
+ '16dc' => 'Wiener-Plein---Baus',
+ '16f0' => 'GN-ReSound-A-S',
+ '16f5' => 'Futurelogic-Inc.',
+ '1706' => 'BlueView-Technologies-Inc.',
+ '1707' => 'ARTIMI',
+ '170b' => 'Swissonic',
+ '170d' => 'Avnera',
+ '1725' => 'Vitesse-Semiconductor',
+ '1726' => 'Axesstel-Inc.',
+ '172f' => 'Waltop-International-Corp.',
+ '1733' => 'Cellink-Technology-Co.-Ltd',
+ '1737' => 'Linksys',
+ '1740' => 'Senao',
+ '1743' => 'General-Atomics',
+ '174c' => 'ASMedia-Technology-Inc.',
+ '174f' => 'Syntek',
+ '1753' => 'GERTEC-Telecomunicacoes-Ltda.',
+ '1759' => 'LucidPort-Technology-Inc.',
+ '1772' => 'System-Level-Solutions-Inc.',
+ '1776' => 'Arowana',
+ '177f' => 'Sweex',
+ '1781' => 'Multiple-Vendors',
+ '1784' => 'TopSeed-Technology-Corp.',
+ '1787' => 'ATI-AIB',
+ '1796' => 'Printrex-Inc.',
+ '1797' => 'JALCO-CO.-LTD.',
+ '1799' => 'Belkin-Components',
+ '17a0' => 'Samson-Technologies-Corp.',
+ '17a4' => 'Concept2',
+ '17a7' => 'MICOMSOFT-CO.-LTD.',
+ '17b3' => 'Grey-Innovation',
+ '17c3' => 'Singim-International-Corp.',
+ '17cc' => 'Native-Instruments',
+ '17d0' => 'Sanford-L.P.',
+ '17d3' => 'Korea-Techtron-Co.-Ltd.',
+ '17e9' => 'Newnham-Research',
+ '17eb' => 'Cornice-Inc.',
+ '17ef' => 'Lenovo',
+ '17f5' => 'K.K.-Rocky',
+ '17f6' => 'Unicomp-Inc',
+ '1809' => 'Advantech',
+ '1822' => 'Twinhan',
+ '1831' => 'Gwo-Jinn-Industries-Co.-Ltd.',
+ '183d' => 'VIVOphone',
+ '1843' => 'Vaisala',
+ '1849' => 'ASRock-Incorporation',
+ '1852' => 'GYROCOM-C-C-Co.-LTD',
+ '1854' => 'Memory-Devices-Ltd.',
+ '185b' => 'Compro',
+ '1862' => 'Teridian-Semiconductor-Corp.',
+ '1870' => 'Nexio-Co.-Ltd',
+ '1871' => 'Aveo-Technology-Corp.',
+ '187c' => 'Alienware-Corporation',
+ '187f' => 'Siano-Mobile-Silicon',
+ '1892' => 'Vast-Technologies-Inc.',
+ '1894' => 'Topseed',
+ '1897' => 'Evertop-Wire-Cable-Co.',
+ '18a5' => 'Verbatim-Ltd',
+ '18b1' => 'Petalynx',
+ '18b4' => 'e3C-Technologies',
+ '18b6' => 'Mikkon-Technology-Limited',
+ '18b7' => 'Zotek-Electronic-Co.-Ltd.',
+ '18c5' => 'amit-Inc',
+ '18cd' => 'Ecamm',
+ '18d1' => 'Google-Inc.',
+ '18d9' => 'Kaba',
+ '18dd' => 'Planon-System-Solutions-Inc.',
+ '18e8' => 'Qcom',
+ '18ea' => 'Matrox-Graphics-Inc.',
+ '18ec' => 'Arkmicro-Technologies-Inc.',
+ '18fd' => 'FineArch-Inc.',
+ '1908' => 'GEMBIRD',
+ '190d' => 'Motorola-GSG',
+ '1914' => 'Alco-Digital-Devices-Limited',
+ '1915' => 'Nordic-Semiconductor-ASA',
+ '1926' => 'NextWindow',
+ '192f' => 'Avago-Technologies-Pte.',
+ '1941' => 'Dream-Link',
+ '1943' => 'Sensoray-Co.-Inc.',
+ '1949' => 'Lab126',
+ '1951' => 'Hyperstone-AG',
+ '1953' => 'Ironkey-Inc.',
+ '1954' => 'Radiient-Technologies',
+ '195d' => 'Itron-Technology-iONE',
+ '196b' => 'Wispro-Technology-Inc.',
+ '1970' => 'Dane-Elec-Corp.-USA',
+ '1977' => 'T-Logic',
+ '1989' => 'Nuconn-Technology-Corp.',
+ '198f' => 'Beceem-Communications-Inc.',
+ '1995' => 'Trillium-Technology-Pty.-Ltd.',
+ '199f' => 'Benica-Corporation',
+ '19a8' => 'Biforst-Technology-Inc.',
+ '19ab' => 'Bodelin',
+ '19af' => 'S-Life',
+ '19b2' => 'Batronix',
+ '19b4' => 'Celestron',
+ '19b5' => 'B---W-Group',
+ '19b6' => 'Infotech-Logistic-LLC',
+ '19b9' => 'Data-Robotics',
+ '19ca' => 'Mindtribe',
+ '19cf' => 'Parrot-SA',
+ '19d2' => 'ONDA-Communication-S.p.A.',
+ '19f7' => 'RODE-Microphones',
+ '19fa' => 'Gampaq-Co.Ltd',
+ '19ff' => 'Dynex',
+ '1a08' => 'Bellwood-International-Inc.',
+ '1a0a' => 'USB-IF-non-workshop',
+ '1a12' => 'KES-Co.-Ltd.',
+ '1a25' => 'Amphenol-East-Asia-Ltd.',
+ '1a2a' => 'Seagate-Branded-Solutions',
+ '1a32' => 'Quanta-Microsystems-Inc.',
+ '1a36' => 'Biwin-Technology-Ltd.',
+ '1a40' => 'TERMINUS-TECHNOLOGY-INC.',
+ '1a41' => 'Action-Electronics-Co.-Ltd.',
+ '1a4a' => 'Silicon-Image',
+ '1a4b' => 'SafeBoot-International-B.V.',
+ '1a61' => 'Abbott-Diabetes-Care',
+ '1a6a' => 'Spansion-Inc.',
+ '1a6d' => 'SamYoung-Electronics-Co.-Ltd',
+ '1a6e' => 'Global-Unichip-Corp.',
+ '1a6f' => 'Sagem-Orga-GmbH',
+ '1a79' => 'Bayer-Health-Care-LLC',
+ '1a7b' => 'Lumberg-Connect-GmbH---Co.-KG',
+ '1a7c' => 'Evoluent',
+ '1a86' => 'QinHeng-Electronics',
+ '1a89' => 'Dynalith-Systems-Co.-Ltd.',
+ '1a8b' => 'SGS-Taiwan-Ltd.',
+ '1a8d' => 'BandRich-Inc.',
+ '1a90' => 'Corsair-Voyager-GT-16GB',
+ '1a98' => 'Leica-Camera-AG',
+ '1aa4' => 'Data-Drive-Thru-Inc.',
+ '1aa5' => 'UBeacon-Technologies-Inc.',
+ '1aa6' => 'eFortune-Technology-Corp.',
+ '1acb' => 'Salcomp-Plc',
+ '1ad1' => 'Desay-Wire-Co.-Ltd.',
+ '1ae7' => 'X-TENSIONS',
+ '1b04' => 'Meilhaus-Electronic-GmBH',
+ '1b20' => 'MStar-Semiconductor-Inc.',
+ '1b22' => 'WiLinx-Corp.',
+ '1b26' => 'Cellex-Power-Products-Inc.',
+ '1b27' => 'Current-Electronics-Inc.',
+ '1b28' => 'NAVIsis-Inc.',
+ '1b32' => 'Ugobe-Life-Forms-Inc.',
+ '1b36' => 'ViXS-Systems-Inc.',
+ '1b3b' => 'iPassion-Technology-Inc.',
+ '1b3f' => 'Generalplus-Technology-Inc.',
+ '1b47' => 'Energizer-Holdings-Inc.',
+ '1b48' => 'Plastron-Precision-Co.-Ltd.',
+ '1b59' => 'K.S.-Terminals-Inc.',
+ '1b72' => 'ATERGI-TECHNOLOGY-CO.-LTD.',
+ '1b73' => 'Fresco-Logic',
+ '1b75' => 'Ovislink-Corp.',
+ '1b76' => 'Legend-Silicon-Corp.',
+ '1b80' => 'Afatech',
+ '1b8c' => 'Altium-Limited',
+ '1b8d' => 'e-MOVE-Technology-Co.-Ltd.',
+ '1b8e' => 'Amlogic-Inc.',
+ '1b8f' => 'MA-LABS-Inc.',
+ '1b96' => 'N-Trig',
+ '1b98' => 'YMax-Communications-Corp.',
+ '1b99' => 'Shenzhen-Yuanchuan-Electronic',
+ '1ba4' => 'Ember-Corporation',
+ '1ba6' => 'Abilis-Systems',
+ '1bad' => 'Harmonix-Music',
+ '1bae' => 'Vuzix-Corporation',
+ '1bbb' => 'T---A-Mobile-Phones',
+ '1bc4' => 'Ford-Motor-Co.',
+ '1bc5' => 'AVIXE-Technology-China-Ltd.',
+ '1bde' => 'P-TWO-INDUSTRIES-INC.',
+ '1bf0' => 'RealVision-Inc.',
+ '1bf5' => 'Extranet-Systems-Inc.',
+ '1bfd' => 'TouchPack',
+ '1c02' => 'Kreton-Corporation',
+ '1c04' => 'QNAP-System-Inc.',
+ '1c0d' => 'Relm-Wireless',
+ '1c10' => 'Lanterra-Industrial-Co.-Ltd.',
+ '1c13' => 'ALECTRONIC-LIMITED',
+ '1c1a' => 'Datel-Electronics-Ltd.',
+ '1c1b' => 'Volkswagen-of-America-Inc.',
+ '1c1f' => 'Goldvish-S.A.',
+ '1c21' => 'ADDMM-LLC',
+ '1c27' => 'HuiYang-D---S-Cable-Co.-Ltd.',
+ '1c31' => 'LS-Cable-Ltd.',
+ '1c34' => 'SpringCard',
+ '1c37' => 'Authorizer-Technologies-Inc.',
+ '1c3d' => 'NONIN-MEDICAL-INC.',
+ '1c3e' => 'Wep-Peripherals',
+ '1c49' => 'Cherng-Weei-Technology-Corp.',
+ '1c4f' => 'SiGma-Micro',
+ '1c6c' => 'Skydigital-Inc.',
+ '1c73' => 'AMT',
+ '1c77' => 'Kaetat-Industrial-Co.-Ltd.',
+ '1c78' => 'Datascope-Corp.',
+ '1c79' => 'Unigen-Corporation',
+ '1c7a' => 'LighTuning-Technology-Inc.',
+ '1c87' => '2N-TELEKOMUNIKACE-a.s.',
+ '1c88' => 'Somagic-Inc.',
+ '1c8e' => 'ASTRON-INTERNATIONAL-CORP.',
+ '1c98' => 'ALPINE-ELECTRONICS-INC.',
+ '1ca0' => 'ACCARIO-Inc.',
+ '1cac' => 'Kinstone',
+ '1cb3' => 'Aces-Electronic-Co.-Ltd.',
+ '1cb4' => 'OPEX-CORPORATION',
+ '1cbe' => 'Luminary-Micro-Inc.',
+ '1cc0' => 'PlantSense',
+ '1cca' => 'NextWave-Broadband-Inc.',
+ '1cd4' => 'adp-corporation',
+ '1cd5' => 'Firecomms-Ltd.',
+ '1cdf' => 'WonTen-Technology-Co.-Ltd.',
+ '1ce0' => 'EDIMAX-TECHNOLOGY-CO.-LTD.',
+ '1ce1' => 'Amphenol-KAE',
+ '1cfc' => 'ANDES-TECHNOLOGY-CORPORATION',
+ '1d07' => 'Solid-Motion',
+ '1d14' => 'ALPHA-SAT-TECHNOLOGY-LIMITED',
+ '1d17' => 'C-Thru-Music-Ltd.',
+ '1d19' => 'Dexatek-Technology-Ltd.',
+ '1d1f' => 'Diostech-Co.-Ltd.',
+ '1d20' => 'SAMTACK-INC.',
+ '1d4d' => 'PEGATRON-CORPORATION',
+ '1d50' => 'OpenMoko-Inc.',
+ '1d5b' => 'Smartronix-Inc.',
+ '1d6b' => 'Linux-Foundation',
+ '1e0e' => 'Qualcomm---Option',
+ '1e10' => 'Point-Grey-Research-Inc.',
+ '1e1d' => 'Lumension-Security',
+ '1e1f' => 'INVIA',
+ '1e29' => 'Festo-AG---Co.-KG',
+ '1e41' => 'Cleverscope',
+ '1e54' => 'TypeMatrix',
+ '1e68' => 'TrekStor-GmbH---Co.-KG',
+ '1e71' => 'NZXT',
+ '1e74' => 'Coby-Electronics-Corporation',
+ '1e7d' => 'ROCCAT',
+ '1ebb' => 'NuCORE-Technology-Inc.',
+ '1eda' => 'AirTies-Wireless-Networks',
+ '1ef6' => 'EADS-Deutschland-GmbH',
+ '1f28' => 'Cal-Comp',
+ '1f4d' => 'G-Tek-Electronics-Group',
+ '1f82' => 'TANDBERG',
+ '1f84' => 'Alere-Inc.',
+ '1f87' => 'Stantum',
+ '1fbd' => 'Delphin-Technology-AG',
+ '1fc9' => 'NXP-Semiconductors',
+ '1fe7' => 'Vertex-Wireless-Co.-Ltd.',
+ '2001' => 'D-Link',
+ '2013' => 'Unknown-Pinnacle-',
+ '2019' => 'PLANEX',
+ '2040' => 'Hauppauge',
+ '2047' => 'Texas-Instruments',
+ '2080' => 'Barnes---Noble',
+ '2087' => 'Cando',
+ '20a0' => 'Clay-Logic',
+ '20b1' => 'XMOS-Ltd',
+ '20b3' => 'Hanvon',
+ '20b7' => 'Qi-Hardware',
+ '20df' => 'Simtec-Electronics',
+ '2101' => 'ActionStar',
+ '2162' => 'Creative--',
+ '2184' => 'GW-Instek',
+ '21a1' => 'Emotiv-Systems-Pty.-Ltd.',
+ '21d6' => 'Agecodagis-SARL',
+ '2222' => 'MacAlly',
+ '2227' => 'SAMWOO-Enterprise',
+ '2233' => 'RadioShack-Corporation',
+ '2237' => 'Kobo-Inc.',
+ '22a6' => 'Pie-Digital-Inc.',
+ '22b8' => 'Motorola-PCS',
+ '22b9' => 'eTurboTouch-Technology-Inc.',
+ '2304' => 'Pinnacle-Systems-Inc.',
+ '2373' => 'Pumatronix-Ltda',
+ '2375' => 'Digit-at-lway-Inc.',
+ '2478' => 'Tripp-Lite',
+ '2632' => 'TwinMOS',
+ '2730' => 'Citizen',
+ '2735' => 'DigitalWay',
+ '2770' => 'NHJ-Ltd',
+ '2821' => 'ASUSTek-Computer-Inc.',
+ '2899' => 'Toptronic-Industrial-Co.-Ltd',
+ '2c02' => 'Planex-Communications',
+ '2c1a' => 'Dolphin-Peripherals',
+ '2fb2' => 'Fujitsu-Ltd',
+ '3125' => 'Eagletron',
+ '3176' => 'Whanam-Electronics-Co.-Ltd',
+ '3275' => 'VidzMedia-Pte-Ltd',
+ '3334' => 'AEI',
+ '3340' => 'Yakumo',
+ '3504' => 'Micro-Star',
+ '3579' => 'DIVA',
+ '3636' => 'InVibro',
+ '3838' => 'WEM',
+ '3923' => 'National-Instruments-Corp.',
+ '40bb' => 'I-O-Data',
+ '4101' => 'i-rocks',
+ '4102' => 'iRiver-Ltd.',
+ '413c' => 'Dell-Computer-Corp.',
+ '4146' => 'USBest-Technology',
+ '4242' => 'USB-Design-by-Example',
+ '4317' => 'Broadcom',
+ '4348' => 'WinChipHead',
+ '4572' => 'Shuttle-Inc.',
+ '4586' => 'Panram',
+ '4670' => 'EMS-Production',
+ '4752' => 'Miditech',
+ '4757' => 'GW-Instek',
+ '4766' => 'Aceeca',
+ '4855' => 'Memorex',
+ '4971' => 'SimpleTech',
+ '5032' => 'Grandtec',
+ '5041' => 'Linksys',
+ '50c2' => 'Averatec--',
+ '5173' => 'Sweex',
+ '5219' => 'I-Tetra',
+ '5345' => 'Owon',
+ '544d' => 'Transmeta-Corp.',
+ '5543' => 'UC-Logic-Technology-Corp.',
+ '5555' => 'Epiphan-Systems-Inc.',
+ '55aa' => 'OnSpec-Electronic-Inc.',
+ '5656' => 'Uni-Trend-Group-Limited',
+ '595a' => 'IRTOUCHSYSTEMS-Co.-Ltd.',
+ '5986' => 'Acer',
+ '5a57' => 'Zinwell',
+ '6000' => 'Beholder-International-Ltd.',
+ '601a' => 'Ingenic-Semiconductor-Ltd.',
+ '6189' => 'Sitecom',
+ '6253' => 'TwinHan-Technology-Co.-Ltd',
+ '636c' => 'CoreLogic-Inc.',
+ '6472' => 'Unknown-Sony-',
+ '6547' => 'Arkmicro-Technologies-Inc.',
+ '6615' => 'IRTOUCHSYSTEMS-Co.-Ltd.',
+ '6666' => 'Prototype-product-Vendor-ID',
+ '6677' => 'WiseGroup-Ltd.',
+ '6891' => '3Com',
+ '695c' => 'Opera1',
+ '7104' => 'CME-Central-Music-Co.',
+ '726c' => 'StackFoundry-LLC',
+ '734c' => 'TBS-Technologies-China',
+ '7392' => 'Edimax-Technology-Co.-Ltd',
+ '8086' => 'Intel-Corp.',
+ '8087' => 'Intel-Corp.',
+ '80ee' => 'VirtualBox',
+ '8282' => 'Keio',
+ '8341' => 'EGO-Systems-Inc.',
+ '9016' => 'Sitecom',
+ '9022' => 'TeVii-Technology-Ltd.',
+ '9148' => 'GeoLab-Ltd',
+ '9710' => 'MosChip-Semiconductor',
+ '99fa' => 'Grandtec',
+ '9ac4' => 'J.-Westhues',
+ 'a168' => 'AnMo-Electronics-Corporation',
+ 'a600' => 'Asix',
+ 'a727' => '3Com',
+ 'abcd' => 'Unknown',
+ 'c251' => 'Keil-Software-Inc.',
+ 'cace' => 'CACE-Technologies-Inc.',
+ 'd209' => 'Ultimarc',
+ 'e4e4' => 'Xorcom-Ltd.',
+ 'eb03' => 'MakingThings',
+ 'eb1a' => 'eMPIA-Technology-Inc.',
+ 'eb2a' => 'KWorld',
+ 'f003' => 'Hewlett-Packard',
+ '1412' => 'ESI',
+ '7012' => 'VIA-Technologies-Inc',
+ );
+
+} \ No newline at end of file
diff --git a/h-source/Application/Models/HardwareModel.php b/h-source/Application/Models/HardwareModel.php
index 7df7a65..9633eac 100644
--- a/h-source/Application/Models/HardwareModel.php
+++ b/h-source/Application/Models/HardwareModel.php
@@ -109,7 +109,7 @@ class HardwareModel extends Model_Map {
//save the old fields in the revisions table
$this->setWhereQueryClause(array('id_hard' => $clean['id']));
- $oldStruct = $this->getFields($this->fields.',created_by,updated_by,update_date,type,id_hard');
+ $oldStruct = $this->getFields($this->fields.',vendor,created_by,updated_by,update_date,type,id_hard');
if (count($oldStruct > 0))
{
@@ -151,7 +151,7 @@ class HardwareModel extends Model_Map {
//save the old fields in the revisions table
$this->setWhereQueryClause(array('id_hard'=>$clean['id_hard']));
- $oldStruct = $this->getFields($this->fields.',created_by,updated_by,update_date,type,id_hard');
+ $oldStruct = $this->getFields($this->fields.',vendor,created_by,updated_by,update_date,type,id_hard');
if (count($oldStruct > 0))
{
@@ -159,7 +159,7 @@ class HardwareModel extends Model_Map {
{
//get the values of the revision
$revisions->setWhereQueryClause(array('id_rev'=>$clean['id_rev']));
- $newStruct = $revisions->getFields($this->fields.',created_by,updated_by,update_date,type');
+ $newStruct = $revisions->getFields($this->fields.',vendor,created_by,updated_by,update_date,type');
if (count($newStruct > 0))
{
diff --git a/h-source/Application/Views/Bluetooth/form.php b/h-source/Application/Views/Bluetooth/form.php
index 6de2ece..a03597a 100644
--- a/h-source/Application/Views/Bluetooth/form.php
+++ b/h-source/Application/Views/Bluetooth/form.php
@@ -38,13 +38,7 @@
<form action="<?php echo $this->baseUrl."/".$this->controller."/".$this->action."/$lang/$token".$this->viewStatus;?>" method="POST">
<div class="edit_form">
-
- <div class="form_entry">
- <div class="entry_label"><?php echo gtext("vendor");?>:</div>
- <?php echo Html_Form::select('vendor',$values['vendor'],Bluetooth::$vendors,"select_entry");?>
- <a href="<?php echo $this->baseUrl."/issues/viewall/$lang/1/$token";?>">Vendor not present?</a>
- </div>
-
+
<div class="form_entry">
<div class="entry_label"><?php echo gtext("model name");?>: <b>*</b></div>
<?php echo Html_Form::input('model',$values['model'],'input_entry');?>
diff --git a/h-source/Application/Views/Printers/catalogue.php b/h-source/Application/Views/Printers/catalogue.php
index 3a166dd..7e42862 100644
--- a/h-source/Application/Views/Printers/catalogue.php
+++ b/h-source/Application/Views/Printers/catalogue.php
@@ -25,11 +25,11 @@
<?php echo $popup;?>
</div>
<div class="viewall_popup_menu_status">
- <div class="viewall_popup_menu_status_item"><?php echo $this->viewArgs['vendor']?></div>
- <div class="viewall_popup_menu_status_item"><?php echo $this->viewArgs['compatibility']?></div>
- <div class="viewall_popup_menu_status_item"><?php echo $this->viewArgs['comm_year']?></div>
- <div class="viewall_popup_menu_status_item"><?php echo $this->viewArgs['interface']?></div>
- <div class="viewall_popup_menu_status_item"><?php echo $this->viewArgs['sort-by']?></div>
+ <div class="viewall_popup_menu_status_item"><?php echo betterVendor($this->viewArgs['vendor']);?></div>
+ <div class="viewall_popup_menu_status_item"><?php echo $this->viewArgs['compatibility'];?></div>
+ <div class="viewall_popup_menu_status_item"><?php echo $this->viewArgs['comm_year'];?></div>
+ <div class="viewall_popup_menu_status_item"><?php echo $this->viewArgs['interface'];?></div>
+ <div class="viewall_popup_menu_status_item"><?php echo $this->viewArgs['sort-by'];?></div>
</div>
</div>
@@ -50,7 +50,7 @@
<div class="notebook_vendor">
<div class="inner_label"><?php echo gtext("vendor");?>:</div>
- <div class="inner_value"><?php echo $item['hardware']['vendor'];?></div>
+ <div class="inner_value"><?php echo betterVendor($item['hardware']['vendor']);?></div>
</div>
<div class="notebook_vendor">
diff --git a/h-source/Application/Views/Printers/form.php b/h-source/Application/Views/Printers/form.php
index aafb747..2ccfb38 100644
--- a/h-source/Application/Views/Printers/form.php
+++ b/h-source/Application/Views/Printers/form.php
@@ -38,13 +38,7 @@
<form action="<?php echo $this->baseUrl."/".$this->controller."/".$this->action."/$lang/$token".$this->viewStatus;?>" method="POST">
<div class="edit_form">
-
- <div class="form_entry">
- <div class="entry_label"><?php echo gtext("vendor");?>:</div>
- <?php echo Html_Form::select('vendor',$values['vendor'],Printer::$vendors,"select_entry");?>
- <a href="<?php echo $this->baseUrl."/issues/viewall/$lang/1/$token";?>">Vendor not present?</a>
- </div>
-
+
<div class="form_entry">
<div class="entry_label"><?php echo gtext("model name");?>: <b>*</b></div>
<?php echo Html_Form::input('model',$values['model'],'input_entry');?>
diff --git a/h-source/Application/Views/Printers/page.php b/h-source/Application/Views/Printers/page.php
index 8e3d463..c33b1d3 100644
--- a/h-source/Application/Views/Printers/page.php
+++ b/h-source/Application/Views/Printers/page.php
@@ -45,7 +45,7 @@
<div class="notebook_vendor">
<div class="inner_label"><?php echo gtext("vendor");?>:</div>
- <div class="inner_value"><b><?php echo $item[$tableName]['vendor'];?></b></div>
+ <div class="inner_value"><b><?php echo betterVendor($item[$tableName]['vendor']);?></b></div>
</div>
<div class="notebook_vendor">
diff --git a/h-source/Application/Views/Scanners/catalogue.php b/h-source/Application/Views/Scanners/catalogue.php
index d0a3c94..aadc463 100644
--- a/h-source/Application/Views/Scanners/catalogue.php
+++ b/h-source/Application/Views/Scanners/catalogue.php
@@ -25,7 +25,7 @@
<?php echo $popup;?>
</div>
<div class="viewall_popup_menu_status">
- <div class="viewall_popup_menu_status_item"><?php echo $this->viewArgs['vendor']?></div>
+ <div class="viewall_popup_menu_status_item"><?php echo betterVendor($this->viewArgs['vendor'])?></div>
<div class="viewall_popup_menu_status_item"><?php echo $this->viewArgs['compatibility']?></div>
<div class="viewall_popup_menu_status_item"><?php echo $this->viewArgs['comm_year']?></div>
<div class="viewall_popup_menu_status_item"><?php echo $this->viewArgs['interface']?></div>
@@ -50,7 +50,7 @@
<div class="notebook_vendor">
<div class="inner_label"><?php echo gtext("vendor");?>:</div>
- <div class="inner_value"><?php echo $item['hardware']['vendor'];?></div>
+ <div class="inner_value"><?php echo betterVendor($item['hardware']['vendor']);?></div>
</div>
<div class="notebook_vendor">
diff --git a/h-source/Application/Views/Scanners/form.php b/h-source/Application/Views/Scanners/form.php
index a180d6a..c9085d9 100644
--- a/h-source/Application/Views/Scanners/form.php
+++ b/h-source/Application/Views/Scanners/form.php
@@ -38,13 +38,7 @@
<form action="<?php echo $this->baseUrl."/".$this->controller."/".$this->action."/$lang/$token".$this->viewStatus;?>" method="POST">
<div class="edit_form">
-
- <div class="form_entry">
- <div class="entry_label"><?php echo gtext("vendor");?>:</div>
- <?php echo Html_Form::select('vendor',$values['vendor'],Printer::$vendors,"select_entry");?>
- <a href="<?php echo $this->baseUrl."/issues/viewall/$lang/1/$token";?>">Vendor not present?</a>
- </div>
-
+
<div class="form_entry">
<div class="entry_label"><?php echo gtext("model name");?>: <b>*</b></div>
<?php echo Html_Form::input('model',$values['model'],'input_entry');?>
diff --git a/h-source/Application/Views/Scanners/page.php b/h-source/Application/Views/Scanners/page.php
index 1998377..8be06c1 100644
--- a/h-source/Application/Views/Scanners/page.php
+++ b/h-source/Application/Views/Scanners/page.php
@@ -45,7 +45,7 @@
<div class="notebook_vendor">
<div class="inner_label"><?php echo gtext("vendor");?>:</div>
- <div class="inner_value"><b><?php echo $item[$tableName]['vendor'];?></b></div>
+ <div class="inner_value"><b><?php echo betterVendor($item[$tableName]['vendor']);?></b></div>
</div>
<div class="notebook_vendor">
diff --git a/h-source/Application/Views/Soundcards/form.php b/h-source/Application/Views/Soundcards/form.php
index 03858da..4e754dd 100644
--- a/h-source/Application/Views/Soundcards/form.php
+++ b/h-source/Application/Views/Soundcards/form.php
@@ -38,12 +38,6 @@
<form action="<?php echo $this->baseUrl."/".$this->controller."/".$this->action."/$lang/$token".$this->viewStatus;?>" method="POST">
<div class="edit_form">
-
- <div class="form_entry">
- <div class="entry_label"><?php echo gtext("vendor");?>:</div>
- <?php echo Html_Form::select('vendor',$values['vendor'],Soundcards::$vendors,"select_entry");?>
- <a href="<?php echo $this->baseUrl."/issues/viewall/$lang/1/$token";?>">Vendor not present?</a>
- </div>
<div class="form_entry">
<div class="entry_label"><?php echo gtext("model name");?>: <b>*</b></div>
diff --git a/h-source/Application/Views/Threegcards/form.php b/h-source/Application/Views/Threegcards/form.php
index 19f1586..55a4402 100644
--- a/h-source/Application/Views/Threegcards/form.php
+++ b/h-source/Application/Views/Threegcards/form.php
@@ -38,12 +38,6 @@
<form action="<?php echo $this->baseUrl."/".$this->controller."/".$this->action."/$lang/$token".$this->viewStatus;?>" method="POST">
<div class="edit_form">
-
- <div class="form_entry">
- <div class="entry_label"><?php echo gtext("vendor");?>:</div>
- <?php echo Html_Form::select('vendor',$values['vendor'],ThreeGcards::$vendors,"select_entry");?>
- <a href="<?php echo $this->baseUrl."/issues/viewall/$lang/1/$token";?>">Vendor not present?</a>
- </div>
<div class="form_entry">
<div class="entry_label"><?php echo gtext("model name");?>: <b>*</b></div>
diff --git a/h-source/Application/Views/Videocards/catalogue.php b/h-source/Application/Views/Videocards/catalogue.php
index 3f77e15..bf69cd2 100644
--- a/h-source/Application/Views/Videocards/catalogue.php
+++ b/h-source/Application/Views/Videocards/catalogue.php
@@ -25,7 +25,7 @@
<?php echo $popup;?>
</div>
<div class="viewall_popup_menu_status">
- <div class="viewall_popup_menu_status_item"><?php echo $this->viewArgs['vendor']?></div>
+ <div class="viewall_popup_menu_status_item"><?php echo betterVendor($this->viewArgs['vendor']);?></div>
<div class="viewall_popup_menu_status_item"><?php echo $this->viewArgs['comm_year']?></div>
<div class="viewall_popup_menu_status_item"><?php echo $this->viewArgs['video_card_works']?></div>
<div class="viewall_popup_menu_status_item"><?php echo $this->viewArgs['interface']?></div>
diff --git a/h-source/Application/Views/Videocards/form.php b/h-source/Application/Views/Videocards/form.php
index 39ec680..bdbeaa9 100644
--- a/h-source/Application/Views/Videocards/form.php
+++ b/h-source/Application/Views/Videocards/form.php
@@ -40,12 +40,6 @@
<div class="edit_form">
<div class="form_entry">
- <div class="entry_label"><?php echo gtext("vendor");?>:</div>
- <?php echo Html_Form::select('vendor',$values['vendor'],Videocard::$vendors,"select_entry");?>
- <a href="<?php echo $this->baseUrl."/issues/viewall/$lang/1/$token";?>">Vendor not present?</a>
- </div>
-
- <div class="form_entry">
<div class="entry_label"><?php echo gtext("model name");?>: <b>*</b></div>
<?php echo Html_Form::input('model',$values['model'],'input_entry');?>
</div>
diff --git a/h-source/Application/Views/Webcams/form.php b/h-source/Application/Views/Webcams/form.php
index e60ddcf..24fe218 100644
--- a/h-source/Application/Views/Webcams/form.php
+++ b/h-source/Application/Views/Webcams/form.php
@@ -38,12 +38,6 @@
<form action="<?php echo $this->baseUrl."/".$this->controller."/".$this->action."/$lang/$token".$this->viewStatus;?>" method="POST">
<div class="edit_form">
-
- <div class="form_entry">
- <div class="entry_label"><?php echo gtext("vendor");?>:</div>
- <?php echo Html_Form::select('vendor',$values['vendor'],Webcams::$vendors,"select_entry");?>
- <a href="<?php echo $this->baseUrl."/issues/viewall/$lang/1/$token";?>">Vendor not present?</a>
- </div>
<div class="form_entry">
<div class="entry_label"><?php echo gtext("model name");?>: <b>*</b></div>
diff --git a/h-source/Application/Views/Wifi/catalogue.php b/h-source/Application/Views/Wifi/catalogue.php
index 6a67c00..5e36380 100644
--- a/h-source/Application/Views/Wifi/catalogue.php
+++ b/h-source/Application/Views/Wifi/catalogue.php
@@ -25,7 +25,7 @@
<?php echo $popup;?>
</div>
<div class="viewall_popup_menu_status">
- <div class="viewall_popup_menu_status_item"><?php echo $this->viewArgs['vendor']?></div>
+ <div class="viewall_popup_menu_status_item"><?php echo betterVendor($this->viewArgs['vendor']);?></div>
<div class="viewall_popup_menu_status_item"><?php echo $this->viewArgs['comm_year']?></div>
<div class="viewall_popup_menu_status_item"><?php echo $this->viewArgs['wifi_works']?></div>
<div class="viewall_popup_menu_status_item"><?php echo $this->viewArgs['interface']?></div>
diff --git a/h-source/Application/Views/Wifi/form.php b/h-source/Application/Views/Wifi/form.php
index a61b11f..fc26f70 100644
--- a/h-source/Application/Views/Wifi/form.php
+++ b/h-source/Application/Views/Wifi/form.php
@@ -40,12 +40,6 @@
<div class="edit_form">
<div class="form_entry">
- <div class="entry_label"><?php echo gtext("vendor");?>:</div>
- <?php echo Html_Form::select('vendor',$values['vendor'],Wifi::$vendors,"select_entry");?>
- <a href="<?php echo $this->baseUrl."/issues/viewall/$lang/1/$token";?>">Vendor not present?</a>
- </div>
-
- <div class="form_entry">
<div class="entry_label"><?php echo gtext("model name");?>: <b>*</b></div>
<?php echo Html_Form::input('model',$values['model'],'input_entry');?>
</div>