- Allow outputting masscan results to a file for debugging purposes.
- Fix a bug where the script would crash if IP2Location database wasn't provided.
- Allow passing ranges of numbers as a `--ports` argument. The syntax of `--ports` argument changed because of this, now instead of `--ports 8900 25565 65500` you would write `--ports "8900,25565,65500"`. You can also use ranges, so instead of `--ports 25564 25565 25566 25567` you can use `--ports "25564-25567"`. You can also mix both together, for example `--ports "8900,25564-25567,65500"`.
- Minor README changes