UNPKG

iobroker.unifi

Version:
1,749 lines (1,721 loc) 74.9 kB
const jsonLogic = require('json-logic-js'); const dateFormat = require('dateformat'); /** * Convert seconds to date time */ jsonLogic.add_operation('secondsToDateTime', function (a) { const date = new Date(a * 1000); return dateFormat(date, 'yyyy-mm-dd HH:MM:ss'); }); /** * Convert seconds to hours */ jsonLogic.add_operation('secondsToHours', function (a) { return Math.floor(a / 60) + ':' + ('0' + Math.floor(a % 60)).slice(-2); }); /** * Convert to string */ jsonLogic.add_operation('string', function (a) { return a.toString(); }); /** * Check if not null */ jsonLogic.add_operation('notNull', function (a) { return a !== null; }); /** * Return value if not null */ jsonLogic.add_operation('ifNotNull', function (a, b, c) { if (a !== null) { return b; } else { return c; } }); /** * Return value if not null and boolen is true */ jsonLogic.add_operation('ifNotNullBoolisTrue', function (a, b, c) { if (a !== null && a) { return b; } else { return c; } }); /** * Cleanup for use as ID */ jsonLogic.add_operation('cleanupForUseAsId', function (a) { if (a === null) { return null; } const FORBIDDEN_CHARS = /[\]\[*.,;'"`<>\\?\s]/g; let tempId = a.replace(FORBIDDEN_CHARS, '_'); tempId = tempId.toLowerCase(); return tempId; }); /** * Convert timestamp to date */ jsonLogic.add_operation('timestampToDate', function (a) { const date = new Date(a); return dateFormat(date, 'yyyy-mm-dd'); }); /** * Convert timestamp to date */ jsonLogic.add_operation('timestampToDateTime', function (a) { const date = new Date(a); return dateFormat(date, 'yyyy-mm-dd HH:MM:ss'); }); /** * Convert timestamp to date */ jsonLogic.add_operation('timestampDiffInDaysToNow', function (a, b) { const now = new Date(); const date = new Date(b); const diffDays = parseInt((now - date) / (1000 * 60 * 60 * 24), 10); return a + diffDays; }); /** * Replace MAC Adress in alarm message with device name if exist */ jsonLogic.add_operation('alarmPrepareMessage', function (msg, mac, name) { if (mac && name) { if (msg.includes('{gw}')) { return msg.replace('{gw}', `${name}:`); } else if (msg.includes('{dm}')) { return msg.replace('{dm}', `${name}:`); } else if (msg.includes('{sw}')) { return msg.replace('{sw}', `${name}:`); } else if (msg.includes('{ap}')) { return msg.replace('{ap}', `${name}:`); } else { return msg.replace(`[${mac}]`, ` - ${name}:`); } } return msg; }); /** * translate poe mode (off / auto) to boolean */ jsonLogic.add_operation('poeMode', function (a) { if (a === null) { return false; } else if (a === 'auto') { return true; } else { return false; } }); /** * Translate category code to name */ jsonLogic.add_operation('translateCatCodeToName', function (a) { const categories = { 0: 'Instant messengers', 1: 'Peer-to-peer networks', 3: 'File sharing services and tools', 4: 'Media streaming services', 5: 'Email messaging services', 6: 'VoIP services', 7: 'Database tools', 8: 'Online games', 9: 'Management tools and protocols', 10: 'Remote access terminals', 11: 'Tunneling and proxy services', 12: 'Investment platforms', 13: 'Web services', 14: 'Security update tools', 15: 'Web instant messengers', 17: 'Business tools', 18: 'Network protocols', 19: 'Network protocols', 20: 'Network protocols', 23: 'Private protocols', 24: 'Social networks', 255: 'Unknown' }; if (Object.prototype.hasOwnProperty.call(categories, a)) { return categories[a]; } else { return 'unknown'; } }); jsonLogic.add_operation('translateAppCodeToName', function (catId, appId) { const applications = { 1: 'MSN', 2: 'Yahoo Messenger', 3: 'AIM/ICQ/iIM', 4: 'QQ/TM', 5: 'DingTalk/Laiwang', 6: 'IRC', 7: 'Yoics', 8: 'Rediff BOL', 9: 'Google Talk', 10: 'Gadu-Gadu', 11: 'Yixin', 12: 'POPO', 13: 'Tlen', 14: 'Wlt', 15: 'RenRen', 16: 'Omegle', 17: 'IPMSG', 18: 'Aliww', 19: 'Mail.ru IM', 20: 'Kubao', 21: 'Lava-Lava', 22: 'PaltalkScene', 23: 'UcTalk', 24: 'WinpopupX', 25: 'BeeTalk', 26: 'Squiggle', 27: 'Apple iMessage', 28: 'Pidgin', 29: 'ISPQ', 30: 'Momo', 31: 'ChatON', 32: 'Caihong', 33: 'KC', 34: 'IMVU', 35: 'Instan-t', 36: 'PiIM', 37: 'Xfire', 38: 'Raidcall', 39: 'Slack', 41: 'WhatsApp', 42: 'Userplane', 43: '24im', 44: 'Camfrog', 45: 'Snow', 46: 'Digsby', 49: 'Message Send Protocol', 52: 'SOMA', 53: 'Hike', 54: 'Fetion', 55: 'Heyyo', 56: 'Alicall', 57: 'Qeshow', 58: 'MissLee', 59: 'Jctrans', 61: 'BaiduHi', 62: 'TELTEL', 64: '9158', 65: 'Kltx', 66: 'IM+', 67: 'Imi', 68: 'Netcall', 69: 'ECP', 72: 'Etnano', 77: 'ProvideSupport', 78: 'Dudu IM', 80: 'Weibo IM', 81: 'WO', 82: 'Guagua', 83: 'Hangouts', 84: 'ClubCooee', 85: 'Palringo', 86: 'KikMessenger', 87: 'Doshow', 88: 'Mibbit', 89: 'YY', 90: 'Ispeak', 91: 'VzoChat', 92: 'Trillian', 93: 'HipChat', 94: 'IntraMessenger', 95: 'BitWise', 96: 'Barablu', 97: 'Whoshere', 98: 'LiiHo', 99: 'Appme', 100: 'Verychat', 101: 'Voxer', 102: 'TextMe', 103: 'Bump', 104: 'CoolMessenger', 105: 'NateOn', 106: 'WeChat', 107: 'Snapchat', 108: 'Wangxin', 65538: 'BitTorrent Series', 65540: 'DirectConnect', 65542: 'eDonkey Series', 65543: 'FastTrack', 65544: 'Gnutella', 65545: 'WinMX', 65546: 'Foxy', 65547: 'Winny', 65548: 'POCO', 65549: 'iMesh/Lphant', 65550: 'ClubBox', 65551: 'Vagaa', 65553: 'Thunder', 65554: 'myMusic', 65555: 'QQDownload', 65556: 'WebTorrent', 65557: 'easyMule', 65559: 'Fileguri', 65563: 'Soulseek', 65565: 'GNUnet', 65566: 'XNap', 65567: 'Avicora', 65568: 'Kceasy', 65569: 'Aria2', 65570: 'Arctic', 65572: 'Bitflu', 65573: 'BTG', 65574: 'Pando', 65577: 'Deepnet Explorer', 65578: 'aMule', 65580: 'Ares', 65581: 'Azureus', 65582: 'BCDC++', 65583: 'BitBuddy', 65584: 'BitComet', 65585: 'BitTornado', 65587: 'ApexDC++', 65588: 'Bearshare', 65590: 'BitLord', 65591: 'BitSpirit', 65594: 'Shareaza', 65598: 'eMule', 65600: 'eMule Plus', 65604: 'FileScope', 65609: 'GoGoBox', 65612: 'Hydranode', 65617: 'Kazaa Lite Tools K++', 65620: 'BitRocket', 65621: 'MlDonkey', 65622: 'MooPolice', 65630: 'Phex', 65633: 'RevConnect', 65634: 'Rufus', 65635: 'SababaDC', 65636: 'Shareaza Plus', 65640: 'BTSlave', 65642: 'TorrentStorm', 65648: 'uTorrent', 65652: 'ZipTorrent', 65655: 'BitPump', 65665: 'Tuotu', 65685: 'Vuze', 65686: 'Enhanced CTorrent', 65688: 'Bittorrent X', 65689: 'DelugeTorrent', 65690: 'CTorrent', 65691: 'Propagate Data Client', 65692: 'EBit', 65693: 'Electric Sheep', 65695: 'FoxTorrent', 65696: 'GSTorrent', 65698: 'Halite', 65700: 'KGet', 65701: 'KTorrent', 65703: 'LH-ABC', 65704: 'libTorrent', 65705: 'LimeWire', 65707: 'MonoTorrent', 65708: 'MoonlightTorrent', 65709: 'Net Transport', 65714: 'qBittorrent', 65715: 'Qt 4 Torrent example', 65716: 'Retriever', 65718: 'Swiftbit', 65720: 'SwarmScope', 65721: 'SymTorrent', 65722: 'Sharktorrent', 65724: 'TorrentDotNET', 65725: 'Transmission', 65726: 'uLeecher', 65727: 'BitLet', 65728: 'FireTorrent', 65730: 'XanTorrent', 65731: 'Xtorrent', 65732: 'Pruna', 65733: 'Soribada', 65734: 'Gample', 65735: 'DIYHARD', 65736: 'LottoFile', 65737: 'ShareBox', 65738: 'Bondisk', 65739: 'Filei', 65740: 'KDISK', 65741: 'Ondisk', 65742: 'FILEJO', 65743: 'FILEDOK', 65744: 'Tomatopang/Santa25', 65745: 'Webhard', 65746: 'TPLE', 65747: 'DiskPump', 65748: 'NETFOLDER', 65749: 'QFILE', 65750: 'DISKMAN', 65751: 'DBGO', 65752: 'Congaltan', 65753: 'Diskpot', 65754: 'Ipopclub', 65755: 'Yesfile', 65756: 'Nedisk', 65757: 'Me2disk', 65758: 'Odisk', 65759: 'Tomfile', 65760: 'Adrive.co.kr', 65761: 'ZIOfile', 65762: 'APPLEFILE', 65763: 'SUPERDOWN', 65764: 'Hidisk', 65765: 'Downs', 65766: 'DownDay', 65767: 'BOMULBOX', 65768: 'FILEHAM', 65769: 'Tdisk', 65770: 'Filehon', 65771: 'Jjangfile', 65772: 'Onehard.com', 65773: 'Pdpop', 65774: 'AirFile', 65775: 'FILEZZIM', 65776: 'Atomfile.co.kr', 65777: 'QDOWN.com', 65778: 'Alfile.net', 65779: 'Bigfile.co.kr', 65780: 'Hardmoa.com', 65781: 'Redfile.co.kr', 65782: 'FILETV.co.kr', 65783: 'Now.co.kr', 65784: 'JustBeamIt', 65785: 'reep.io', 65786: 'GnucDNA/Gimme', 65787: 'MyNapster', 196609: 'FTP Applications', 196610: 'GetRight', 196611: 'FlashGet', 196612: 'AsianDVDClub', 196613: 'Web File Transfer', 196614: 'FileZilla', 196615: 'Kuaipan', 196616: 'DBank', 196617: '115.com', 196618: 'Weiyun', 196619: 'Rayfile', 196620: '0zz0', 196621: 'Herosh', 196622: '2Shared', 196624: 'BIZHARD', 196626: 'UPlusBox', 196627: 'Filebox.ro', 196628: 'Qnext', 196629: 'OneDrive', 196630: 'YunFile', 196631: 'Filehosting', 196632: 'Dev-Host', 196633: 'Solidfiles', 196634: 'IBackup', 196635: 'FileSwap', 196637: 'Temp-Share', 196638: 'WikiUpload', 196640: 'MEGA', 196641: 'Copy.com', 196642: '4Shared', 196643: 'HiCloud', 196644: 'Depositfiles', 196645: 'Docstoc', 196646: '360 Cloud', 196647: 'Symantec Nomdb', 196648: 'Baidu Cloud', 196649: 'GitHub', 196650: 'FileDropper', 196651: 'CrashPlan', 196652: 'Net2FTP', 196653: 'Mediafire', 196655: 'Carbonite', 196656: 'Mozy', 196657: 'SOS Online Backup', 196670: 'NFS', 196672: 'WD My Cloud', 196676: 'Box', 196678: 'Scribd', 196680: 'Rapidshare', 196681: 'Sendspace', 196683: 'Hightail', 196684: 'Diino', 196686: 'Fluxiom', 196689: 'Nomadesk', 196692: 'Dropbox', 196693: 'Filesend.to', 196694: 'Firestorage', 196695: 'Naver Cloud', 196696: 'Filesend.net', 196697: 'Crocko', 196700: 'Fileserve', 196701: 'Netload', 196702: 'Megashares', 196703: 'TransferBigFiles', 196705: 'Filemail', 196706: 'Zamzar', 196708: 'Divshare', 196709: 'DL Free', 196711: 'Nakido', 196713: 'Gigaup', 196714: 'Filestube', 196716: 'Filer.cx', 196717: 'Cx.com', 196718: 'Elephantdrive', 196722: 'Zshare', 196723: 'Freakshare', 196724: 'Uploading', 196725: 'Bitshare', 196726: 'Letitbit.net', 196727: 'Extabit', 196728: 'Filefactory', 196729: 'Furk', 196731: 'GoldFile', 196732: 'GigaSize', 196733: 'Turbobit', 196735: 'Hitfile', 196737: 'Zippyshare', 196738: 'SoundCloud', 196739: 'SpeedyShare', 196741: 'WinSCP', 196742: 'FilePost.net', 196743: 'GlumboUploads', 196744: 'RapidGator.net', 196745: 'GoZilla', 196746: 'Clip2net', 196747: 'Datei.to', 196748: 'Totodisk', 196749: 'LeapFile', 196750: 'BigUpload', 196751: 'OnlineFileFolder', 196752: 'ASUSWebStorage', 196753: 'File-Upload.net', 196754: 'File-Works', 196755: 'Zumodrive', 196756: 'PutLocker', 196757: 'Wetransfer', 196758: 'iCloud', 196759: 'CloudMe', 196760: 'Beanywhere', 196761: 'Sugarsync', 196762: 'DriveHQ', 196763: 'Yandex.Disk', 196764: 'Backblaze', 196765: 'AirSet', 196766: 'SpiderOak', 196767: '1337X', 196768: 'MailBigFile', 196769: 'GoldCoupon.co.kr', 196770: 'Egnyte', 196771: 'SmugMug', 196772: 'SlideShare.net', 196773: '4Sync', 196774: 'IDrive', 196775: 'Mendeley', 196777: 'Daum-cloud', 196778: 'TeamBeam', 262145: 'Windows Media Player', 262146: 'RealPlayer', 262147: 'Winamp', 262148: 'QuickTime', 262149: 'Weather Channel', 262150: 'PPTV (PPLive)', 262151: 'QQLive', 262152: 'LOVEFiLM', 262153: 'ITV', 262154: 'iTunes', 262155: 'Adobe Flash', 262156: 'Channel 5', 262157: 'iQIYI/PPS', 262158: 'Headweb', 262159: 'Viaplay', 262160: 'KKBox', 262161: 'WATCHEVER', 262162: 'Maxdome', 262163: 'Twitch.tv', 262164: 'TED', 262165: 'RTP', 262166: 'SBS', 262167: 'UUSee', 262168: 'SopCast', 262169: 'KeyHoleTV', 262170: 'Sina Video', 262171: 'Metacafe', 262172: 'Wuaki.tv', 262173: 'SHOUTcast', 262174: 'BBC-iplayer', 262175: 'Live365', 262176: 'Dailymotion', 262177: 'Filmin', 262178: 'Flixster', 262179: 'Hulu', 262180: 'GuaGua', 262181: 'NUBEOX', 262182: 'Kugou', 262183: 'MoveNetworks', 262184: 'Babelgum', 262185: 'Livestation', 262186: 'Apple Music', 262187: 'Miro', 262188: 'Smithsonian Channel', 262189: 'NHL', 262190: 'NicoNico', 262191: 'Ooyala', 262192: 'Photobucket', 262193: 'MLSsoccer', 262194: 'Channel 4', 262195: 'VideoDetective', 262196: 'Ustream.tv', 262197: 'Veetle', 262198: 'VeohTV', 262199: 'iTunes Festival', 262200: 'SiriusXM', 262201: 'Break.com', 262202: 'CinemaNow/FilmOn', 262203: 'Letv', 262204: 'RTSP', 262205: 'Funshion', 262206: '17', 262207: 'MTV.com', 262208: 'Sohu TV', 262209: 'MP4', 262210: 'MMS/WMSP', 262211: 'FLV', 262212: 'PIPI', 262213: 'Hulkshare', 262214: 'Tudou', 262215: 'Ifeng Video ', 262216: 'WSJ Live', 262217: 'Cradio', 262218: 'Roku', 262219: 'Amazon Prime Music', 262220: 'Crackle', 262221: 'Blip.tv', 262223: 'Audible', 262224: 'Web Streaming', 262225: 'DIRECTV', 262226: 'Vyclone', 262227: 'China Streaming Video', 262228: 'Crunchyroll', 262229: 'EmpFlix', 262230: 'Porn.com', 262231: 'EskimoTube', 262232: 'NewBigTube', 262233: 'Madbitties', 262234: 'RTMP', 262235: 'Hustlertube', 262236: 'TnaFlix', 262237: 'Xtube', 262238: 'Yobt.tv', 262239: 'Youjizz', 262240: 'v.163.com', 262241: 'Yahoo Video', 262245: 'Pandora', 262246: 'Deezer', 262247: 'VLC', 262250: 'Livesearch.tv/CoolStreaming', 262251: 'Qello', 262252: 'CNTV', 262254: 'Thunderkankan', 262256: 'Youtube', 262258: '56.com', 262259: 'RMVB', 262260: 'Youku.com', 262261: 'SWF', 262262: 'AVI', 262263: 'MP3', 262264: 'WMA', 262265: 'MOV', 262266: 'WMV', 262267: 'ASF', 262268: 'Vudu', 262270: 'PBS Video', 262271: 'Freecast', 262272: 'Ku6', 262274: 'Spotify', 262275: 'LastFM', 262276: 'Netflix', 262277: 'Uitzendinggemist', 262278: 'RTL.nl', 262279: 'TudouVa', 262280: 'GYAO', 262281: 'BARKS', 262283: 'Baofeng', 262284: 'Qvod/Bobohu', 262285: 'Grooveshark', 262286: 'Microsoft Silverlight', 262287: '6.cn', 262288: 'Rhapsody', 262289: 'Kideos', 262290: 'Imgo TV', 262291: 'Joy.cn', 262292: 'Yinyuetai', 262293: 'Hichannel', 262294: 'ADNstream', 262295: 'Livestream', 262296: 'YoukuVa ', 262297: 'Kodi', 262298: 'Voddler', 262299: 'National Geographic Kids', 262301: 'Flixwagon', 262302: 'M4V', 262303: 'Podcast', 262305: 'Shazam', 262306: 'TuneIn', 262307: 'PBS Kids', 262308: 'BaiduMusic', 262310: 'DoubanFM', 262311: 'IMDb.com', 262312: 'XVideos.com', 262313: 'xHamster.com', 262314: 'PornHub.com', 262315: 'LiveJasmin.com', 262316: 'XNXX.com', 262317: 'YouPorn.com', 262318: 'MajorLeagueGaming', 262319: 'Wowtv.co.kr', 262320: 'iMBC', 262321: 'AfreecaTV', 262322: 'Arirang', 262323: 'KCTVjeju', 262324: 'CJB.co.kr', 262325: 'MBN', 262326: 'MYSolive', 262327: 'KBS', 262328: 'Mwave', 262329: 'YTN', 262330: 'Musicsoda', 262331: 'FreeOnes.com', 262332: 'Streamate.com', 262333: 'Airplay', 262334: 'DAAP', 262335: 'M1905', 262336: 'VEVO', 262337: 'Amazon Instant Video', 262338: 'MixBit', 262339: 'Baomihua', 262340: 'FORA.tv', 262341: 'Vimeo', 262342: 'Vube', 262343: 'RedTube.com', 262344: 'Tube8', 262345: 'Mgoon', 262346: 'Trailers', 262347: 'HBOGO', 262348: 'MLB.com', 262349: 'Kaltura.com', 262350: 'Plex.tv', 262351: 'DouyuTV', 262358: 'Kids.gov', 262367: 'Periscope', 262373: 'HBO NOW', 262374: 'MiaoPai', 262389: 'UniFi Video Camera', 327681: 'SMTP', 327682: 'POP3', 327683: 'IMAP4', 327684: 'NNTP', 327685: 'Twig', 327686: 'GroupWise', 327687: 'au one net', 327688: 'Virtru', 327689: 'PChome', 327690: 'DTI MyMail', 327691: 'Ymail', 327692: 'IIJ MailViewer', 327693: 'Telenet Mail', 327694: 'Open Mail', 327695: 'InfoSphere Webmail', 327696: 'Goo Mail', 327697: 'Nifty', 327698: 'QQ Mail', 327699: 'Roundcubemail', 327700: 'Zenno', 327701: 'Itm-asp', 327702: 'Biglobe', 327703: 'SquirrelMail', 327704: 'Zoho Mail', 327705: 'Inter7', 327706: 'TOK2', 327707: 'Smoug', 327708: '1und1', 327709: 'Plala', 327710: 'WAKWAK', 327711: 'Eyejot', 327712: 'AsahiNet', 327713: 'Aikq', 327714: 'Yandex.Mail', 327715: 'Arcor', 327716: 'Bluewin', 327717: 'Directbox', 327718: 'Freenet', 327720: 'Smart Mail', 327722: 'WEB.DE', 327723: 'MS Exchange Server', 327732: 'Webmail.de', 327742: 'NETEASE Mail', 327743: 'Gmx Mail', 327744: 'Excite', 327745: 'InfoSeek Mail', 327746: 'Livedoor', 327747: 'Nate Mail', 327749: 'Optimum', 327751: 'Secureserver', 327753: 'Sina Mail', 327755: 'Rambler', 327760: 'Daum Mail', 327761: 'Mail.com', 327762: 'OCN', 327763: 'MailChimp', 327764: 'Rediff Mail', 327770: 'Korea Mail', 327772: 'MyEmail', 327773: 'JumboMail', 327775: 'Gmail', 327776: 'AOL Mail', 327777: 'hiBox', 327778: 'COX', 327779: 'Hushmail', 327780: 'Mail.ru', 327781: 'HiNet Mail', 327782: 'Horde', 327783: 'Fastmail', 327784: 'Comcast', 327785: 'Laposte', 327786: 'Yahoo Mail', 327787: 'Usermin Mail', 327788: 'Tistory', 327789: 'Orange', 327790: '012mail', 327791: 'T-Online', 327792: 'Jubii Mail', 327793: 'Whalemail', 327794: 'Lavabit', 327795: 'Tiscali', 393217: 'Skype', 393218: 'H.323', 393220: 'Facetime', 393221: 'Juiker', 393222: 'Sqwiggle', 393223: 'ooVoo', 393225: 'TeamSpeak', 393226: 'Ventrilo', 393228: 'SIP', 393229: 'NetMeeting', 393230: 'Inter-Asterisk', 393231: 'Net2Phone', 393232: 'MSRP', 393234: 'LINE', 393235: 'Fring', 393236: 'Goober', 393238: 'Viber', 393239: 'Kakao', 393240: 'iCall', 393242: 'Nimbuzz', 393243: 'Bobsled', 393244: 'indoona', 393245: 'Wi-Fi Calling', 393246: 'Tango', 393247: 'Ooma', 458753: 'MSSQL', 458754: 'MySQL', 458755: 'Oracle', 458756: 'PostgreSQL', 458757: 'SAP', 458760: 'Etelos', 458761: 'Centriccrm', 458766: 'MongoDB', 458767: 'Salesforce', 458768: 'MariaDB', 524289: 'QQ Game', 524290: 'Our Game', 524291: 'Cga.com', 524292: 'FIFA', 524293: 'PopKart', 524294: 'Archlord', 524295: 'AddictingGames.com', 524296: 'Realgame', 524297: 'Audition', 524298: 'Koramgame', 524299: 'BnB Game', 524300: 'Chinagame', 524301: 'CS Game', 524302: 'Diablo', 524303: 'Legend', 524304: 'Lineage', 524306: 'Quake Game', 524307: 'Diablo3', 524308: 'Sina Web Game', 524310: 'WOW Game', 524311: 'Ispeakgame', 524312: 'Torchlight2', 524313: 'MapleStory', 524314: 'TowerOfSaviors', 524315: 'Wolfenstein', 524316: 'Second Life', 524317: 'Kimi', 524318: 'Pokemon Go', 524319: 'PartyPoker', 524320: 'Pogo', 524321: 'PokerStars', 524322: 'Zango', 524323: 'Little Fighter 2', 524324: 'BomberClone', 524325: 'Doom', 524326: 'FSJOY', 524327: '175pt', 524328: 'Zhuxian', 524329: 'GameTea/GameABC', 524330: 'Talesrunner', 524331: 'PK Game', 524332: 'Concerto Gate', 524333: 'TLBB', 524334: 'YBOnline', 524335: 'Xunyou', 524336: 'Mwo', 524337: 'Mobile Strike', 524338: 'WuLin', 524339: 'DNF Game', 524340: 'Bo Game', 524341: 'Gran Turismo', 524343: 'Electronic Arts', 524344: 'ZhengTu', 524345: 'SGOL', 524346: 'XY2Online', 524347: 'Asherons Call', 524348: 'Kali', 524349: 'EverQuest', 524350: 'XBOX', 524351: 'BrettspielWelt', 524352: 'Bet-at-Home', 524353: 'City of Heroes', 524354: 'ClubPenguin', 524355: 'StepMania', 524356: 'Battle.net', 524358: 'Apprentice', 524359: 'Monster Hunter Frontier Z', 524360: 'FreeLotto Game', 524361: 'Halo', 524362: 'iSketch', 524363: 'RuneScape', 524364: 'FUNMILY', 524365: 'Yeapgame', 524366: 'Grand Theft Auto', 524367: 'Lineage2', 524368: 'GM99 Game', 524369: 'RayCity', 524370: 'Rockstar Games', 524371: 'Aleph One', 524372: 'Wayi', 524373: 'CMWEBGAME', 524374: 'Call of Duty', 524375: 'CAPTAN', 524376: 'Supercell', 524377: 'Need for Speed', 524379: 'Madden NFL', 524380: 'Half-Life', 524381: 'Team Fortress', 524383: 'Final Fantasy', 524384: 'Mythic', 524385: 'NetPanzer', 524386: 'Sdo.com', 524388: 'Pokemon Netbattle', 524389: 'RunUO-Ultima', 524390: 'Soldat Dedicated', 524391: 'Blizzard Entertainment', 524392: 'RIFT', 524393: 'TetriNET', 524394: 'Tibia', 524395: 'PlanetSide', 524396: 'TripleA', 524398: 'Unreal', 524399: 'Valve Steam', 524400: 'WesNOth', 524401: 'Xpilot', 524402: 'Swtor', 524403: 'EVEOnline', 524404: 'Hearthstone', 524405: 'Guild Wars', 524406: 'Zhong Hua Hero', 524407: 'Wizard101', 524408: 'SD Gundam', 524409: 'Prius', 524410: 'Age of Conan', 524411: 'RF Returns', 524412: 'AION', 524413: 'POPO Game', 524414: 'War-Rock', 524415: 'TEN Game', 524416: 'LUNA2', 524417: 'Karos', 524418: 'SPOnline', 524419: 'RO Game', 524420: 'StarCraft2', 524421: 'Itaiwanmj', 524422: 'CMWEBGAME Game', 524423: 'Beanfun Game', 524424: 'JXW', 524425: 'Nobol', 524426: 'DragonNest', 524427: 'BBonline', 524428: 'Hangame', 524429: 'Homygame', 524430: 'Sony PlayStation', 524431: 'Garena', 524432: '91555', 524433: 'JJ Game', 524434: 'YHgame', 524435: 'Mdm365', 524436: '7fgame', 524437: 'Dokee', 524438: 'VSA', 524439: 'Funtown', 524440: 'SF Game', 524441: '173kh', 524442: 'Boyaapoker', 524443: 'GameCenter', 524444: 'Minecraft', 524445: 'Dark Souls', 524446: 'The Secret World', 524447: 'World2', 524448: 'CrossFire', 524449: 'XYQ', 524450: 'Nexon', 524451: 'Vindictus', 524452: 'DotA', 524453: 'PAYDAY', 524454: 'Wayi Game', 524455: 'War Thunder', 524456: 'Warframe', 524457: 'TT-Play Game', 524458: 'TT-Play', 524459: 'Robocraft', 524460: 'World of Tanks', 524461: 'Divinity', 524462: 'Left 4 Dead 2', 524463: 'DayZ', 524464: 'Heroes of the Storm', 524466: 'TXWY Game', 524476: 'Smite', 524478: 'FreeStyle 2 Street Basketball', 524479: 'Yeapgame Game', 524483: 'BlackShot', 524486: 'Combat Arms', 524490: 'Blade and Soul', 524491: 'FUNMILY Game', 524500: 'Elsword', 524501: 'Echo of Soul', 524502: 'Aura Kingdom', 524503: 'Aeria Games', 524504: '9-yin', 524505: 'Tera', 524506: 'PSO2', 524507: 'Mabinogi', 524510: 'Ubisoft', 524512: 'Sony Entertainment Network', 524513: 'WSOP', 524514: 'TexasHoldemPoker', 524515: 'DarkSummoner', 524516: 'AjaxPlay', 524517: 'AirlineMogul', 524518: 'Evony', 524519: 'BasketBallZone', 524520: 'Y8 Game', 524521: 'Y8-Y8', 524522: 'KIZI-GAMES', 524523: 'Ibibo', 524524: 'Hattrick Game', 524525: 'Godgame', 524526: 'Aswordtw', 524527: 'Qme RO', 524529: 'THE WORLD', 524530: 'Qme JH', 524531: 'Qme COS', 524532: 'Qme SG', 524533: 'Origin', 524534: 'LoL', 524535: 'THISISGAME', 524536: 'Miniclip Game', 524537: '888games', 524538: 'WilliamHill', 524539: 'Betfair Game', 524540: 'Kongregate Game', 524541: 'Roblox Game', 524542: 'King Game', 524543: 'Chess Game', 524593: 'Overwatch', 524632: 'Battlefield', 524633: 'Star Wars Battlefront', 524639: 'Rainbow Six Siege', 524640: 'ARK Survival Evolved', 524641: 'The Division', 524648: 'Super Mario Run', 524649: 'Nintendo', 524651: 'Clash of Clans', 524652: 'Clash Royale', 524736: 'Grand Theft Auto: San Andreas', 524782: 'Destiny 2', 524790: 'NBA 2K18', 524794: 'Uncharted: The Lost Legacy', 524795: 'NHL 18', 524796: 'NBA Live 18', 524801: 'Wargaming.net', 589828: 'IGMP', 589829: 'SNMP', 589885: 'DNS', 589888: 'Multicast DNS', 589890: 'Finger protocol', 589916: 'DCE-RPC', 589933: 'SSDP', 589934: 'SMB', 589936: 'SMB2', 589942: 'ICMP', 589951: 'UPnP', 655361: 'pcAnywhere', 655362: 'VNC', 655363: 'TeamViewer', 655364: 'MS Remote Desktop Protocol (RDP)', 655365: 'Chrome Remote Desktop', 655366: 'NTRglobal', 655367: 'RemoteCall', 655368: 'LiveCare', 655369: 'GoToMyPC', 655370: 'Pulseway', 655371: 'Radmin', 655372: 'Beinsync', 655373: 'Fastviewer', 655374: 'CrossTec Remote Control', 655375: 'GoToMeeting', 655376: 'ShowMyPC', 655377: 'Join.me', 655378: 'Telnet', 655379: 'Techinline', 655380: 'ISL Online', 655381: 'Secure Shell (SSH)', 655385: 'IBM Remote monitoring and Control', 655395: 'Netviewer', 655396: 'VT100', 655397: 'AnyDesk', 655398: 'X11', 655399: 'Alpemix', 655402: 'Instanthousecall', 655403: 'Ammyy', 655404: 'Anyplace Control', 655405: 'BeamYourScreen', 655406: 'Laplink Everywhere', 655407: 'GoToAssist', 655408: 'MSP Anywhere', 720898: 'VNN', 720899: 'Spotflux', 720900: 'SoftEther/PacketiX', 720901: 'TinyVPN', 720902: 'HTTP-Tunnel', 720903: 'Tor', 720904: 'Ping Tunnel', 720905: 'Wujie/UltraSurf', 720906: 'Freegate', 720907: 'Hidemyass', 720909: 'Vedivi', 720910: 'ZenMate', 720911: 'Hamachi', 720912: 'Disconnect.me', 720914: 'Asproxy', 720915: 'OpenDoor', 720916: 'NSTX DNS Tunnel', 720917: 'Coralcdn', 720918: 'Glype', 720919: 'GPass', 720920: 'Kproxy', 720921: 'Megaproxy', 720922: 'FreeSafeIP', 720924: 'GreenVPN', 720925: 'Surrogafier', 720926: 'Vtunnel', 720927: 'GomVPN', 720928: 'BypassThat', 720929: 'GetPrivate', 720930: 'JAP/JonDo', 720933: 'SofaWare', 720934: 'FlyProxy', 720936: 'Kerberos', 720939: 'EasyHideIP', 720942: 'CPROXY', 720943: 'AnonyMouse', 720945: 'Avoidr', 720946: 'Hidedoor', 720948: 'CGIProxy', 720949: 'ProxyTopSite', 720950: 'Phproxy', 720951: 'OpenVPN', 720952: 'CCProxy', 720953: 'Proxy Rental', 720954: 'PD-Proxy', 720955: 'Proxy4Free', 720957: 'Hideman', 720959: 'Rtmpt', 720960: 'LogMeIn', 720961: 'HotspotShield', 720962: 'ExpressVPN', 720963: 'GogoNET', 720964: 'HTTP Proxy Server', 720965: 'Hola', 720966: 'Texasproxy', 720967: 'Ourproxy', 720968: 'Proxify', 720969: 'Fast Proxy', 720970: 'Zalmos', 720971: 'Easy Proxy', 720972: 'Proxy Era', 720973: 'DotVPN', 720974: 'BrowSec', 720976: 'Unblock Proxy', 720977: 'Air-Proxy', 720978: 'Suresome', 720979: 'Defilter', 720980: 'SSLunblock', 720983: 'K12History', 720984: 'SurfEasy', 720985: 'Frozenway', 720986: 'CyberGhostVPN', 720987: 'SecurityKISS', 720988: 'WebWarper', 720989: 'Guardster', 720990: 'ProxFree', 720991: 'TunnelBear', 720992: 'AstrillVPN', 720993: 'Hide ALL IP', 720994: 'ZfreeZ', 720995: 'IPVanish', 720996: 'PrivateTunnel', 720997: 'SaferSurf', 720998: 'SecureLine VPN', 720999: 'Steganos VPN', 721000: 'StrongVPN', 721001: 'ZeroTier', 721002: 'Ngrok', 721003: 'Pagekite', 721004: 'Goproxing', 721005: 'VPN.HT', 721006: 'Betternet', 721007: 'Hide My IP', 721008: 'Stay Invisible', 721009: 'Zapyo', 721010: 'NordVPN', 721011: 'Avast SecureLine', 721013: 'Tunnello', 721014: 'Opera VPN', 786434: 'DZH', 786435: '10JQKA', 786437: 'Qianlong', 786438: 'Compass.cn', 786439: 'Huaan', 786440: 'StockStar ', 786441: 'TDX', 786443: 'Hexun', 786444: 'Hypwise', 786449: 'Kiwoom', 786450: 'Windin', 786451: 'SamsungPoP', 786453: 'StockTrace', 786454: 'JRJ', 786455: 'TradeFields', 786456: 'Bloomberg', 786457: 'Netdania', 786458: 'TradeInterceptor', 851969: 'WhiteHat Aviator', 851970: 'HTC Widget', 851971: 'Doodle', 851972: 'Level3', 851973: 'FuzeMeeting', 851974: 'Mobile01', 851975: 'Speedtest.net', 851976: 'Google Chrome', 851977: 'Babelfish', 851978: 'Google Translate', 851980: 'Mozilla Firefox', 851981: 'Apple Safari', 851982: 'Opera browser', 851984: 'Google Books', 851985: 'eBay', 851986: 'hao123', 851987: 'WebSocket', 851988: 'Tmall', 851989: 'PayPal.com', 851990: 'Ask.com', 851991: 'BBC', 851992: 'Alibaba.com', 851993: 'CNN.com', 851995: 'Sogou.com', 851996: 'Evernote', 851997: 'About.com', 851998: 'Alipay.com', 851999: 'Imgur', 852000: 'Adcash', 852001: 'Huffington Post', 852002: '360buy', 852003: 'ESPN', 852004: 'Books', 852005: 'Craigslist.org', 852006: 'Google Analytics', 852007: 'Bing Maps', 852008: 'ETtoday ', 852009: '104 Job Bank', 852010: 'NOWnews', 852011: '518 Job Bank', 852012: 'Chinatimes.com', 852013: 'GOHAPPY', 852014: '591', 852015: '8591', 852016: 'Chinatrust', 852017: 'Donga.com', 852018: 'Gmarket', 852019: 'Chosun.com', 852020: 'Cafe24.com', 852021: '11st', 852022: 'MK.co.kr', 852023: 'Auction', 852024: 'Hankyung', 852025: 'Ppomppu', 852026: 'MT.co.kr', 852027: 'Zum.com', 852028: 'Hankooki', 852029: 'JOBKOREA', 852031: 'Khan.co.kr', 852032: 'Incruit', 852033: 'YES24', 852034: 'Amazon CloudFront', 852035: 'Pcstore', 852036: 'Myfreshnet.com', 852037: 'Microsoft.com', 852038: 'Life.com.tw', 852039: 'Libertytimes', 852040: 'Lativ', 852041: 'Inven', 852042: 'cnYES', 852043: 'Babyhome', 852044: '8comic.com', 852045: 'Ck101.com', 852046: 'Taiwanlottery', 852047: 'Momoshop', 852048: 'Eyny.com', 852049: 'Yam.com', 852050: 'PChome.com', 852051: 'Gamme', 852052: 'Apple.com', 852053: 'Hinet.net', 852054: 'Google Earth', 852055: 'Saramin', 852056: 'KoreaHerald', 852057: 'Plus28.com', 852058: 'ChunghwaPost ', 852059: 'Gomaji ', 852060: 'NewSen', 852061: 'Etnews.com', 852062: 'Seoul.co.kr', 852063: 'YONHAPNEWS', 852064: 'Etoday.co.kr', 852065: 'Yesky.com', 852066: '1111 Job Bank', 852067: 'Emart', 852068: 'KBstar', 852069: 'HERALDCORP', 852070: 'ActiveX', 852071: 'MSN.com', 852072: 'Edaily', 852073: 'Segye', 852074: 'Bobaedream', 852075: 'Nocutnews', 852076: 'MONETA.co.kr', 852077: 'Kukinews', 852078: 'Java Applet', 852079: 'Todayhumor', 852080: 'Inews24', 852081: 'KoreaTimes', 852082: 'OhmyNews', 852083: 'Aladin.co.kr', 852084: 'SK Encar', 852085: 'eTorrent', 852086: 'TVREPORT', 852087: 'Mydaily', 852088: 'Microsoft Live.com', 852089: 'News1.kr', 852090: 'Munhwa', 852091: 'Dreamwiz', 852092: 'Dailian.co.kr', 852093: 'Rediff.com', 852094: 'Akamai.net', 852096: 'Microsoft Edge', 852097: 'Yugma', 852098: 'TPB PirateBrowser', 852099: 'Android browser', 852100: 'Wikispaces', 852101: 'Wikidot', 852102: 'Google Play', 852103: 'Wetpaint', 852104: 'Windows Store', 852105: 'Webshots', 852106: 'Kindle Cloud Reader', 852107: 'Nice264', 852108: 'Symbian browser', 852109: 'Vyew', 852110: 'TikiWiki', 852111: 'Castfire', 852112: 'Mercari', 852113: 'SugarCRM', 852115: 'Stumbleupon', 852116: 'Yahoo Shopping', 852117: 'Clothes Aoyama', 852118: 'Rakuten Shopping', 852119: 'Spark', 852120: 'Socialtext', 852121: 'CacaoWeb', 852122: 'PBworks', 852123: 'Fool', 852124: 'Showbie', 852125: 'MorningStar', 852126: 'Screaming Frog SEO Spider', 852127: 'MoinMoin', 852128: 'AppStore', 852129: 'Ragingbull', 852130: 'Daum', 852131: 'Google Docs', 852133: 'Naver', 852134: 'Editgrid', 852135: 'Jaspersoft', 852136: 'Clarizen', 852139: 'Interpark', 852140: 'Hyundaihmall', 852141: 'Groupon', 852142: 'Gsshop', 852143: 'Wemakeprice', 852144: 'Lotte.com', 852145: 'Coupang', 852147: 'Google Alerts', 852149: 'Dnshop.com', 852150: 'ZoomSpider crawler', 852151: 'Win Web Crawler', 852152: 'HTTrack crawler', 852153: 'Abot crawler', 852154: 'Googlebot crawler', 852155: 'Microsoft bingbot crawler', 852156: 'Yahoo Slurp crawler', 852157: 'Beanfun', 852158: 'QUIC', 852159: 'ifeng.com', 852160: 'Conduit Mobile', 852161: 'Rakuten Point', 852162: 'Gamebase', 852163: 'Kingstone', 852164: 'Udn.com', 852165: 'Fril', 852166: 'Sportsseoul', 852167: 'Babylon ', 852168: 'Yahoo Finance', 852170: 'Creative Cloud', 852171: 'Jira', 852172: 'PHPwiki', 852173: 'Rakuten Edy', 852174: 'WebCT', 852175: 'Youseemore', 852176: 'Zwiki-editing', 852177: 'Adobe.com', 852178: 'Backpackit/Campfire', 852180: 'ERoom-net', 852182: 'DiDiTaxi', 852184: 'Glide', 852186: 'Mediawiki', 852187: 'fitbit', 852188: 'LastPass', 852189: 'National Geographic', 852190: 'HTTP', 852191: 'AOL Toolbar', 852192: 'Yandex.Browser', 852193: 'Uber', 852194: 'Web-crawler', 852195: 'RSS', 852196: 'WeatherBug', 852197: 'Yahoo Toolbar', 852198: 'Alexa Toolbar', 852199: 'Internet Archive', 852200: 'Wikipedia', 852201: 'Wiktionary', 852202: 'Amazon', 852203: 'Google Toolbar', 852205: 'Zoho', 852206: 'Microsoft Internet Explorer', 852207: 'Localmind', 852208: 'LinkedIn Pulse', 852209: 'BookU', 852210: 'Zappos', 852211: 'Expedia', 852212: 'AdF.ly', 852213: 'Baidu', 852214: 'Yahoo', 852215: 'Taobao', 852216: '163.com', 852217: 'Sina.com', 852218: 'Bing.com', 852219: 'Ruten', 852220: 'Shop.com', 852221: 'Appledaily', 852222: 'CWB', 852223: 'CNA', 852224: 'Harvey Norman', 852225: 'Hackpad', 852226: 'JB Hi-Fi', 852227: 'MyDeal.com.au', 852228: 'AUSHOP', 852229: 'CrazySales', 852230: 'Giphy', 852231: 'Riffsy', 852232: 'Gumtree', 852233: 'Priceline', 852234: 'Carousell', 852235: 'Wish', 852236: 'Shein Shopping', 852237: 'Romwe', 852238: 'The Iconic', 852239: 'Boohoo', 852240: 'Aliexpress', 852241: 'ASOS', 852242: 'Catch of the Day', 852273: 'Amazon AppStream', 917505: 'TrendMicro Titanium-6-ICRC', 917506: 'TrendMicro Titanium-7-ICRC', 917507: 'TrendMicro Titanium-8-ICRC', 917508: 'BitDefender', 917509: '360Safe', 917510: 'Rising', 917511: 'TortoiseSVN', 917513: 'Microsoft Windows Update', 917514: 'Norton', 917515: 'Sophos', 917516: 'Yum', 917517: 'MIUI', 917518: 'Adobe', 917519: 'InstallAnyWhere', 917520: 'Kaspersky', 917521: 'McAfee', 917522: 'TrendMicro', 917523: 'F-Secure', 917524: 'NOD32', 917525: 'Avast', 917526: 'Jiangmin', 917527: 'Avira', 917528: 'Emsisoft', 917529: 'Panda', 917530: 'AVG', 917531: 'PCTools', 917532: 'TrendMicro Titanium-10-ICRC', 917533: 'Outpost', 917534: 'Spybot', 917535: 'Duba', 917536: 'Apple', 917538: 'Google Update', 917539: 'TrendMicro Titanium-6-WTP', 917540: 'JAVA Update', 917541: 'SONY PC/Xperia Companion', 917542: 'SketchUp', 917543: 'Webroot', 917544: 'TrendMicro Titanium-7-WTP', 917545: 'TrendMicro Titanium-8-WTP', 917546: 'TrendMicro Titanium-10-WTP', 917547: 'TrendMicro Titanium-11-ICRC', 917548: 'TrendMicro Titanium-11-WTP', 917549: 'TrendMicro Titanium-12-ICRC', 917550: 'TrendMicro Titanium-12-WTP', 983043: 'eBuddy.com', 983044: 'iLoveIM.com', 983047: 'imo.im', 983048: 'Chikka', 983050: 'QQ Web Messenger', 983051: 'AOL Web Messenger', 983054: 'ICQ Web Messenger', 983057: 'AirAim', 983058: 'Instan-t Web Messenger', 983065: 'TaoBao AliWW', 983069: 'Gadu-Gadu Web Messenger', 983070: 'Karoo Lark', 983072: 'Web IM+', 1114113: 'WatchGuard WSM Management', 1114114: 'WatchGuard Web Management UI', 1114115: 'WatchGuard Authentication Access', 1114117: 'WatchGuard external Webblocker database fetch', 1114118: 'Livelink', 1114119: 'Altiris', 1114120: 'AMS', 1114121: 'Apache Synapse', 1114122: 'WatchGuard CLI ', 1114124: 'Webex', 1114125: 'Webex-WebOffice', 1114128: 'Avamar', 1114129: 'Avaya', 1114130: 'BackupExec', 1114131: 'Bitcoin Core', 1114133: 'Microsoft OS license', 1114134: 'Microsoft Office 2013 license', 1114138: 'BZFlag', 1114140: 'CAJO', 1114141: 'Cisco HSRP', 1114142: 'SkyDesk', 1114144: 'Microsoft Office', 1114150: 'openQRM', 1114151: 'Citrix', 1114152: 'CodeMeter', 1114155: 'Corba', 1114158: 'Cups', 1114160: 'Cvsup', 1114161: 'DameWare', 1114167: 'Db2', 1114168: 'Docker', 1114169: 'Dclink', 1114170: 'Urchin Web Analytics', 1114172: 'Applications Manager', 1114174: 'Zoom', 1114176: 'EForward-document transport system', 1114177: 'EMWIN', 1114179: 'Adobe Connect', 1114182: 'Big Brother', 1114185: 'Fuze Meeting', 1114187: 'FritzBox', 1114188: 'Skype for Business', 1114191: 'Websense', 1114195: 'Whisker', 1114201: 'HP-JetDirect', 1114203: 'VMWare', 1114205: 'IBM HTTP', 1114206: 'IBM SmartCloud', 1114212: 'IMS', 1114213: 'Informix', 1114222: 'Limelight', 1114229: 'Lawson-m3', 1114238: 'Meeting-maker', 1114239: 'Zendesk', 1114246: 'Microsoft DTC', 1114248: 'Microsoft Netlogon', 1114250: 'Microsoft Remote Web Workplace', 1114251: 'Office Sway', 1114252: 'Sharepoint-wiki', 1114253: 'Microsoft SSDP', 1114255: 'GatherPlace', 1114269: 'Xgrid', 1114272: 'Backweb', 1114273: 'Bugzilla', 1114274: 'NCube', 1114275: 'WinboxRouterOS', 1114277: 'WSO2', 1114279: 'NetFlow', 1114289: 'concur', 1114290: 'NetSupport', 1114308: 'DirectAdmin', 1114309: 'EasyBits', 1114310: 'Eiq-sec-analyzer', 1114311: 'Netbotz', 1114312: 'Aspera FASP', 1114318: 'Perforce', 1114320: 'TiVoConnect', 1114321: 'Polycom', 1114322: 'WebSphere', 1114330: 'Radacct RADIUS', 1114334: 'Securemeeting', 1114337: 'SANE', 1114339: 'WebHost', 1114340: 'CPanel', 1114342: 'Sibelius', 1114343: 'Siebel-crm', 1114347: 'SMS', 1114350: 'Spirent', 1114351: 'SPSS', 1114352: 'Subversion', 1114355: 'Tripwire', 1114359: 'WatchGuard Webblocker database transfer', 1114361: 'WatchGuard Security Event Processor logging', 1114363: 'Genesys Meeting Center', 1114365: 'Nagios', 1114366: 'Microsoft Office 365', 1114396: 'ChatWork', 1179649: 'TCP Port Service Multiplexer', 1179650: 'Management Utility', 1179651: 'Compression Process', 1179652: 'Zeroconf', 1179653: 'Echo', 1179654: 'Discard', 1179655: 'Active Users', 1179656: 'L2TP', 1179657: 'puparp', 1179658: 'vsinet', 1179659: 'maitrd', 1179660: 'Character Generator', 1179663: 'applix', 1179664: 'Net Assistant', 1179665: 'any private mail system', 1179666: 'BackOrifice', 1179667: 'AltaVista Firewall97', 1179668: 'NSW User System FE', 1179669: 'MSG ICP', 1179670: 'MSG Authentication', 1179671: 'Display Support Protocol', 1179672: 'any private printer server', 1179673: 'Time', 1179674: 'Route Access Protocol', 1179675: 'Resource Location Protocol', 1179676: 'graphics', 1179677: 'Host Name Server', 1179678: 'NIC Name', 1179679: 'MPM FLAGS Protocol', 1179680: 'Message Processing Module [recv]', 1179681: 'MPM [default send]', 1179682: 'NI FTP', 1179683: 'Digital Audit Daemon', 1179684: 'Login Host Protocol (TACACS)', 1179685: 'Remote Mail Checking Protocol', 1179686: 'IMP Logical Address Maintenance', 1179687: 'XNS Time Protocol', 1179688: 'Domain Name Server', 1179689: 'XNS Clearinghouse', 1179690: 'ISI Graphics Language', 1179691: 'XNS Authentication', 1179692: 'Mail Transfer Protocol (MTP)', 1179693: 'XNS Mail', 1179694: 'any private file service', 1179695: 'NI MAIL', 1179696: 'ACA Services', 1179697: 'VIA Systems - FTP whois++', 1179698: 'Communications Integrator (CI)', 1179699: 'TACACS-Database Service', 1179700: 'Oracle SQL-NET', 1179701: 'Bootstrap Protocol Server', 1179702: 'Bootstrap Protocol Client', 1179703: 'profile', 1179704: 'Gopher', 1179705: 'Remote Job Service', 1179706: 'any private dial out service', 1179707: 'Distributed External Object Store', 1179708: 'any private RJE service netrjs', 1179709: 'Vet TCP', 1179710: 'Finger', 1179711: 'World Wide Web HTTP', 1179712: 'Torpark', 1179713: 'XFER Utility', 1179714: 'MIT ML Device', 1179715: 'Common Trace Facility', 1179716: 'Micro Focus Cobol', 1179717: 'any private terminal link ttylink', 1179718: 'Kerberos', 1179719: 'SU MIT Telnet Gateway', 1179720: 'DNSIX Securit Attribute Token Map', 1179721: 'MIT Dover Spooler', 1179722: 'Network Printing Protocol', 1179723: 'Device Control Protocol', 1179724: 'Tivoli Object Dispatcher', 1179725: 'BSD supdupd(8)', 1179726: 'DIXIE Protocol Specification', 1179727: 'Swift Remote Virtural File Protocol', 1179728: 'linuxconf', 1179729: 'Metagram Relay', 1179731: 'NIC Host Name Server', 1179732: 'ISO-TSAP Class 0', 1