**Welcome to the Foris Mini Challenge**

To start this challenge you must send a `POST` request to http://mini-challenge.foris.ai/login with body `{"username": "foris_challenge", "password": "ForisChallenge"}`.

Then follow the instructions.

Good luck!

Here are the valid uris with their allowed methods.

* /login:
  * Allowed methods: `POST`.
  * Requires authentication: No.
  * Required body: `{"username": "foris_challenge", "password": "ForisChallenge"}`.
* /challenge:
  * Allowed methods: `GET`.
  * Requires authentication: Yes.
* /dumps/{dump_type}:
  * Allowed methods: `GET`.
  * Requires authentication: Yes.
* /validate: 
  * This is a method to validate your answer. Be careful you can only submit this request once every hour.
  * Allowed methods: `POST`.
  * Requires authentication: Yes.
  * Required_body: `{"number_of_groups": NUMBER_OF_GROUPS, "answer": YOUR_ANSWER}`.
    * `NUMBER_OF_GROUPS`: Is the number of groups present in the table `group` of the given dump. By giving this you prove that you successfully inspect your database.
    * `YOUR_ANSWER`: Is the answer of the question asked in the /challenge uri.
  * Response: Can be correct answer or incorrect answer.

Any nonexistence uri will redirect you here.