gitextract_dnygf_24/ ├── .gitignore ├── .npmignore ├── .travis.yml ├── .zuul.yml ├── LICENSE.txt ├── README.md ├── bower.json ├── data/ │ ├── english_wikipedia.txt │ ├── female_names.txt │ ├── male_names.txt │ ├── passwords.txt │ ├── surnames.txt │ └── us_tv_and_film.txt ├── data-scripts/ │ ├── build_frequency_lists.py │ ├── build_keyboard_adjacency_graphs.py │ ├── count_us_census.py │ ├── count_wikipedia.py │ ├── count_wiktionary.py │ └── count_xato.coffee ├── demo/ │ ├── demo.coffee │ ├── index.html │ ├── jquery.js │ ├── mustache.js │ └── require.js ├── dist/ │ └── zxcvbn.js ├── package.json ├── src/ │ ├── adjacency_graphs.coffee │ ├── feedback.coffee │ ├── frequency_lists.coffee │ ├── main.coffee │ ├── matching.coffee │ ├── scoring.coffee │ └── time_estimates.coffee └── test/ ├── test-matching.coffee └── test-scoring.coffee