mirror of
https://github.com/GNS3/gns3-gui.git
synced 2026-05-17 00:46:01 +03:00
4334 lines
110 KiB
Python
4334 lines
110 KiB
Python
# Form implementation generated from reading ui file '/home/grossmj/PycharmProjects/gns3-gui/gns3/ui/about_dialog.ui'
|
|
#
|
|
# Created by: PyQt6 UI code generator 6.10.1
|
|
#
|
|
# WARNING: Any manual changes made to this file will be lost when pyuic6 is
|
|
# run again. Do not edit this file unless you know what you are doing.
|
|
|
|
|
|
from PyQt6 import QtCore, QtGui, QtWidgets
|
|
|
|
|
|
class Ui_AboutDialog(object):
|
|
def setupUi(self, AboutDialog):
|
|
AboutDialog.setObjectName("AboutDialog")
|
|
AboutDialog.setWindowModality(QtCore.Qt.WindowModality.WindowModal)
|
|
AboutDialog.resize(465, 272)
|
|
self.gridLayout_2 = QtWidgets.QGridLayout(AboutDialog)
|
|
self.gridLayout_2.setObjectName("gridLayout_2")
|
|
self.tabWidget = QtWidgets.QTabWidget(parent=AboutDialog)
|
|
self.tabWidget.setObjectName("tabWidget")
|
|
self.tab = QtWidgets.QWidget()
|
|
self.tab.setObjectName("tab")
|
|
self.gridLayout = QtWidgets.QGridLayout(self.tab)
|
|
self.gridLayout.setContentsMargins(10, 10, 10, 10)
|
|
self.gridLayout.setObjectName("gridLayout")
|
|
self.horizontalLayout = QtWidgets.QHBoxLayout()
|
|
self.horizontalLayout.setObjectName("horizontalLayout")
|
|
self.uiLogoLabel = QtWidgets.QLabel(parent=self.tab)
|
|
self.uiLogoLabel.setText("")
|
|
self.uiLogoLabel.setPixmap(QtGui.QPixmap(":/images/gns3_logo.png"))
|
|
self.uiLogoLabel.setObjectName("uiLogoLabel")
|
|
self.horizontalLayout.addWidget(self.uiLogoLabel)
|
|
spacerItem = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Minimum)
|
|
self.horizontalLayout.addItem(spacerItem)
|
|
self.uiAboutTextLabel = QtWidgets.QLabel(parent=self.tab)
|
|
self.uiAboutTextLabel.setOpenExternalLinks(True)
|
|
self.uiAboutTextLabel.setObjectName("uiAboutTextLabel")
|
|
self.horizontalLayout.addWidget(self.uiAboutTextLabel)
|
|
spacerItem1 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Minimum)
|
|
self.horizontalLayout.addItem(spacerItem1)
|
|
self.gridLayout.addLayout(self.horizontalLayout, 0, 0, 1, 1)
|
|
self.tabWidget.addTab(self.tab, "")
|
|
self.tab_4 = QtWidgets.QWidget()
|
|
self.tab_4.setObjectName("tab_4")
|
|
self.verticalLayout = QtWidgets.QVBoxLayout(self.tab_4)
|
|
self.verticalLayout.setContentsMargins(10, 10, 10, 10)
|
|
self.verticalLayout.setObjectName("verticalLayout")
|
|
self.uiTeamTextEdit = QtWidgets.QTextEdit(parent=self.tab_4)
|
|
self.uiTeamTextEdit.setReadOnly(True)
|
|
self.uiTeamTextEdit.setTextInteractionFlags(QtCore.Qt.TextInteractionFlag.TextBrowserInteraction)
|
|
self.uiTeamTextEdit.setObjectName("uiTeamTextEdit")
|
|
self.verticalLayout.addWidget(self.uiTeamTextEdit)
|
|
self.tabWidget.addTab(self.tab_4, "")
|
|
self.tab_2 = QtWidgets.QWidget()
|
|
self.tab_2.setObjectName("tab_2")
|
|
self.vboxlayout = QtWidgets.QVBoxLayout(self.tab_2)
|
|
self.vboxlayout.setContentsMargins(10, 10, 10, 10)
|
|
self.vboxlayout.setObjectName("vboxlayout")
|
|
self.uiThanksPlainTextEdit = QtWidgets.QPlainTextEdit(parent=self.tab_2)
|
|
self.uiThanksPlainTextEdit.setReadOnly(True)
|
|
self.uiThanksPlainTextEdit.setObjectName("uiThanksPlainTextEdit")
|
|
self.vboxlayout.addWidget(self.uiThanksPlainTextEdit)
|
|
self.tabWidget.addTab(self.tab_2, "")
|
|
self.tab_3 = QtWidgets.QWidget()
|
|
self.tab_3.setObjectName("tab_3")
|
|
self.vboxlayout1 = QtWidgets.QVBoxLayout(self.tab_3)
|
|
self.vboxlayout1.setContentsMargins(10, 10, 10, 10)
|
|
self.vboxlayout1.setObjectName("vboxlayout1")
|
|
self.uiLicensePlainTextEdit = QtWidgets.QPlainTextEdit(parent=self.tab_3)
|
|
self.uiLicensePlainTextEdit.setReadOnly(True)
|
|
self.uiLicensePlainTextEdit.setObjectName("uiLicensePlainTextEdit")
|
|
self.vboxlayout1.addWidget(self.uiLicensePlainTextEdit)
|
|
self.tabWidget.addTab(self.tab_3, "")
|
|
self.gridLayout_2.addWidget(self.tabWidget, 0, 0, 1, 1)
|
|
self.buttonBox = QtWidgets.QDialogButtonBox(parent=AboutDialog)
|
|
self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal)
|
|
self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Ok)
|
|
self.buttonBox.setObjectName("buttonBox")
|
|
self.gridLayout_2.addWidget(self.buttonBox, 1, 0, 1, 1)
|
|
|
|
self.retranslateUi(AboutDialog)
|
|
self.tabWidget.setCurrentIndex(0)
|
|
self.buttonBox.accepted.connect(AboutDialog.accept) # type: ignore
|
|
self.buttonBox.rejected.connect(AboutDialog.reject) # type: ignore
|
|
QtCore.QMetaObject.connectSlotsByName(AboutDialog)
|
|
AboutDialog.setTabOrder(self.uiThanksPlainTextEdit, self.uiLicensePlainTextEdit)
|
|
|
|
def retranslateUi(self, AboutDialog):
|
|
_translate = QtCore.QCoreApplication.translate
|
|
AboutDialog.setWindowTitle(_translate("AboutDialog", "About"))
|
|
self.uiAboutTextLabel.setText(_translate("AboutDialog", "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" \"http://www.w3.org/TR/REC-html40/strict.dtd\">\n"
|
|
"<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css\">\n"
|
|
"p, li { white-space: pre-wrap; }\n"
|
|
"</style></head><body style=\" font-family:\'Ubuntu\'; font-size:11pt; font-weight:400; font-style:normal;\">\n"
|
|
"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><br /></p>\n"
|
|
"<p align=\"center\" style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'Sans Serif\'; font-size:14pt; font-weight:600;\">GNS3 %VERSION%</span></p>\n"
|
|
"<p align=\"center\" style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'Sans Serif\'; font-size:10pt; font-weight:600;\">Under GPL v3 license</span></p>\n"
|
|
"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:\'Sans Serif\'; font-size:9pt; font-weight:600;\"><br /></p></body></html>"))
|
|
self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab), _translate("AboutDialog", "&About"))
|
|
self.uiTeamTextEdit.setHtml(_translate("AboutDialog", "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" \"http://www.w3.org/TR/REC-html40/strict.dtd\">\n"
|
|
"<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css\">\n"
|
|
"p, li { white-space: pre-wrap; }\n"
|
|
"</style></head><body style=\" font-family:\'Ubuntu\'; font-size:11pt; font-weight:400; font-style:normal;\">\n"
|
|
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-weight:600;\">Developers</span></p>\n"
|
|
"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><br /></p>\n"
|
|
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">Jeremy Grossmann</p>\n"
|
|
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">Julien Duponchelle</p>\n"
|
|
"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><br /></p>\n"
|
|
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-weight:600;\">Contributors</span></p>\n"
|
|
"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;\"><br /></p>\n"
|
|
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">James E. Carpenter (IOU support)</p>\n"
|
|
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">Daniel Lintott (NET file import)</p>\n"
|
|
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">Marc Weisel (Mac OS X packaging)</p>\n"
|
|
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">Alexey Eromenko (VirtualBox support)</p>\n"
|
|
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">Vasil Rangelov (Qemu & GUI improvements)</p>\n"
|
|
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">Bernhard Ehlers (IOU NVRAM import/export)</p>\n"
|
|
"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><br /></p></body></html>"))
|
|
self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab_4), _translate("AboutDialog", "&Team"))
|
|
self.uiThanksPlainTextEdit.setPlainText(_translate("AboutDialog", "Mark Fahy\n"
|
|
"James Borden\n"
|
|
"Tenzin Rigdol Oshoe\n"
|
|
"Brian Jacobson\n"
|
|
"Chad Hoevenaars\n"
|
|
"Jesus Espinoza\n"
|
|
"Des Kharisma Tarigan\n"
|
|
"David Bigerstaff\n"
|
|
"Christopher Good\n"
|
|
"Brian Farmer\n"
|
|
"Jimmy Bruneel\n"
|
|
"Rob Edwards\n"
|
|
"BEGQTh34\n"
|
|
"Nebulis01\n"
|
|
"The JWag (James Wagner)\n"
|
|
"JONATHAN BALEVA VIRAY\n"
|
|
"Jamie Hoyt\n"
|
|
"Jake Guffey\n"
|
|
"Enis Byci\n"
|
|
"Avery Wright\n"
|
|
"Maxim Klimanov\n"
|
|
"Salomon ADJOVI\n"
|
|
"Keith McCulloch\n"
|
|
"Guillermoi A Pierluissi\n"
|
|
"MiraliN\n"
|
|
"ALexandr Ismagilov\n"
|
|
"mistabatu\n"
|
|
"AFIF JABADO\n"
|
|
"Allen Hadder \n"
|
|
"Jonathan M. Olivier\n"
|
|
"Muhammad Adeel Malik\n"
|
|
"PhatWheZ\n"
|
|
"Christopher D Perrett\n"
|
|
"James Clifford\n"
|
|
"David Henderson\n"
|
|
"Andrea Florio\n"
|
|
"Michael Eva\n"
|
|
"Abdul Wahid\n"
|
|
"SebastianHelmer\n"
|
|
"Eric Maxwell\n"
|
|
"Bradly Leiws\n"
|
|
"Pavel Afanasjev\n"
|
|
"Jan Jessen\n"
|
|
"Brandon Raikes\n"
|
|
"Geron\n"
|
|
"Joel-Brook-Leeds-yay!\n"
|
|
"Robert Novak\n"
|
|
"Barry Weiss\n"
|
|
"Sami Alsubhi\n"
|
|
"Packetboss\n"
|
|
"Ionut Vasile\n"
|
|
"Nick Yeager\n"
|
|
"Pioneer Network Solutions, LLC.\n"
|
|
"Randy Timmermans\n"
|
|
"Pablo Lucena\n"
|
|
"Michal Dulovic\n"
|
|
"Ramon Pinyol\n"
|
|
"Roberto Taccon\n"
|
|
"Andras Dosztal\n"
|
|
"Matthieu Dalcourt\n"
|
|
"Matt Dominey\n"
|
|
"Wanderson Cristony Tinti\n"
|
|
"Alexandre Maia Vlahos\n"
|
|
"DarronDazlinSmith\n"
|
|
"JOHN BAPTIST OBILIL\n"
|
|
"Jimmy Copeland\n"
|
|
"Roy Benoy\n"
|
|
"Henrik Kruse Larsen\n"
|
|
"cpt2040\n"
|
|
"Martin Varga\n"
|
|
"Jonathan Gonzalez\n"
|
|
"Luke Withers\n"
|
|
"Mahir Ali Ahmed\n"
|
|
"Dean Ryan Perrine\n"
|
|
"Robert F. Dias Jr\n"
|
|
"Ashenafi\n"
|
|
"Justin L. Spencer\n"
|
|
"Carlo Gagliardi\n"
|
|
"Sean Barmettler\n"
|
|
"focaccio\n"
|
|
"rhein021\n"
|
|
"Frederick Poirier\n"
|
|
"Dmitri Fedotov\n"
|
|
"Ernie Maestas\n"
|
|
"Colin Taylor \n"
|
|
"HugoAmaro\n"
|
|
"Solim\n"
|
|
"Volodymyr Kharytonov\n"
|
|
"Max \"Big Hoss\" Clise\n"
|
|
"Alex_Gutierrez\n"
|
|
"Saad Najaf Khan\n"
|
|
"dahveed311\n"
|
|
"Michael Loft Mikkelsen - DK\n"
|
|
"HyperSCSI\n"
|
|
"Enrico Floris\n"
|
|
"Grigoris Papalexis\n"
|
|
"Prithvi Mandava\n"
|
|
"YOUNIS BADAWI\n"
|
|
"SelvaagIT\n"
|
|
"steve brokenshire\n"
|
|
"Brian Adelson\n"
|
|
"Michael A Hern\n"
|
|
"Umair Ali Soomro\n"
|
|
"Matt_Earp\n"
|
|
"Martin L Lora\n"
|
|
"Diego Monasterios\n"
|
|
"Chris T Sims\n"
|
|
"Jeff Wagner\n"
|
|
"Harinder Singh\n"
|
|
"David Gaytan\n"
|
|
"Jonathan Moulton\n"
|
|
"OGUZHAN VEYSEL ATALAR\n"
|
|
"Bent Mathiesen\n"
|
|
"GuruSue\n"
|
|
"mmetaphor\n"
|
|
"Paul Stoner\n"
|
|
"Ryan Corcoran\n"
|
|
"OmarS\n"
|
|
"Dudiefa Tonye\n"
|
|
"Christian Elsen (San Francisco)\n"
|
|
"Victor Venturelli Mosconi\n"
|
|
"Barry Jones\n"
|
|
"Syed Zayed Bukhari\n"
|
|
"Kareo\n"
|
|
"Urs \"Whity\" Weiss\n"
|
|
"Jesus Hernando Lopez\n"
|
|
"Mike McCauley\n"
|
|
"Carl Francis AKA tEeJ\n"
|
|
"Imad Daou\n"
|
|
"orangejam72\n"
|
|
"Paulo \"elTechno\" Alvarado\n"
|
|
"Don Coulson\n"
|
|
"Jeff Nierman\n"
|
|
"Brian Whelton\n"
|
|
"Garang Deng\n"
|
|
"Marcus Watson\n"
|
|
"Paul@GGR\n"
|
|
"Anthony Branchaud\n"
|
|
"Rameez-C\n"
|
|
"Patrick Williams\n"
|
|
"Jonathan Madore\n"
|
|
"Robert Gene Horn\n"
|
|
"Jaime\n"
|
|
"Ken Richardson\n"
|
|
"Eduard Ch.\n"
|
|
"Ionut Tartau\n"
|
|
"Fred Ellis Jr\n"
|
|
"Ferenc Kuris\n"
|
|
"David Tinsley\n"
|
|
"Jeroen Roos\n"
|
|
"Peter Palasti\n"
|
|
"Dave Hardy\n"
|
|
"Herceg Andras\n"
|
|
"Bryan Scarbrough\n"
|
|
"Filipe Matias\n"
|
|
"Muelly\n"
|
|
"tr3quart1sta\n"
|
|
"Ian C Scarborough\n"
|
|
"Robert B Romel\n"
|
|
"Pio P. Prado\n"
|
|
"zasplas\n"
|
|
"Pantelis Stoufis\n"
|
|
"Daniel R Moore\n"
|
|
"Daniel Tinsley\n"
|
|
"Derek Ivey\n"
|
|
"Alessandro Piva\n"
|
|
"Tony DelGreco\n"
|
|
"Tyler Carlisle\n"
|
|
"Christopher Buckley\n"
|
|
"Korstiaan Kooijman\n"
|
|
"Paul Schriever\n"
|
|
"Mawat\n"
|
|
"Ivo Bottenheft\n"
|
|
"Soundwave\n"
|
|
"Markus Karlsson\n"
|
|
"molan1\n"
|
|
"Nikola Sambolic\n"
|
|
"Joachim Boadu Kwaku\n"
|
|
"Adi Wong\n"
|
|
"Joao Teixeira\n"
|
|
"Alexandru Badea\n"
|
|
"Bryan Hubbard\n"
|
|
"Rajesh Anne\n"
|
|
"Bartosz Durma\n"
|
|
"Vladusha\n"
|
|
"HasanTheWise\n"
|
|
"Tejinder Panesar\n"
|
|
"Alexandru Stefan Marinescu\n"
|
|
"Giovanni Augusto\n"
|
|
"Kyryl Tumanov\n"
|
|
"Rashiem Mims\n"
|
|
"Maky Robert\n"
|
|
"Timur Mezentsev\n"
|
|
"Matt Blackwell\n"
|
|
"James Moore\n"
|
|
"elhatab\n"
|
|
"Ruben Lihet\n"
|
|
"Paul Kiela\n"
|
|
"Jeffrey Kraemer\n"
|
|
"Andrew K.\n"
|
|
"Comein Arnaud\n"
|
|
"Riccardo Bruzzone\n"
|
|
"Ulrich Kempken\n"
|
|
"Simon Wilkinson\n"
|
|
"Susan Chatterjee\n"
|
|
"Jose Isidro Cantu Alvarez\n"
|
|
"Mcglon\n"
|
|
"Asimios Kiropoulos\n"
|
|
"slobodan simic\n"
|
|
"Jacob Adlon\n"
|
|
"arkSyne\n"
|
|
"Rakesh M. Thakkar\n"
|
|
"Tchitchi\n"
|
|
"Mohamed Rezard Meeralebbe\n"
|
|
"JaeHyeong Jeon\n"
|
|
"enderst\n"
|
|
"Yves Kerbens\n"
|
|
"Ramon Kidd\n"
|
|
"Frank Olshansky\n"
|
|
"Steve Miller\n"
|
|
"Curt Wheeler\n"
|
|
"Tony M Nguyen\n"
|
|
"Chris Kuhn\n"
|
|
"John K Williamson\n"
|
|
"Swinster\n"
|
|
"Jared Heinrichs\n"
|
|
"macbroadcast\n"
|
|
"Cyrinojuca\n"
|
|
"Sean Cardus\n"
|
|
"Lazaro Rene Ortega Rodriguez\n"
|
|
"Andrew Peter Kirkby\n"
|
|
"Luis Ramos\n"
|
|
"Sean McGrath\n"
|
|
"Manuel Neuner (Austria)\n"
|
|
"Matt Siegel\n"
|
|
"J. Neil Marlowe\n"
|
|
"Shibata\n"
|
|
"Michael Maguire\n"
|
|
"Harmeet Singh Sian\n"
|
|
"Britt Adams\n"
|
|
"MuslimSubmittedToGod\n"
|
|
"Samuel\n"
|
|
"Steve Housego\n"
|
|
"Pablo Hauptmann\n"
|
|
"Stevan Sheely\n"
|
|
"Brian \"Red\" Williamson\n"
|
|
"Mark Fietje\n"
|
|
"Muhammet Said Temelli\n"
|
|
"Skeeve Stevens\n"
|
|
"JEFF OLIVER\n"
|
|
"Frederik Bjerggaard Nielsen\n"
|
|
"Anar R. Iskandarli - Azerbaijan\n"
|
|
"Anthony_Oliverio\n"
|
|
"Jason Cook\n"
|
|
"Kalamoukos Dimitris\n"
|
|
"Francis Ruddy\n"
|
|
"roxtonuk\n"
|
|
"Przemyslaw \'UWillC\' Snowacki\n"
|
|
"Chipa\n"
|
|
"M Sawatzky\n"
|
|
"dzap\n"
|
|
"Shaun Carlin\n"
|
|
"Jegan\n"
|
|
"Enrique Gómez Monreal\n"
|
|
"Marco Simontacchi\n"
|
|
"Christopher Robert Lee\n"
|
|
"esreverse\n"
|
|
"milan peyrac\n"
|
|
"Robin Wood - Digininja\n"
|
|
"Dan Nelson\n"
|
|
"Gareth Mitchelson\n"
|
|
"Michael V King, Sr.\n"
|
|
"Brent A Walter\n"
|
|
"smcghie\n"
|
|
"Jose Carvalho\n"
|
|
"IPrgomet\n"
|
|
"Richard Harris 1\n"
|
|
"Wilson Mendes\n"
|
|
"Jovito Cueva\n"
|
|
"Conrad Jedynak\n"
|
|
"Martin Gursky\n"
|
|
"paul wynne\n"
|
|
"Oyama Hall\n"
|
|
"Giles Mathew Broom\n"
|
|
"Akwasi Adu\n"
|
|
"Dan Roering\n"
|
|
"Sal Amico\n"
|
|
"Jakso Laszlo 06101963\n"
|
|
"Engelbert Luechinger\n"
|
|
"MWenglikowski\n"
|
|
"Waqas Bashir\n"
|
|
"Garrett Skjelstad\n"
|
|
"Renato de Pierri - SP Brazil\n"
|
|
"Ebo Semenhyia Thompson\n"
|
|
"Marcos Rodrigo Santos de Souza\n"
|
|
"OGINNI OLUWASEYI\n"
|
|
"Jordan Foster(Jez2cool)\n"
|
|
"Bluca\n"
|
|
"Earl Bovell\n"
|
|
"Steve Stewart\n"
|
|
"Mike Boughton\n"
|
|
"Adrian Z.\n"
|
|
"Phillip White\n"
|
|
"Mustafa Ameen Al-Khateeb\n"
|
|
"Vikas Sharma\n"
|
|
"Noel Mulryan\n"
|
|
"Johan2004\n"
|
|
"James Ramsay\n"
|
|
"Brian Lehr\n"
|
|
"ecium\n"
|
|
"Yatin K Shah\n"
|
|
"Neil Sheridan\n"
|
|
"Francis Pena (JigaX)\n"
|
|
"Hank Yeomans\n"
|
|
"Peter Stanczak\n"
|
|
"jhrcariazo\n"
|
|
"Matthew Gosling\n"
|
|
"Danni Nissen Bardino\n"
|
|
"Duane McNulty\n"
|
|
"Adam Wysockyj\n"
|
|
"Benjamin Donald Byers \n"
|
|
"Terrance Richards\n"
|
|
"Erik Jacobson II\n"
|
|
"DIAS\n"
|
|
"ALDO LEIVA-MARCHISSANO (DECO5)\n"
|
|
"dedycahyadi-unmul\n"
|
|
"Robert Trow\n"
|
|
"Adam Johnston\n"
|
|
"Mace\n"
|
|
"Alexander Lubenski\n"
|
|
"John Braswell\n"
|
|
"Brian Sanders\n"
|
|
"David Vierling\n"
|
|
"André Jan Smit\n"
|
|
"RedNectar Chris Welsh\n"
|
|
"Edmarc Vitz Oliveros\n"
|
|
"Vivek Bannore\n"
|
|
"Emilio Sanchez Parbul\n"
|
|
"Luke Jay Cooper\n"
|
|
"Bill Laubsch\n"
|
|
"Luke Cooper\n"
|
|
"Chris Cook\n"
|
|
"KloudFyre Networks\n"
|
|
"Jason Miller\n"
|
|
"Chase Wright\n"
|
|
"Joseph Paveglio\n"
|
|
"Shing Hei Yee\n"
|
|
"MARSHG\n"
|
|
"Rowan Brandon Lee\n"
|
|
"AbdulHayee\n"
|
|
"Wanxue Hai\n"
|
|
"Net9 Telecom\n"
|
|
"Dean Lofts\n"
|
|
"Gordon Duncan\n"
|
|
"Daniel Gurgel\n"
|
|
"Bill Scully\n"
|
|
"Scott Dalton\n"
|
|
"brato\n"
|
|
"Peter Hansen\n"
|
|
"Jose E. Silva\n"
|
|
"reySkata\n"
|
|
"Francis Xavier Todd II\n"
|
|
"Nick Cochrane\n"
|
|
"Geoff Kuchera\n"
|
|
"Geoff Ladwig\n"
|
|
"Murilo R. Esplugues\n"
|
|
"Srinivasa R Emani\n"
|
|
"Terrence Battlehunt\n"
|
|
"Muhammad Bhatti\n"
|
|
"John Miller\n"
|
|
"Tiago Lima (TiLima)\n"
|
|
"Luis Carlos Gomes Alves\n"
|
|
"Giuseppe De Luca\n"
|
|
"Alex Kieser\n"
|
|
"Adam Steele\n"
|
|
"Joey Caldwell\n"
|
|
"Aaron Oliver\n"
|
|
"Adil Nasser\n"
|
|
"Marcelo Chicralla\n"
|
|
"Chris Smolen\n"
|
|
"Oleg Ivin\n"
|
|
"davidwthomas\n"
|
|
"pingwarrior\n"
|
|
"Yared Demissie\n"
|
|
"SIM Kwang Meng\n"
|
|
"Thomas Irwan\n"
|
|
"Jordan Dalton\n"
|
|
"Debasish\n"
|
|
"Ernest Saadat\n"
|
|
"Dr Bankim Jani\n"
|
|
"Nasir Bilal\n"
|
|
"Tran Minh Luan\n"
|
|
"Brad Haynes\n"
|
|
"Gerald Gonzalez Santoni\n"
|
|
"Campesi\n"
|
|
"Richard Danu\n"
|
|
"Olugbenga Adara\n"
|
|
"Emad Salahuddin\n"
|
|
"Ezra Reang\n"
|
|
"Serge Cherestal\n"
|
|
"Mike Shafer\n"
|
|
"Vikram Sokhi\n"
|
|
"Arliton Martiniano Rocha\n"
|
|
"Faith Solutions pvt ltd \n"
|
|
"Arnold A. Madulin\n"
|
|
"cqaigy\n"
|
|
"Ti-Chris\n"
|
|
"Sergey Goffert\n"
|
|
"Chris Higgins\n"
|
|
"George P. Burdell\n"
|
|
"Todd Graham\n"
|
|
"Barry Middleton\n"
|
|
"Pdw8\n"
|
|
"Lê Việt Thanh\n"
|
|
"Pavel Glushkov\n"
|
|
"Alan Rizgar Ali\n"
|
|
"Aung Ye Thu\n"
|
|
"Khurshid Hassan Khan\n"
|
|
"Kamran Mehdi\n"
|
|
"Richard Mantilla\n"
|
|
"David R. Burgess\n"
|
|
"Thomas Whitmore\n"
|
|
"Lee Kong Wah\n"
|
|
"SUNANDA DAS\n"
|
|
"Irvan Tambunan\n"
|
|
"Vasanthkumar\n"
|
|
"TJ West\n"
|
|
"Kanthi Kiran Narisetti\n"
|
|
"DarwinLabs\n"
|
|
"Weston Brown\n"
|
|
"Manikant Thakur\n"
|
|
"Intoy23_\n"
|
|
"Muhammad Hussain\n"
|
|
"jakimm\n"
|
|
"Gengxiaojun\n"
|
|
"Dilan Perera\n"
|
|
"Yagnesh Chauhan\n"
|
|
"James R. Gross Jr.\n"
|
|
"Abraxas\n"
|
|
"Patrick Silwimba\n"
|
|
"Rajavel\n"
|
|
"Idris Adesanya\n"
|
|
"John Bluhdorn\n"
|
|
"Xulnoor Syed\n"
|
|
"Gerard Sharpe\n"
|
|
"Warren Sullivan\n"
|
|
"Greg Gephart\n"
|
|
"Ian Verno\n"
|
|
"Mark Odette II\n"
|
|
"Christopher Megyeri\n"
|
|
"Vladimir Kuchar\n"
|
|
"Yazeed Fataar\n"
|
|
"Rajesh Kakkanatt Jolly\n"
|
|
"Radovan Brezula\n"
|
|
"Russell W Wood\n"
|
|
"Cameron Rooke\n"
|
|
"Michael Dawson\n"
|
|
"Ronald Boestfleisch Jr\n"
|
|
"Jade Rampulla\n"
|
|
"Mohammed Aftab\n"
|
|
"Orkhan Farajov\n"
|
|
"sumitava chatterjee\n"
|
|
"Hugh Mann\n"
|
|
"Rasto Szaszak\n"
|
|
"Name, last name and country.\n"
|
|
"Milan Zapletal\n"
|
|
"MJM Boyens\n"
|
|
"Ernesto Hernandez, Finland.\n"
|
|
"Filippos Kolovos\n"
|
|
"David Julson\n"
|
|
"Net Center, Inc.\n"
|
|
"Robert Rittenhouse\n"
|
|
"asdfghjkl\n"
|
|
"Derek Michael Neves\n"
|
|
"GLB\n"
|
|
"Nadeem Rafi\n"
|
|
"Steve De Jongh\n"
|
|
"Rich Gibbons\n"
|
|
"Krishna Kumaran GK\n"
|
|
"Sebastian Gosenheimer\n"
|
|
"dante\n"
|
|
"Frank Hopkins\n"
|
|
"Wyld Stallyn\n"
|
|
"George Paa Kwesi Williams\n"
|
|
"Andrzej Krzyżak\n"
|
|
"TheMasonFamily\n"
|
|
"Neill Wilkinson - Aeonvista Ltd\n"
|
|
"Guillano L\'intelligent\n"
|
|
"Tiago Sousa\n"
|
|
"Ingo Bothe\n"
|
|
"Guillano L\n"
|
|
"Dingxia Li\n"
|
|
"Bongie\n"
|
|
"Orlov Vladimir\n"
|
|
"Dmitry Tyutikov\n"
|
|
"Jon Walker\n"
|
|
"Theofanis Katsiaounis\n"
|
|
"praneel prasad\n"
|
|
"norwizzle\n"
|
|
"tmcraig08\n"
|
|
"Simon Huber\n"
|
|
"Pedro Duarte ESTCB\n"
|
|
"Akov\n"
|
|
"Mihai Alexandru Vasiliu\n"
|
|
"ronnietheengineer\n"
|
|
"Timothy Manito\n"
|
|
"Dmitry Seliverstov\n"
|
|
"Matija Grabar\n"
|
|
"mckrsta\n"
|
|
"magulito\n"
|
|
"GazandKim\n"
|
|
"Chris Davies\n"
|
|
"Zack Manriquez\n"
|
|
"Adnan Pajalic\n"
|
|
"Anton Ovsyannikov\n"
|
|
"RushenYYZ\n"
|
|
"Alejandro Nolla\n"
|
|
"Igor Plokhikh\n"
|
|
"Ilya Kupriyanov\n"
|
|
"zahid yasin\n"
|
|
"joey fernandez mirador\n"
|
|
"Orlando Amador\n"
|
|
"Christiano Lucas\n"
|
|
"Timothy Call-Buckeyes#1\n"
|
|
"Chris Graves\n"
|
|
"Roman Florea\n"
|
|
"Andrew Banwell\n"
|
|
"Randy Brizuela\n"
|
|
"Tibor Torma\n"
|
|
"KIOUSIS THANASIS\n"
|
|
"Paulo Vaz\n"
|
|
"primmus\n"
|
|
"Ovidu Catrina\n"
|
|
"Emi.Tiamo.\n"
|
|
"Willian Kassem\n"
|
|
"Xianli Huang\n"
|
|
"karanarora192006\n"
|
|
"Jens THIES\n"
|
|
"Emberlight\n"
|
|
"Luis Knob\n"
|
|
"WarrenHayhurst\n"
|
|
"Richard Karus\n"
|
|
"Pablo Olveira\n"
|
|
"ghisisan\n"
|
|
"Antonio Gerbino\n"
|
|
"Bijay Swain\n"
|
|
"Simon Minery\n"
|
|
"Matt du Jardin\n"
|
|
"Ian Blaney\n"
|
|
"Nallanathan Sivatharzan\n"
|
|
"Paulo Guerreiro\n"
|
|
"Joe Audet\n"
|
|
"Noman Choudhury\n"
|
|
"Silvyse\n"
|
|
"Azam Saddiq\n"
|
|
"Rodrigo Henrique Castro da Silva\n"
|
|
"Rickard Körkkö\n"
|
|
"Thomas quero\n"
|
|
"Matus Lenhart\n"
|
|
"Frank Bailey\n"
|
|
"herdoc2005\n"
|
|
"Kurt Holm-Andersen\n"
|
|
"Dimitar Leskov\n"
|
|
"David Abreu de Sousa Junior\n"
|
|
"Anthony R Junk\n"
|
|
"Aung Zaw Latt\n"
|
|
"Fred Bisel\n"
|
|
"khaisar\n"
|
|
"MOHAMMAD FAIZAL BIN MOHAMED SALLEHIN\n"
|
|
"Svindler\n"
|
|
"Marcel Slagter\n"
|
|
"Brandon.nmi.Johnson\n"
|
|
"Farias\n"
|
|
"Quinton Bakies\n"
|
|
"Yoshihiro Ano\n"
|
|
"Alex K\n"
|
|
"Yohannes Iyob\n"
|
|
"JPETALLAR\n"
|
|
"William Gruesbeck Jr.\n"
|
|
"Yollande S Chang\n"
|
|
"Chandler B.\n"
|
|
"Roberto Ríos Camilo\n"
|
|
"poolisa\n"
|
|
"Luke Grant-Jones\n"
|
|
"Bhuiya\n"
|
|
"Kenneth Vargas Vargas\n"
|
|
"Shivam Agarwal\n"
|
|
"Alexander Slipak\n"
|
|
"Gary W. McCullors\n"
|
|
"HD_37432\n"
|
|
"Huy Tran\n"
|
|
"David Krantz \n"
|
|
"Tony Davis\n"
|
|
"Richie Hor\n"
|
|
"Luis Diego Flores\n"
|
|
"Felipe Lima (Sheriff)\n"
|
|
"John Merry\n"
|
|
"Syed Jamil Hussain Jafri\n"
|
|
"Randy Llandelar\n"
|
|
"Fahim Ahmed\n"
|
|
"Dan Ryan\n"
|
|
"Kyle Bauer\n"
|
|
"Michael Campbell\n"
|
|
"Matthew Gillespie\n"
|
|
"Khuram Rafique\n"
|
|
"Sean Salvadalena\n"
|
|
"steven richardson\n"
|
|
"Jarod Mohlmaster\n"
|
|
"Loc Vinh Nguyen\n"
|
|
"Rick Vaquera\n"
|
|
"Pritam Banerjee\n"
|
|
"claytondf\n"
|
|
"Andrew Chapman\n"
|
|
"Filip Štirn\n"
|
|
"Emeka Ezekoka\n"
|
|
"Steve of the family McGonigle\n"
|
|
"Eliott Stidd\n"
|
|
"Tim Peel\n"
|
|
"williamhotel\n"
|
|
"Thomas Kager\n"
|
|
"Purushotham G\n"
|
|
"Karthik Bonthu\n"
|
|
"Nathan Howard\n"
|
|
"Slobodan Nastevski\n"
|
|
"DustyWeatherby\n"
|
|
"Andrew Kotska\n"
|
|
"Wesly Inbaraj\n"
|
|
"Frantzcy Paisible\n"
|
|
"Emmett G\n"
|
|
"Finn Mann\n"
|
|
"Tariq Raza\n"
|
|
"Darick W. LaSelle\n"
|
|
"jwiggins\n"
|
|
"Jonathan Marson\n"
|
|
"Thiago Takayama\n"
|
|
"Jason Gibbs\n"
|
|
"\"THE\" James Greene\n"
|
|
"Micah Stanley\n"
|
|
"Benjamin Lutz\n"
|
|
"David Correa\n"
|
|
"Knack Black\n"
|
|
"MJ DeFilippis\n"
|
|
"Michael Dunn\n"
|
|
"jaypo\n"
|
|
"Artemio\n"
|
|
"Mike Johnson\n"
|
|
"Nic Bumgart\n"
|
|
"Randall Bradford\n"
|
|
"Wilfried Olthoff\n"
|
|
"Ben Arblaster\n"
|
|
"Mark F. Boules\n"
|
|
"Tommy \"BigDaddy\" Grigsby\n"
|
|
"Michael Jones\n"
|
|
"Krynos18\n"
|
|
"Ken Clifford\n"
|
|
"mast nishant\n"
|
|
"Furqan\n"
|
|
"Douglas R. Carirngton, Excelibrium Inc\n"
|
|
"tulley\n"
|
|
"Felix A Leiva\n"
|
|
"abrhim\n"
|
|
"Ed Vanderpool\n"
|
|
"neo_renshaw\n"
|
|
"Anders Berggren\n"
|
|
"Morgan Zahra\n"
|
|
"Grillmon\n"
|
|
"Jorgen Rhode Jensen\n"
|
|
"jerrysimila\n"
|
|
"Louis Gonzales\n"
|
|
"j.d.wegner\n"
|
|
"Jared J. Fernandez, E.I.T.\n"
|
|
"KQuinn\n"
|
|
"Felipe Alvarez Diaz\n"
|
|
"SecretServiceOO\n"
|
|
"NOSaturn\n"
|
|
"Clayton Coelho\n"
|
|
"CJCCIE25938\n"
|
|
"Anton Antony Arockiasamy\n"
|
|
"Nicholas Alessi\n"
|
|
"George Young\n"
|
|
"Shaheer Osman\n"
|
|
"Mahmud Rahman Jami\n"
|
|
"Yassine EL Jazouli\n"
|
|
"IAmBuldog\n"
|
|
"Imtiyazuddin.Shaikh\n"
|
|
"Les\n"
|
|
"Xavier Alexander Gilmet\n"
|
|
"Hikmet Terzioglu\n"
|
|
"Daniel Wichlacz\n"
|
|
"Karl Newell\n"
|
|
"Nanda Kyaw\n"
|
|
"Rafael Bianco Nacif\n"
|
|
"Nick O\'Neill\n"
|
|
"BigRhino\n"
|
|
"jeff pliska\n"
|
|
"Richard Vincent Perez\n"
|
|
"Gilberto Cloud Galvan\n"
|
|
"Sid Lorenzana\n"
|
|
"David Kumar\n"
|
|
"Ellert Hardarson\n"
|
|
"Peter Prusinowski\n"
|
|
"Pacerfan9\n"
|
|
"Jason Alan Barretta\n"
|
|
"Tyler Pell\n"
|
|
"Dan Devlin\n"
|
|
"Travis Eberhardt\n"
|
|
"Jeremy Frush\n"
|
|
"Cisc0kid\n"
|
|
"Joe A. Lourenco\n"
|
|
"JeffA\n"
|
|
"Jacqueco Peenz\n"
|
|
"Siggi Bjarnason\n"
|
|
"Samuel Ajakaiye\n"
|
|
"Georgios Ntib\n"
|
|
"Bartosz Miklaszewski \n"
|
|
"pepso100\n"
|
|
"Digit Oktavianto\n"
|
|
"Vineet Bulbule\n"
|
|
"Rui Ruivo\n"
|
|
"DWPerry\n"
|
|
"Frantisek Pupik\n"
|
|
"Christopher Robert Sutton\n"
|
|
"Casey Ajalat\n"
|
|
"Riku Pessinen\n"
|
|
"g.montoanelli\n"
|
|
"Dave Thompson\n"
|
|
"Paul Knight\n"
|
|
"Schisme\n"
|
|
"Christopher Edwards\n"
|
|
"Karel Perez Castillo\n"
|
|
"ErrorCode67\n"
|
|
"John Perry\n"
|
|
"Nick Bonifacio CCIE #38473\n"
|
|
"Matt Humphries\n"
|
|
"Nathan Miller - Youngstown, OH\n"
|
|
"Kevin D\'Arcy\n"
|
|
"CelsoAraujo\n"
|
|
"Paul Sherratt\n"
|
|
"Francis Illuzzi\n"
|
|
"Lupe SIlva\n"
|
|
"Sukhdeep Kahlon\n"
|
|
"Scott K. Bridges\n"
|
|
"Demetrius Cagampan\n"
|
|
"Jon \"The Man\" Marte\n"
|
|
"Farhan Qazi\n"
|
|
"Craig Zambra\n"
|
|
"Alexey Zhigaltsov\n"
|
|
"Josh R Blaylock\n"
|
|
"davidbarclay@nlets\n"
|
|
"Katherine McNamara\n"
|
|
"T.J. Patterson\n"
|
|
"Cash_97\n"
|
|
"David Undernehr\n"
|
|
"Andrew Conway\n"
|
|
"David Earney\n"
|
|
"Joel Bergmark\n"
|
|
"Chris DiPaola\n"
|
|
"copeland\n"
|
|
"Blair&BenedictRepuyan\n"
|
|
"Titus\n"
|
|
"Damian Mainwaring Davies\n"
|
|
"Nathanael Kenyon\n"
|
|
"Ilia Korsakov\n"
|
|
"Michael Dubery\n"
|
|
"Alex Giunta\n"
|
|
"RSaleh\n"
|
|
"Tassos Chatzithomaoglou\n"
|
|
"Franklin Valdez\n"
|
|
"loop\n"
|
|
"Ulf Bye\n"
|
|
"giantbullfrog\n"
|
|
"Luke Russell\n"
|
|
"voke\n"
|
|
"CoCoHimself\n"
|
|
"Nicholas Andrew Critten\n"
|
|
"Mahrazi Mohd Kamal\n"
|
|
"Dmitry Stashkov\n"
|
|
"Bilal Issa\n"
|
|
"Momodou Sarr\n"
|
|
"Ryan Barrett\n"
|
|
"Robin Harteveld\n"
|
|
"DMSwope\n"
|
|
"Dave Noles\n"
|
|
"Jason Salomons\n"
|
|
"Luis\n"
|
|
"LIZHAO DING\n"
|
|
"Douglas R. Musser\n"
|
|
"Jason Vizmanos\n"
|
|
"Prakash Purohit\n"
|
|
"Rafique Ahmed Narejo\n"
|
|
"Rustam Davletshin\n"
|
|
"Krzysztof Andrzej Szukała\n"
|
|
"Dimitris Armenatzoglou\n"
|
|
"Torstein Mauseth\n"
|
|
"Marius Landsem\n"
|
|
"Caio Vianna\n"
|
|
"Nauman Tariq\n"
|
|
"ZAW THANT KYAW\n"
|
|
"Graham Redish\n"
|
|
"Kinopcs\n"
|
|
"Suren Tsaturyan\n"
|
|
"Dustin Max Calderon\n"
|
|
"Man Gao\n"
|
|
"Phillip A Camera\n"
|
|
"José Luis Berlanga V.\n"
|
|
"einfachgust\n"
|
|
"Paul Lampron\n"
|
|
"Alex Presse\n"
|
|
"Jacob Johnson\n"
|
|
"Adam Troxel\n"
|
|
"Tom Dastrup\n"
|
|
"Chad Abbs\n"
|
|
"John Rubin\n"
|
|
"Cory Light\n"
|
|
"Jason Rearick\n"
|
|
"Shamikh Irshad\n"
|
|
"Kier Fretenborough\n"
|
|
"Saravana Thoppay\n"
|
|
"Roulston\n"
|
|
"Axel Siöland\n"
|
|
"Zhang Liang\n"
|
|
"Pritpal Bisla\n"
|
|
"Thien-Tam TRAN\n"
|
|
"Philippe Tang\n"
|
|
"Muawia Yasin\n"
|
|
"ErikJWells\n"
|
|
"Alan Esterman\n"
|
|
"Aju Jose\n"
|
|
"Jason R. Rokeach\n"
|
|
"Yeyo\n"
|
|
"Daniel Maxwell\n"
|
|
"Mark C Bernier\n"
|
|
"Luis Francisco Rivera Ospina\n"
|
|
"In Memory of Ben Gibbs\n"
|
|
"Mirza Zeshan Baig\n"
|
|
"Marcel Loesberg\n"
|
|
"Santoshi Rajani Kumar\n"
|
|
"Sathursan Kantharajah\n"
|
|
"Richard Harris \n"
|
|
"Jon Kolman\n"
|
|
"Robert Magrath\n"
|
|
"suguita\n"
|
|
"Sergey Solodov\n"
|
|
"Juan Gabriel Delgado Picado\n"
|
|
"Andrei Matei\n"
|
|
"Andit Tjahjo\n"
|
|
"Ian Wandless\n"
|
|
"Ismael Mamadou\n"
|
|
"Patrick Donald Bostwick\n"
|
|
"BDG\n"
|
|
"Aouachria Nassin\n"
|
|
"vdeluca-BR\n"
|
|
"Tyler Milam\n"
|
|
"Carsten Ellermann\n"
|
|
"Stunod7\n"
|
|
"TrueNie\n"
|
|
"Brody Murfin\n"
|
|
"Steven Howard Kalupson\n"
|
|
"Woodard\n"
|
|
"tr4ck3r\n"
|
|
"Andrew Walding\n"
|
|
"Eric Geib\n"
|
|
"Mark D Rametta\n"
|
|
"Adam Pinkerton\n"
|
|
"Evan Fox\n"
|
|
"Richmond Porath\n"
|
|
"Bestone Kasoloka\n"
|
|
"Sergey Kuzyurov\n"
|
|
"Warren\n"
|
|
"Conrad J. Moore\n"
|
|
"Michael Molina Lasprilla\n"
|
|
"Erik White\n"
|
|
"Michael Torres\n"
|
|
"Omrelliug A Senoj III\n"
|
|
"Jacob Bolm\n"
|
|
"Beau Daniel Jones \n"
|
|
"Maikel Mantilla\n"
|
|
"Oscar Quinonez\n"
|
|
"Xavier Lario\n"
|
|
"Stefanio Lourenço\n"
|
|
"Aaron Robinson\n"
|
|
"Adrian Gibbons\n"
|
|
"Milan P\n"
|
|
"Kristian J Francisco\n"
|
|
"Daniel Gos\n"
|
|
"Joel Lawless\n"
|
|
"Sumit Kumar\n"
|
|
"CodyPorter\n"
|
|
"Chris Gauthier\n"
|
|
"Krishna Varma\n"
|
|
"Aidan Burnett\n"
|
|
"Matthew Clarke Gordon\n"
|
|
"Ali Youssef Ahmad\n"
|
|
"Lauren Brittany Taylor\n"
|
|
"Avery Abbott\n"
|
|
"WANG KAI\n"
|
|
"gila\n"
|
|
"Michael Molina Lasprilla Jr\n"
|
|
"Thomas J Tablada\n"
|
|
"Valentin Vanguelov\n"
|
|
"Mario Kool - Netherlands\n"
|
|
"Leigh Bogardis\n"
|
|
"Johnny T\n"
|
|
"RDB\n"
|
|
"Aaron P. Clark\n"
|
|
"najouaimtiyaz shaikh\n"
|
|
"Durmus -dprogrammer- Celep\n"
|
|
"Marc van Lier\n"
|
|
"Felipe Soares de Souza\n"
|
|
"ccie4451\n"
|
|
"Dustin L. \'Stonewolf\' Derry\n"
|
|
"Rich Johnson\n"
|
|
"Infrastructure Solutions LLC\n"
|
|
"Niklas Riddarlo\n"
|
|
"Waleed Alamodi\n"
|
|
"Adolfo Aksel\n"
|
|
"Schladi\n"
|
|
"Tomasz Kacprzynski\n"
|
|
"SHU2\n"
|
|
"Nathan Hitchcock\n"
|
|
"RefAndante\n"
|
|
"Ade Alder\n"
|
|
"Raphael THIERRY\n"
|
|
"Mr Morgan\n"
|
|
"AurieP\n"
|
|
"Jason Bishop\n"
|
|
"Pavel Kilipko\n"
|
|
"Chris Albert Beltran\n"
|
|
"Manny Franqueira\n"
|
|
"foolproofalibi\n"
|
|
"gregwards1987\n"
|
|
"Aaron Day\n"
|
|
"kmaslashdevslashnull\n"
|
|
"Leon Cassidy (NZ)\n"
|
|
"John Dowling\n"
|
|
"Ramon Jr Garcia Yu\n"
|
|
"zdenotim\n"
|
|
"Prasad Kunjeer\n"
|
|
"Felipe.Ferrugem\n"
|
|
"Simone Groce\n"
|
|
"Sinan Sulaiman\n"
|
|
"JEFF HANSEN\n"
|
|
"Dániel Okos\n"
|
|
"Phillip D Larson\n"
|
|
"Dickson Wong \n"
|
|
"Gaurav\n"
|
|
"becakgurun\n"
|
|
"Jun Liu\n"
|
|
"Mohamed Faisal CCIE#36553\n"
|
|
"Rose Parnsoonthorn\n"
|
|
"Jeremiah Land\n"
|
|
"Joh4xx0rn Andersson\n"
|
|
"Mike \"ChimChim\" Pritchard\n"
|
|
"Dan W\n"
|
|
"Dhanushka Chandrasiri\n"
|
|
"Steve Redford\n"
|
|
"Keith Shum\n"
|
|
"Sean McQuilling\n"
|
|
"Simon Given\n"
|
|
"Colm Kilmartin\n"
|
|
"Marius Geonea\n"
|
|
"SteveBeans\n"
|
|
"Kwaggaken\n"
|
|
"Ben Murray (@Cache22)\n"
|
|
"LaKellyEllaDustyMath\n"
|
|
"PotatoGim\n"
|
|
"Pikador*Hopto.hu\n"
|
|
"Mustafa\n"
|
|
"Liqua_Thrushbane\n"
|
|
"GNS34624\n"
|
|
"juan\n"
|
|
"Michael Klose\n"
|
|
"Tuan Huynh\n"
|
|
"Peter E Gregg\n"
|
|
"thosi\n"
|
|
"Salmanees\n"
|
|
"Renjith G Nair\n"
|
|
"Saqib Raza\n"
|
|
"Jose Ignacio Jorquera\n"
|
|
"Showpanda\n"
|
|
"Syed Mohd Mohsein\n"
|
|
"Eric Yoakum\n"
|
|
"Alex Beal\n"
|
|
"Ronald Boestfleisch Jr.\n"
|
|
"Moussa BRAHIMI\n"
|
|
"Lee Gardner\n"
|
|
"Robbins\n"
|
|
"PaulEyre\n"
|
|
"Geir Hogberg\n"
|
|
"Dimitrios Misichronis\n"
|
|
"Boris Bozicevic\n"
|
|
"Saleh Batouq\n"
|
|
"William Walton\n"
|
|
"wolly\n"
|
|
"Gopinath v\n"
|
|
"Hamad Khalaf\n"
|
|
"David Dietrich\n"
|
|
"Jericho Gutierrez\n"
|
|
"Cameron Exley\n"
|
|
"Daniel Grubbs\n"
|
|
"Stephen Savaso\n"
|
|
"Marcus Morais\n"
|
|
"Roilen Palmer\n"
|
|
"David Bradwell\n"
|
|
"Adrian Lizuniga\n"
|
|
"Thomas Meinhardt\n"
|
|
"Mohammed Arshad Irfan\n"
|
|
"Kevin R. Owens II\n"
|
|
"Xiaodong Zhang\n"
|
|
"Suman Saha\n"
|
|
"GoldenBough\n"
|
|
"Jeff Nagel\n"
|
|
"Paul Regan\n"
|
|
"Andrew Haase\n"
|
|
"Gregory Bruccoleri\n"
|
|
"Ian Tuten\n"
|
|
"Joshua Senft\n"
|
|
"Pierre \"Ghostdog\" Blanchet\n"
|
|
"Chris Brown\n"
|
|
"Luis Felipe Sass\n"
|
|
"Dimitar L. Yosifov\n"
|
|
"Matt Heim\n"
|
|
"Codey Oxley\n"
|
|
"J.D. Wegner\n"
|
|
"AJ\n"
|
|
"Brannen Taylor\n"
|
|
"Billy Calderon\n"
|
|
"Carl Thompson\n"
|
|
"Alexandre Paradis\n"
|
|
"Fahad Hamid Q Aljuhani\n"
|
|
"Bruno HAON\n"
|
|
"AerOne\n"
|
|
"Manuel Rojas\n"
|
|
"Jason Brammer\n"
|
|
"Jason M Heath\n"
|
|
"Christopher Bellman\n"
|
|
"Jay Drennen\n"
|
|
"Adam Born\n"
|
|
"Bootcamp20\n"
|
|
"Fabrício Pimenta de Avila\n"
|
|
"Stephen Lynch\n"
|
|
"Olivia Frances Potter\n"
|
|
"Mitch Dolan\n"
|
|
"Seer Snively\n"
|
|
"Taígo\n"
|
|
"zerny\n"
|
|
"Kevin Sheahan\n"
|
|
"khurshid hassan khan\n"
|
|
"Marcellus Hunt\n"
|
|
"Fabricio Neves\n"
|
|
"Hany Garass\n"
|
|
"Bryce Nicholls\n"
|
|
"Hristo Neykov\n"
|
|
"Leart Sapun\n"
|
|
"Tony M Taylor\n"
|
|
"Scott Holwerda\n"
|
|
"Troy Perkins\n"
|
|
"Mason Feuhrer\n"
|
|
"Jonathan W Cole\n"
|
|
"Pat Golob\n"
|
|
"Pendragon\n"
|
|
"Stuart(big Stu) Cameron\n"
|
|
"FernandoLuisJanuario\n"
|
|
"Tim Davis\n"
|
|
"Eric John Fiedler\n"
|
|
"ciscopotato\n"
|
|
"TJ Plummer\n"
|
|
"Rawhide\n"
|
|
"Brent \"B\" Stevenson\n"
|
|
"Kyle Byrne\n"
|
|
"Hutch Theriault\n"
|
|
"Tyler Robertson\n"
|
|
"sharifraaf\n"
|
|
"thepacketgeek\n"
|
|
"Matt Hill\n"
|
|
"Zayed Syed Bukhari\n"
|
|
"Joe Uhl\n"
|
|
"Eric Sundquist\n"
|
|
"Jason D. Ladd\n"
|
|
"Brooke Lexi\n"
|
|
"Dave Kretzmer\n"
|
|
"Mike Gatti\n"
|
|
"G. David Malner\n"
|
|
"Evelyn Bowman\n"
|
|
"Stephen \"Mr. Poker\" Schroeder\n"
|
|
"Christian Fernandez Herrero\n"
|
|
"Sten-Erik Winborg\n"
|
|
"Zhengzhong\n"
|
|
"jose olivo\n"
|
|
"Julian West\n"
|
|
"Marek Kupsta\n"
|
|
"Albert PR\n"
|
|
"Lucian Cretu\n"
|
|
"dhuzen\n"
|
|
"nycsilvaj\n"
|
|
"Alex Nieves\n"
|
|
"Anthony Luis Cirillo\n"
|
|
"A318A\n"
|
|
"Brian Bristlin\n"
|
|
"Judd\n"
|
|
"D. Paul Hemphill\n"
|
|
"Trevor Roberts Jr\n"
|
|
"Genaro \n"
|
|
"Justin Seabrook-Rocha\n"
|
|
"Ramogpal Reddy M\n"
|
|
"Ramgopal Reddy M\n"
|
|
"Anthony Smith\n"
|
|
"Amhar Saputra\n"
|
|
"Fred W Schulze\n"
|
|
"Mojoman\n"
|
|
"Edwinrg00\n"
|
|
"Bruno Fagioli\n"
|
|
"Diego Morandini\n"
|
|
"Garcia Rice\n"
|
|
"davenaisbitt\n"
|
|
"Bharath Kumar Sole\n"
|
|
"Chad Routh\n"
|
|
"Daniel Dias\n"
|
|
"Robert Ankeny\n"
|
|
"Dean Stamler\n"
|
|
"Ofer Ben Zvi\n"
|
|
"Marcus Beaman\n"
|
|
"Jakub Pullmann\n"
|
|
"Larry Nicholson\n"
|
|
"chekoceronn\n"
|
|
"GeorgeTrip\n"
|
|
"Leighton Andrews\n"
|
|
"James P Feely\n"
|
|
"Ed Walsh, Jr.\n"
|
|
"Dennis Janak\n"
|
|
"Sylvain B\n"
|
|
"Eli Haiby\n"
|
|
"CiscoCowKiller\n"
|
|
"Wong Khai Loon\n"
|
|
"Mike Pierce\n"
|
|
"Rodrigo de Paula Cordeiro\n"
|
|
"steveo\n"
|
|
"droeseler\n"
|
|
"Michael Callahan\n"
|
|
"christy b mathai\n"
|
|
"Nicholas Nelson\n"
|
|
"Shawn Cunningham\n"
|
|
"Randy L. Betke\n"
|
|
"Nuno Cruz\n"
|
|
"Hamid Ben Zaina\n"
|
|
"Janet Knotts\n"
|
|
"Eduardo Acuna Salas\n"
|
|
"Shamal Weerakoon\n"
|
|
"Scott McAndrew\n"
|
|
"ajmatson\n"
|
|
"Ramin Asghari Ardebili\n"
|
|
"Joel Jones\n"
|
|
"True St. Thomas\n"
|
|
"Joshua Baker\n"
|
|
"Feix A Leiva\n"
|
|
"sirclicksalot\n"
|
|
"Hovik Mosessi\n"
|
|
"NguyenTan512\n"
|
|
"John M. McCreight\n"
|
|
"Philip Weekly\n"
|
|
"Dusty Roy\n"
|
|
"CFESH\n"
|
|
"iWasimAbbas\n"
|
|
"cstizza\n"
|
|
"Hans Ramdien\n"
|
|
"Itay Shem-tov\n"
|
|
"dakidfresh1\n"
|
|
"Marcelo Pires de Souza - MAPIS\n"
|
|
"Daniel A. Zoquier\n"
|
|
"Mihael Hutton\n"
|
|
"RobPrescott\n"
|
|
"Vinicius Guimaraes\n"
|
|
"Kaylee May Fox\n"
|
|
"DannyRodriguez79\n"
|
|
"Nicholas Wysocki\n"
|
|
"Tyler Potenberg\n"
|
|
"Gabe Rivas\n"
|
|
"Keunwoo Nam\n"
|
|
"Aldo Francescon\n"
|
|
"NetJimB\n"
|
|
"Jihan\n"
|
|
"Bryan Cordoba Sanchez\n"
|
|
"Anton Lindman\n"
|
|
"Thomas Siczek (Poland)\n"
|
|
"lblakesley\n"
|
|
"Mike W. Burks\n"
|
|
"James Stephens\n"
|
|
"@MacBachi\n"
|
|
"Michael Higgins\n"
|
|
"Rajendra Thuvarakan\n"
|
|
"Robert Lund\n"
|
|
"Christopher Lee Shanks\n"
|
|
"Brian30024\n"
|
|
"Dan Tedrick\n"
|
|
"James Bothe\n"
|
|
"lewiryan\n"
|
|
"jecrane\n"
|
|
"Titus Warui\n"
|
|
"Aditya Limbu\n"
|
|
"Erik Szlaur\n"
|
|
"Bishop Betteridge\n"
|
|
"Garth \"Stogyman\" Fish\n"
|
|
"Dr Vivek Bannore\n"
|
|
"Tony Bushong\n"
|
|
"Szymon Kufel\n"
|
|
"Muzeyen Hassen\n"
|
|
"Blacho\n"
|
|
"ErmiasBekele\n"
|
|
"Jose Miguel Montoya Sierra\n"
|
|
"Greg Murphy\n"
|
|
"Robin Williams \n"
|
|
"RichieB\n"
|
|
"RFK786\n"
|
|
"Edson Raya\n"
|
|
"Nathan J Downes\n"
|
|
"Eduardo Cardoso\n"
|
|
"Julian Ben\n"
|
|
"Ethan William Hussong\n"
|
|
"Richard Rigby\n"
|
|
"Gage Brewer\n"
|
|
"Adeola Adegbolagun\n"
|
|
"Faith Solutions pvt ltd, Maldives\n"
|
|
"Steve Cameron\n"
|
|
"Kevin Le\n"
|
|
"hnamanh \n"
|
|
"Jesse Stilwell\n"
|
|
"Chandrasekar Ramachandran\n"
|
|
"Lee Shouse\n"
|
|
"Kyle \"Mr. CrossFit\" Moschetto\n"
|
|
"Engr. Jeffrey B. Anarna\n"
|
|
"Nicholas D. Yates\n"
|
|
"Stefan Nagy\n"
|
|
"Jason DeGroote\n"
|
|
"Jeremy Corkery\n"
|
|
"Harry Lewins\n"
|
|
"Ashwinkumar CS\n"
|
|
"Rahul Long\n"
|
|
"Cloyd Crisostomo\n"
|
|
"Ivan Hollins\n"
|
|
"Eslam T. Mohamed\n"
|
|
"Roger Morehouse\n"
|
|
"Darrel Perucho\n"
|
|
"Trent Scholl\n"
|
|
"Dinesh Seyyadri\n"
|
|
"Joe Frixon\n"
|
|
"Thineshan\n"
|
|
"Gabriel Ciocan\n"
|
|
"Eric Stratton \"OTTER\"\n"
|
|
"ALEKSANDR ZASADYUK\n"
|
|
"RStuivenbergNL\n"
|
|
"MattE\n"
|
|
"Peter Joseph\n"
|
|
"Silviu Romonti\n"
|
|
"Haidar Noah \n"
|
|
"Alexandre Gnutzmann\n"
|
|
"Robert Mikołajczyk\n"
|
|
"Francesco Benucci\n"
|
|
"Eduardo Luditza Quintal\n"
|
|
"Nirav Dave\n"
|
|
"Luciano Barros\n"
|
|
"Brewhound\n"
|
|
"Tedel Baca\n"
|
|
"Odenike Taiye\n"
|
|
"Myash\n"
|
|
"DreamVision Networks LLC\n"
|
|
"Pablo Lues\n"
|
|
"Rayhiyaan\n"
|
|
"Stephen R Catto\n"
|
|
"Petr Bonbon Adamec\n"
|
|
"Arek Wrobel\n"
|
|
"Jasper Brouwer\n"
|
|
"Fyase\n"
|
|
"Richard Rebman\n"
|
|
"bgardner15\n"
|
|
"LishanMirando\n"
|
|
"Paul Vila\n"
|
|
"Juan David Ruiz\n"
|
|
"John_Shoffeitt\n"
|
|
"Jason Punda\n"
|
|
"Radoslaw Gorski\n"
|
|
"AJ NOURI\n"
|
|
"Mauro de Sousa\n"
|
|
"Alan Young\n"
|
|
"Marcin Kapturski\n"
|
|
"Ban Wong\n"
|
|
"AndresZ\n"
|
|
"configbytes\n"
|
|
"Edwin Campbell\n"
|
|
"Omberai Dzingirai\n"
|
|
"Felippe Dias\n"
|
|
"SOSSOUGAH ALEXIS\n"
|
|
"Achiraf CHARIF\n"
|
|
"Junho Lee\n"
|
|
"Bavo Seesink\n"
|
|
"Brent Sieling\n"
|
|
"Nicholas G Zerwig\n"
|
|
"Renato de Pierri SP Brazil\n"
|
|
"EdWillson\n"
|
|
"Bladerunner\n"
|
|
"Rob Boyko\n"
|
|
"Jonathan Isley\n"
|
|
"Tyler Ruckinger\n"
|
|
"Lachlan Holmes\n"
|
|
"Ariel Pablo Roza\n"
|
|
"Shahin Ahmadi\n"
|
|
"zuozhenqing\n"
|
|
"Ratanajantra\n"
|
|
"Irfan Zaffarulla\n"
|
|
"David P. Schuetz\n"
|
|
"Tonycarreno\n"
|
|
"Bruno Watt\n"
|
|
"Guy Winfrey\n"
|
|
"PHAung\n"
|
|
"Berny Ramirez Gonzalez\n"
|
|
"Liao Hsueh Hung\n"
|
|
"Derrick Nguyen\n"
|
|
"Dave Powers\n"
|
|
"Milap Joshi\n"
|
|
"Noel Bravo\n"
|
|
"Ayoob Eshaq\n"
|
|
"Binuraj Rajappan\n"
|
|
"Richard Wambua\n"
|
|
"mocotel\n"
|
|
"Paul S Payne\n"
|
|
"Anand Shah\n"
|
|
"Dawid Mitura\n"
|
|
"Kryssar approves of this software!\n"
|
|
"Bruno Galhoufa\n"
|
|
"David Poulton\n"
|
|
"Che Ge\n"
|
|
"Saed Zahedi\n"
|
|
"thejapa\n"
|
|
"PJ Archer\n"
|
|
"Marcos Yanase\n"
|
|
"cwmdavies\n"
|
|
"Wellington Ferrraz\n"
|
|
"Derek Nückel\n"
|
|
"alexandros\n"
|
|
"Jonathan Stevenson\n"
|
|
"Bolanu Andrei\n"
|
|
"M.Elhassan\n"
|
|
"EBRAHIM DARYA\n"
|
|
"COLTAR\n"
|
|
"Eduardo Honorato\n"
|
|
"Marcelo Lyra Bastos\n"
|
|
"George G\n"
|
|
"Clint Collins - Oziboys\n"
|
|
"Pradeep George\n"
|
|
"Steve Kittinger\n"
|
|
"cmbellgardt\n"
|
|
"Ramesh\n"
|
|
"Nicki Kristensen\n"
|
|
"Jose D. Mora\n"
|
|
"Seydou Belemvire\n"
|
|
"J. Pell\n"
|
|
"Javed Rehman\n"
|
|
"lwdbos\n"
|
|
"Chun K Lam\n"
|
|
"J. David Gregg\n"
|
|
"Chris Lääng\n"
|
|
"Armstrong Ndemalia\n"
|
|
"Shoaib Zahidi\n"
|
|
"Rogerio Mota\n"
|
|
"Ignacio Hernandez\n"
|
|
"Marcin Krajnik\n"
|
|
"ChettiandNatti\n"
|
|
"Elias Sisya\n"
|
|
"Jacob Henson\n"
|
|
"Mike McPhee\n"
|
|
"Joe Kraxner\n"
|
|
"A Witherspoon\n"
|
|
"Rasmus Elmholt\n"
|
|
"Tom Penrose\n"
|
|
"Ivan Velasquez\n"
|
|
"Michael Quill\n"
|
|
"carlitosP\n"
|
|
"larrybpsu\n"
|
|
"Gabriel John\n"
|
|
"Blake Barnett\n"
|
|
"robeson\n"
|
|
"Robert Ramoutar \n"
|
|
"Anthony J Wathen\n"
|
|
"Jayir Mansuclal\n"
|
|
"Luke Evans\n"
|
|
"VahidRezaMehrasaGNS38826\n"
|
|
"Damian Roche\n"
|
|
"Gerry\n"
|
|
"Jan-Erik Svendsen\n"
|
|
"YuRJ\n"
|
|
"Michael Crouch\n"
|
|
"NightmareFH\n"
|
|
"Clemens Dubbick\n"
|
|
"HishamHowege\n"
|
|
"Tome Spirit Petkovski\n"
|
|
"Osmo\n"
|
|
"Japd\n"
|
|
"Dane Freeman\n"
|
|
"netwrklab\n"
|
|
"Simon Boam\n"
|
|
"ComputerRick\n"
|
|
"Gabriel DeMarco\n"
|
|
"GigaRacer\n"
|
|
"Cat Rodery\n"
|
|
"Jeff Breon\n"
|
|
"mikynik\n"
|
|
"Stefanio Lourenco da Silva\n"
|
|
"Denny Höglund\n"
|
|
"Steven Vlahakis\n"
|
|
"Przemek Rogala\n"
|
|
"Harlen Zuluaga\n"
|
|
"Ronaldo Echevenguá\n"
|
|
"Christian Leonardelli\n"
|
|
"高渐星\n"
|
|
"earth\n"
|
|
"KyungRyul\n"
|
|
"Dmitry MBR Sokolov\n"
|
|
"mohammed fouad shat\n"
|
|
"Josh Gomez\n"
|
|
"James Packard\n"
|
|
"Ben Millington-Drake\n"
|
|
"rluisem\n"
|
|
"Michael McNamara\n"
|
|
"Tubejockey\n"
|
|
"Nick Henderson\n"
|
|
"esc0\n"
|
|
"Bradford Wright\n"
|
|
"Frank S\n"
|
|
"Vitaliy Zinatov\n"
|
|
"Peter Tavenier\n"
|
|
"Guillermo Rodriguez\n"
|
|
"Charles Cecela\n"
|
|
"ali abdulsalam\n"
|
|
"NSandone\n"
|
|
"Ismael Mustapha\n"
|
|
"Jacob Uecker\n"
|
|
"plex\n"
|
|
"ciscoraz\n"
|
|
"Mehul Patel \n"
|
|
"Abbas Khalil\n"
|
|
"JAVID IBRAHIMOV\n"
|
|
"Brandon Porter\n"
|
|
"dragon\n"
|
|
"Thor\n"
|
|
"Lukasz Teodorowski\n"
|
|
"John Montgomery\n"
|
|
"Erin Clay Smith\n"
|
|
"James David Schell\n"
|
|
"Antonello Moneta\n"
|
|
"IE-Guru\n"
|
|
"Alex \"P.h.o.t.o\" Drozdov\n"
|
|
"Amelie Haley\n"
|
|
"Leonardo Migliorini\n"
|
|
"Ole Morten Aaslund\n"
|
|
"Anishkumar Kurup\n"
|
|
"Joseph I Gilbert\n"
|
|
"Mike Scioscia\n"
|
|
"Christopher David Keith Garrett\n"
|
|
"Leonardo Magbuhos Jr\n"
|
|
"Francisco Alfaro\n"
|
|
"Jude Kenneth Bickerton Lymn\n"
|
|
"ir0ck\n"
|
|
"BrettWCook\n"
|
|
"Ayokunle Adekanle\n"
|
|
" HsinHong,Huang\n"
|
|
"Tomi Olamigoke\n"
|
|
"IrishFighter\n"
|
|
"Dennis Dumont\n"
|
|
"Josh Micone\n"
|
|
"Antonio B Gerbino\n"
|
|
"F7EE\n"
|
|
"Jon Sawyer\n"
|
|
"Brian Matson\n"
|
|
"Erik Burdeaux\n"
|
|
"Andre Jones\n"
|
|
"Karl Fukushima\n"
|
|
"Rajesh.R\n"
|
|
"Mohamed Furqan Firdous\n"
|
|
"Sean B Crites\n"
|
|
"Eulic McGee\n"
|
|
"Noel Rivera\n"
|
|
"Paul \'Twig\' Firth\n"
|
|
"Rob Michel\n"
|
|
"BrockSouza808\n"
|
|
"Kravnik\n"
|
|
"jajulius\n"
|
|
"Marcin Zablocki\n"
|
|
"Gian Karlo Andrade\n"
|
|
"Aaron Picht\n"
|
|
"XIAiYIP\n"
|
|
"Maciej sk84life Smolak\n"
|
|
"Ashleigh Wilson\n"
|
|
"Robin Harper\n"
|
|
"Keith Barker\n"
|
|
"Cristian Sima\n"
|
|
"AKAHAW\n"
|
|
"Rodrigo Dominguez\n"
|
|
"Joejaders971\n"
|
|
"Joe Buemi III\n"
|
|
"McAnder\n"
|
|
"Sauceboss24\n"
|
|
"POORNA SHASHANK PARVATALA\n"
|
|
"Rutvij Brahmbhatt\n"
|
|
"Axis\n"
|
|
"V O\' Rourke\n"
|
|
"Karim Al-Azzawi\n"
|
|
"Eduardo Romero Peña\n"
|
|
"Vandeth Nop\n"
|
|
"Mortch\n"
|
|
"Moidin Kunhi\n"
|
|
"Wei Shu\n"
|
|
"Patrick den Hoed\n"
|
|
"Kurauone Mahachi\n"
|
|
"Kurauone B. Mahachi\n"
|
|
"Catalin Butiseaca\n"
|
|
"Debayan\n"
|
|
"Gordon Fountain\n"
|
|
"Saikeo Kavhanxay\n"
|
|
"Danilo Bottino\n"
|
|
"Viliam Schrojf\n"
|
|
"Kumaralingam\n"
|
|
"LeighHarrison\n"
|
|
"Eduardo Campos\n"
|
|
"John Voirol\n"
|
|
"John Ellison\n"
|
|
"Juan Larriega\n"
|
|
"Steven Perée\n"
|
|
"Aivis Purvinsh\n"
|
|
"Rizwan Hanif\n"
|
|
"Reynaldo Gonzalez II\n"
|
|
"Pipeiden\n"
|
|
"Michael Aird\n"
|
|
"@espennilsen\n"
|
|
"Denilsod\n"
|
|
"gizmo\n"
|
|
"Josh1984\n"
|
|
"Tobi Adesanoye\n"
|
|
"Randy Damron\n"
|
|
"Pedro Collado\n"
|
|
"Arwa\n"
|
|
"Nazish Ahmed\n"
|
|
"Nicolas POIRIER\n"
|
|
"Kostas Gerakaris\n"
|
|
"Peter\n"
|
|
"John Jeremy Skog Sullivan\n"
|
|
"Todd Snyder\n"
|
|
"Tony Virath\n"
|
|
"Oscar Reyes Garcia\n"
|
|
"Arturas Zalenekas\n"
|
|
"javalogicuser\n"
|
|
"Andrew Baughan\n"
|
|
"P. JH. Pelletier\n"
|
|
"MES\n"
|
|
"Marlon Zackery\n"
|
|
"Loyd W. Altebaumer\n"
|
|
"Josh Hitt\n"
|
|
"GNS LLC\n"
|
|
"Brent Andrews of Trinidad & Tobago\n"
|
|
"Marek Macovsky\n"
|
|
"Stumper\n"
|
|
"Jan Sidlo\n"
|
|
"Vinesh Raniga\n"
|
|
"Denis \"GRinch\" Karpushin\n"
|
|
"Christos Cambanellis\n"
|
|
"Sylvester Kolakowski\n"
|
|
"Liam and Quinn Densmore\n"
|
|
"Jacco Rorman\n"
|
|
"Rüdiger\n"
|
|
"Rc7200\n"
|
|
"Nicholas McManamy\n"
|
|
"Elvin Baez\n"
|
|
"Dai Yiru\n"
|
|
"Matt Engelbrecht\n"
|
|
"gerald greer\n"
|
|
"DR MAHESH KUMAR\n"
|
|
"Matthew Longwell\n"
|
|
"Gordon Murray\n"
|
|
"Steven A. Wilson\n"
|
|
"Jose Bracero\n"
|
|
"ireDave\n"
|
|
"Torgny Holmlund\n"
|
|
"Craig Timchak\n"
|
|
"John Mathews\n"
|
|
"Joshua P Roybal\n"
|
|
"scoty1\n"
|
|
"Oscar Dotel\n"
|
|
"Aaron Bauman\n"
|
|
"CIOBY\n"
|
|
"Alexey Zhukov CCIE#36822\n"
|
|
"Omar Coeto Hernandez\n"
|
|
"Jonathan King\n"
|
|
"Carlos Pata Oi! Munoz\n"
|
|
"Tiffany A. Whittington\n"
|
|
"Martin Steele\n"
|
|
"Dizzydonut\n"
|
|
"gutonjusa\n"
|
|
"Jay Shepherd\n"
|
|
"Song Kim\n"
|
|
"Charles A Moore\n"
|
|
"Kevin Louie\n"
|
|
"Shane Walton\n"
|
|
"Jan Barkawitz\n"
|
|
"Chris Stewart\n"
|
|
"Cole Two Bears\n"
|
|
"Taz\n"
|
|
"Chris Adams\n"
|
|
"Brian Rodriguez\n"
|
|
"Johnoel Stafford\n"
|
|
"Janmesh Jani`\n"
|
|
"Jeff Grimm\n"
|
|
"John L. Ricketts, Ph.D.\n"
|
|
"George Watkins\n"
|
|
"Abdul Bajaber\n"
|
|
"Brandon Bennett\n"
|
|
"Daniil Yanov\n"
|
|
"Al Reid\n"
|
|
"Rob the animal Steers\n"
|
|
"cargostud\n"
|
|
"cjf de kievith\n"
|
|
"Aaminah H Rashid\n"
|
|
"Eric Park\n"
|
|
"Muhammad Shehab\n"
|
|
"Amit\n"
|
|
"Aki Pap\n"
|
|
"Michael Doe\n"
|
|
"Todor Bozhinov\n"
|
|
"CraigThomsonSCOTLAND\n"
|
|
"MarkThomas \n"
|
|
"Eric Davis\n"
|
|
"Yuta G. Shimizu\n"
|
|
"Arthit Chinnachot\n"
|
|
"5UCC355\n"
|
|
"Patrick van Bennekom\n"
|
|
"Ricardo Oto Engelmann\n"
|
|
"Marcus B. Ullrich\n"
|
|
"Douglas Wagner\n"
|
|
"Artiom Lichtenstein\n"
|
|
"Chad Pembleton\n"
|
|
"Zhandos Shalmanov\n"
|
|
"Miguel Fuentes Gonzales\n"
|
|
"JamesCawte\n"
|
|
"Marcello71\n"
|
|
"Ali Fadhl\n"
|
|
"ALI FADHL\n"
|
|
"DAlicea\n"
|
|
"Dion.I.Seuss\n"
|
|
"Antoine Reid\n"
|
|
"Richard Kok\n"
|
|
"Soe Naing \n"
|
|
"Simon Jack\n"
|
|
"Nick Morrison\n"
|
|
"Dennis R. Miranda\n"
|
|
"Rameshbabu\n"
|
|
"Bryan Kosten\n"
|
|
"Tim Potticary\n"
|
|
"Thomas Knowles\n"
|
|
"el3ctron\n"
|
|
"Gerard.v.Geffen\n"
|
|
"lombers\n"
|
|
"waqar\n"
|
|
"kakalo\n"
|
|
"Michael Magnus\n"
|
|
"Brent Walter\n"
|
|
"Gnani\n"
|
|
"Ishan Arora\n"
|
|
"Dennis Pham\n"
|
|
"Emanuel Jose Hernandez\n"
|
|
"Alex Dumitrescu\n"
|
|
"Jonathan Els\n"
|
|
"Modathir Bashir\n"
|
|
"Todd Albiston\n"
|
|
"Daniel Morales (RCL)\n"
|
|
"Flaviano Reis\n"
|
|
"Mike H.\n"
|
|
"Elijah S. Rodriguez\n"
|
|
"imperorr\n"
|
|
"Phill Johntony\n"
|
|
"ChulhansOfTrinidad\n"
|
|
"Celia\n"
|
|
"Christopher Fata\n"
|
|
"Vince Ward\n"
|
|
"Ricky Innes\n"
|
|
"Nizar Hamoudah\n"
|
|
"Salman Chougle\n"
|
|
"Darpan Gadhiya\n"
|
|
"Watashi No Kamei\n"
|
|
"CCIE#18444\n"
|
|
"Kevin Eze\n"
|
|
"strontiumdog\n"
|
|
"David Alpizar\n"
|
|
"Suelzwurst\n"
|
|
"Victor M Hanna\n"
|
|
"Abdullah\n"
|
|
"Sahir Algharibih\n"
|
|
"Jimmy\n"
|
|
"Andrew Victor Godfrey\n"
|
|
"tom.meadows\n"
|
|
"laljohnson\n"
|
|
"ShawayneD\n"
|
|
"Jason Huseman\n"
|
|
"Kristian L Brown\n"
|
|
"Syed Abbas Ali\n"
|
|
"RMasuda\n"
|
|
"Hooman.Abbasi\n"
|
|
"Marty Nelson\n"
|
|
"Harjinder Singh\n"
|
|
"rjbanker\n"
|
|
"Josh Barenthin\n"
|
|
"TheSorrow\n"
|
|
"Mark Ducote\n"
|
|
"CedarLee\n"
|
|
"Mayank Nauni\n"
|
|
"Richard (Tricky) Town\n"
|
|
"Mathieu Poussin\n"
|
|
"Constantin Mihuta \n"
|
|
"LikeIT\n"
|
|
"Olrik Lenstra\n"
|
|
"Georgios Pelekanos\n"
|
|
"FONTAINE Aurélien\n"
|
|
"Mohamad Yehia Siblini\n"
|
|
"Bryan Lurer\n"
|
|
"Gianremo Smisek\n"
|
|
"Mark (Noof) Ducote\n"
|
|
"Michael Routledge\n"
|
|
"d0gbert\n"
|
|
"HollisDarby\n"
|
|
"Bert\n"
|
|
"Mohammed Kamal\n"
|
|
"Brandon Glaze\n"
|
|
"FlonMaloku\n"
|
|
"Tameem ALjanabi\n"
|
|
"Fabrizio Micucci\n"
|
|
"Paul Burmeister\n"
|
|
"Ian Bartels\n"
|
|
"kalo.evang\n"
|
|
"Yan Cote\n"
|
|
"Nicholas Vogtman\n"
|
|
"Edgar Fernando Monroy\n"
|
|
"HIM\n"
|
|
"igat78\n"
|
|
"Alfredo Pasigan Salipot\n"
|
|
"Artem N Kuznetsov\n"
|
|
"Siem Hermans\n"
|
|
"Tony Marrazzo\n"
|
|
"Josh Lowe @ UOIT\n"
|
|
"ziaul\n"
|
|
"Bahman Arbabzadeh\n"
|
|
"Hussain A.Aziz Al Alwani\n"
|
|
"githure\n"
|
|
"Stephen Snively\n"
|
|
"David Gierke\n"
|
|
"James Julier\n"
|
|
"David Bell\n"
|
|
"Ashkan\n"
|
|
"Kamaleldin Sadik\n"
|
|
"Mike Dupuis\n"
|
|
"Jacques Baribeault\n"
|
|
"Ait bennour\n"
|
|
"Abrhim\n"
|
|
"N1029676\n"
|
|
"Major Dallas\n"
|
|
"Pedro A. Collado\n"
|
|
"Luca Zanin8\n"
|
|
"Karl Billington\n"
|
|
"Jared Murrell\n"
|
|
"RhoninXPowers\n"
|
|
"Ali Abed\n"
|
|
"Lee Hutchings\n"
|
|
"Mesikoo Kamali\n"
|
|
"Kanwar Muhammad Zeeshan\n"
|
|
"Dan West\n"
|
|
"Joshua Hublar\n"
|
|
"Hameed Alzahrani\n"
|
|
"Kev Ward UK\n"
|
|
"Jon Waters\n"
|
|
"Mika Ilvesmaki\n"
|
|
"Patrick McMichael\n"
|
|
"Ron Cannella\n"
|
|
"James McCutcheon\n"
|
|
"Russel Crozier\n"
|
|
"ValMor\n"
|
|
"Maximilian Lehrbaum\n"
|
|
"RiCor874\n"
|
|
"Russell Cassidy\n"
|
|
"Sherwin A. Crown\n"
|
|
"Jim \"The Great Mullet\" Rethmann\n"
|
|
"Ovunc Alper Mert\n"
|
|
"Glenn Tobey\n"
|
|
"kjsrandhawa\n"
|
|
"LeeJBurton\n"
|
|
"Zygimantas Vrubliauskas\n"
|
|
"Mike Manning\n"
|
|
"Andrew C Bodine\n"
|
|
"Edward Beheler\n"
|
|
"David Monteclaro\n"
|
|
"yasir\n"
|
|
"Matt Wardle\n"
|
|
"Kevin Menzel\n"
|
|
"Jude Wu\n"
|
|
"Richard Alvarez\n"
|
|
"Jay Shah\n"
|
|
"Alexander E. Deems AKA TSDOI\n"
|
|
"SOMANDAC\n"
|
|
"Mark Degner\n"
|
|
"Paul McParland\n"
|
|
"cham00ko\n"
|
|
"Jeffrey Charlite\n"
|
|
"bootcamp20\n"
|
|
"Nilson Medrano\n"
|
|
"LoveKatyaPa\n"
|
|
"Sanjay Kumar Patel\n"
|
|
"Kirk J Iles\n"
|
|
"Munyaradzi Manonose\n"
|
|
"Munyaradzi Ncube\n"
|
|
"Afrasinei Doru Mihai\n"
|
|
"patrez\n"
|
|
"Tsepo Lesibe\n"
|
|
"Curtis Stanley\n"
|
|
"Alex Guzzardo\n"
|
|
"WILLIAN PEREIRA VIEIRA DA CUNHA\n"
|
|
"Michael Camara\n"
|
|
"Prankit Jain\n"
|
|
"Michael Field\n"
|
|
"Edward Fahner\n"
|
|
"Tom Jehn\n"
|
|
"Thomas Tablada\n"
|
|
"faizkhanzada\n"
|
|
"Lonardoni\n"
|
|
"Hugo Klein Nagelvoort\n"
|
|
"MarkP\n"
|
|
"Michigan J. Frog\n"
|
|
"Cyberbird\n"
|
|
"pingaq\n"
|
|
"Christopher Michael Murray\n"
|
|
"Shailesh R Patel\n"
|
|
"WTRoss\n"
|
|
"Chad Stambaugh\n"
|
|
"Daniel Toland\n"
|
|
"Damian Baran\n"
|
|
"Ashley Georgeson\n"
|
|
"DaveNaisbitt \n"
|
|
"Anthony Burke\n"
|
|
"Kevin Denton\n"
|
|
"Fordo\n"
|
|
"Julios Ñahuero Balbin\n"
|
|
"Richard Sias\n"
|
|
"Ibon Arretxe\n"
|
|
"EODChief\n"
|
|
"Garrett W Taylor\n"
|
|
"Sulaywan Benoit F. TUFFERY\n"
|
|
"Nionios\n"
|
|
"obsidianlock\n"
|
|
"Kamal Osman\n"
|
|
"Sachin\n"
|
|
"woodard\n"
|
|
"SCarriveau\n"
|
|
"Jason Brake\n"
|
|
"Kelvin BigEasy Stallings\n"
|
|
"Oufaki_Boulaki\n"
|
|
"Paulo Pinto da Silva\n"
|
|
"Angus Lepper\n"
|
|
"Pawel Sniechowski\n"
|
|
"BCQuest\n"
|
|
"Robin - Digininja\n"
|
|
"networker\n"
|
|
"Chris O\'Shea\n"
|
|
"Andrés Rosales Luna\n"
|
|
"Alvarito\n"
|
|
"John Tobin\n"
|
|
"Jeff Cameron\n"
|
|
"Gauntlet Smith\n"
|
|
"Catpuking\n"
|
|
"Voujon L.\n"
|
|
"Deez\n"
|
|
"Alex DeAraujo\n"
|
|
"Manny Garcia\n"
|
|
"Garry Baker\n"
|
|
"Silvio Pinheiro\n"
|
|
"Faisal\n"
|
|
"doncompu\n"
|
|
"Happy Hanna\n"
|
|
"dcsmwy\n"
|
|
"LGSalsero\n"
|
|
"Liudas Duoba\n"
|
|
"Jamie Wells\n"
|
|
"Alfredo Vera\n"
|
|
"eiasan\n"
|
|
"Mohammad Ali Naghval\n"
|
|
"Vinicius Machado\n"
|
|
"Mike & Cindy M\n"
|
|
"MikeCarel\n"
|
|
"barkusdawg\n"
|
|
"Robert McKee\n"
|
|
"Charles Ferguson\n"
|
|
"Tonicarreno\n"
|
|
"Steve Blizzard\n"
|
|
"Osamuyi imade\n"
|
|
"McNeelyYoung\n"
|
|
"Adolfo Cabrera\n"
|
|
"Megajove\n"
|
|
"Francisco R. Butera\n"
|
|
"Carl Baccus\n"
|
|
"Dallas Bishop\n"
|
|
"Alexei Nikolaev\n"
|
|
"Houssam Chahine\n"
|
|
"Charlie Gombert\n"
|
|
"Praveen Kumar \n"
|
|
"Mahmood Naiser\n"
|
|
"tudor evil1\n"
|
|
"ak2766\n"
|
|
"Alex Clipper\n"
|
|
"Bob Benson\n"
|
|
"Kakos\n"
|
|
"Andre Jonker\n"
|
|
"LeeWray-CCIEtoBe\n"
|
|
"GMcCray@Orange\n"
|
|
"Phil Chapman\n"
|
|
"Ze \'Qzx\' Qronique\n"
|
|
"Trevor Conkle\n"
|
|
"Mike Mikeson\n"
|
|
"Krzysztof Miłek\n"
|
|
"Joseph Becker\n"
|
|
"Don Floyd\n"
|
|
"Andrew Lemin\n"
|
|
"Kimmer\n"
|
|
"Cotomacio\n"
|
|
"MarkF\n"
|
|
"Ronak Maniar\n"
|
|
"Deepak Bysani\n"
|
|
"Mohau Nchake\n"
|
|
"Roderick Williams Sr.\n"
|
|
"Bob Lyons\n"
|
|
"Kieran123\n"
|
|
"Blaine G\n"
|
|
"ikehoff\n"
|
|
"Tony Dennis\n"
|
|
"AbdulWahabSoomro\n"
|
|
"ILIAS BATSILAS\n"
|
|
"Omar Bounoun\n"
|
|
"Leandro Pina\n"
|
|
"ZorprimeSDF1\n"
|
|
"Kevin Fisher\n"
|
|
"Andre Heyliger\n"
|
|
"jethrocruz3\n"
|
|
"Nnamdi Anyanwu\n"
|
|
"nazir8121\n"
|
|
"Karim Souissi\n"
|
|
"Ramon Jr Yu\n"
|
|
"Peter Hinds\n"
|
|
"MarkMalone\n"
|
|
"Francivaldo B. Cavalcante\n"
|
|
"Roberto Otero\n"
|
|
"GersonEx\n"
|
|
"Mark Horsfield\n"
|
|
"dsgm\n"
|
|
"New Generation Network NGN\n"
|
|
"Derrick Lowder\n"
|
|
"Daniel López\n"
|
|
"ilya zindman\n"
|
|
"jerryjmcconnell\n"
|
|
"Craig Munro\n"
|
|
"WeirdLilMidget\n"
|
|
"Jonathan Miller\n"
|
|
"MEHDI BASRI\n"
|
|
"Andy Burnett\n"
|
|
"Doug George\n"
|
|
"Faheem\n"
|
|
"Mike Rozman\n"
|
|
"Maz Shah\n"
|
|
"Bulost\n"
|
|
"Dennis Bailey\n"
|
|
"Craine Runton\n"
|
|
"AJMottola\n"
|
|
"irwandi.guritno\n"
|
|
"ManuelR\n"
|
|
"tchilljr\n"
|
|
"Fernando Mauro\n"
|
|
"Rafael Meira Salomao\n"
|
|
"William A Engel\n"
|
|
"Kevin Seales\n"
|
|
"Sérgio\n"
|
|
"Sergio Pereira\n"
|
|
"JerryCakes\n"
|
|
"Mukom Akong TAMON\n"
|
|
"Roger M. Jones\n"
|
|
"WaltDoGG\n"
|
|
"Ashish Batajoo\n"
|
|
"gianghip\n"
|
|
"Hakan \"deegan\" Bjorklund\n"
|
|
"satmatzidis\n"
|
|
"PanosK\n"
|
|
"Frantisek Cmuchar\n"
|
|
"MJPollard\n"
|
|
"Jace Thompson\n"
|
|
"Shawn Nay\n"
|
|
"Aaron Paul Clark\n"
|
|
"Jeremy Furr\n"
|
|
"kcriscuolo\n"
|
|
"jaberzadeh\n"
|
|
"Haridralingam\n"
|
|
"Brett W. Cook\n"
|
|
"Michael-Vogler\n"
|
|
"pkaldani\n"
|
|
"James Grace\n"
|
|
"Andres Bolaños Rojas\n"
|
|
"Bradley Stevens\n"
|
|
"Renaud Pellerin Levesque\n"
|
|
"Bizkitcan\n"
|
|
"Roberto Velez\n"
|
|
"912m0fr34k(Digvijay Singh)\n"
|
|
"TRAVIS K\n"
|
|
"Jamal Mohamed Ahmed Aly\n"
|
|
"Ashwin Ramdin\n"
|
|
"MarcoEnrique\n"
|
|
"Ray Manriquez\n"
|
|
"Jason \"jabreity\" Breitwieser\n"
|
|
"Ruben Genaro Villanueva\n"
|
|
"Robert Bowen\n"
|
|
"Brad Peterson\n"
|
|
"Renaud Pellerin-Levesque\n"
|
|
"Johnathan Andrew Greeley\n"
|
|
"dbamurray\n"
|
|
"EMAD ABID\n"
|
|
"Dustin Sammut\n"
|
|
"Alexander Bauer\n"
|
|
"irvinleovillanueva\n"
|
|
"Munir B. Abdullahi\n"
|
|
"Dag H. Richards\n"
|
|
"ShamYavagal\n"
|
|
"Fraser Hugh Munro\n"
|
|
"shankerbm\n"
|
|
"Andrew Dashner\n"
|
|
"Nathan Gautrey\n"
|
|
"Brian Eckblad\n"
|
|
"Riley C. Robertson\n"
|
|
"TuRaNiK\n"
|
|
"Sergio Martinez\n"
|
|
"Brandon Gonzalez\n"
|
|
"amrinder kamboj\n"
|
|
"Shaun Parrish\n"
|
|
"Damian Wikkeling\n"
|
|
"Justin Neisler\n"
|
|
"Ian J Adams\n"
|
|
"NHH\n"
|
|
"NAHH\n"
|
|
"Walshburg\n"
|
|
"Jamie Cresdee\n"
|
|
"Nash\n"
|
|
"Jeff Taylor\n"
|
|
"SomeScaryGirl\n"
|
|
"Mike Melo\n"
|
|
"Vlad \"Rivera\" Ivanov\n"
|
|
"racole\n"
|
|
"VDR\n"
|
|
"Christopher H. George\n"
|
|
"Colby Collier\n"
|
|
"Patrick Ley\n"
|
|
"JHBrashear\n"
|
|
"Lochocki\n"
|
|
"Alberto González Rosales\n"
|
|
"HaOsLsE\n"
|
|
"Rich Cortes\n"
|
|
"2affa7\n"
|
|
"Dustin Goode\n"
|
|
"Daniel Huber\n"
|
|
"Cory Thomas\n"
|
|
"Michelle Laydon\n"
|
|
"Jason-Liang\n"
|
|
"fangfangjt\n"
|
|
"Lateef Law\n"
|
|
"Andy Goodley\n"
|
|
"Nicholas Zerwig\n"
|
|
"Matt Long\n"
|
|
"Matthew Allen Weber\n"
|
|
"Chukwuemeka Ezekoka\n"
|
|
"Neil A. Briscoe\n"
|
|
"Roman Chikunov\n"
|
|
"Jesse Barto\n"
|
|
"Alexander Shivers\n"
|
|
"HSIEH CHANG MING\n"
|
|
"Alfred B. Dullano\n"
|
|
"Jez2cool&Bebo\n"
|
|
"Tom Huynh\n"
|
|
"Will Kerr\n"
|
|
"Granite Ledford\n"
|
|
"Nicholas Strov Alexander\n"
|
|
"Sajjad Ahmed\n"
|
|
"Theo Hill\n"
|
|
"scb\n"
|
|
"Andrew Roderos\n"
|
|
"Tofig Ahmed\n"
|
|
"Mark Buono\n"
|
|
"Eric Coleman\n"
|
|
"Jessie Carabajal\n"
|
|
"Marcel _N:L:\n"
|
|
"Moshe.Itzhaki\n"
|
|
"Carl Joseph Ellement\n"
|
|
"aelso.silva\n"
|
|
"gtz\n"
|
|
"Adam Knutson\n"
|
|
"Augusto Castelan Carlson\n"
|
|
"Erik\n"
|
|
"Michael Patton\n"
|
|
"Thomas Anderson\n"
|
|
"Geoff Thornton\n"
|
|
"Tzalas Konstantinos\n"
|
|
"Miguel Rosa\n"
|
|
"Daniel Demers\n"
|
|
"Jeremy Goyette\n"
|
|
"N. van Zwieten\n"
|
|
"Windsor\n"
|
|
"Brendan Mason\n"
|
|
"David J Smith\n"
|
|
"Syed Ahmed Quadri\n"
|
|
"Anders Cai\n"
|
|
"Bonno\n"
|
|
"Rob Looby\n"
|
|
"Olivia the Cat\n"
|
|
"Travis Heinz\n"
|
|
"pranay solanki\n"
|
|
"skennedy\n"
|
|
"ChaXueHer\n"
|
|
"Even Hernandez\n"
|
|
"Mark Shield\n"
|
|
"POPQUIZZZ\n"
|
|
"Thomas Pedersen\n"
|
|
"James T. Walston Jr.\n"
|
|
"James Rosenthal\n"
|
|
"Jesus Garcia Chavez\n"
|
|
"Matthew Songy\n"
|
|
"Kevin Groves\n"
|
|
"Warakorn Sae-Tang\n"
|
|
"Roberto Carratala\n"
|
|
"Paul Harris\n"
|
|
"Hasan Aljumaily\n"
|
|
"skHosting.eu s.r.o.\n"
|
|
"EJAZ MUNIR\n"
|
|
"Luke Tidd\n"
|
|
"Jason Roth\n"
|
|
"Ali Fard\n"
|
|
"RechieCebreros\n"
|
|
"Samaan AlKhaldi\n"
|
|
"Abhijeet Kunde\n"
|
|
"Aldin Ringor\n"
|
|
"Shine Sandhu\n"
|
|
"Øystein Gulliksen\n"
|
|
"Nick Travalini\n"
|
|
"Joon Park\n"
|
|
"M.Philip\n"
|
|
"Kamron\n"
|
|
"MikeCindyAkinaAlek\n"
|
|
"Bjoern Drewes (Verfriemelt)\n"
|
|
"Spencer Onsongo\n"
|
|
"Corey_age_00110000\n"
|
|
"Jegan-Malaysia\n"
|
|
"David Okeyode\n"
|
|
"Md Rasel Mia\n"
|
|
"Jesse Loggins CCIE#14661\n"
|
|
"Jacob Bennefield\n"
|
|
"Mohamed Nizwan\n"
|
|
"Ali\n"
|
|
"yes\n"
|
|
"Andrey Bozhko\n"
|
|
"GHaKK\n"
|
|
"Jubal Gil Vivas\n"
|
|
"Julio Maura\n"
|
|
"CARLOS ALBERTO PEREZ RAMIREZ\n"
|
|
"sidney berkenbrock\n"
|
|
"Richard Wilson\n"
|
|
"Chase Raptor Wilson\n"
|
|
"Rakee\n"
|
|
"Felipe Solís\n"
|
|
"escartinis\n"
|
|
"Erick Parsons\n"
|
|
"Alexander O Chard\n"
|
|
"Davi Junior\n"
|
|
"Zachary McLemore\n"
|
|
"Marc Simcox\n"
|
|
"Juan José Castro\n"
|
|
"Dharnesh\n"
|
|
"Mostafa Hassan\n"
|
|
"Zaheid Iqbal\n"
|
|
"Samarth Chidanand\n"
|
|
"Ping Petchged\n"
|
|
"Joe Sanchez\n"
|
|
"Alan Dunne\n"
|
|
"David Scolamiero\n"
|
|
"Wade Edwards\n"
|
|
"Teng Lee\n"
|
|
"Voramit Y.\n"
|
|
"Harshit Namdeo\n"
|
|
"Michael A. Martino\n"
|
|
"Ahmad Maher Che Mohd Adib\n"
|
|
"h.msahbin\n"
|
|
"tataroktay\n"
|
|
"Tony Kenneth\n"
|
|
"Adrien Demma\n"
|
|
"Thiago R. Fanfoni\n"
|
|
"vladys\n"
|
|
"Joe Polak\n"
|
|
"Eric Belinsky\n"
|
|
"linuxdancer\n"
|
|
"Ian Woods UK\n"
|
|
"Michael Ciacco\n"
|
|
"Suradech Pornsomboonkit\n"
|
|
"Gauravdeep Singh \n"
|
|
"resoldab\n"
|
|
"Keith Gardiner\n"
|
|
"JayWifi\n"
|
|
"PrabhuWorld & Nishanth\n"
|
|
"Prabhu & Agalya\n"
|
|
"Prabhu & Duraikannan & Vanitha\n"
|
|
"Nick Young\n"
|
|
"yurezplace\n"
|
|
"Seth Eshun\n"
|
|
"TLACKI\n"
|
|
"University of Texas at Dallas\n"
|
|
"Richard Antiabong\n"
|
|
"Aaminah Haniyah Rashid\n"
|
|
"Michael Gilton\n"
|
|
"emil\n"
|
|
"LynnH\n"
|
|
"Emanuel Facundo Campos\n"
|
|
"Leandro Rudolph Araujo\n"
|
|
"Arabi\n"
|
|
"chekoceron\n"
|
|
"Sonny\"Criminal\"Wigmore\n"
|
|
"Hervey Allen\n"
|
|
"Steve Brosseau\n"
|
|
"Fishlogic\n"
|
|
"Alex Kirby\n"
|
|
"Kyle Steinkamp\n"
|
|
"Louis Lloyd\n"
|
|
"cblessed\n"
|
|
"Jason Biscuit Williard\n"
|
|
"Steven H. Kalupson\n"
|
|
"Oshoe\n"
|
|
"John E. Durrett\n"
|
|
"WALA\n"
|
|
"Adrian Huston\n"
|
|
"Chad Hart\n"
|
|
"Blessing Matore\n"
|
|
"Julien BERTON\n"
|
|
"Michel Askenfeldt\n"
|
|
"Stephen Neary\n"
|
|
"WavetechSystemsLLC\n"
|
|
"CDeHoust\n"
|
|
"James P Hollingsworth\n"
|
|
"MMPD\n"
|
|
"KJ Iqbal\n"
|
|
"Ray Belshaw\n"
|
|
"Cipriano\n"
|
|
"Chris Fucking Johnson\n"
|
|
"Mondilla1985\n"
|
|
"Drew Mallett\n"
|
|
"Kevin Taylor\n"
|
|
"Chen Huangdong\n"
|
|
"Dan Brito\n"
|
|
"Charles Moore\n"
|
|
"Rowan George\n"
|
|
"Simon Joiner\n"
|
|
"Ebnöther Christian\n"
|
|
"Reza Hossain Khan\n"
|
|
"John Regan\n"
|
|
"Daniel D Patrick\n"
|
|
"Gared\n"
|
|
"George Solorzano \n"
|
|
"Nathan Bender\n"
|
|
"AJ Cochenour\n"
|
|
"Noel R\n"
|
|
"Tseggai\n"
|
|
"sSkulltrail\n"
|
|
"VegasRatt\n"
|
|
"Loek Canisius\n"
|
|
"Ismael A. Torres\n"
|
|
"Carlos Gobea\n"
|
|
"Patricio Salmeron\n"
|
|
"Alex Viman\n"
|
|
"Aram Nazarin\n"
|
|
"KhaisarMasoodAhmed\n"
|
|
"CameronRake\n"
|
|
"Adnan Shaikh\n"
|
|
"John Huston\n"
|
|
"Rob Stoop\n"
|
|
"route_bub\n"
|
|
"medtemo\n"
|
|
"Mark Mcfarland\n"
|
|
"slaxative\n"
|
|
"Warren Evans\n"
|
|
"Herme\n"
|
|
"Krzysztof Milek\n"
|
|
"Gobinath Chandrasekaran\n"
|
|
"julius gilmore\n"
|
|
"jeremyjenkins5\n"
|
|
"junj2121\n"
|
|
"Eduard Coll Pascual\n"
|
|
"SwampRabbit\n"
|
|
"Chintan Patel\n"
|
|
"Chad Monroe\n"
|
|
"Benjamin A Albee\n"
|
|
"S2MFH\n"
|
|
"Rajan Thanki\n"
|
|
"Dr. Christopher DesMarteau\n"
|
|
"Antonio Molina Cádiz\n"
|
|
"csegovia\n"
|
|
"Kamaleldin M Sadik\n"
|
|
"Tzu-Che HUANG\n"
|
|
"Zandro Bacani\n"
|
|
"Gabriele Di Benedetto\n"
|
|
"ARGCCIE2013\n"
|
|
"Tyler Kor\n"
|
|
"petenugent\n"
|
|
"Will Sim \n"
|
|
"wam\n"
|
|
"Chris Aldridge\n"
|
|
"Dwarfmage\n"
|
|
"Glenn \"Moose\" McHenry\n"
|
|
"Peter Baffoe\n"
|
|
"John and Crystal Vaughan\n"
|
|
"JAPD\n"
|
|
"Henrique Roma\n"
|
|
"Joseph Webb\n"
|
|
"Anton Denisevich\n"
|
|
"Brennan Nehemiah Jones\n"
|
|
"Justin Reagan\n"
|
|
"Stewart Beam\n"
|
|
"AlexBransome\n"
|
|
"Dwayne Towns\n"
|
|
"Derek Smiley\n"
|
|
"Ferran Orsola\n"
|
|
"Jason Craft\n"
|
|
"devesh\n"
|
|
"Luis A. Rocca Vazquez\n"
|
|
"Borja López Montilla\n"
|
|
"Adib Amrani\n"
|
|
"Debasish Gharami\n"
|
|
"Alessandro Lovati\n"
|
|
"Cristian Vendemiati\n"
|
|
"somescarygirl\n"
|
|
"Neil Shankar\n"
|
|
"Manjunath S Chickmath\n"
|
|
"Phill Proud\n"
|
|
"RolandVogels\n"
|
|
"Sam Mackenzie\n"
|
|
"Anthony Fuentes\n"
|
|
"Rich N\n"
|
|
"Meneertjes\n"
|
|
"darma96\n"
|
|
"Daniel Stamatov\n"
|
|
"Jakub Peterek\n"
|
|
"David G Boyle\n"
|
|
"Chad Carrington\n"
|
|
"CCIE28839\n"
|
|
"Lilliana \n"
|
|
"Raffaele \n"
|
|
"Brad Powlison\n"
|
|
"Bharath Ramakrishna\n"
|
|
"MCyagli\n"
|
|
"Scott Maderitz\n"
|
|
"Eugeniu Babin\n"
|
|
"William M Zambrano\n"
|
|
"Elton Hubner\n"
|
|
"Marek Macovsky\n"
|
|
"Luccas Aguiar\n"
|
|
"Keith Nowosielski\n"
|
|
"Dr Bankim Jani\n"
|
|
"JS\n"
|
|
"Tuxufologo\n"
|
|
"kishiro\n"
|
|
"Eric Gamess\n"
|
|
"Nguyen Thai Nguyen\n"
|
|
"Dmitry Pavlov\n"
|
|
"AS97\n"
|
|
"Axel Sioland\n"
|
|
"Louis Bartay\n"
|
|
"yokota shinichi\n"
|
|
"medtemo\n"
|
|
"Fekadu Berhane\n"
|
|
"Dmitriy E. Koshkin\n"
|
|
"amrinder kamboj\n"
|
|
"Muyeen Parveez\n"
|
|
"Peter Tavenier\n"
|
|
"kalpana\n"
|
|
"DlteC do Brasil\n"
|
|
"Tim Wilkes\n"
|
|
"Dave Malner\n"
|
|
"Ali Fadhl Hussein\n"
|
|
"elgrecos\n"
|
|
"Brandon Fields\n"
|
|
"Richard Jenniss\n"
|
|
"mikemick\n"
|
|
"Hitesh Panchal\n"
|
|
"W3FTM\n"
|
|
"TxetxuMC\n"
|
|
"Rotero82\n"
|
|
"JD Keith\n"
|
|
"MichaelDHays\n"
|
|
"yeyo\n"
|
|
"Mohamed Mohamud\n"
|
|
"Tarik houmaiza\n"
|
|
"Alessandro Piva\n"
|
|
"Arabi\n"
|
|
"Victor Salas\n"
|
|
"Santosh Nair\n"
|
|
"Shashank Bhargava\n"
|
|
"Andrew Tagliani\n"
|
|
"Shamal Weerakoon\n"
|
|
"Matt \"The Beard\" Powell\n"
|
|
"Douglas Edward Luce\n"
|
|
"John the PawWow\n"
|
|
"Dave Persuhn\n"
|
|
"Peter Daniel Bartyik\n"
|
|
"Richard P. Mauer\n"
|
|
"Juan C. Guerrero\n"
|
|
"Randall Nieland\n"
|
|
"Carlos Cabrera\n"
|
|
"Jason Giles\n"
|
|
"Robert Pribanic\n"
|
|
"Renato Pinheiro de Souza\n"
|
|
"Antonio J Remedios\n"
|
|
"Adam Reblitz\n"
|
|
"Jose Rodriguez\n"
|
|
"Glenn Eberhard\n"
|
|
"EricWibowo\n"
|
|
"Peter M Nikodem\n"
|
|
"Sergio Ryan La Torre\n"
|
|
"Tommie James\n"
|
|
"Sabine Reis\n"
|
|
"Skyler Hayes\n"
|
|
"Yoruba\n"
|
|
"Jens Stark\n"
|
|
"Dean Lewis\n"
|
|
"Recundis\n"
|
|
"Yazeed Fataar\n"
|
|
"IOLARIU\n"
|
|
"Kurt & Ethan Steed\n"
|
|
"Paul Slater\n"
|
|
"Malick FALL\n"
|
|
"eduinho\n"
|
|
"Shev\n"
|
|
"v0ha\n"
|
|
"Bezmalinovic\n"
|
|
"Les Bowditch\n"
|
|
"Rick Sattler\n"
|
|
"PGX\n"
|
|
"Abhinandan Juyal\n"
|
|
"Ernest Edwards\n"
|
|
"Paul Woodhouse\n"
|
|
"Ian Benoit\n"
|
|
"Sasha Dee Robbins\n"
|
|
"Ferrel\n"
|
|
"Marc Snelgrove\n"
|
|
"Nicolás A. Escudero\n"
|
|
"Marcus Auman\n"
|
|
"sides14\n"
|
|
"albokillers\n"
|
|
"Juan C. Espinoza\n"
|
|
"Filipe Torres\n"
|
|
"J.C. Cederboom BICT\n"
|
|
"Jovanni\n"
|
|
"Matthew C Hickey\n"
|
|
"Michael Anthony Cummisky\n"
|
|
"Dmitry Figol\n"
|
|
"Brian Wusu\n"
|
|
"ZEULEO\n"
|
|
"SeongJaeYang\n"
|
|
"Jesus Alirio Diaz Castro\n"
|
|
"C Dennis Ferguson\n"
|
|
"Viktor Pakin\n"
|
|
"Shelbie_Fann\n"
|
|
"Jay Canfield\n"
|
|
"Andrei Bolanu\n"
|
|
"Juan Felipe Palacios\n"
|
|
"Igor Boyko\n"
|
|
"hadinhphu\n"
|
|
"Esvi Molina G.\n"
|
|
"Shawn McHenry\n"
|
|
"korjjj\n"
|
|
"Abdul Jawad Shakoor\n"
|
|
"Edmarc Vitz Oliveros\n"
|
|
"Mike Melo\n"
|
|
"Walter Haeffner\n"
|
|
"TKH\n"
|
|
"Matthew Weber\n"
|
|
"H4K3R\n"
|
|
"Shawn Hanff\n"
|
|
"Ateeb Ahmed\n"
|
|
"Jerry Kanoholani\n"
|
|
"Anton Björkstrand\n"
|
|
"Ryan Corcoran\n"
|
|
"Eric Persch\n"
|
|
"Dane Straub\n"
|
|
"Syed Hashmi\n"
|
|
"Muhammad Furqan Butt\n"
|
|
"Jima\n"
|
|
"Bill Scheirer\n"
|
|
"Mikael H.\n"
|
|
"Internetworkerz\n"
|
|
"Mike Ferguson\n"
|
|
"Matthew Mason\n"
|
|
"Sujith TK\n"
|
|
"TheSource\n"
|
|
"Eduardo Romero Peña\n"
|
|
"Andrei Niamtu\n"
|
|
"Shafaq Ali\n"
|
|
"Harold H Hall III\n"
|
|
"Dion Rupert\n"
|
|
"Iavarone\n"
|
|
"Eric Geib\n"
|
|
"Prakash\n"
|
|
"Tom S Pedersen\n"
|
|
"bash550\n"
|
|
"Mukendi Zamba\n"
|
|
"Daniel Gheorghe Luca\n"
|
|
"Phillip B. deChantal III\n"
|
|
"Aatif Nawaz\n"
|
|
"Yuri (aka itAvgur) Melnikov\n"
|
|
"iKaruS\n"
|
|
"Jon Christopher Matthews\n"
|
|
"Stuart Fordham\n"
|
|
"olga1126\n"
|
|
"Ashwani Patel\n"
|
|
"Ronald White\n"
|
|
"Rob VanHooren\n"
|
|
"Ifti Hussain\n"
|
|
"Jan Král\n"
|
|
"pramod mangatha\n"
|
|
"Franklin Davis\n"
|
|
"Kendrick Som\n"
|
|
"Joseph Amen\n"
|
|
"Michael Lee Mosher\n"
|
|
"Abel G. Aberra\n"
|
|
"jbrake\n"
|
|
"joso\n"
|
|
"Renzo Tovar Ledesma\n"
|
|
"Rodrigo Lube\n"
|
|
"Emad Abid\n"
|
|
"Joshua St.Clair\n"
|
|
"Gabor Keri\n"
|
|
"Chris Ortiz\n"
|
|
"Michael P Goodwins\n"
|
|
"Adrian Oden\n"
|
|
"Paul Eugene Smth\n"
|
|
"Sahil Pujani\n"
|
|
"manokum6\n"
|
|
"Ruslan Foutorianski\n"
|
|
"Sinan Sulaiman\n"
|
|
"Philip Weekly\n"
|
|
"hernan.cruz.iii\n"
|
|
"Torgny Holmlund\n"
|
|
"A.Autricque\n"
|
|
"LeeJBurton\n"
|
|
"Daniel Elkins\n"
|
|
"Ahmed Shetta\n"
|
|
"Mihai Mirita\n"
|
|
"AsdfghjkL\n"
|
|
"Anton Zinchenko\n"
|
|
"Anders Låstad\n"
|
|
"Asimios Kiropoulos\n"
|
|
"cdljel\n"
|
|
"Meeralebbe Mohamed Rezard\n"
|
|
"Chris Weber\n"
|
|
"Shawn Nay\n"
|
|
"Gabe Rivas\n"
|
|
"Andrea Dainese\n"
|
|
"Eric SAUGNAC\n"
|
|
"vahid rezaabadi\n"
|
|
"Don Kanicki\n"
|
|
"Joe Mendola\n"
|
|
"Stanislav_CCIE_NextGen\n"
|
|
"Steven Coutts\n"
|
|
"Ahmad Amran Ahmad\n"
|
|
"ChewableFritter\n"
|
|
"Torgny Tonna Holmlund\n"
|
|
"Taiwo Awoyinfa\n"
|
|
"Aju Jose\n"
|
|
"Cory Light\n"
|
|
"Daniel de Morais Gurgel\n"
|
|
"pkillur\n"
|
|
"Alex D\n"
|
|
"Felipe Solis\n"
|
|
"Vijayendra Shetty\n"
|
|
"Frédéric \"Strall\" C.\n"
|
|
"JP Scholten\n"
|
|
"Olugbenga Adara\n"
|
|
"José Ignacio Jorquera G.\n"
|
|
"RICHMAC\n"
|
|
"Timi Shoyele\n"
|
|
"Andrew Roderos\n"
|
|
"Sathursan Kantharajah\n"
|
|
"Edj1963\n"
|
|
"Lasse Haugen\n"
|
|
"Thiago Bastos (TBastos)\n"
|
|
"Diogo Mendes\n"
|
|
"Eric Villeneuve\n"
|
|
"ARNOLD KWAME MARKSON\n"
|
|
"Tomek Szulczynski\n"
|
|
"Achiraf\n"
|
|
"Brent O\'Keeffe - University of Chicago\n"
|
|
"Trenton John Skoog\n"
|
|
"Mark Hicks\n"
|
|
"A Davis\n"
|
|
"VASANT\n"
|
|
"Dat Nguyen Thanh\n"
|
|
"Robert W Goguen\n"
|
|
"Noel Sergio\n"
|
|
"Peter Clemenko III\n"
|
|
"Happy Hanna\n"
|
|
"Alexander Atanasow\n"
|
|
"Nkosinathi Mntambo\n"
|
|
"Jeff Oliver\n"
|
|
"Sean Wauchop\n"
|
|
"Simon Priest\n"
|
|
"oliverdiese\n"
|
|
"Simon Macpherson\n"
|
|
"Dennis Weijenberg\n"
|
|
"Jonathan Worth\n"
|
|
"Pauly Comtois\n"
|
|
"Dynamic Network Security Ltd\n"
|
|
"siggjen\n"
|
|
"TimmyK\n"
|
|
"Hernan \"IP\" Marquez\n"
|
|
"Ryan Young\n"
|
|
"Abdiweli Haji\n"
|
|
"Thomas Kager\n"
|
|
"ElaineJoyDelaCruz\n"
|
|
"Jeff Smith\n"
|
|
"Lionel PONCELET\n"
|
|
"Frode Figenschou\n"
|
|
"EvelynBowman\n"
|
|
"Dr Barra Touray\n"
|
|
"Irvin Leo Villanueva\n"
|
|
"Steven Bowman\n"
|
|
"GurcharanSingh\n"
|
|
"Shane Bradley\n"
|
|
"Alex Kruch\n"
|
|
"Andrew Quinton\n"
|
|
"Jeremiah Sholes\n"
|
|
"David E. Cohen\n"
|
|
"Michael Ciacco\n"
|
|
"Ziggy\n"
|
|
"Abrhim\n"
|
|
"Des Kharisma\n"
|
|
"yusyd\n"
|
|
"Tomasz Grzelak\n"
|
|
"mosipd\n"
|
|
"J.D. Wegner\n"
|
|
"Fred O Asante\n"
|
|
"George C. Dean\n"
|
|
"Jose Ricardo Feliz de Oliveira\n"
|
|
"Muhammad Nouman\n"
|
|
"Hamid Reza Farahani Farid\n"
|
|
"Kaizad Anklesaria\n"
|
|
"Lonie Packer\n"
|
|
"aelso.silva\n"
|
|
"Erik de Wildt\n"
|
|
"thepcdoctor\n"
|
|
"Ben Murray (Cache22)\n"
|
|
"kuji\n"
|
|
"Bobbie Edwards\n"
|
|
"AugurJ\n"
|
|
"Rodrigo de Paula Cordeiro\n"
|
|
"Edson Siqueira, RJ - Brazil\n"
|
|
"JMB^3\n"
|
|
"cgbfish\n"
|
|
"zdenotim\n"
|
|
"Jose Barrantes\n"
|
|
"Gordon Howard Hannan\n"
|
|
"Aboubacar Ballo\n"
|
|
"Matt \'Jacktooth\' Allen\n"
|
|
"Gabe\n"
|
|
"Junaid Khan\n"
|
|
"Markus Schaufler\n"
|
|
"Terry Rawleigh\n"
|
|
"Abdulla Solutions.net\n"
|
|
"Luis Carlos Salazar\n"
|
|
"Charles Boston\n"
|
|
"Tyrone Penn\n"
|
|
"Paul Denning\n"
|
|
"GSingh14\n"
|
|
"preston\n"
|
|
"Stephen Wilson\n"
|
|
"JamesBernardVallespin\n"
|
|
"Mircea Ion Nedelea\n"
|
|
"Sung Jae Park\n"
|
|
"Khaled Alghazi\n"
|
|
"Ewart Duncan\n"
|
|
"Nov Alpha Kilo\n"
|
|
"Billy J Bryant \"Diomenas\"\n"
|
|
"Tom_Evan_Alexa_Tif_Tippen\n"
|
|
"abcdefgh1234\n"
|
|
"Florian Ohnemüller\n"
|
|
"gnos\n"
|
|
"ankur singh\n"
|
|
"Donna Murphy\n"
|
|
"Joey Lamb\n"
|
|
"Satyajit Mandal\n"
|
|
"Jean Guandalini\n"
|
|
"Mohammed Elqazzaz\n"
|
|
"NWN Dan Hellwig\n"
|
|
"Raghav Gurung\n"
|
|
"Jon Halar\n"
|
|
"Daniel G Tootell\n"
|
|
"Graham Shaw\n"
|
|
"Lando Thomas\n"
|
|
"Joe Sanchez\n"
|
|
"Chris Corbin\n"
|
|
"Samuel E. Brown\n"
|
|
"Dmitri\n"
|
|
"Omar Fawaz Thoaib Al-Sammarraie\n"
|
|
"nyasha muzwidziwa\n"
|
|
"snuthall\n"
|
|
"Craig Coffey\n"
|
|
"Ramgopal Reddy M\n"
|
|
"Guilherme Montoanelli\n"
|
|
"l3y3t\n"
|
|
"Tony.Davis\n"
|
|
"Pipeiden\n"
|
|
"Thomas Tablada\n"
|
|
"Matthew Piechotta\n"
|
|
"David Michael Alan Daniel Gross\n"
|
|
"Robert Bezerra\n"
|
|
"Sergey Polski\n"
|
|
"Ivan Haralamov\n"
|
|
"Harley Hopkins\n"
|
|
"Dave Kretzmer\n"
|
|
"Timur Mezentsev\n"
|
|
"David Bianchi-Pastori\n"
|
|
"Przemyslaw \'UWillC\' Snowacki\n"
|
|
"Samuel Oppong\n"
|
|
"Joshua Riesenweber\n"
|
|
"Vlad Ivanovic\n"
|
|
"bryanamv\n"
|
|
"Tomasz Łęgowiak\n"
|
|
"M. Dustin Brimberry\n"
|
|
"Monthon Thunboonma\n"
|
|
"Parambir Singh Bhullar\n"
|
|
"Fahad\n"
|
|
"Thomas Wing\n"
|
|
"Devan Hardwick\n"
|
|
"Bahman Arbab\n"
|
|
"Jared M.\n"
|
|
"Philip Wong\n"
|
|
"Paulo Galluzzi\n"
|
|
"Gregory L. Johnson, Jr.\n"
|
|
"Mario Mariscal\n"
|
|
"KYLE LYNCH\n"
|
|
"Ross Anderson\n"
|
|
"John Littler\n"
|
|
"Kingsley Tambe-Ebot\n"
|
|
"Muhammed Ali Bulut\n"
|
|
"Sanjay Kumar Patel\n"
|
|
"MUJTABA HAIDARY\n"
|
|
"juliox\n"
|
|
"Robert Morris\n"
|
|
"Nick Duff\n"
|
|
"Andrew Krist\n"
|
|
"GNS41292\n"
|
|
"Vishnu Nagepally\n"
|
|
"Prithvi\n"
|
|
"Jomar Vincent Miller\n"
|
|
"Gildas Pambo\n"
|
|
"Michalis Polyadis\n"
|
|
"A.W. van Bart\n"
|
|
"Erwyn Tadong\n"
|
|
"Robert Laidlaw\n"
|
|
"Lance Heckerman\n"
|
|
"Tzu-Che HUANG\n"
|
|
"S.Gerry\n"
|
|
"Kevin R. Owens II\n"
|
|
"Ahmed Alayyoubi\n"
|
|
"GNS40116\n"
|
|
"KeshavS\n"
|
|
"Panagiotis Dasouras\n"
|
|
"Francesc Lumbierres\n"
|
|
"Brandon Benchley\n"
|
|
"Rusu Mihai\n"
|
|
"Imran Yousaf\n"
|
|
"bsdam\n"
|
|
"Curtis Bunch\n"
|
|
"Diego Antonio Quintana Solano\n"
|
|
"Kendell-Lee\n"
|
|
"Scott Pickles\n"
|
|
"Ahmed AlGherbawi\n"
|
|
"Unzagi\n"
|
|
"Tim Sedlmeyer\n"
|
|
"Ethan Tan YW\n"
|
|
"Bad Mother Fucker\n"
|
|
"Gurpreet Grewal\n"
|
|
"veers\n"
|
|
"Ehsan Hzare\n"
|
|
"Dennis Pham\n"
|
|
"Edsil Welch\n"
|
|
"yarrrr\n"
|
|
"Alexey Eromenko \"Technologov\"\n"
|
|
"Junior J George\n"
|
|
"Q Ozzman\n"
|
|
"Jakso Ozi Laszlo\n"
|
|
"Origosis\n"
|
|
"Dave Martin\n"
|
|
"Matthew A. Kurowski\n"
|
|
"FosNA\n"
|
|
"Md.Rafiqul Islam\n"
|
|
"Wuggles\n"
|
|
"Jason Marley\n"
|
|
"Adnan Kolakovic\n"
|
|
"Thomas A York\n"
|
|
"mikedesanto\n"
|
|
"Ramadevu Ramkumar\n"
|
|
"Joe Audet\n"
|
|
"Barz Dove\n"
|
|
"BremerH0\n"
|
|
"Karwan\n"
|
|
"Mark McGrady\n"
|
|
"Herbie\n"
|
|
"Adefisayo Adegoke\n"
|
|
"Luke Dominy\n"
|
|
"Gareth Rhys Williams\n"
|
|
"Harley Thomas Jones\n"
|
|
"Elvis Lunga\n"
|
|
"elinathan\n"
|
|
"Chris Dent\n"
|
|
"Omeata Ifeanyi\n"
|
|
"Sanyi Wakgari\n"
|
|
"gizmo\n"
|
|
"routenull0\n"
|
|
"Simon Wilkinson\n"
|
|
"Andy Britten 59 Commando RE\n"
|
|
"THEIS\n"
|
|
"F Graham\n"
|
|
"Graham MacGregor\n"
|
|
"wgamper\n"
|
|
"Mark Buono\n"
|
|
"John Li\n"
|
|
"Daniel David\n"
|
|
"Ahmed Thabet\n"
|
|
"Prithvi Das\n"
|
|
"Mike Mcleod Jr.\n"
|
|
"Michael Higgins\n"
|
|
"Praveen Kumar\n"
|
|
"Rick Mills\n"
|
|
"Miguel Sama\n"
|
|
"Jim Aurouze\n"
|
|
"Pramod Mangatha\n"
|
|
"Ghiyas Haider\n"
|
|
"frank hopkins\n"
|
|
"Bizkitcan\n"
|
|
"John Rockwell\n"
|
|
"Patrick Joseph A Evangelista\n"
|
|
"Tom Deamer\n"
|
|
"TiagoWR\n"
|
|
"Iman Ebrahimi Tajadod\n"
|
|
"Somone77 was here\n"
|
|
"mckrsta@hotmail.com\n"
|
|
"Joseph Munyongi\n"
|
|
"Chris Palmer\n"
|
|
"Himanshu Bhatt\n"
|
|
"Phil Henson\n"
|
|
"Rfernandes\n"
|
|
"Eze\n"
|
|
"Ezenwa\n"
|
|
"DaRyan Horn\n"
|
|
"Waisudin Farzam\n"
|
|
"Vyacheslav Sobchenko\n"
|
|
"Robert Gorbul\n"
|
|
"MrBultitude\n"
|
|
"Dave Massam\n"
|
|
"Khumi\n"
|
|
"Francisco \"TuKoX\" Briano\n"
|
|
"Aijaz\n"
|
|
"rittam\n"
|
|
"Seweryn Obieglo\n"
|
|
"Tessius\n"
|
|
"Hans Lossman\n"
|
|
"Libi Pappachen\n"
|
|
"TSAV\n"
|
|
"Deskha\n"
|
|
"Mohammad Al Amaireh\n"
|
|
"Megajove\n"
|
|
"Nico Heijnen\n"
|
|
"Jeff Nagel\n"
|
|
"Travis Baker\n"
|
|
"Bryan Tabb\n"
|
|
"MNL1960\n"
|
|
"LsTRA\n"
|
|
"GarethHall\n"
|
|
"Vanquish1986\n"
|
|
"JAMES SNEW\n"
|
|
"Muhammad Bhatti\n"
|
|
"Tiago Marques\n"
|
|
"Jason Pietrzak\n"
|
|
"Ping Petchged\n"
|
|
"Herman\n"
|
|
"Nikul Patel\n"
|
|
"Alfred Eric Jones III\n"
|
|
"Josh Barenthin\n"
|
|
"Kanuj Behl KjB\n"
|
|
"philbeau\n"
|
|
"YALEW TAKELE\n"
|
|
"phletchmattic\n"
|
|
"Jayir Mansuclal\n"
|
|
"Phil Beaudoin\n"
|
|
"Steve Minnick\n"
|
|
"Eugenio de la TorreGNS30928\n"
|
|
"Eugenio de la Torre\n"
|
|
"Aelso.silva\n"
|
|
"Jodoval Luiz dos Santos Junior\n"
|
|
"Zack Manriquez\n"
|
|
"WOS\n"
|
|
"Chris Good\n"
|
|
"ALI QASSEM ALMHDI\n"
|
|
"Clifton Bissick\n"
|
|
"Edward Cohen\n"
|
|
"Driton B\n"
|
|
"Brian Keifer\n"
|
|
"Henry Dsouza\n"
|
|
"Garrett Haynie\n"
|
|
"Bob Lyons\n"
|
|
"David E Soto JR\n"
|
|
"Rob Jeff\n"
|
|
"Cicero Avila\n"
|
|
"fulopa7\n"
|
|
"Arnaud Helin\n"
|
|
"Dan Alongi\n"
|
|
"JamesDanielMorris\n"
|
|
"Vladimir Novakovic\n"
|
|
"Daniel Baeza\n"
|
|
"Manolo164\n"
|
|
"Mike Simkins\n"
|
|
"Craig Ellegood\n"
|
|
"Angel Serrano\n"
|
|
"Jude Lymn\n"
|
|
"Robert Jordan\n"
|
|
"Karl Struss\n"
|
|
"Curt Kellum\n"
|
|
"Paul Gunter Bravo Ch.\n"
|
|
"Guy Verdegem\n"
|
|
"Walter Johnstone-Breen\n"
|
|
"Maged Atef\n"
|
|
"Morgan Chea\n"
|
|
"Microland Limited\n"
|
|
"Saed Zahedi\n"
|
|
"Reynaldo Bilan\n"
|
|
"Josh Lumahan\n"
|
|
"Nima Javidi\n"
|
|
"CraftedPacket\n"
|
|
"Mike McPhee\n"
|
|
"Christopher Beyer (CT)\n"
|
|
"lishanmirando\n"
|
|
"Christian Chavez\n"
|
|
"Shawn H4K3R Hanff\n"
|
|
"Marcin Markowski\n"
|
|
"Ibrahim El-Ali\n"
|
|
"Muhammad Agung Nugroho\n"
|
|
"Don Taylor II\n"
|
|
"Ian Davidson\n"
|
|
"Henry Trombley II\n"
|
|
"Nestor Rubio\n"
|
|
"Fritters\n"
|
|
"Korish\n"
|
|
"Humaiun\n"
|
|
"Bilal Issa\n"
|
|
"Francisco Alfaro Espinoza\n"
|
|
"Travis Kreikemeier\n"
|
|
"Chee Vooi Lew\n"
|
|
"Ovidiu Constantinescu\n"
|
|
"Sergio Martinez Leon\n"
|
|
"saran\n"
|
|
"SPUCKETT\n"
|
|
"Krishna Kumaran GK\n"
|
|
"StefanoLaguardia\n"
|
|
"Patrick McGirr\n"
|
|
"Anderson vakaoBR Leite\n"
|
|
"Felippe Dias\n"
|
|
"Vladimír Vladys Jančich\n"
|
|
"Johnboy3\n"
|
|
"Shane Froebel\n"
|
|
"Cushgod\n"
|
|
"Craig Zambra\n"
|
|
"tsk700\n"
|
|
"Erik Pettersson\n"
|
|
"Daniel Leece\n"
|
|
"Tim Ingalls\n"
|
|
"Matti Huotari\n"
|
|
"Duminda Wehalle\n"
|
|
"MACE529\n"
|
|
"Mohamed Furqan Firdous\n"
|
|
"Dinesh Rupan\n"
|
|
"Chad Stambaugh\n"
|
|
"Thomas Marchsteiner\n"
|
|
"Luis Gustavo Fernandes\n"
|
|
"Aouachria Nassim\n"
|
|
"Gerardo Estrada Gutierrez\n"
|
|
"Erik A Bodholt\n"
|
|
"Ali Khuram\n"
|
|
"SysWiz\n"
|
|
"Guilherme Ladvocat\n"
|
|
"Ezy\n"
|
|
"Chris Bell\n"
|
|
"Paul Heck\n"
|
|
"Bjørn Petter Kysnes\n"
|
|
"Andre Jonker\n"
|
|
"BARY\n"
|
|
"Grillmon\n"
|
|
"Hisham Jaghloul\n"
|
|
"Straube\n"
|
|
"Ian Patterson\n"
|
|
"Andrew J. Thompson\n"
|
|
"Damian Barlow\n"
|
|
"Marcus\n"
|
|
"Kevindenton\n"
|
|
"KoolFadil\n"
|
|
"Fadil Kadrat\n"
|
|
"Jacob McCoy\n"
|
|
"Penny Yeung\n"
|
|
"SOE NAING OO\n"
|
|
"Victor Reyes II\n"
|
|
"Ronnie van Eecke\n"
|
|
"Derek Fries\n"
|
|
"ZAIM Lotfi\n"
|
|
"Larry Peterson\n"
|
|
"Stephen Arogbonlo\n"
|
|
"Cristian Silva Guerra\n"
|
|
"Bill Miller\n"
|
|
"jaberzadeh\n"
|
|
"Peyton Quast\n"
|
|
"Ola\n"
|
|
"D O\'Raghallaigh\n"
|
|
"Shaik Mahamood\n"
|
|
"ZardozTrampoline\n"
|
|
"Jason Zimmerman\n"
|
|
"ALI Q ALMHDI\n"
|
|
"Maxim Klimanov\n"
|
|
"DBQ1969\n"
|
|
"Drew Gough\n"
|
|
"Aamir Ismail\n"
|
|
"Ejdayid\n"
|
|
"Charles Maze\n"
|
|
"GunnarHakonarson\n"
|
|
"Mark Wyss\n"
|
|
"nicku\n"
|
|
"Adam Norman\n"
|
|
"Ahmad Rateb\n"
|
|
"Kingsley Tako\n"
|
|
"Saminder Sandhu\n"
|
|
"Ahmed (Sigey)\n"
|
|
"Rémy POUPPEVILLE\n"
|
|
"JeroenPeeters\n"
|
|
"d3vild0g\n"
|
|
"Stefan Stoyanov\n"
|
|
"Anthony Hopkins\n"
|
|
"Paul Jeffrey\n"
|
|
"Tommy Faucher\n"
|
|
"Gessesse Eshetu\n"
|
|
"Christopher Pratt\n"
|
|
"Jani Laakkonen\n"
|
|
"Marios Nicou Louca\n"
|
|
"Aaron Schmierer\n"
|
|
"Chris Luke\n"
|
|
"Preston Taylor\n"
|
|
"Chris \"Sasquatch\" Saxton\n"
|
|
"Brian Dalhover\n"
|
|
"Aaron Mayfield\n"
|
|
"Engjell R. Pllana\n"
|
|
"KalSarai\n"
|
|
"Mike Nathan\n"
|
|
"Le Viet Thanh\n"
|
|
"Stumper\n"
|
|
"Brian Ladd\n"
|
|
"Brian Binion\n"
|
|
"Marcos Umino\n"
|
|
"Alex Martins\n"
|
|
"Petrollese\n"
|
|
"Marion Bogdanov\n"
|
|
"Tom Jehn\n"
|
|
"Kevin \"MadDOG\" Livingston\n"
|
|
"Mike Profitt\n"
|
|
"Sean Treschen Pillay\n"
|
|
"adunselman\n"
|
|
"Andre Dunselman\n"
|
|
"Don McDonald\n"
|
|
"Jeff Cummings\n"
|
|
"Carlos M Cabrera Vargas\n"
|
|
"Dilip Ratna\n"
|
|
"Viet Nguyen\n"
|
|
"Nelson Lee\n"
|
|
"John Anthony Jones\n"
|
|
"Jack and Mia\n"
|
|
"JamesANDDanielMorris\n"
|
|
"Giuliano Barros\n"
|
|
"Ingo Bothe\n"
|
|
"Malik Lolonga\n"
|
|
"NAIF - ALthubaiti\n"
|
|
"Faisal Rehman\n"
|
|
"Juergen Morgenstern\n"
|
|
"Adli Hajarat\n"
|
|
"SONIDA\n"
|
|
"Dan Morgan - VisuMAX\n"
|
|
"Joe Sarah Vivien Brantley\n"
|
|
"Joe Sarah Vivien Sam Brantley\n"
|
|
"Alex Kiwerski\n"
|
|
"Christian Hansen\n"
|
|
"Digital Design Networks, LLC\n"
|
|
"TorentZachary\n"
|
|
"RobinM\n"
|
|
"Michael Amador\n"
|
|
"claytondf\n"
|
|
"James W.A. Albert\n"
|
|
"Mike Carty , Alliance\n"
|
|
"Damian Zaremba\n"
|
|
"Sol Birnbaum\n"
|
|
"Mark Butler\n"
|
|
"Sam Alletto\n"
|
|
"Ron Cannella\n"
|
|
"RIP Benjamin Gibbs\n"
|
|
"Joshua Settle\n"
|
|
"rotimi gbadamosi\n"
|
|
"rivmont\n"
|
|
"CCIE28826\n"
|
|
"Miltiades Hadjioannou\n"
|
|
"Psyche607\n"
|
|
"Yohan\n"
|
|
"Denilson Dejesus\n"
|
|
"Allan Que\n"
|
|
"Rudy R Guerra\n"
|
|
"Palle Christoffersen\n"
|
|
"Kishor\n"
|
|
"Vinicius, O Caixeta\n"
|
|
"Mohamed Rezard Meeralebbe\n"
|
|
"EmreR\n"
|
|
"Alex Hubery\n"
|
|
"Sol Huebner\n"
|
|
"alepo\n"
|
|
"Andrés oRtA eLiZalde\n"
|
|
"Frank Garrison\n"
|
|
"Vincent van der Sluijs\n"
|
|
"NelsonNetworks\n"
|
|
"Marc Weisel\n"
|
|
"wobe\n"
|
|
"Kev Ward,UK\n"
|
|
"Mitch Vaughan\n"
|
|
"Mujtaba Mir\n"
|
|
"Arni Birgisson\n"
|
|
"Abel Aberra\n"
|
|
"Jeff Nierman\n"
|
|
"godZilla\n"
|
|
"gingerpower121\n"
|
|
"cyrinojuca\n"
|
|
"Peter Joseph\n"
|
|
"Davisteraz\n"
|
|
"Eduardo Cardoso dos Santos\n"
|
|
"MARK \"BIG MAC\" MCGRADY\n"
|
|
"chekoceron\n"
|
|
"GuillermoJimenez\n"
|
|
"Alvin Phillip\n"
|
|
"jerrysimila\n"
|
|
"Patrick den Hoed\n"
|
|
"Ciro Centro Strico Salerno\n"
|
|
"Emilio Morla\n"
|
|
"Mike Shafer\n"
|
|
"agho\n"
|
|
"Fernando Requena\n"
|
|
"Dovydas Stepanavicius\n"
|
|
"Joseph W. Anderson\n"
|
|
"Nathan Chisholm\n"
|
|
"Yahngel\n"
|
|
"rolf1974\n"
|
|
"Joe Polak\n"
|
|
"Stephen Moore\n"
|
|
"Van Michael\n"
|
|
"Ondrej Köver\n"
|
|
"Brian Adelson\n"
|
|
"Vasco Ferraz\n"
|
|
"CHONG YU NAM\n"
|
|
"Jody L. Whitlock\n"
|
|
"Kanangu\n"
|
|
"Godwin Nsubuga\n"
|
|
"John Hennessy\n"
|
|
"Michael A. Little\n"
|
|
"stibibby\n"
|
|
"Shane K Hunt\n"
|
|
"Adroit Tutoring\n"
|
|
"JamesBernardBenjaminVallespin\n"
|
|
"Ken B.\n"
|
|
"Asib Yussuf\n"
|
|
"Miguel Edison Santos - CAF\n"
|
|
"Robson Luis Sgai\n"
|
|
"Leon Deguenon\n"
|
|
"Gabriel Urra\n"
|
|
"Rob Coote\n"
|
|
"Wickedkuul_Beehotsch\n"
|
|
"Robert Mikołajczyk\n"
|
|
"Yasser A. Alluhaidan\n"
|
|
"Gessesse ESHETU\n"
|
|
"Joe Kukis\n"
|
|
"rgb943\n"
|
|
"Joe Wills\n"
|
|
"Robert Rittenhouse\n"
|
|
"Reinaldo Benitez\n"
|
|
"vrhvenkatesh\n"
|
|
"Nirav Bhatt\n"
|
|
"David Perry\n"
|
|
"Carsten Ellermann\n"
|
|
"Rufus Methu Igoro\n"
|
|
"Jeff Pooley\n"
|
|
"Andrew B. Shipton\n"
|
|
"YeowKee YK@TECHNICALES.COM\n"
|
|
"naveed4k143\n"
|
|
"Nathan Ash #12148057\n"
|
|
"Robert Marmo\n"
|
|
"George Vanburgh\n"
|
|
"Tudor Davies\n"
|
|
"Jeremy Bowen\n"
|
|
"Andrew Fox\n"
|
|
"Junior Taitt\n"
|
|
"Tropizm\n"
|
|
"Potcholo \"Nick\" Nicolas\n"
|
|
"Brandon Bennett\n"
|
|
"ntwrks\n"
|
|
"Hjalti Pálmason\n"
|
|
"Zachary Hill\n"
|
|
"Ian Verno\n"
|
|
"Jean-Christophe Baptiste\n"
|
|
"chandima Ediriweera\n"
|
|
"GunnarH\n"
|
|
"Kenrick Wong\n"
|
|
"David Afro Lezama Castro\n"
|
|
"Asad Munir\n"
|
|
"mohammed hashim\n"
|
|
"José Luis Berlanga Villlarreal\n"
|
|
"aaden\n"
|
|
"Martin Schumacher\n"
|
|
"Ðrizz\n"
|
|
"Daniel Lintott\n"
|
|
"tekdork\n"
|
|
"Sergio Pereira\n"
|
|
"James Wamburi\n"
|
|
"Mark Wecker\n"
|
|
"umar.hanafi86@gmail.com\n"
|
|
"Edson Tadeu Almeida da Silveira\n"
|
|
"Christopher Kilger\n"
|
|
"Alex Beal\n"
|
|
"Johnny Uribe\n"
|
|
"Kevin P Sheahan\n"
|
|
"Alex C. Rodich\n"
|
|
"Joao Teixeira\n"
|
|
"Caio Vianna Mello\n"
|
|
"fierceg37s\n"
|
|
"Doug Lardo\n"
|
|
"Conrad Jedynak\n"
|
|
"Andy Kelsall Jr.\n"
|
|
"Marco Basurco\n"
|
|
"Julio Delgado Jr\n"
|
|
"Ken Hallstrom-Meade\n"
|
|
"Nathan Loop\n"
|
|
"daxm\n"
|
|
"Kevin Pryce\n"
|
|
"Skipdog\n"
|
|
"Jean D Ulysse\n"
|
|
"Richard Kwame Peasah\n"
|
|
"Peter Musolino\n"
|
|
"Eric Andrews\n"
|
|
"Essam M Mahmod Ahmed\n"
|
|
"Mir Ali\n"
|
|
"JesurajAP\n"
|
|
"David Darryl Pitre\n"
|
|
"Vladimir Zalles\n"
|
|
"C_S_Ginn\n"
|
|
"Gustaf Hyllested Serve\n"
|
|
"Matt Blackwell\n"
|
|
"Skilldibop\n"
|
|
"Paul \"Skilldibop\" Jerome\n"
|
|
"Gera74\n"
|
|
"AAronC\n"
|
|
"Rob Wilkes\n"
|
|
"steve brokenshire\n"
|
|
"Mardie Kartosoewito\n"
|
|
"Ryan Bagley\n"
|
|
"Mario Seoane\n"
|
|
"James Vickery\n"
|
|
"Peter Scheele\n"
|
|
"pdxDavid\n"
|
|
"Pedro Sobral\n"
|
|
"Bryan E. Pratt Jr.\n"
|
|
"Eddy Loffeld\n"
|
|
"Joshua Guillory\n"
|
|
"ClarenceCaldwell\n"
|
|
"Afrim Kwarteng\n"
|
|
"Chika\n"
|
|
"Marco Caruso\n"
|
|
"Abubakr A Binafif\n"
|
|
"chuck russell\n"
|
|
"Jake Vallejo\n"
|
|
"Kostia\n"
|
|
"Biswajit\n"
|
|
"Marcelo da Silva Conterato\n"
|
|
"Ellert Hardarson\n"
|
|
"Rowan Lee\n"
|
|
"Mossyrik78\n"
|
|
"Mikhail Shpak\n"
|
|
"Gianremo Smisek\n"
|
|
"xtify21\n"
|
|
"Travis Newton\n"
|
|
"Stephen Turnbull\n"
|
|
"James Grace\n"
|
|
"Eric \"Frenchie\" Villeneuve\n"
|
|
"Rick Brady\n"
|
|
"Bodizzle\n"
|
|
"rbailey-NTAI\n"
|
|
"Asamoto\n"
|
|
"Allen Taylor\n"
|
|
"NetJimB\n"
|
|
"kyoungyong lee\n"
|
|
"Damian Marcrum\n"
|
|
"Nicolas Bautista\n"
|
|
"Brad Allatt\n"
|
|
"Salman Ahmad\n"
|
|
"Gerardo Guzman\n"
|
|
"Kovan Azeez\n"
|
|
"Alkhamisy Adel Hamad\n"
|
|
"RajJyothi\n"
|
|
"Leonardo S Jeronimo\n"
|
|
"Xcratburma\n"
|
|
"Bjørn-Inge Haga\n"
|
|
"Tristian Howard\n"
|
|
"Robert Wilson\n"
|
|
"BattyTheJedi\n"
|
|
"Kosala\n"
|
|
"Nazmus Sakib\n"
|
|
"Alfred Eric Jones\n"
|
|
"J Grant Bellchamber\n"
|
|
"Lekan Aje\n"
|
|
"Jacob Winkle\n"
|
|
"Maybe translate to Norwegian?\n"
|
|
"Anthony R Junk\n"
|
|
"Amplex Electric, Inc.\n"
|
|
"Sue Chatterjee\n"
|
|
"Glen Stadig\n"
|
|
"Christian Menz\n"
|
|
"Billy Nix\n"
|
|
"JoeyL.\n"
|
|
"Alessandro.Veras\n"
|
|
"Steven Vlahakis\n"
|
|
"Kevin Bowen\n"
|
|
"NG11geek\n"
|
|
"Matvey Gubanov\n"
|
|
"frano-dalmatinac\n"
|
|
"OrceDimitrovski\n"
|
|
"boogsalmighty\n"
|
|
"Maky Robert\n"
|
|
"Stuart Walker\n"
|
|
"Vipin Kumar\n"
|
|
"N.Sivatharzan\n"
|
|
"Dannie Norman\n"
|
|
"Sylvester Metieh\n"
|
|
"Tyler Pruess\n"
|
|
"DanielMB\n"
|
|
"Ryan Douglass Milton\n"
|
|
"Ahmad Amran - Webcore\n"
|
|
"Benjamin Feld\n"
|
|
"GWSchweickert\n"
|
|
"Dirk Fettke\n"
|
|
"AJ NOURI\n"
|
|
"Stefan_Basson_Sydney_AUS\n"
|
|
"Tang Choong Whye\n"
|
|
"Ofer Ben Zvi\n"
|
|
"5UCC355\n"
|
|
"Rikard Borginger\n"
|
|
"Robert K. Saydee Sr.\n"
|
|
"D.Coty\n"
|
|
"Michael G. Taylor Sr.\n"
|
|
"Erich Schommarz\n"
|
|
"Cassius Thomas\n"
|
|
"Dominic Metzger\n"
|
|
"Mike Manning\n"
|
|
"José M. Castro Jr.\n"
|
|
"Justin Bridgman\n"
|
|
"Francis Enmanuel Baez Metz\n"
|
|
"Ievgen Morskyi\n"
|
|
"itAvgur-Irkutsk-Russia\n"
|
|
"Padraic D. Hallinan\n"
|
|
"Thomas Deamer\n"
|
|
"Marco Paulo Ferreira\n"
|
|
"Nicolas Pagano\n"
|
|
"JR Garcia\n"
|
|
"SIAGHY\n"
|
|
"Naj Qazi\n"
|
|
"reynaldo bilan\n"
|
|
"Matt Egan\n"
|
|
"Chris Beach\n"
|
|
"Fco. Jose Santos\n"
|
|
"Johnny Miller\n"
|
|
"Muhammad Tahir Munir\n"
|
|
"BJoslin\n"
|
|
"Nick Fouts\n"
|
|
"Pete Kowalsky\n"
|
|
"developer\n"
|
|
"Tyler Conrad\n"
|
|
"Michael Weaver Johnson\n"
|
|
"s2mfh\n"
|
|
"Scotty2mfh\n"
|
|
"Nicolas Dangeon\n"
|
|
"Michial Cantrell\n"
|
|
"Sébastien Larivière\n"
|
|
"Primmus\n"
|
|
"Wonder Jones\n"
|
|
"Weston L Myers\n"
|
|
"Steve Brosseau\n"
|
|
"Ryan Mortier\n"
|
|
"Steve Snavely\n"
|
|
"Kirk J Iles\n"
|
|
"Tiago Sousa\n"
|
|
"Jesuraj Amaladas\n"
|
|
"Mark C Bernier\n"
|
|
"Jonathan David Rees\n"
|
|
"David Bigerstaff\n"
|
|
"Widmo\n"
|
|
"Karl Billington\n"
|
|
"naner2k\n"
|
|
"Jose Daniel\n"
|
|
"Mark.Foutch\n"
|
|
"Bootcamp20\n"
|
|
"Peter Hansen\n"
|
|
"Dharnesh\n"
|
|
"EnglishRob\n"
|
|
"Jyotirmoy Lahkar\n"
|
|
"Guggilam Guru Vasudeva\n"
|
|
"Chris Higgins\n"
|
|
"Blas Díaz (Colombia)\n"
|
|
"Ahmed Albadree\n"
|
|
"Jens Holtmann\n"
|
|
"TJ Kwentus\n"
|
|
"Jacob Smith\n"
|
|
"Damian Baran\n"
|
|
"phocean\n"
|
|
"Mark \"BigMac\" McGrady\n"
|
|
"teav-sovandara\n"
|
|
"Dinesh Galani\n"
|
|
"Raman Thapa\n"
|
|
"RechieCebreros\n"
|
|
"Jade Rampulla\n"
|
|
"Fred Quan\n"
|
|
"Martin Wall\n"
|
|
"Louis Duzant\n"
|
|
"SebasNati\n"
|
|
"Erik Fairbanks\n"
|
|
"Simon Boadi\n"
|
|
"Darren Smurphin Murphy\n"
|
|
"Stephanos Christou\n"
|
|
"Rob Hinst\n"
|
|
"Carlos A Salas\n"
|
|
"Snehal Patel\n"
|
|
"S. O\'Reilly\n"
|
|
"John Volter\n"
|
|
"dkmahajan\n"
|
|
"mansoor\n"
|
|
"Charles Crosland\n"
|
|
"Thiha Soe\n"
|
|
"Ram K Bista\n"
|
|
"toyosiolabs\n"
|
|
"Shardul Ingle\n"
|
|
"KhurramArif\n"
|
|
"AaronMcKenna\n"
|
|
"FaustoSampaio\n"
|
|
"Justin Lemme\n"
|
|
"Jquest\n"
|
|
"Michael Brister\n"
|
|
"Nicholas Donathan\n"
|
|
"Slawomir Babicz\n"
|
|
"Bradley Grein\n"
|
|
"Roy\n"
|
|
"RoyD\n"
|
|
"Adam Bailey\n"
|
|
"Daniel Neculai\n"
|
|
"Kevin Vogt\n"
|
|
"ALFREDO PASIGAN SALIPOT\n"
|
|
"Giovanni Lojica\n"
|
|
"Nicolas A. Escudero\n"
|
|
"The Big Dirty\n"
|
|
"Arun Joshi\n"
|
|
"John Michael Santiago - boogs\n"
|
|
"Gian-Luca Casella\n"
|
|
"Geron Craig\n"
|
|
"Christopher Young\n"
|
|
"John Buelk\n"
|
|
"Julio Moraes\n"
|
|
"Aaron Meade\n"
|
|
"Paulo Guerreiro (Portugal)\n"
|
|
"CR Thompson\n"
|
|
"Timár Zsolt\n"
|
|
"Leobis\n"
|
|
"Alan Matson\n"
|
|
"Eric Park\n"
|
|
"Pavel Tishkov\n"
|
|
"L@mine S@lhi\n"
|
|
"Per-Erik Brask\n"
|
|
"Matt Williams\n"
|
|
"Favre was here.\n"
|
|
"Sergey Zheleznyak\n"
|
|
"Alongi Daniel\n"
|
|
"Lee Jeong Goo\n"
|
|
"Chris Swinney\n"
|
|
"Ayyappan Ramanan\n"
|
|
"GSEC4959\n"
|
|
"Cesar Honores\n"
|
|
"Ravinderpal Singh\n"
|
|
"Lee Haynes\n"
|
|
"Jose Luis Bosquez Echevers\n"
|
|
"Yevgeniy Orman\n"
|
|
"Ankur Singh\n"
|
|
"Marcos de Jesus Magagalhaes\n"
|
|
"Dave Heinz\n"
|
|
"Emberly\n"
|
|
"Chris Gauthier\n"
|
|
"Blair&BenedictRepuyan\n"
|
|
"Alex Recupero\n"
|
|
"Victor Knell\n"
|
|
"Travis Yates\n"
|
|
"John Yates III\n"
|
|
"Ian_C\n"
|
|
"Jesse Jensen\n"
|
|
"Drew Ludwick\n"
|
|
"Chris Barlow\n"
|
|
"Alessandro Veras\n"
|
|
"Alan Matos\n"
|
|
"Harold Alden A. Sanchez\n"
|
|
"Munir B. Abdullahi\n"
|
|
"FARTXaler\n"
|
|
"DEWTEK\n"
|
|
"DewTech\n"
|
|
"Daniel Darby\n"
|
|
"Tishkov Pavel [64]\n"
|
|
"Wilhelm Jonker\n"
|
|
"Paul Sivie\n"
|
|
"BlessLarryAgbemor\n"
|
|
"Richard Miller\n"
|
|
"Francesco Colista\n"
|
|
"Stephen C. Moore\n"
|
|
"Dominik Ziajka"))
|
|
self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab_2), _translate("AboutDialog", "&Thanks to"))
|
|
self.uiLicensePlainTextEdit.setPlainText(_translate("AboutDialog", " GNU GENERAL PUBLIC LICENSE\n"
|
|
" Version 3, 29 June 2007\n"
|
|
"\n"
|
|
" Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>\n"
|
|
" Everyone is permitted to copy and distribute verbatim copies\n"
|
|
" of this license document, but changing it is not allowed.\n"
|
|
"\n"
|
|
" Preamble\n"
|
|
"\n"
|
|
" The GNU General Public License is a free, copyleft license for\n"
|
|
"software and other kinds of works.\n"
|
|
"\n"
|
|
" The licenses for most software and other practical works are designed\n"
|
|
"to take away your freedom to share and change the works. By contrast,\n"
|
|
"the GNU General Public License is intended to guarantee your freedom to\n"
|
|
"share and change all versions of a program--to make sure it remains free\n"
|
|
"software for all its users. We, the Free Software Foundation, use the\n"
|
|
"GNU General Public License for most of our software; it applies also to\n"
|
|
"any other work released this way by its authors. You can apply it to\n"
|
|
"your programs, too.\n"
|
|
"\n"
|
|
" When we speak of free software, we are referring to freedom, not\n"
|
|
"price. Our General Public Licenses are designed to make sure that you\n"
|
|
"have the freedom to distribute copies of free software (and charge for\n"
|
|
"them if you wish), that you receive source code or can get it if you\n"
|
|
"want it, that you can change the software or use pieces of it in new\n"
|
|
"free programs, and that you know you can do these things.\n"
|
|
"\n"
|
|
" To protect your rights, we need to prevent others from denying you\n"
|
|
"these rights or asking you to surrender the rights. Therefore, you have\n"
|
|
"certain responsibilities if you distribute copies of the software, or if\n"
|
|
"you modify it: responsibilities to respect the freedom of others.\n"
|
|
"\n"
|
|
" For example, if you distribute copies of such a program, whether\n"
|
|
"gratis or for a fee, you must pass on to the recipients the same\n"
|
|
"freedoms that you received. You must make sure that they, too, receive\n"
|
|
"or can get the source code. And you must show them these terms so they\n"
|
|
"know their rights.\n"
|
|
"\n"
|
|
" Developers that use the GNU GPL protect your rights with two steps:\n"
|
|
"(1) assert copyright on the software, and (2) offer you this License\n"
|
|
"giving you legal permission to copy, distribute and/or modify it.\n"
|
|
"\n"
|
|
" For the developers\' and authors\' protection, the GPL clearly explains\n"
|
|
"that there is no warranty for this free software. For both users\' and\n"
|
|
"authors\' sake, the GPL requires that modified versions be marked as\n"
|
|
"changed, so that their problems will not be attributed erroneously to\n"
|
|
"authors of previous versions.\n"
|
|
"\n"
|
|
" Some devices are designed to deny users access to install or run\n"
|
|
"modified versions of the software inside them, although the manufacturer\n"
|
|
"can do so. This is fundamentally incompatible with the aim of\n"
|
|
"protecting users\' freedom to change the software. The systematic\n"
|
|
"pattern of such abuse occurs in the area of products for individuals to\n"
|
|
"use, which is precisely where it is most unacceptable. Therefore, we\n"
|
|
"have designed this version of the GPL to prohibit the practice for those\n"
|
|
"products. If such problems arise substantially in other domains, we\n"
|
|
"stand ready to extend this provision to those domains in future versions\n"
|
|
"of the GPL, as needed to protect the freedom of users.\n"
|
|
"\n"
|
|
" Finally, every program is threatened constantly by software patents.\n"
|
|
"States should not allow patents to restrict development and use of\n"
|
|
"software on general-purpose computers, but in those that do, we wish to\n"
|
|
"avoid the special danger that patents applied to a free program could\n"
|
|
"make it effectively proprietary. To prevent this, the GPL assures that\n"
|
|
"patents cannot be used to render the program non-free.\n"
|
|
"\n"
|
|
" The precise terms and conditions for copying, distribution and\n"
|
|
"modification follow.\n"
|
|
"\n"
|
|
" TERMS AND CONDITIONS\n"
|
|
"\n"
|
|
" 0. Definitions.\n"
|
|
"\n"
|
|
" \"This License\" refers to version 3 of the GNU General Public License.\n"
|
|
"\n"
|
|
" \"Copyright\" also means copyright-like laws that apply to other kinds of\n"
|
|
"works, such as semiconductor masks.\n"
|
|
"\n"
|
|
" \"The Program\" refers to any copyrightable work licensed under this\n"
|
|
"License. Each licensee is addressed as \"you\". \"Licensees\" and\n"
|
|
"\"recipients\" may be individuals or organizations.\n"
|
|
"\n"
|
|
" To \"modify\" a work means to copy from or adapt all or part of the work\n"
|
|
"in a fashion requiring copyright permission, other than the making of an\n"
|
|
"exact copy. The resulting work is called a \"modified version\" of the\n"
|
|
"earlier work or a work \"based on\" the earlier work.\n"
|
|
"\n"
|
|
" A \"covered work\" means either the unmodified Program or a work based\n"
|
|
"on the Program.\n"
|
|
"\n"
|
|
" To \"propagate\" a work means to do anything with it that, without\n"
|
|
"permission, would make you directly or secondarily liable for\n"
|
|
"infringement under applicable copyright law, except executing it on a\n"
|
|
"computer or modifying a private copy. Propagation includes copying,\n"
|
|
"distribution (with or without modification), making available to the\n"
|
|
"public, and in some countries other activities as well.\n"
|
|
"\n"
|
|
" To \"convey\" a work means any kind of propagation that enables other\n"
|
|
"parties to make or receive copies. Mere interaction with a user through\n"
|
|
"a computer network, with no transfer of a copy, is not conveying.\n"
|
|
"\n"
|
|
" An interactive user interface displays \"Appropriate Legal Notices\"\n"
|
|
"to the extent that it includes a convenient and prominently visible\n"
|
|
"feature that (1) displays an appropriate copyright notice, and (2)\n"
|
|
"tells the user that there is no warranty for the work (except to the\n"
|
|
"extent that warranties are provided), that licensees may convey the\n"
|
|
"work under this License, and how to view a copy of this License. If\n"
|
|
"the interface presents a list of user commands or options, such as a\n"
|
|
"menu, a prominent item in the list meets this criterion.\n"
|
|
"\n"
|
|
" 1. Source Code.\n"
|
|
"\n"
|
|
" The \"source code\" for a work means the preferred form of the work\n"
|
|
"for making modifications to it. \"Object code\" means any non-source\n"
|
|
"form of a work.\n"
|
|
"\n"
|
|
" A \"Standard Interface\" means an interface that either is an official\n"
|
|
"standard defined by a recognized standards body, or, in the case of\n"
|
|
"interfaces specified for a particular programming language, one that\n"
|
|
"is widely used among developers working in that language.\n"
|
|
"\n"
|
|
" The \"System Libraries\" of an executable work include anything, other\n"
|
|
"than the work as a whole, that (a) is included in the normal form of\n"
|
|
"packaging a Major Component, but which is not part of that Major\n"
|
|
"Component, and (b) serves only to enable use of the work with that\n"
|
|
"Major Component, or to implement a Standard Interface for which an\n"
|
|
"implementation is available to the public in source code form. A\n"
|
|
"\"Major Component\", in this context, means a major essential component\n"
|
|
"(kernel, window system, and so on) of the specific operating system\n"
|
|
"(if any) on which the executable work runs, or a compiler used to\n"
|
|
"produce the work, or an object code interpreter used to run it.\n"
|
|
"\n"
|
|
" The \"Corresponding Source\" for a work in object code form means all\n"
|
|
"the source code needed to generate, install, and (for an executable\n"
|
|
"work) run the object code and to modify the work, including scripts to\n"
|
|
"control those activities. However, it does not include the work\'s\n"
|
|
"System Libraries, or general-purpose tools or generally available free\n"
|
|
"programs which are used unmodified in performing those activities but\n"
|
|
"which are not part of the work. For example, Corresponding Source\n"
|
|
"includes interface definition files associated with source files for\n"
|
|
"the work, and the source code for shared libraries and dynamically\n"
|
|
"linked subprograms that the work is specifically designed to require,\n"
|
|
"such as by intimate data communication or control flow between those\n"
|
|
"subprograms and other parts of the work.\n"
|
|
"\n"
|
|
" The Corresponding Source need not include anything that users\n"
|
|
"can regenerate automatically from other parts of the Corresponding\n"
|
|
"Source.\n"
|
|
"\n"
|
|
" The Corresponding Source for a work in source code form is that\n"
|
|
"same work.\n"
|
|
"\n"
|
|
" 2. Basic Permissions.\n"
|
|
"\n"
|
|
" All rights granted under this License are granted for the term of\n"
|
|
"copyright on the Program, and are irrevocable provided the stated\n"
|
|
"conditions are met. This License explicitly affirms your unlimited\n"
|
|
"permission to run the unmodified Program. The output from running a\n"
|
|
"covered work is covered by this License only if the output, given its\n"
|
|
"content, constitutes a covered work. This License acknowledges your\n"
|
|
"rights of fair use or other equivalent, as provided by copyright law.\n"
|
|
"\n"
|
|
" You may make, run and propagate covered works that you do not\n"
|
|
"convey, without conditions so long as your license otherwise remains\n"
|
|
"in force. You may convey covered works to others for the sole purpose\n"
|
|
"of having them make modifications exclusively for you, or provide you\n"
|
|
"with facilities for running those works, provided that you comply with\n"
|
|
"the terms of this License in conveying all material for which you do\n"
|
|
"not control copyright. Those thus making or running the covered works\n"
|
|
"for you must do so exclusively on your behalf, under your direction\n"
|
|
"and control, on terms that prohibit them from making any copies of\n"
|
|
"your copyrighted material outside their relationship with you.\n"
|
|
"\n"
|
|
" Conveying under any other circumstances is permitted solely under\n"
|
|
"the conditions stated below. Sublicensing is not allowed; section 10\n"
|
|
"makes it unnecessary.\n"
|
|
"\n"
|
|
" 3. Protecting Users\' Legal Rights From Anti-Circumvention Law.\n"
|
|
"\n"
|
|
" No covered work shall be deemed part of an effective technological\n"
|
|
"measure under any applicable law fulfilling obligations under article\n"
|
|
"11 of the WIPO copyright treaty adopted on 20 December 1996, or\n"
|
|
"similar laws prohibiting or restricting circumvention of such\n"
|
|
"measures.\n"
|
|
"\n"
|
|
" When you convey a covered work, you waive any legal power to forbid\n"
|
|
"circumvention of technological measures to the extent such circumvention\n"
|
|
"is effected by exercising rights under this License with respect to\n"
|
|
"the covered work, and you disclaim any intention to limit operation or\n"
|
|
"modification of the work as a means of enforcing, against the work\'s\n"
|
|
"users, your or third parties\' legal rights to forbid circumvention of\n"
|
|
"technological measures.\n"
|
|
"\n"
|
|
" 4. Conveying Verbatim Copies.\n"
|
|
"\n"
|
|
" You may convey verbatim copies of the Program\'s source code as you\n"
|
|
"receive it, in any medium, provided that you conspicuously and\n"
|
|
"appropriately publish on each copy an appropriate copyright notice;\n"
|
|
"keep intact all notices stating that this License and any\n"
|
|
"non-permissive terms added in accord with section 7 apply to the code;\n"
|
|
"keep intact all notices of the absence of any warranty; and give all\n"
|
|
"recipients a copy of this License along with the Program.\n"
|
|
"\n"
|
|
" You may charge any price or no price for each copy that you convey,\n"
|
|
"and you may offer support or warranty protection for a fee.\n"
|
|
"\n"
|
|
" 5. Conveying Modified Source Versions.\n"
|
|
"\n"
|
|
" You may convey a work based on the Program, or the modifications to\n"
|
|
"produce it from the Program, in the form of source code under the\n"
|
|
"terms of section 4, provided that you also meet all of these conditions:\n"
|
|
"\n"
|
|
" a) The work must carry prominent notices stating that you modified\n"
|
|
" it, and giving a relevant date.\n"
|
|
"\n"
|
|
" b) The work must carry prominent notices stating that it is\n"
|
|
" released under this License and any conditions added under section\n"
|
|
" 7. This requirement modifies the requirement in section 4 to\n"
|
|
" \"keep intact all notices\".\n"
|
|
"\n"
|
|
" c) You must license the entire work, as a whole, under this\n"
|
|
" License to anyone who comes into possession of a copy. This\n"
|
|
" License will therefore apply, along with any applicable section 7\n"
|
|
" additional terms, to the whole of the work, and all its parts,\n"
|
|
" regardless of how they are packaged. This License gives no\n"
|
|
" permission to license the work in any other way, but it does not\n"
|
|
" invalidate such permission if you have separately received it.\n"
|
|
"\n"
|
|
" d) If the work has interactive user interfaces, each must display\n"
|
|
" Appropriate Legal Notices; however, if the Program has interactive\n"
|
|
" interfaces that do not display Appropriate Legal Notices, your\n"
|
|
" work need not make them do so.\n"
|
|
"\n"
|
|
" A compilation of a covered work with other separate and independent\n"
|
|
"works, which are not by their nature extensions of the covered work,\n"
|
|
"and which are not combined with it such as to form a larger program,\n"
|
|
"in or on a volume of a storage or distribution medium, is called an\n"
|
|
"\"aggregate\" if the compilation and its resulting copyright are not\n"
|
|
"used to limit the access or legal rights of the compilation\'s users\n"
|
|
"beyond what the individual works permit. Inclusion of a covered work\n"
|
|
"in an aggregate does not cause this License to apply to the other\n"
|
|
"parts of the aggregate.\n"
|
|
"\n"
|
|
" 6. Conveying Non-Source Forms.\n"
|
|
"\n"
|
|
" You may convey a covered work in object code form under the terms\n"
|
|
"of sections 4 and 5, provided that you also convey the\n"
|
|
"machine-readable Corresponding Source under the terms of this License,\n"
|
|
"in one of these ways:\n"
|
|
"\n"
|
|
" a) Convey the object code in, or embodied in, a physical product\n"
|
|
" (including a physical distribution medium), accompanied by the\n"
|
|
" Corresponding Source fixed on a durable physical medium\n"
|
|
" customarily used for software interchange.\n"
|
|
"\n"
|
|
" b) Convey the object code in, or embodied in, a physical product\n"
|
|
" (including a physical distribution medium), accompanied by a\n"
|
|
" written offer, valid for at least three years and valid for as\n"
|
|
" long as you offer spare parts or customer support for that product\n"
|
|
" model, to give anyone who possesses the object code either (1) a\n"
|
|
" copy of the Corresponding Source for all the software in the\n"
|
|
" product that is covered by this License, on a durable physical\n"
|
|
" medium customarily used for software interchange, for a price no\n"
|
|
" more than your reasonable cost of physically performing this\n"
|
|
" conveying of source, or (2) access to copy the\n"
|
|
" Corresponding Source from a network server at no charge.\n"
|
|
"\n"
|
|
" c) Convey individual copies of the object code with a copy of the\n"
|
|
" written offer to provide the Corresponding Source. This\n"
|
|
" alternative is allowed only occasionally and noncommercially, and\n"
|
|
" only if you received the object code with such an offer, in accord\n"
|
|
" with subsection 6b.\n"
|
|
"\n"
|
|
" d) Convey the object code by offering access from a designated\n"
|
|
" place (gratis or for a charge), and offer equivalent access to the\n"
|
|
" Corresponding Source in the same way through the same place at no\n"
|
|
" further charge. You need not require recipients to copy the\n"
|
|
" Corresponding Source along with the object code. If the place to\n"
|
|
" copy the object code is a network server, the Corresponding Source\n"
|
|
" may be on a different server (operated by you or a third party)\n"
|
|
" that supports equivalent copying facilities, provided you maintain\n"
|
|
" clear directions next to the object code saying where to find the\n"
|
|
" Corresponding Source. Regardless of what server hosts the\n"
|
|
" Corresponding Source, you remain obligated to ensure that it is\n"
|
|
" available for as long as needed to satisfy these requirements.\n"
|
|
"\n"
|
|
" e) Convey the object code using peer-to-peer transmission, provided\n"
|
|
" you inform other peers where the object code and Corresponding\n"
|
|
" Source of the work are being offered to the general public at no\n"
|
|
" charge under subsection 6d.\n"
|
|
"\n"
|
|
" A separable portion of the object code, whose source code is excluded\n"
|
|
"from the Corresponding Source as a System Library, need not be\n"
|
|
"included in conveying the object code work.\n"
|
|
"\n"
|
|
" A \"User Product\" is either (1) a \"consumer product\", which means any\n"
|
|
"tangible personal property which is normally used for personal, family,\n"
|
|
"or household purposes, or (2) anything designed or sold for incorporation\n"
|
|
"into a dwelling. In determining whether a product is a consumer product,\n"
|
|
"doubtful cases shall be resolved in favor of coverage. For a particular\n"
|
|
"product received by a particular user, \"normally used\" refers to a\n"
|
|
"typical or common use of that class of product, regardless of the status\n"
|
|
"of the particular user or of the way in which the particular user\n"
|
|
"actually uses, or expects or is expected to use, the product. A product\n"
|
|
"is a consumer product regardless of whether the product has substantial\n"
|
|
"commercial, industrial or non-consumer uses, unless such uses represent\n"
|
|
"the only significant mode of use of the product.\n"
|
|
"\n"
|
|
" \"Installation Information\" for a User Product means any methods,\n"
|
|
"procedures, authorization keys, or other information required to install\n"
|
|
"and execute modified versions of a covered work in that User Product from\n"
|
|
"a modified version of its Corresponding Source. The information must\n"
|
|
"suffice to ensure that the continued functioning of the modified object\n"
|
|
"code is in no case prevented or interfered with solely because\n"
|
|
"modification has been made.\n"
|
|
"\n"
|
|
" If you convey an object code work under this section in, or with, or\n"
|
|
"specifically for use in, a User Product, and the conveying occurs as\n"
|
|
"part of a transaction in which the right of possession and use of the\n"
|
|
"User Product is transferred to the recipient in perpetuity or for a\n"
|
|
"fixed term (regardless of how the transaction is characterized), the\n"
|
|
"Corresponding Source conveyed under this section must be accompanied\n"
|
|
"by the Installation Information. But this requirement does not apply\n"
|
|
"if neither you nor any third party retains the ability to install\n"
|
|
"modified object code on the User Product (for example, the work has\n"
|
|
"been installed in ROM).\n"
|
|
"\n"
|
|
" The requirement to provide Installation Information does not include a\n"
|
|
"requirement to continue to provide support service, warranty, or updates\n"
|
|
"for a work that has been modified or installed by the recipient, or for\n"
|
|
"the User Product in which it has been modified or installed. Access to a\n"
|
|
"network may be denied when the modification itself materially and\n"
|
|
"adversely affects the operation of the network or violates the rules and\n"
|
|
"protocols for communication across the network.\n"
|
|
"\n"
|
|
" Corresponding Source conveyed, and Installation Information provided,\n"
|
|
"in accord with this section must be in a format that is publicly\n"
|
|
"documented (and with an implementation available to the public in\n"
|
|
"source code form), and must require no special password or key for\n"
|
|
"unpacking, reading or copying.\n"
|
|
"\n"
|
|
" 7. Additional Terms.\n"
|
|
"\n"
|
|
" \"Additional permissions\" are terms that supplement the terms of this\n"
|
|
"License by making exceptions from one or more of its conditions.\n"
|
|
"Additional permissions that are applicable to the entire Program shall\n"
|
|
"be treated as though they were included in this License, to the extent\n"
|
|
"that they are valid under applicable law. If additional permissions\n"
|
|
"apply only to part of the Program, that part may be used separately\n"
|
|
"under those permissions, but the entire Program remains governed by\n"
|
|
"this License without regard to the additional permissions.\n"
|
|
"\n"
|
|
" When you convey a copy of a covered work, you may at your option\n"
|
|
"remove any additional permissions from that copy, or from any part of\n"
|
|
"it. (Additional permissions may be written to require their own\n"
|
|
"removal in certain cases when you modify the work.) You may place\n"
|
|
"additional permissions on material, added by you to a covered work,\n"
|
|
"for which you have or can give appropriate copyright permission.\n"
|
|
"\n"
|
|
" Notwithstanding any other provision of this License, for material you\n"
|
|
"add to a covered work, you may (if authorized by the copyright holders of\n"
|
|
"that material) supplement the terms of this License with terms:\n"
|
|
"\n"
|
|
" a) Disclaiming warranty or limiting liability differently from the\n"
|
|
" terms of sections 15 and 16 of this License; or\n"
|
|
"\n"
|
|
" b) Requiring preservation of specified reasonable legal notices or\n"
|
|
" author attributions in that material or in the Appropriate Legal\n"
|
|
" Notices displayed by works containing it; or\n"
|
|
"\n"
|
|
" c) Prohibiting misrepresentation of the origin of that material, or\n"
|
|
" requiring that modified versions of such material be marked in\n"
|
|
" reasonable ways as different from the original version; or\n"
|
|
"\n"
|
|
" d) Limiting the use for publicity purposes of names of licensors or\n"
|
|
" authors of the material; or\n"
|
|
"\n"
|
|
" e) Declining to grant rights under trademark law for use of some\n"
|
|
" trade names, trademarks, or service marks; or\n"
|
|
"\n"
|
|
" f) Requiring indemnification of licensors and authors of that\n"
|
|
" material by anyone who conveys the material (or modified versions of\n"
|
|
" it) with contractual assumptions of liability to the recipient, for\n"
|
|
" any liability that these contractual assumptions directly impose on\n"
|
|
" those licensors and authors.\n"
|
|
"\n"
|
|
" All other non-permissive additional terms are considered \"further\n"
|
|
"restrictions\" within the meaning of section 10. If the Program as you\n"
|
|
"received it, or any part of it, contains a notice stating that it is\n"
|
|
"governed by this License along with a term that is a further\n"
|
|
"restriction, you may remove that term. If a license document contains\n"
|
|
"a further restriction but permits relicensing or conveying under this\n"
|
|
"License, you may add to a covered work material governed by the terms\n"
|
|
"of that license document, provided that the further restriction does\n"
|
|
"not survive such relicensing or conveying.\n"
|
|
"\n"
|
|
" If you add terms to a covered work in accord with this section, you\n"
|
|
"must place, in the relevant source files, a statement of the\n"
|
|
"additional terms that apply to those files, or a notice indicating\n"
|
|
"where to find the applicable terms.\n"
|
|
"\n"
|
|
" Additional terms, permissive or non-permissive, may be stated in the\n"
|
|
"form of a separately written license, or stated as exceptions;\n"
|
|
"the above requirements apply either way.\n"
|
|
"\n"
|
|
" 8. Termination.\n"
|
|
"\n"
|
|
" You may not propagate or modify a covered work except as expressly\n"
|
|
"provided under this License. Any attempt otherwise to propagate or\n"
|
|
"modify it is void, and will automatically terminate your rights under\n"
|
|
"this License (including any patent licenses granted under the third\n"
|
|
"paragraph of section 11).\n"
|
|
"\n"
|
|
" However, if you cease all violation of this License, then your\n"
|
|
"license from a particular copyright holder is reinstated (a)\n"
|
|
"provisionally, unless and until the copyright holder explicitly and\n"
|
|
"finally terminates your license, and (b) permanently, if the copyright\n"
|
|
"holder fails to notify you of the violation by some reasonable means\n"
|
|
"prior to 60 days after the cessation.\n"
|
|
"\n"
|
|
" Moreover, your license from a particular copyright holder is\n"
|
|
"reinstated permanently if the copyright holder notifies you of the\n"
|
|
"violation by some reasonable means, this is the first time you have\n"
|
|
"received notice of violation of this License (for any work) from that\n"
|
|
"copyright holder, and you cure the violation prior to 30 days after\n"
|
|
"your receipt of the notice.\n"
|
|
"\n"
|
|
" Termination of your rights under this section does not terminate the\n"
|
|
"licenses of parties who have received copies or rights from you under\n"
|
|
"this License. If your rights have been terminated and not permanently\n"
|
|
"reinstated, you do not qualify to receive new licenses for the same\n"
|
|
"material under section 10.\n"
|
|
"\n"
|
|
" 9. Acceptance Not Required for Having Copies.\n"
|
|
"\n"
|
|
" You are not required to accept this License in order to receive or\n"
|
|
"run a copy of the Program. Ancillary propagation of a covered work\n"
|
|
"occurring solely as a consequence of using peer-to-peer transmission\n"
|
|
"to receive a copy likewise does not require acceptance. However,\n"
|
|
"nothing other than this License grants you permission to propagate or\n"
|
|
"modify any covered work. These actions infringe copyright if you do\n"
|
|
"not accept this License. Therefore, by modifying or propagating a\n"
|
|
"covered work, you indicate your acceptance of this License to do so.\n"
|
|
"\n"
|
|
" 10. Automatic Licensing of Downstream Recipients.\n"
|
|
"\n"
|
|
" Each time you convey a covered work, the recipient automatically\n"
|
|
"receives a license from the original licensors, to run, modify and\n"
|
|
"propagate that work, subject to this License. You are not responsible\n"
|
|
"for enforcing compliance by third parties with this License.\n"
|
|
"\n"
|
|
" An \"entity transaction\" is a transaction transferring control of an\n"
|
|
"organization, or substantially all assets of one, or subdividing an\n"
|
|
"organization, or merging organizations. If propagation of a covered\n"
|
|
"work results from an entity transaction, each party to that\n"
|
|
"transaction who receives a copy of the work also receives whatever\n"
|
|
"licenses to the work the party\'s predecessor in interest had or could\n"
|
|
"give under the previous paragraph, plus a right to possession of the\n"
|
|
"Corresponding Source of the work from the predecessor in interest, if\n"
|
|
"the predecessor has it or can get it with reasonable efforts.\n"
|
|
"\n"
|
|
" You may not impose any further restrictions on the exercise of the\n"
|
|
"rights granted or affirmed under this License. For example, you may\n"
|
|
"not impose a license fee, royalty, or other charge for exercise of\n"
|
|
"rights granted under this License, and you may not initiate litigation\n"
|
|
"(including a cross-claim or counterclaim in a lawsuit) alleging that\n"
|
|
"any patent claim is infringed by making, using, selling, offering for\n"
|
|
"sale, or importing the Program or any portion of it.\n"
|
|
"\n"
|
|
" 11. Patents.\n"
|
|
"\n"
|
|
" A \"contributor\" is a copyright holder who authorizes use under this\n"
|
|
"License of the Program or a work on which the Program is based. The\n"
|
|
"work thus licensed is called the contributor\'s \"contributor version\".\n"
|
|
"\n"
|
|
" A contributor\'s \"essential patent claims\" are all patent claims\n"
|
|
"owned or controlled by the contributor, whether already acquired or\n"
|
|
"hereafter acquired, that would be infringed by some manner, permitted\n"
|
|
"by this License, of making, using, or selling its contributor version,\n"
|
|
"but do not include claims that would be infringed only as a\n"
|
|
"consequence of further modification of the contributor version. For\n"
|
|
"purposes of this definition, \"control\" includes the right to grant\n"
|
|
"patent sublicenses in a manner consistent with the requirements of\n"
|
|
"this License.\n"
|
|
"\n"
|
|
" Each contributor grants you a non-exclusive, worldwide, royalty-free\n"
|
|
"patent license under the contributor\'s essential patent claims, to\n"
|
|
"make, use, sell, offer for sale, import and otherwise run, modify and\n"
|
|
"propagate the contents of its contributor version.\n"
|
|
"\n"
|
|
" In the following three paragraphs, a \"patent license\" is any express\n"
|
|
"agreement or commitment, however denominated, not to enforce a patent\n"
|
|
"(such as an express permission to practice a patent or covenant not to\n"
|
|
"sue for patent infringement). To \"grant\" such a patent license to a\n"
|
|
"party means to make such an agreement or commitment not to enforce a\n"
|
|
"patent against the party.\n"
|
|
"\n"
|
|
" If you convey a covered work, knowingly relying on a patent license,\n"
|
|
"and the Corresponding Source of the work is not available for anyone\n"
|
|
"to copy, free of charge and under the terms of this License, through a\n"
|
|
"publicly available network server or other readily accessible means,\n"
|
|
"then you must either (1) cause the Corresponding Source to be so\n"
|
|
"available, or (2) arrange to deprive yourself of the benefit of the\n"
|
|
"patent license for this particular work, or (3) arrange, in a manner\n"
|
|
"consistent with the requirements of this License, to extend the patent\n"
|
|
"license to downstream recipients. \"Knowingly relying\" means you have\n"
|
|
"actual knowledge that, but for the patent license, your conveying the\n"
|
|
"covered work in a country, or your recipient\'s use of the covered work\n"
|
|
"in a country, would infringe one or more identifiable patents in that\n"
|
|
"country that you have reason to believe are valid.\n"
|
|
"\n"
|
|
" If, pursuant to or in connection with a single transaction or\n"
|
|
"arrangement, you convey, or propagate by procuring conveyance of, a\n"
|
|
"covered work, and grant a patent license to some of the parties\n"
|
|
"receiving the covered work authorizing them to use, propagate, modify\n"
|
|
"or convey a specific copy of the covered work, then the patent license\n"
|
|
"you grant is automatically extended to all recipients of the covered\n"
|
|
"work and works based on it.\n"
|
|
"\n"
|
|
" A patent license is \"discriminatory\" if it does not include within\n"
|
|
"the scope of its coverage, prohibits the exercise of, or is\n"
|
|
"conditioned on the non-exercise of one or more of the rights that are\n"
|
|
"specifically granted under this License. You may not convey a covered\n"
|
|
"work if you are a party to an arrangement with a third party that is\n"
|
|
"in the business of distributing software, under which you make payment\n"
|
|
"to the third party based on the extent of your activity of conveying\n"
|
|
"the work, and under which the third party grants, to any of the\n"
|
|
"parties who would receive the covered work from you, a discriminatory\n"
|
|
"patent license (a) in connection with copies of the covered work\n"
|
|
"conveyed by you (or copies made from those copies), or (b) primarily\n"
|
|
"for and in connection with specific products or compilations that\n"
|
|
"contain the covered work, unless you entered into that arrangement,\n"
|
|
"or that patent license was granted, prior to 28 March 2007.\n"
|
|
"\n"
|
|
" Nothing in this License shall be construed as excluding or limiting\n"
|
|
"any implied license or other defenses to infringement that may\n"
|
|
"otherwise be available to you under applicable patent law.\n"
|
|
"\n"
|
|
" 12. No Surrender of Others\' Freedom.\n"
|
|
"\n"
|
|
" If conditions are imposed on you (whether by court order, agreement or\n"
|
|
"otherwise) that contradict the conditions of this License, they do not\n"
|
|
"excuse you from the conditions of this License. If you cannot convey a\n"
|
|
"covered work so as to satisfy simultaneously your obligations under this\n"
|
|
"License and any other pertinent obligations, then as a consequence you may\n"
|
|
"not convey it at all. For example, if you agree to terms that obligate you\n"
|
|
"to collect a royalty for further conveying from those to whom you convey\n"
|
|
"the Program, the only way you could satisfy both those terms and this\n"
|
|
"License would be to refrain entirely from conveying the Program.\n"
|
|
"\n"
|
|
" 13. Use with the GNU Affero General Public License.\n"
|
|
"\n"
|
|
" Notwithstanding any other provision of this License, you have\n"
|
|
"permission to link or combine any covered work with a work licensed\n"
|
|
"under version 3 of the GNU Affero General Public License into a single\n"
|
|
"combined work, and to convey the resulting work. The terms of this\n"
|
|
"License will continue to apply to the part which is the covered work,\n"
|
|
"but the special requirements of the GNU Affero General Public License,\n"
|
|
"section 13, concerning interaction through a network will apply to the\n"
|
|
"combination as such.\n"
|
|
"\n"
|
|
" 14. Revised Versions of this License.\n"
|
|
"\n"
|
|
" The Free Software Foundation may publish revised and/or new versions of\n"
|
|
"the GNU General Public License from time to time. Such new versions will\n"
|
|
"be similar in spirit to the present version, but may differ in detail to\n"
|
|
"address new problems or concerns.\n"
|
|
"\n"
|
|
" Each version is given a distinguishing version number. If the\n"
|
|
"Program specifies that a certain numbered version of the GNU General\n"
|
|
"Public License \"or any later version\" applies to it, you have the\n"
|
|
"option of following the terms and conditions either of that numbered\n"
|
|
"version or of any later version published by the Free Software\n"
|
|
"Foundation. If the Program does not specify a version number of the\n"
|
|
"GNU General Public License, you may choose any version ever published\n"
|
|
"by the Free Software Foundation.\n"
|
|
"\n"
|
|
" If the Program specifies that a proxy can decide which future\n"
|
|
"versions of the GNU General Public License can be used, that proxy\'s\n"
|
|
"public statement of acceptance of a version permanently authorizes you\n"
|
|
"to choose that version for the Program.\n"
|
|
"\n"
|
|
" Later license versions may give you additional or different\n"
|
|
"permissions. However, no additional obligations are imposed on any\n"
|
|
"author or copyright holder as a result of your choosing to follow a\n"
|
|
"later version.\n"
|
|
"\n"
|
|
" 15. Disclaimer of Warranty.\n"
|
|
"\n"
|
|
" THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY\n"
|
|
"APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT\n"
|
|
"HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY\n"
|
|
"OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,\n"
|
|
"THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n"
|
|
"PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM\n"
|
|
"IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF\n"
|
|
"ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n"
|
|
"\n"
|
|
" 16. Limitation of Liability.\n"
|
|
"\n"
|
|
" IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\n"
|
|
"WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS\n"
|
|
"THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY\n"
|
|
"GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE\n"
|
|
"USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF\n"
|
|
"DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD\n"
|
|
"PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),\n"
|
|
"EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF\n"
|
|
"SUCH DAMAGES.\n"
|
|
"\n"
|
|
" 17. Interpretation of Sections 15 and 16.\n"
|
|
"\n"
|
|
" If the disclaimer of warranty and limitation of liability provided\n"
|
|
"above cannot be given local legal effect according to their terms,\n"
|
|
"reviewing courts shall apply local law that most closely approximates\n"
|
|
"an absolute waiver of all civil liability in connection with the\n"
|
|
"Program, unless a warranty or assumption of liability accompanies a\n"
|
|
"copy of the Program in return for a fee.\n"
|
|
"\n"
|
|
" END OF TERMS AND CONDITIONS\n"
|
|
"\n"
|
|
" How to Apply These Terms to Your New Programs\n"
|
|
"\n"
|
|
" If you develop a new program, and you want it to be of the greatest\n"
|
|
"possible use to the public, the best way to achieve this is to make it\n"
|
|
"free software which everyone can redistribute and change under these terms.\n"
|
|
"\n"
|
|
" To do so, attach the following notices to the program. It is safest\n"
|
|
"to attach them to the start of each source file to most effectively\n"
|
|
"state the exclusion of warranty; and each file should have at least\n"
|
|
"the \"copyright\" line and a pointer to where the full notice is found.\n"
|
|
"\n"
|
|
" <one line to give the program\'s name and a brief idea of what it does.>\n"
|
|
" Copyright (C) <year> <name of author>\n"
|
|
"\n"
|
|
" This program is free software: you can redistribute it and/or modify\n"
|
|
" it under the terms of the GNU General Public License as published by\n"
|
|
" the Free Software Foundation, either version 3 of the License, or\n"
|
|
" (at your option) any later version.\n"
|
|
"\n"
|
|
" This program is distributed in the hope that it will be useful,\n"
|
|
" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
|
|
" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
|
|
" GNU General Public License for more details.\n"
|
|
"\n"
|
|
" You should have received a copy of the GNU General Public License\n"
|
|
" along with this program. If not, see <http://www.gnu.org/licenses/>.\n"
|
|
"\n"
|
|
"Also add information on how to contact you by electronic and paper mail.\n"
|
|
"\n"
|
|
" If the program does terminal interaction, make it output a short\n"
|
|
"notice like this when it starts in an interactive mode:\n"
|
|
"\n"
|
|
" <program> Copyright (C) <year> <name of author>\n"
|
|
" This program comes with ABSOLUTELY NO WARRANTY; for details type `show w\'.\n"
|
|
" This is free software, and you are welcome to redistribute it\n"
|
|
" under certain conditions; type `show c\' for details.\n"
|
|
"\n"
|
|
"The hypothetical commands `show w\' and `show c\' should show the appropriate\n"
|
|
"parts of the General Public License. Of course, your program\'s commands\n"
|
|
"might be different; for a GUI interface, you would use an \"about box\".\n"
|
|
"\n"
|
|
" You should also get your employer (if you work as a programmer) or school,\n"
|
|
"if any, to sign a \"copyright disclaimer\" for the program, if necessary.\n"
|
|
"For more information on this, and how to apply and follow the GNU GPL, see\n"
|
|
"<http://www.gnu.org/licenses/>.\n"
|
|
"\n"
|
|
" The GNU General Public License does not permit incorporating your program\n"
|
|
"into proprietary programs. If your program is a subroutine library, you\n"
|
|
"may consider it more useful to permit linking proprietary applications with\n"
|
|
"the library. If this is what you want to do, use the GNU Lesser General\n"
|
|
"Public License instead of this License. But first, please read\n"
|
|
"<http://www.gnu.org/philosophy/why-not-lgpl.html>.\n"
|
|
""))
|
|
self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab_3), _translate("AboutDialog", "&License Agreement"))
|