mirror of
https://github.com/dmuth/diceware.git
synced 2024-11-21 16:36:28 -05:00
45 lines
622 B
JavaScript
45 lines
622 B
JavaScript
//
|
|
// Our wordlist.
|
|
//
|
|
// Originally obtained from http://world.std.com/~reinhold/diceware.wordlist.asc
|
|
//
|
|
var wordlist = {
|
|
66566:"88th",
|
|
66611:"89th",
|
|
66612:"8th",
|
|
66613:"90th",
|
|
66614:"91st",
|
|
66615:"92nd",
|
|
66616:"93rd",
|
|
66621:"94th",
|
|
66622:"95th",
|
|
66623:"96th",
|
|
66624:"97th",
|
|
66625:"98th",
|
|
66626:"99th",
|
|
66631:"9th",
|
|
66632:"!",
|
|
66633:"!!",
|
|
66634:"\"",
|
|
66635:"#",
|
|
66636:"##",
|
|
66641:"$",
|
|
66642:"$$",
|
|
66643:"%",
|
|
66644:"%%",
|
|
66645:"&",
|
|
66646:"(",
|
|
66651:"()",
|
|
66652:")",
|
|
66653:"*",
|
|
66654:"**",
|
|
66655:"+",
|
|
66656:"-",
|
|
66661:":\"",
|
|
66662:";",
|
|
66663:"=",
|
|
66664:"?",
|
|
66665:"??",
|
|
66666:"@"
|
|
};
|
|
|