diff --git a/docs/data/bst_results.csv b/ivantsovma/docs/data/bst_results.csv similarity index 100% rename from docs/data/bst_results.csv rename to ivantsovma/docs/data/bst_results.csv diff --git a/docs/data/docs/data/bst_results.csv b/ivantsovma/docs/data/docs/data/bst_results.csv similarity index 100% rename from docs/data/docs/data/bst_results.csv rename to ivantsovma/docs/data/docs/data/bst_results.csv diff --git a/docs/data/docs/data/hash_table_results.csv b/ivantsovma/docs/data/docs/data/hash_table_results.csv similarity index 100% rename from docs/data/docs/data/hash_table_results.csv rename to ivantsovma/docs/data/docs/data/hash_table_results.csv diff --git a/docs/data/docs/data/linked_list_results.csv b/ivantsovma/docs/data/docs/data/linked_list_results.csv similarity index 100% rename from docs/data/docs/data/linked_list_results.csv rename to ivantsovma/docs/data/docs/data/linked_list_results.csv diff --git a/docs/data/report.md b/ivantsovma/docs/data/report.md similarity index 100% rename from docs/data/report.md rename to ivantsovma/docs/data/report.md diff --git a/docs/report.md b/ivantsovma/docs/report.md similarity index 100% rename from docs/report.md rename to ivantsovma/docs/report.md diff --git a/docs/report_maze.md b/ivantsovma/docs/report_maze.md similarity index 100% rename from docs/report_maze.md rename to ivantsovma/docs/report_maze.md diff --git a/builders/__init__.py b/ivantsovma/maze/builders/__init__.py similarity index 100% rename from builders/__init__.py rename to ivantsovma/maze/builders/__init__.py diff --git a/builders/maze_builder.py b/ivantsovma/maze/builders/maze_builder.py similarity index 100% rename from builders/maze_builder.py rename to ivantsovma/maze/builders/maze_builder.py diff --git a/builders/text_file_maze_builder.py b/ivantsovma/maze/builders/text_file_maze_builder.py similarity index 100% rename from builders/text_file_maze_builder.py rename to ivantsovma/maze/builders/text_file_maze_builder.py diff --git a/experiments/run_experiments.py b/ivantsovma/maze/experiments/run_experiments.py similarity index 100% rename from experiments/run_experiments.py rename to ivantsovma/maze/experiments/run_experiments.py diff --git a/mazes/medium_maze.txt b/ivantsovma/maze/mazes/medium_maze.txt similarity index 100% rename from mazes/medium_maze.txt rename to ivantsovma/maze/mazes/medium_maze.txt diff --git a/mazes/simple_maze.txt b/ivantsovma/maze/mazes/simple_maze.txt similarity index 100% rename from mazes/simple_maze.txt rename to ivantsovma/maze/mazes/simple_maze.txt diff --git a/mazes/small_maze.txt b/ivantsovma/maze/mazes/small_maze.txt similarity index 100% rename from mazes/small_maze.txt rename to ivantsovma/maze/mazes/small_maze.txt diff --git a/models/__init__.py b/ivantsovma/maze/models/__init__.py similarity index 100% rename from models/__init__.py rename to ivantsovma/maze/models/__init__.py diff --git a/models/cell.py b/ivantsovma/maze/models/cell.py similarity index 100% rename from models/cell.py rename to ivantsovma/maze/models/cell.py diff --git a/models/maze.py b/ivantsovma/maze/models/maze.py similarity index 100% rename from models/maze.py rename to ivantsovma/maze/models/maze.py diff --git a/play_maze.py b/ivantsovma/maze/play_maze.py similarity index 100% rename from play_maze.py rename to ivantsovma/maze/play_maze.py diff --git a/solver/__init__.py b/ivantsovma/maze/solver/__init__.py similarity index 100% rename from solver/__init__.py rename to ivantsovma/maze/solver/__init__.py diff --git a/solver/maze_solver.py b/ivantsovma/maze/solver/maze_solver.py similarity index 100% rename from solver/maze_solver.py rename to ivantsovma/maze/solver/maze_solver.py diff --git a/strategies/__init__.py b/ivantsovma/maze/strategies/__init__.py similarity index 100% rename from strategies/__init__.py rename to ivantsovma/maze/strategies/__init__.py diff --git a/strategies/astar_strategy.py b/ivantsovma/maze/strategies/astar_strategy.py similarity index 100% rename from strategies/astar_strategy.py rename to ivantsovma/maze/strategies/astar_strategy.py diff --git a/strategies/bfs_strategy.py b/ivantsovma/maze/strategies/bfs_strategy.py similarity index 100% rename from strategies/bfs_strategy.py rename to ivantsovma/maze/strategies/bfs_strategy.py diff --git a/strategies/dfs_strategy.py b/ivantsovma/maze/strategies/dfs_strategy.py similarity index 100% rename from strategies/dfs_strategy.py rename to ivantsovma/maze/strategies/dfs_strategy.py diff --git a/strategies/path_finding_strategy.py b/ivantsovma/maze/strategies/path_finding_strategy.py similarity index 100% rename from strategies/path_finding_strategy.py rename to ivantsovma/maze/strategies/path_finding_strategy.py diff --git a/test_builder.py b/ivantsovma/maze/test_builder.py similarity index 100% rename from test_builder.py rename to ivantsovma/maze/test_builder.py diff --git a/test_maze.py b/ivantsovma/maze/test_maze.py similarity index 100% rename from test_maze.py rename to ivantsovma/maze/test_maze.py diff --git a/test_solver.py b/ivantsovma/maze/test_solver.py similarity index 100% rename from test_solver.py rename to ivantsovma/maze/test_solver.py diff --git a/test_strategy.py b/ivantsovma/maze/test_strategy.py similarity index 100% rename from test_strategy.py rename to ivantsovma/maze/test_strategy.py diff --git a/test_visualization.py b/ivantsovma/maze/test_visualization.py similarity index 100% rename from test_visualization.py rename to ivantsovma/maze/test_visualization.py diff --git a/visualization/__init__.py b/ivantsovma/maze/visualization/__init__.py similarity index 100% rename from visualization/__init__.py rename to ivantsovma/maze/visualization/__init__.py diff --git a/visualization/command.py b/ivantsovma/maze/visualization/command.py similarity index 100% rename from visualization/command.py rename to ivantsovma/maze/visualization/command.py diff --git a/visualization/console_view.py b/ivantsovma/maze/visualization/console_view.py similarity index 100% rename from visualization/console_view.py rename to ivantsovma/maze/visualization/console_view.py diff --git a/visualization/game_controller.py b/ivantsovma/maze/visualization/game_controller.py similarity index 100% rename from visualization/game_controller.py rename to ivantsovma/maze/visualization/game_controller.py diff --git a/visualization/observer.py b/ivantsovma/maze/visualization/observer.py similarity index 100% rename from visualization/observer.py rename to ivantsovma/maze/visualization/observer.py diff --git a/docs/data/bst_phonebook.py b/ivantsovma/structures_data/bst_phonebook.py similarity index 100% rename from docs/data/bst_phonebook.py rename to ivantsovma/structures_data/bst_phonebook.py diff --git a/docs/data/compare_structures.py b/ivantsovma/structures_data/compare_structures.py similarity index 100% rename from docs/data/compare_structures.py rename to ivantsovma/structures_data/compare_structures.py diff --git a/docs/data/hash_table_phonebook.py b/ivantsovma/structures_data/hash_table_phonebook.py similarity index 100% rename from docs/data/hash_table_phonebook.py rename to ivantsovma/structures_data/hash_table_phonebook.py diff --git a/docs/data/linked_list_phonebook.py b/ivantsovma/structures_data/linked_list_phonebook.py similarity index 100% rename from docs/data/linked_list_phonebook.py rename to ivantsovma/structures_data/linked_list_phonebook.py